<!DOCTYPE html>
<html lang=”en”>
<head>
<meta charset=”UTF-8″>
<meta name=”viewport” content=”width=device-width, initial-scale=1.0″>
<title>IVRY IT — Managed IT Security for Dental Clinics</title>
<link rel=”preconnect” href=”https://fonts.googleapis.com”>
<link href=”https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300&display=swap” rel=”stylesheet”>
<style>
:root {
–black: #040810;
–deep: #060C14;
–ivory: #F5F5E4;
–teal: #4EA0B6;
–teal-glow: rgba(78, 160, 182, 0.35);
–teal-soft: rgba(78, 160, 182, 0.08);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
background: var(–black);
color: var(–ivory);
font-family: ‘Urbanist’, sans-serif;
font-weight: 300;
overflow-x: hidden;
}
/* ===== BACKGROUND EFFECTS ===== */
.ocean-layer { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.12; }
.blob-1 { width: 600px; height: 600px; background: radial-gradient(circle, var(–teal), transparent 70%); top: -200px; left: -100px; animation: blobDrift1 18s ease-in-out infinite; }
.blob-2 { width: 500px; height: 500px; background: radial-gradient(circle, #3D8A9E, transparent 70%); bottom: -150px; right: -100px; animation: blobDrift2 22s ease-in-out infinite; }
.blob-3 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(245,245,228,0.3), transparent 70%); top: 50%; left: 40%; animation: blobDrift3 15s ease-in-out infinite; }
@keyframes blobDrift1 { 0%, 100% { transform: translate(0, 0) scale(1); } 33% { transform: translate(80px, 60px) scale(1.1); } 66% { transform: translate(-40px, 100px) scale(0.95); } }
@keyframes blobDrift2 { 0%, 100% { transform: translate(0, 0) scale(1); } 33% { transform: translate(-60px, -80px) scale(1.15); } 66% { transform: translate(50px, -40px) scale(0.9); } }
@keyframes blobDrift3 { 0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.06; } 50% { transform: translate(60px, -60px) scale(1.2); opacity: 0.1; } }
.particles { position: fixed; inset: 0; z-index: 1; pointer-events: none; }
.particle { position: absolute; width: 3px; height: 3px; background: var(–teal); border-radius: 50%; opacity: 0; animation: particleFloat linear infinite; }
@keyframes particleFloat { 0% { opacity: 0; transform: translateY(100vh); } 10% { opacity: 0.5; } 90% { opacity: 0.5; } 100% { opacity: 0; transform: translateY(-20px); } }
.wave-divider { position: relative; z-index: 2; height: 120px; overflow: hidden; }
.wave-divider svg { position: absolute; bottom: 0; width: 200%; animation: waveDrift 12s linear infinite; }
/* Inverted wave: flips the wave so deep color is at top, wavy edge faces down */
.wave-divider-inv { position: relative; z-index: 2; height: 120px; overflow: hidden; transform: scaleY(-1); margin-top: -1px; margin-bottom: -1px; }
.wave-divider-inv svg { position: absolute; bottom: 0; width: 200%; animation: waveDrift 12s linear infinite; }
@keyframes waveDrift { from { transform: translateX(0); } to { transform: translateX(-50%); } }
/* NAV */
nav {
position: fixed; top: 0; left: 0; right: 0; z-index: 100;
padding: 20px 50px;
display: flex; justify-content: space-between; align-items: center;
background: linear-gradient(to bottom, rgba(4, 8, 16, 0.9), transparent);
box-shadow: 0 1px 0 0 transparent;
backdrop-filter: blur(0px);
transition: background 0.8s ease, box-shadow 0.8s ease, backdrop-filter 0.8s ease;
}
nav.solid { background: rgba(4, 8, 16, 0.95); backdrop-filter: blur(20px); box-shadow: 0 1px 0 0 var(–teal-soft); }
.nav-brand { display: flex; align-items: center; gap: 14px; }
.nav-brand img { height: 38px; }
.nav-brand .brand-text { height: 18px; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links > a, .nav-dropdown > .nav-drop-trigger { color: rgba(245,245,228,0.5); text-decoration: none; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.5px; transition: color 0.3s; cursor: pointer; }
.nav-links > a:hover, .nav-dropdown:hover > .nav-drop-trigger { color: var(–ivory); }
.nav-cta-btn { padding: 10px 28px !important; border-radius: 50px; background: var(–teal) !important; color: var(–black) !important; font-weight: 600 !important; transition: all 0.3s !important; box-shadow: 0 0 20px var(–teal-glow); }
.nav-cta-btn:hover { box-shadow: 0 0 35px var(–teal-glow); transform: translateY(-1px); }
/* Nav dropdown */
.nav-dropdown { position: relative; }
.nav-drop-trigger { display: inline-flex; align-items: center; gap: 5px; background: none; border: none; font-family: inherit; padding: 0; }
.nav-drop-trigger svg { transition: transform 0.3s; }
.nav-dropdown:hover .nav-drop-trigger svg { transform: rotate(180deg); }
.nav-drop-menu {
position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%);
min-width: 180px; padding: 10px 0;
background: rgba(6, 12, 20, 0.95); backdrop-filter: blur(20px);
border: 1px solid rgba(78,160,182,0.12); border-radius: 16px;
box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 20px rgba(78,160,182,0.06);
opacity: 0; visibility: hidden; transform: translateX(-50%) translateY(8px);
transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
z-index: 200;
}
.nav-dropdown:hover .nav-drop-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-drop-menu::before {
content: ”; position: absolute; top: -14px; left: 0; right: 0; height: 14px;
}
.nav-drop-menu::after {
content: ”; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
width: 0; height: 0; border-left: 8px solid transparent; border-right: 8px solid transparent;
border-bottom: 8px solid rgba(78,160,182,0.12); margin-top: -8px;
}
.nav-drop-menu a {
display: flex; align-items: center; gap: 10px;
padding: 10px 20px; color: rgba(245,245,228,0.5);
text-decoration: none; font-size: 0.8rem; font-weight: 500;
letter-spacing: 0.3px; transition: all 0.2s;
}
.nav-drop-menu a:hover { color: var(–ivory); background: rgba(78,160,182,0.06); }
.nav-drop-menu a .drop-icon { color: var(–teal); display: flex; align-items: center; }
.nav-drop-menu .drop-divider { height: 1px; background: rgba(78,160,182,0.08); margin: 4px 16px; }
/* HERO (identical) */
.hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 0 50px; position: relative; z-index: 2; }
.hero-glow { position: absolute; width: 500px; height: 500px; background: radial-gradient(circle, rgba(78,160,182,0.08), transparent 60%); border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%, -50%); animation: heroBreath 6s ease-in-out infinite; }
@keyframes heroBreath { 0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; } 50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; } }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; padding: 8px 24px; border-radius: 50px; border: 1px solid rgba(78,160,182,0.2); background: rgba(78,160,182,0.05); font-size: 0.75rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(–teal); font-weight: 500; margin-bottom: 36px; opacity: 0; animation: fadeUp 0.8s 0.3s forwards; }
.hero-badge .dot { width: 6px; height: 6px; background: var(–teal); border-radius: 50%; box-shadow: 0 0 8px var(–teal); animation: pulse 2.5s infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 8px var(–teal); } 50% { box-shadow: 0 0 16px var(–teal), 0 0 30px var(–teal-glow); } }
.hero h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 800; line-height: 1.08; letter-spacing: -1.5px; position: relative; z-index: 2; opacity: 0; animation: fadeUp 0.8s 0.5s forwards; }
.hero h1 .accent { color: var(–teal); text-shadow: 0 0 40px var(–teal-glow); }
.hero h1 .thin { font-weight: 200; }
.hero-sub { max-width: 560px; font-size: 1.05rem; line-height: 1.8; color: rgba(245,245,228,0.5); font-weight: 300; margin-top: 28px; opacity: 0; animation: fadeUp 0.8s 0.7s forwards; }
.hero-locations { display: flex; gap: 24px; margin-top: 28px; opacity: 0; animation: fadeUp 0.8s 0.85s forwards; }
.hero-locations .loc { display: inline-flex; align-items: center; gap: 8px; font-size: 0.78rem; color: rgba(245,245,228,0.35); font-weight: 400; }
.hero-locations .loc span { color: var(–teal); display: inline-flex; align-items: center; }
.hero-actions { display: flex; gap: 16px; margin-top: 36px; opacity: 0; animation: fadeUp 0.8s 1s forwards; }
.btn-glow { display: inline-block; padding: 16px 40px; border-radius: 50px; background: var(–teal); color: var(–black); text-decoration: none; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.5px; transition: all 0.3s; box-shadow: 0 4px 30px var(–teal-glow); }
.btn-glow:hover { box-shadow: 0 6px 45px rgba(78,160,182,0.5); transform: translateY(-2px); }
.btn-ghost { display: inline-block; padding: 16px 40px; border-radius: 50px; background: transparent; color: var(–ivory); text-decoration: none; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.5px; border: 1px solid rgba(245,245,228,0.15); transition: all 0.3s; }
.btn-ghost:hover { border-color: rgba(245,245,228,0.4); background: rgba(245,245,228,0.03); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
/* ============================================= */
/* LAYOUT B: HORIZONTAL BANDS */
/* ============================================= */
.section-tag { font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase; color: var(–teal); font-weight: 600; margin-bottom: 14px; }
.accent { color: var(–teal); }
/* — SERVICES: Full-width horizontal rows — */
.services { padding: 100px 0; position: relative; z-index: 2; background: var(–deep); }
.services .section-intro { text-align: center; margin-bottom: 60px; padding: 0 50px; }
.services .section-intro h2 { font-size: clamp(2.2rem, 4.5vw, 3.5rem); font-weight: 700; letter-spacing: -0.5px; }
.services .section-intro .section-sub { font-size: 1rem; color: rgba(245,245,228,0.4); font-weight: 300; margin-top: 14px; max-width: 550px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.svc-band {
display: grid; grid-template-columns: 70px 1fr 1.4fr; gap: 0;
align-items: center; max-width: 1000px; margin: 0 auto;
padding: 32px 40px; border-top: 1px solid rgba(78,160,182,0.06);
transition: all 0.4s;
}
.svc-band:last-child { border-bottom: 1px solid rgba(78,160,182,0.06); }
.svc-band:hover { background: rgba(78,160,182,0.03); }
.svc-band .band-icon {
width: 50px; height: 50px; border-radius: 14px;
background: rgba(78,160,182,0.1); border: 1px solid rgba(78,160,182,0.15);
display: flex; align-items: center; justify-content: center;
color: var(–teal); transition: all 0.3s;
}
.svc-band:hover .band-icon { background: rgba(78,160,182,0.15); box-shadow: 0 0 20px var(–teal-glow); }
.band-info h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 4px; letter-spacing: -0.3px; }
.band-info p { font-size: 0.82rem; line-height: 1.6; color: rgba(245,245,228,0.4); font-weight: 300; }
.band-features { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.band-features .chip {
padding: 6px 16px; border-radius: 50px;
background: rgba(78,160,182,0.06); border: 1px solid rgba(78,160,182,0.1);
font-size: 0.7rem; color: rgba(245,245,228,0.4); font-weight: 400;
transition: all 0.3s;
}
.svc-band:hover .chip { border-color: rgba(78,160,182,0.2); color: rgba(245,245,228,0.55); }
/* — WHY US: Single row of tall narrow pill cards — */
.why-us { padding: 100px 50px; position: relative; z-index: 2; }
.why-us .section-intro { text-align: center; margin-bottom: 60px; }
.why-us .section-intro h2 { font-size: clamp(2.2rem, 4.5vw, 3.5rem); font-weight: 700; letter-spacing: -0.5px; }
.why-us .section-intro .section-sub { font-size: 1rem; color: rgba(245,245,228,0.4); font-weight: 300; margin-top: 14px; max-width: 550px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.why-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; max-width: 1100px; margin: 0 auto; }
.why-pill {
border-radius: 24px; border: 1px solid rgba(78,160,182,0.06);
padding: 36px 20px; text-align: center; transition: all 0.4s;
display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.why-pill:hover { border-color: rgba(78,160,182,0.15); background: rgba(78,160,182,0.03); transform: translateY(-4px); }
.why-pill .why-icon { display: flex; align-items: center; justify-content: center; color: var(–teal); width: 48px; height: 48px; border-radius: 50%; background: rgba(78,160,182,0.06); border: 1px solid rgba(78,160,182,0.1); transition: all 0.4s; }
.why-pill:hover .why-icon { background: rgba(78,160,182,0.1); box-shadow: 0 0 16px rgba(78,160,182,0.15); }
.why-pill h3 { font-size: 0.88rem; font-weight: 700; letter-spacing: -0.3px; line-height: 1.3; }
.why-pill p { font-size: 0.72rem; line-height: 1.7; color: rgba(245,245,228,0.3); font-weight: 300; }
/* — PROCESS: 2×2 grid — */
.process { padding: 100px 50px; position: relative; z-index: 2; background: var(–deep); }
.process .section-intro { text-align: center; margin-bottom: 60px; }
.process .section-intro h2 { font-size: clamp(2.2rem, 4.5vw, 3.5rem); font-weight: 700; letter-spacing: -0.5px; }
.process .section-intro .section-sub { font-size: 1rem; color: rgba(245,245,228,0.4); font-weight: 300; margin-top: 14px; max-width: 550px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.process-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 700px; margin: 0 auto; }
.pgrid-card {
background: rgba(78,160,182,0.03); border: 1px solid rgba(78,160,182,0.08);
border-radius: 20px; padding: 40px 30px; transition: all 0.4s;
position: relative;
}
.pgrid-card:hover { border-color: rgba(78,160,182,0.2); background: rgba(78,160,182,0.05); }
.pgrid-num {
font-size: 4rem; font-weight: 900; color: rgba(78,160,182,0.06);
position: absolute; top: 16px; right: 24px; line-height: 1;
transition: color 0.4s;
}
.pgrid-card:hover .pgrid-num { color: rgba(78,160,182,0.12); }
.pgrid-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; position: relative; z-index: 1; }
.pgrid-card p { font-size: 0.82rem; line-height: 1.75; color: rgba(245,245,228,0.4); font-weight: 300; position: relative; z-index: 1; }
/* — ABOUT: Flipped — text left, large logo right bleeding — */
.about-flip { padding: 120px 50px; position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1200px; margin: 0 auto; overflow: visible; }
.about-flip .about-text .section-tag { text-align: left; }
.about-flip .about-text h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 700; margin-bottom: 22px; line-height: 1.2; letter-spacing: -0.5px; }
.about-flip .about-text p { font-size: 0.92rem; line-height: 1.9; color: rgba(245,245,228,0.5); font-weight: 300; margin-bottom: 18px; }
.about-visual-large { display: flex; justify-content: center; position: relative; }
.about-visual-large img {
width: 300px; opacity: 0.5; filter: drop-shadow(0 0 60px var(–teal-glow));
animation: gentleFloat 8s ease-in-out infinite; transform-origin: center;
transition: opacity 0.8s ease, filter 0.8s ease;
position: relative; z-index: 2;
}
.about-visual-large.ripple-active img { opacity: 0.85; filter: drop-shadow(0 0 100px rgba(78,160,182,0.6)) drop-shadow(0 0 40px rgba(78,160,182,0.35)); }
@keyframes gentleFloat { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-12px) rotate(1deg); } }
.about-visual-large .glow-ring {
position: absolute; border-radius: 50%; border: 1px solid rgba(78,160,182,0.06);
top: 50%; left: 50%; transform: translate(-50%, -50%);
animation: ringPulse 5s ease-in-out infinite;
}
.about-visual-large .glow-ring:nth-child(2) { width: 360px; height: 360px; }
.about-visual-large .glow-ring:nth-child(3) { width: 450px; height: 450px; animation-delay: 1.5s; }
@keyframes ringPulse { 0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); } 50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.05); } }
/* Small centered hover hitbox over the elephant body */
.logo-hitbox {
position: absolute; z-index: 3; cursor: pointer;
width: 160px; height: 160px; border-radius: 50%;
top: 50%; left: 50%; transform: translate(-50%, -55%); /* slightly above center to align with body */
}
/* Full-page ripple canvas */
#ripple-canvas {
position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
z-index: 0; pointer-events: none;
}
/* — CONTACT SECTION — */
.contact-section { padding: 100px 50px; position: relative; z-index: 2; }
.contact-section .section-intro { text-align: center; margin-bottom: 60px; }
.contact-section .section-intro h2 { font-size: clamp(2.2rem, 4.5vw, 3.5rem); font-weight: 700; letter-spacing: -0.5px; }
.contact-section .section-intro .section-sub { font-size: 1rem; color: rgba(245,245,228,0.4); font-weight: 300; margin-top: 14px; max-width: 550px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; max-width: 960px; margin: 0 auto; align-items: start; }
.contact-info h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 14px; }
.contact-info > p { font-size: 0.88rem; line-height: 1.8; color: rgba(245,245,228,0.45); font-weight: 300; margin-bottom: 28px; }
.contact-methods { display: flex; flex-direction: column; gap: 14px; }
.contact-method {
display: flex; align-items: center; gap: 16px;
padding: 18px 20px; border-radius: 16px;
border: 1px solid rgba(78,160,182,0.08); transition: all 0.3s;
}
.contact-method:hover { border-color: rgba(78,160,182,0.18); background: rgba(78,160,182,0.03); transform: translateX(4px); }
.contact-method .cm-icon {
width: 42px; height: 42px; border-radius: 50%;
background: rgba(78,160,182,0.08); border: 1px solid rgba(78,160,182,0.12);
display: flex; align-items: center; justify-content: center;
color: var(–teal); flex-shrink: 0;
}
.contact-method .cm-label { font-size: 0.68rem; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(245,245,228,0.3); font-weight: 500; margin-bottom: 2px; }
.contact-method .cm-value { font-size: 0.88rem; font-weight: 600; color: var(–ivory); }
.contact-method .cm-value a { color: var(–ivory); text-decoration: none; transition: color 0.2s; }
.contact-method .cm-value a:hover { color: var(–teal); }
.contact-method .cm-sub { font-size: 0.72rem; color: rgba(245,245,228,0.3); font-weight: 300; }
.contact-form-card {
background: rgba(78,160,182,0.03); border: 1px solid rgba(78,160,182,0.1);
border-radius: 24px; padding: 36px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
display: block; font-size: 0.78rem; font-weight: 600;
margin-bottom: 8px; color: rgba(245,245,228,0.6); letter-spacing: 0.3px;
}
.form-group input,
.form-group textarea,
.form-group select {
width: 100%; padding: 13px 16px;
background: rgba(4,8,16,0.6); border: 1px solid rgba(78,160,182,0.1);
border-radius: 12px; color: var(–ivory);
font-family: ‘Urbanist’, sans-serif; font-size: 0.88rem; font-weight: 400;
transition: all 0.3s; outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(245,245,228,0.2); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
border-color: rgba(78,160,182,0.35);
box-shadow: 0 0 0 3px rgba(78,160,182,0.08);
background: rgba(4,8,16,0.8);
}
.form-group select { cursor: pointer; appearance: none; background-image: url(“data:image/svg+xml,%3Csvg xmlns=’http://www.w3.org/2000/svg’ width=’12’ height=’12’ viewBox=’0 0 24 24′ fill=’none’ stroke=’%234EA0B6′ stroke-width=’2’%3E%3Cpath d=’M6 9l6 6 6-6’/%3E%3C/svg%3E”); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-group select option { background: var(–black); color: var(–ivory); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
width: 100%; padding: 15px; border: none;
border-radius: 50px; background: var(–teal); color: var(–black);
font-family: ‘Urbanist’, sans-serif; font-size: 0.88rem; font-weight: 700;
letter-spacing: 0.5px; cursor: pointer;
transition: all 0.3s; box-shadow: 0 4px 30px var(–teal-glow);
}
.form-submit:hover { box-shadow: 0 6px 45px rgba(78,160,182,0.5); transform: translateY(-2px); }
/* FOOTER */
footer { position: relative; z-index: 2; padding: 40px 50px; border-top: 1px solid var(–teal-soft); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 30px; }
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand .brand-row { display: flex; align-items: center; gap: 10px; }
.footer-brand .brand-row img { height: 28px; opacity: 0.5; }
.footer-brand .brand-row .brand-text { height: 14px; opacity: 0.5; }
.footer-brand p { font-size: 0.78rem; line-height: 1.7; color: rgba(245,245,228,0.25); max-width: 280px; }
.footer-col h4 { font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; color: var(–teal); font-weight: 600; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 0.8rem; color: rgba(245,245,228,0.3); text-decoration: none; margin-bottom: 10px; transition: color 0.3s; font-weight: 400; }
.footer-col a:hover { color: var(–ivory); }
.footer-bottom { padding-top: 20px; border-top: 1px solid rgba(245,245,228,0.04); font-size: 0.7rem; color: rgba(245,245,228,0.15); }
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.9s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (max-width: 768px) {
nav { padding: 16px 20px; }
.nav-links { display: none; }
.hero { padding: 0 24px; }
.hero-locations { flex-direction: column; gap: 8px; }
.services { padding: 60px 0; }
.services .section-intro { padding: 0 24px; }
.svc-band { grid-template-columns: 1fr; gap: 14px; padding: 24px; }
.band-features { justify-content: flex-start; }
.why-us { padding: 60px 24px; }
.why-row { grid-template-columns: 1fr 1fr; }
.process { padding: 60px 24px; }
.process-grid { grid-template-columns: 1fr; }
.about-flip { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px; }
.about-visual-large { order: -1; }
.contact-section { padding: 60px 24px; }
.contact-grid { grid-template-columns: 1fr; gap: 40px; }
.contact-form-card { padding: 28px 20px; }
.footer-grid { grid-template-columns: 1fr; gap: 24px; }
footer { padding: 30px 24px; }
}
</style>
</head>
<body>
<div class=”ocean-layer”><div class=”blob blob-1″></div><div class=”blob blob-2″></div><div class=”blob blob-3″></div></div>
<div class=”particles” id=”particles”></div>
<canvas id=”ripple-canvas”></canvas>
<nav>
<div class=”nav-brand”><img src=”logo-cropped.png” alt=”IVRY IT”><img src=”brand-text.png” alt=”IVRY IT” class=”brand-text”></div>
<div class=”nav-links”>
<a href=”#services”>Services</a>
<div class=”nav-dropdown”>
<button class=”nav-drop-trigger”>Industries <svg width=”10″ height=”10″ viewBox=”0 0 24 24″ fill=”none” stroke=”currentColor” stroke-width=”2.5″ stroke-linecap=”round” stroke-linejoin=”round”><path d=”M6 9l6 6 6-6″/></svg></button>
<div class=”nav-drop-menu”>
<a href=”#”><span class=”drop-icon”><svg width=”15″ height=”15″ viewBox=”0 0 24 24″ fill=”none” stroke=”currentColor” stroke-width=”1.5″ stroke-linecap=”round” stroke-linejoin=”round”><path d=”M12 2a10 10 0 100 20 10 10 0 000-20z”/><path d=”M12 8v8″/><path d=”M8 12h8″/></svg></span> Dental</a>
<div class=”drop-divider”></div>
<a href=”msp-services.html”><span class=”drop-icon”><svg width=”15″ height=”15″ viewBox=”0 0 24 24″ fill=”none” stroke=”currentColor” stroke-width=”1.5″ stroke-linecap=”round” stroke-linejoin=”round”><rect x=”2″ y=”3″ width=”20″ height=”14″ rx=”2″/><path d=”M8 21h8″/><path d=”M12 17v4″/></svg></span> General MSP</a>
</div>
</div>
<a href=”#why”>Why Us</a><a href=”#process”>Process</a>
<a href=”#contact” class=”nav-cta-btn”>Get Started</a>
</div>
</nav>
<!– HERO (identical) –>
<section class=”hero”>
<div class=”hero-glow”></div>
<div class=”hero-badge”><span class=”dot”></span> Managed IT for Dental Clinics</div>
<h1>Technology, <span class=”accent”>Handled.</span><br><span class=”thin”>Together.</span></h1>
<p class=”hero-sub”>Specialized managed IT services, cybersecurity, and PHIPA compliance solutions designed exclusively for modern dental clinics. Protect patient data, ensure uptime, and focus on care.</p>
<div class=”hero-locations”>
<div class=”loc”><span><svg width=”14″ height=”14″ viewBox=”0 0 24 24″ fill=”none” stroke=”currentColor” stroke-width=”2″ stroke-linecap=”round” stroke-linejoin=”round”><path d=”M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0118 0z”/><circle cx=”12″ cy=”10″ r=”3″/></svg></span> Serving Kingston, Ontario</div>
<div class=”loc”><span><svg width=”14″ height=”14″ viewBox=”0 0 24 24″ fill=”none” stroke=”currentColor” stroke-width=”2″ stroke-linecap=”round” stroke-linejoin=”round”><path d=”M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0118 0z”/><circle cx=”12″ cy=”10″ r=”3″/></svg></span> Serving Belleville, Ontario</div>
<div class=”loc”><span><svg width=”14″ height=”14″ viewBox=”0 0 24 24″ fill=”none” stroke=”currentColor” stroke-width=”2″ stroke-linecap=”round” stroke-linejoin=”round”><path d=”M4 15s1-1 4-1 5 2 8 2 4-1 4-1V3s-1 1-4 1-5-2-8-2-4 1-4 1z”/><line x1=”4″ y1=”22″ x2=”4″ y2=”15″/></svg></span> Proudly Canadian</div>
</div>
<div class=”hero-actions”>
<a href=”#contact” class=”btn-glow”>Schedule Free Assessment</a>
<a href=”#services” class=”btn-ghost”>View Services</a>
</div>
</section>
<div class=”wave-divider”>
<svg viewBox=”0 0 2400 120″ fill=”none” xmlns=”http://www.w3.org/2000/svg”>
<path d=”M0 60 Q300 0 600 60 T1200 60 T1800 60 T2400 60 V120 H0 Z” fill=”rgba(78,160,182,0.04)”/>
<path d=”M0 80 Q300 30 600 80 T1200 80 T1800 80 T2400 80 V120 H0 Z” fill=”#060C14″/>
</svg>
</div>
<!– SERVICES: Horizontal bands with chip features –>
<section class=”services reveal” id=”services”>
<div class=”section-intro”>
<p class=”section-tag”>Our Services</p>
<h2>Complete IT Solutions for <span class=”accent”>Dental Practices</span></h2>
<p class=”section-sub”>From proactive monitoring to compliance management, we provide everything your dental practice needs to operate securely and efficiently.</p>
</div>
<div class=”svc-band”>
<div class=”band-icon”><svg width=”22″ height=”22″ viewBox=”0 0 24 24″ fill=”none” stroke=”currentColor” stroke-width=”1.5″ stroke-linecap=”round” stroke-linejoin=”round”><rect x=”2″ y=”3″ width=”20″ height=”14″ rx=”2″/><path d=”M8 21h8″/><path d=”M12 17v4″/></svg></div>
<div class=”band-info”><h3>Remote Management</h3><p>Proactive monitoring, patching, and remote support for workstations, servers, and network devices.</p></div>
<div class=”band-features”><span class=”chip”>24/7 Monitoring</span><span class=”chip”>Patch Management</span><span class=”chip”>Remote Support</span><span class=”chip”>Optimization</span></div>
</div>
<div class=”svc-band”>
<div class=”band-icon”><svg width=”22″ height=”22″ viewBox=”0 0 24 24″ fill=”none” stroke=”currentColor” stroke-width=”1.5″ stroke-linecap=”round” stroke-linejoin=”round”><path d=”M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z”/><path d=”M9 12l2 2 4-4″/></svg></div>
<div class=”band-info”><h3>Managed Security</h3><p>Endpoint protection, email security, and 24/7 threat response to stop ransomware and phishing.</p></div>
<div class=”band-features”><span class=”chip”>Threat Detection</span><span class=”chip”>Email Filtering</span><span class=”chip”>Ransomware Prevention</span><span class=”chip”>Incident Response</span></div>
</div>
<div class=”svc-band”>
<div class=”band-icon”><svg width=”22″ height=”22″ viewBox=”0 0 24 24″ fill=”none” stroke=”currentColor” stroke-width=”1.5″ stroke-linecap=”round” stroke-linejoin=”round”><path d=”M16 4h2a2 2 0 012 2v14a2 2 0 01-2 2H6a2 2 0 01-2-2V6a2 2 0 012-2h2″/><rect x=”8″ y=”2″ width=”8″ height=”4″ rx=”1″/><path d=”M9 14l2 2 4-4″/></svg></div>
<div class=”band-info”><h3>PHIPA Compliance</h3><p>PHIPA risk assessments, policies, and audit-ready reports with reminders and training.</p></div>
<div class=”band-features”><span class=”chip”>Risk Assessment</span><span class=”chip”>Policy Docs</span><span class=”chip”>Staff Training</span><span class=”chip”>Monitoring</span></div>
</div>
<div class=”svc-band”>
<div class=”band-icon”><svg width=”22″ height=”22″ viewBox=”0 0 24 24″ fill=”none” stroke=”currentColor” stroke-width=”1.5″ stroke-linecap=”round” stroke-linejoin=”round”><path d=”M18 10h-1.26A8 8 0 109 20h9a5 5 0 000-10z”/><path d=”M12 13v5″/><path d=”M9 16l3-3 3 3″/></svg></div>
<div class=”band-info”><h3>Data Backup & Recovery</h3><p>Secure cloud backup solutions with rapid recovery for practice management systems and patient records.</p></div>
<div class=”band-features”><span class=”chip”>Daily Backups</span><span class=”chip”>Cloud Storage</span><span class=”chip”>Rapid Recovery</span><span class=”chip”>DR Testing</span></div>
</div>
<div class=”svc-band”>
<div class=”band-icon”><svg width=”22″ height=”22″ viewBox=”0 0 24 24″ fill=”none” stroke=”currentColor” stroke-width=”1.5″ stroke-linecap=”round” stroke-linejoin=”round”><path d=”M3 18v-6a9 9 0 0118 0v6″/><path d=”M21 19a2 2 0 01-2 2h-1a2 2 0 01-2-2v-3a2 2 0 012-2h3zM3 19a2 2 0 002 2h1a2 2 0 002-2v-3a2 2 0 00-2-2H3z”/></svg></div>
<div class=”band-info”><h3>IT Help Desk</h3><p>Dedicated support team with fast response times and expert technical assistance.</p></div>
<div class=”band-features”><span class=”chip”>Unlimited Tickets</span><span class=”chip”>Phone & Email</span><span class=”chip”>On-Site Support</span><span class=”chip”>Training</span></div>
</div>
<div class=”svc-band”>
<div class=”band-icon”><svg width=”22″ height=”22″ viewBox=”0 0 24 24″ fill=”none” stroke=”currentColor” stroke-width=”1.5″ stroke-linecap=”round” stroke-linejoin=”round”><rect x=”9″ y=”2″ width=”6″ height=”6″ rx=”1″/><rect x=”2″ y=”16″ width=”6″ height=”6″ rx=”1″/><rect x=”16″ y=”16″ width=”6″ height=”6″ rx=”1″/><path d=”M12 8v4″/><path d=”M5 16v-2a2 2 0 012-2h10a2 2 0 012 2v2″/></svg></div>
<div class=”band-info”><h3>Network Infrastructure</h3><p>Design, implementation, and management of robust, secure network infrastructure for dental practices.</p></div>
<div class=”band-features”><span class=”chip”>Network Design</span><span class=”chip”>Secure WiFi</span><span class=”chip”>Firewalls</span><span class=”chip”>VPN Access</span></div>
</div>
</section>
<div class=”wave-divider-inv”>
<svg viewBox=”0 0 2400 120″ fill=”none” xmlns=”http://www.w3.org/2000/svg”>
<path d=”M0 60 Q300 0 600 60 T1200 60 T1800 60 T2400 60 V120 H0 Z” fill=”rgba(78,160,182,0.04)”/>
<path d=”M0 80 Q300 30 600 80 T1200 80 T1800 80 T2400 80 V120 H0 Z” fill=”#060C14″/>
</svg>
</div>
<!– WHY US: Single row of narrow pill cards –>
<section class=”why-us reveal” id=”why”>
<div class=”section-intro”>
<p class=”section-tag”>Why Choose Us</p>
<h2>Built for <span class=”accent”>Dental Practices</span></h2>
<p class=”section-sub”>We understand the unique IT challenges dental clinics face. Our specialized solutions ensure compliance, security, and reliability.</p>
</div>
<div class=”why-row”>
<div class=”why-pill”><span class=”why-icon”><svg width=”24″ height=”24″ viewBox=”0 0 24 24″ fill=”none” stroke=”currentColor” stroke-width=”1.5″ stroke-linecap=”round” stroke-linejoin=”round”><path d=”M12 2a10 10 0 100 20 10 10 0 000-20z”/><path d=”M12 8v8″/><path d=”M8 12h8″/></svg></span><h3>Dental-Specific Expertise</h3><p>Deep experience with practice management software and imaging systems.</p></div>
<div class=”why-pill”><span class=”why-icon”><svg width=”24″ height=”24″ viewBox=”0 0 24 24″ fill=”none” stroke=”currentColor” stroke-width=”1.5″ stroke-linecap=”round” stroke-linejoin=”round”><polyline points=”22 12 18 12 15 21 9 3 6 12 2 12″/></svg></span><h3>Proactive Monitoring</h3><p>Issues resolved before they impact your practice.</p></div>
<div class=”why-pill”><span class=”why-icon”><svg width=”24″ height=”24″ viewBox=”0 0 24 24″ fill=”none” stroke=”currentColor” stroke-width=”1.5″ stroke-linecap=”round” stroke-linejoin=”round”><rect x=”3″ y=”11″ width=”18″ height=”11″ rx=”2″/><path d=”M7 11V7a5 5 0 0110 0v4″/></svg></span><h3>Enhanced Security</h3><p>Multi-layered protection against all threat types.</p></div>
<div class=”why-pill”><span class=”why-icon”><svg width=”24″ height=”24″ viewBox=”0 0 24 24″ fill=”none” stroke=”currentColor” stroke-width=”1.5″ stroke-linecap=”round” stroke-linejoin=”round”><path d=”M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z”/><path d=”M9 12l2 2 4-4″/></svg></span><h3>PHIPA Compliance</h3><p>Comprehensive assessments, policies, and monitoring.</p></div>
<div class=”why-pill”><span class=”why-icon”><svg width=”24″ height=”24″ viewBox=”0 0 24 24″ fill=”none” stroke=”currentColor” stroke-width=”1.5″ stroke-linecap=”round” stroke-linejoin=”round”><line x1=”12″ y1=”1″ x2=”12″ y2=”23″/><path d=”M17 5H9.5a3.5 3.5 0 000 7h5a3.5 3.5 0 010 7H6″/></svg></span><h3>Predictable Costs</h3><p>Fixed monthly pricing, no hidden fees.</p></div>
<div class=”why-pill”><span class=”why-icon”><svg width=”24″ height=”24″ viewBox=”0 0 24 24″ fill=”none” stroke=”currentColor” stroke-width=”1.5″ stroke-linecap=”round” stroke-linejoin=”round”><path d=”M20.84 4.61a5.5 5.5 0 00-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 00-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 000-7.78z”/></svg></span><h3>Focus on Care</h3><p>We handle IT so you focus on patients.</p></div>
</div>
</section>
<div class=”wave-divider”>
<svg viewBox=”0 0 2400 120″ fill=”none” xmlns=”http://www.w3.org/2000/svg”>
<path d=”M0 60 Q300 0 600 60 T1200 60 T1800 60 T2400 60 V120 H0 Z” fill=”rgba(78,160,182,0.04)”/>
<path d=”M0 80 Q300 30 600 80 T1200 80 T1800 80 T2400 80 V120 H0 Z” fill=”#060C14″/>
</svg>
</div>
<!– PROCESS: 2×2 grid with watermark numbers –>
<section class=”process reveal” id=”process”>
<div class=”section-intro”>
<p class=”section-tag”>How It Works</p>
<h2>Simple <span class=”accent”>Onboarding</span> Process</h2>
<p class=”section-sub”>Get started with IVRY IT in four easy steps. We make the transition seamless with minimal disruption to your practice.</p>
</div>
<div class=”process-grid”>
<div class=”pgrid-card”><span class=”pgrid-num”>01</span><h3>Assessment</h3><p>Free IT infrastructure assessment to identify vulnerabilities, compliance gaps, and optimization opportunities.</p></div>
<div class=”pgrid-card”><span class=”pgrid-num”>02</span><h3>Proposal</h3><p>Customized service plan tailored to your practice’s needs with transparent pricing and clear deliverables.</p></div>
<div class=”pgrid-card”><span class=”pgrid-num”>03</span><h3>Onboarding</h3><p>Smooth transition with monitoring setup, security implementation, and staff training — all with minimal downtime.</p></div>
<div class=”pgrid-card”><span class=”pgrid-num”>04</span><h3>Support</h3><p>Ongoing proactive monitoring, regular check-ins, and 24/7 support to keep your practice running smoothly.</p></div>
</div>
</section>
<div class=”wave-divider-inv”>
<svg viewBox=”0 0 2400 120″ fill=”none” xmlns=”http://www.w3.org/2000/svg”>
<path d=”M0 60 Q300 0 600 60 T1200 60 T1800 60 T2400 60 V120 H0 Z” fill=”rgba(78,160,182,0.04)”/>
<path d=”M0 80 Q300 30 600 80 T1200 80 T1800 80 T2400 80 V120 H0 Z” fill=”#060C14″/>
</svg>
</div>
<!– ABOUT: Flipped — text left, large logo right –>
<section class=”about-flip reveal” id=”about”>
<div class=”about-text”>
<p class=”section-tag”>About IVRY IT</p>
<h2>Dental IT, <span class=”accent”>Simplified</span></h2>
<p>We specialize in managed IT services for dental practices in Kingston and Belleville, Ontario. We understand the unique demands of practice management software, imaging systems, and PHIPA compliance.</p>
<p>Our proactive approach means issues get resolved before they disrupt patient care. 24/7 emergency support and a team that speaks your language — technology becomes an asset, not a headache.</p>
<a href=”#contact” class=”btn-glow”>Work With Us</a>
</div>
<div class=”about-visual-large” id=”logo-hover-area”>
<div class=”logo-hitbox” id=”logo-hitbox”></div>
<div class=”glow-ring”></div>
<div class=”glow-ring”></div>
<img src=”logo.png” alt=”IVRY IT Mammoth”>
</div>
</section>
<!– CONTACT: Form + Info –>
<section class=”contact-section reveal” id=”contact”>
<div class=”section-intro”>
<p class=”section-tag”>Get In Touch</p>
<h2>Ready to Secure Your <span class=”accent”>Practice?</span></h2>
<p class=”section-sub”>Schedule a free IT assessment and discover how we can help protect your practice and improve your operations.</p>
</div>
<div class=”contact-grid”>
<div class=”contact-info”>
<h3>Let’s Connect</h3>
<p>Reach out using any of the methods below, or fill out the form and we’ll get back to you within 24 hours.</p>
<div class=”contact-methods”>
<div class=”contact-method”>
<div class=”cm-icon”><svg width=”18″ height=”18″ viewBox=”0 0 24 24″ fill=”none” stroke=”currentColor” stroke-width=”1.5″ stroke-linecap=”round” stroke-linejoin=”round”><rect x=”2″ y=”4″ width=”20″ height=”16″ rx=”2″/><path d=”M22 7l-10 7L2 7″/></svg></div>
<div>
<div class=”cm-label”>Email</div>
<div class=”cm-value”><a href=”mailto:[email protected]”>[email protected]</a></div>
</div>
</div>
<div class=”contact-method”>
<div class=”cm-icon”><svg width=”18″ height=”18″ viewBox=”0 0 24 24″ fill=”none” stroke=”currentColor” stroke-width=”1.5″ stroke-linecap=”round” stroke-linejoin=”round”><circle cx=”12″ cy=”12″ r=”10″/><path d=”M12 6v6l4 2″/></svg></div>
<div>
<div class=”cm-label”>Hours</div>
<div class=”cm-value”>24/7 Emergency Support</div>
<div class=”cm-sub”>Office: Mon–Fri 9AM–6PM</div>
</div>
</div>
</div>
</div>
<form class=”contact-form-card” id=”contactForm” method=”POST” action=”https://formspree.io/f/xkgqzbkn”>
<input type=”hidden” name=”_subject” value=”New Contact Form Submission – IVRY IT Website”>
<input type=”hidden” name=”_next” value=”https://ivryit.com/?success=true”>
<div class=”form-group”>
<label for=”name”>Full Name *</label>
<input type=”text” id=”name” name=”name” required placeholder=”Dr. John Smith”>
</div>
<div class=”form-group”>
<label for=”email”>Email Address *</label>
<input type=”email” id=”email” name=”_replyto” required placeholder=”[email protected]”>
</div>
<div class=”form-group”>
<label for=”practice”>Practice Name</label>
<input type=”text” id=”practice” name=”practice” placeholder=”Your Dental Clinic”>
</div>
<div class=”form-group”>
<label for=”service”>Service Interest</label>
<select id=”service” name=”service”>
<option value=””>Select a service…</option>
<option value=”full”>Complete IT Management</option>
<option value=”security”>Managed Security</option>
<option value=”compliance”>PHIPA Compliance</option>
<option value=”backup”>Backup & Recovery</option>
<option value=”assessment”>Free Assessment</option>
</select>
</div>
<div class=”form-group”>
<label for=”message”>Message</label>
<textarea id=”message” name=”message” placeholder=”Tell us about your IT needs…”></textarea>
</div>
<button type=”submit” class=”form-submit”>Schedule Free Assessment</button>
</form>
</div>
</section>
<footer>
<div class=”footer-grid”>
<div class=”footer-brand”>
<div class=”brand-row”><img src=”logo-cropped.png” alt=”IVRY IT”><img src=”brand-text.png” alt=”IVRY IT” class=”brand-text”></div>
<p>Specialized managed IT services and cybersecurity for dental practices in Kingston and Belleville, Ontario.</p>
</div>
<div class=”footer-col”><h4>Services</h4><a href=”#”>Remote Management</a><a href=”#”>Managed Security</a><a href=”#”>PHIPA Compliance</a><a href=”#”>Data Backup</a><a href=”#”>IT Help Desk</a></div>
<div class=”footer-col”><h4>Company</h4><a href=”#why”>Why Choose Us</a><a href=”#process”>Our Process</a><a href=”#contact”>Contact</a></div>
<div class=”footer-col”><h4>Resources</h4><a href=”https://ivryit.com/phipa-guide.html”>PHIPA Compliance Guide</a><a href=”#”>Security Best Practices</a></div>
</div>
<div class=”footer-bottom”>© 2025 IVRY IT. All rights reserved.</div>
</footer>
<script>
const container = document.getElementById(‘particles’);
for (let i = 0; i < 30; i++) { const p = document.createElement(‘div’); p.className = ‘particle’; p.style.left = Math.random() * 100 + ‘%’; p.style.animationDuration = (8 + Math.random() * 16) + ‘s’; p.style.animationDelay = Math.random() * 10 + ‘s’; p.style.width = p.style.height = (1 + Math.random() * 3) + ‘px’; container.appendChild(p); }
window.addEventListener(‘scroll’, () => { document.querySelector(‘nav’).classList.toggle(‘solid’, window.scrollY > 60); });
const obs = new IntersectionObserver(entries => { entries.forEach(e => { if (e.isIntersecting) { e.target.classList.add(‘visible’); obs.unobserve(e.target); }}); }, { threshold: 0.1 });
document.querySelectorAll(‘.reveal’).forEach(el => obs.observe(el));
// === LOGO WATER RIPPLE EFFECT ===
(function() {
const canvas = document.getElementById(‘ripple-canvas’);
const ctx = canvas.getContext(‘2d’);
const hitbox = document.getElementById(‘logo-hitbox’);
const logoArea = document.getElementById(‘logo-hover-area’);
const logoImg = logoArea.querySelector(‘img’);
const ripples = [];
let animId = null;
function resize() {
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
}
resize();
window.addEventListener(‘resize’, resize);
// Get logo center in PAGE coordinates (not viewport)
function getLogoCenterPage() {
const rect = logoImg.getBoundingClientRect();
return {
x: rect.left + rect.width / 2 + window.scrollX,
y: rect.top + rect.height * 0.45 + window.scrollY
};
}
function addRipple() {
const center = getLogoCenterPage();
const maxR = Math.sqrt(canvas.width * canvas.width + canvas.height * canvas.height) * 1.2;
ripples.push({ px: center.x, py: center.y, radius: 10, maxRadius: maxR, opacity: 0.45, speed: 3 });
}
function animate() {
ctx.clearRect(0, 0, canvas.width, canvas.height);
// Current scroll to convert page coords → viewport coords
const sx = window.scrollX;
const sy = window.scrollY;
for (let i = ripples.length – 1; i >= 0; i–) {
const r = ripples[i];
r.radius += r.speed;
r.speed = Math.max(1.5, r.speed – 0.003);
const progress = r.radius / r.maxRadius;
r.opacity = Math.max(0, 0.45 * (1 – progress * progress));
if (r.opacity <= 0) { ripples.splice(i, 1); continue; }
// Convert page position to current viewport position
const vx = r.px – sx;
const vy = r.py – sy;
// Main crisp ring
ctx.beginPath();
ctx.arc(vx, vy, r.radius, 0, Math.PI * 2);
ctx.strokeStyle = `rgba(78, 160, 182, ${r.opacity})`;
ctx.lineWidth = 1.5;
ctx.stroke();
// Inner glow ring
ctx.beginPath();
ctx.arc(vx, vy, Math.max(0, r.radius – 5), 0, Math.PI * 2);
ctx.strokeStyle = `rgba(78, 160, 182, ${r.opacity * 0.3})`;
ctx.lineWidth = 5;
ctx.stroke();
// Outer soft ring
ctx.beginPath();
ctx.arc(vx, vy, r.radius + 8, 0, Math.PI * 2);
ctx.strokeStyle = `rgba(78, 160, 182, ${r.opacity * 0.12})`;
ctx.lineWidth = 10;
ctx.stroke();
}
if (ripples.length > 0) {
animId = requestAnimationFrame(animate);
} else {
animId = null;
}
}
function startAnim() {
if (!animId) animId = requestAnimationFrame(animate);
}
hitbox.addEventListener(‘mouseenter’, function() {
logoArea.classList.add(‘ripple-active’);
addRipple();
startAnim();
});
hitbox.addEventListener(‘mouseleave’, function() {
logoArea.classList.remove(‘ripple-active’);
addRipple();
startAnim();
});
})();
</script>
</body>
</html>