*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
 --cyan: #29ABE2;
 --cyan-dark: #1a8fc0;
 --cyan-light: #e8f6fd;
 --gray: #808285;
 --navy: #0d1e33;
 --navy-mid: #0f2d4a;
 --ink: #1a2e4a;
 --white: #ffffff;
 --off-white: #f8fbfd;
 --border: #e2eef5;
 --font: 'Poppins', sans-serif;
 --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--ink); background: var(--white); overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.section { padding: 100px 0; }
.section-label { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--cyan); margin-bottom: 14px; }
.section-title { font-size: clamp(30px, 3.8vw, 52px); font-weight: 800; line-height: 1.1; color: var(--ink); margin-bottom: 18px; }
.section-subtitle { font-size: 17px; font-weight: 400; line-height: 1.75; color: var(--gray); max-width: 600px; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.btn-primary { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 100px; background: var(--cyan); color: #fff; font-family: var(--font); font-size: 15px; font-weight: 700; border: none; cursor: pointer; transition: all 0.2s var(--ease); }
.btn-primary:hover { background: var(--cyan-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(41,171,226,0.35); }
.btn-ghost { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 100px; background: transparent; color: #fff; font-family: var(--font); font-size: 15px; font-weight: 600; border: 1.5px solid rgba(255,255,255,0.3); cursor: pointer; transition: all 0.2s var(--ease); }
.btn-ghost:hover { border-color: rgba(255,255,255,0.65); background: rgba(255,255,255,0.07); }

/* ── NAV ── */
#nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background 0.3s, box-shadow 0.3s; padding: 0 40px; }
#nav.scrolled { background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--border); }
.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo img { height: 38px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.85); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--cyan); }
#nav.scrolled .nav-links a { color: var(--gray); }
#nav.scrolled .nav-links a:hover, #nav.scrolled .nav-links a.active { color: var(--cyan); }
.nav-cta { padding: 10px 24px; border-radius: 100px; background: var(--cyan); color: #fff; font-size: 13px; font-weight: 700; font-family: var(--font); border: none; cursor: pointer; transition: all 0.2s; }
.nav-cta:hover { background: var(--cyan-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(41,171,226,0.4); }

/* ══════════════════════════════════════
 HERO
══════════════════════════════════════ */
#hero {
 min-height: 100vh;
 background: linear-gradient(160deg, var(--navy) 0%, #0b2540 55%, #0e3a5e 100%);
 display: flex; flex-direction: column; justify-content: flex-end;
 position: relative; overflow: hidden;
 padding-bottom: 0;
}
.hero-bg-glow {
 position: absolute; inset: 0; pointer-events: none;
 background: radial-gradient(ellipse 80% 60% at 65% 40%, rgba(41,171,226,0.1) 0%, transparent 70%);
}
.hero-grid-lines {
 position: absolute; inset: 0; pointer-events: none; opacity: 0.04;
 background-image: linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
 background-size: 60px 60px;
}
.hero-content {
 position: relative; z-index: 2;
 display: grid; grid-template-columns: 1fr 1fr;
 min-height: 100vh; align-items: center;
 max-width: 1200px; margin: 0 auto; padding: 120px 40px 60px; width: 100%;
 gap: 60px;
}
.hero-left {}
.hero-badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 14px; border-radius: 100px; background: rgba(41,171,226,0.12); border: 1px solid rgba(41,171,226,0.3); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: var(--cyan); text-transform: uppercase; margin-bottom: 24px; }
.hero-headline { font-size: clamp(34px, 4.5vw, 60px); font-weight: 900; line-height: 1.07; color: #fff; margin-bottom: 20px; }
.hero-headline em { color: var(--cyan); font-style: normal; }
.hero-sub { font-size: 17px; font-weight: 400; line-height: 1.75; color: rgba(255,255,255,0.6); margin-bottom: 16px; max-width: 460px; }
.hero-infra { font-size: 13px; font-weight: 600; line-height: 1.6; color: rgba(41,171,226,0.75); margin-bottom: 32px; max-width: 460px; border-left: 2px solid rgba(41,171,226,0.4); padding-left: 12px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-pills { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-pill { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.4); }
.hero-pill-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); }

/* Hero right, image + floating UI */
.hero-right { position: relative; }
.hero-img-wrap {
 border-radius: 20px; overflow: hidden;
 box-shadow: 0 40px 100px rgba(0,0,0,0.5);
 position: relative;
}
.hero-img-wrap img { width: 100%; height: 420px; object-fit: cover; object-position: center top; }
.hero-img-overlay {
 position: absolute; inset: 0;
 background: linear-gradient(135deg, rgba(13,30,51,0.15) 0%, transparent 60%);
 border-radius: 20px;
}
/* Floating UI chips */
.hero-chip {
 position: absolute; display: flex; align-items: center; gap: 8px;
 background: rgba(13,30,51,0.85); backdrop-filter: blur(12px);
 border: 1px solid rgba(41,171,226,0.25); border-radius: 12px;
 padding: 10px 14px; animation: floatY 3s ease-in-out infinite;
}
.hero-chip-icon { width: 28px; height: 28px; border-radius: 8px; background: var(--cyan); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-chip-label { font-size: 11px; font-weight: 700; color: #fff; white-space: nowrap; }
.hero-chip-sub { font-size: 10px; color: rgba(255,255,255,0.45); white-space: nowrap; }
.chip-1 { top: 20px; left: -30px; animation-delay: 0s; }
.chip-2 { top: 50%; right: -24px; transform: translateY(-50%); animation-delay: 0.8s; }
.chip-3 { bottom: 20px; left: -24px; animation-delay: 1.6s; }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.chip-2 { animation: floatY2 3.2s ease-in-out infinite; }
@keyframes floatY2 { 0%,100% { transform: translateY(-50%); } 50% { transform: translateY(calc(-50% - 8px)); } }

/* Waveform */
.waveform-bar { display: flex; align-items: flex-end; gap: 3px; }
.waveform-bar span { width: 3px; background: var(--cyan); border-radius: 2px; animation: wv 1.2s ease-in-out infinite; }
@keyframes wv { 0%,100% { transform: scaleY(0.3); } 50% { transform: scaleY(1); } }

/* ══════════════════════════════════════
 THREE DEVICES
══════════════════════════════════════ */
#devices { background: var(--off-white); }
.devices-header { text-align: center; margin-bottom: 72px; }
.devices-header .section-subtitle { margin: 0 auto; }
.devices-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 28px; }
.devices-grid > .device-card { grid-column: span 2; }
.devices-grid > .device-card.span-3 { grid-column: span 3; }
.device-card {
 background: var(--white); border-radius: 24px; overflow: hidden;
 border: 1.5px solid var(--border);
 transition: all 0.4s var(--ease);
 display: flex; flex-direction: column;
}
.device-card:hover { border-color: rgba(41,171,226,0.4); box-shadow: 0 24px 72px rgba(41,171,226,0.1); transform: translateY(-6px); }
.device-img-wrap {
 background: linear-gradient(180deg, #f4f9fc 0%, #e8f2f8 55%, #dbeaf3 100%);
 padding: 40px 32px 0; display: flex; align-items: flex-end; justify-content: center;
 min-height: 240px; position: relative; overflow: hidden;
 border-bottom: 1px solid rgba(41,171,226,0.12);
}
.device-img-wrap::before {
 content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
 width: 200px; height: 36px; border-radius: 50%;
 background: rgba(15,40,70,0.18); filter: blur(18px);
}
.device-img-wrap img { width: 200px; height: 200px; object-fit: contain; object-position: center; position: relative; z-index: 1; filter: drop-shadow(0 18px 28px rgba(15,40,70,0.22)); }
.device-glow { position: absolute; top: 28%; left: 50%; transform: translate(-50%,-50%); width: 240px; height: 240px; border-radius: 50%; background: radial-gradient(circle, rgba(41,171,226,0.18) 0%, transparent 70%); pointer-events: none; }
.device-body { padding: 32px 28px 28px; flex: 1; display: flex; flex-direction: column; }
.device-tag { display: inline-flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cyan); margin-bottom: 10px; }
.device-name { font-size: 22px; font-weight: 800; color: var(--ink); margin-bottom: 4px; }
.device-role { font-size: 13px; font-weight: 500; color: var(--gray); margin-bottom: 14px; }
.device-desc { font-size: 14px; font-weight: 400; color: var(--gray); line-height: 1.7; margin-bottom: 20px; }
.device-features { list-style: none; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.device-features li { display: flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 500; color: var(--ink); }
.device-features li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); flex-shrink: 0; }

/* ══════════════════════════════════════
 HOW IT WORKS, PHASE TIMELINE
══════════════════════════════════════ */
#howitworks { background: var(--white); }
.hiw-header { text-align: center; margin-bottom: 80px; }
.hiw-header .section-subtitle { margin: 0 auto; }
/* ── CLINICAL WORKFLOW ── */
.workflow-connector { position: relative; height: 0; margin: -20px 0 0; overflow: visible; }
.workflow-grid {
 display: grid;
 grid-template-columns: 1fr 48px 1.18fr 48px 1fr;
 gap: 0; align-items: stretch; margin-top: 48px;
}
.wf-connector-arrow { display: flex; align-items: center; justify-content: center; padding: 0 2px; margin-top: 0; }
.wf-connector-arrow svg { width: 60px; height: 36px; opacity: 0.85; }
.wf-panel {
 background: var(--white); border-radius: 24px;
 border: 1.5px solid var(--border); padding: 32px 28px 28px;
 display: flex; flex-direction: column; gap: 0;
 transition: all 0.3s var(--ease); position: relative;
}
.wf-bullets { margin-top: auto; }
.wf-panel:hover { box-shadow: 0 20px 60px rgba(41,171,226,0.09); border-color: rgba(41,171,226,0.25); }
.wf-panel-hero {
 background: var(--white);
 border-color: rgba(41,171,226,0.35);
 box-shadow: 0 12px 48px rgba(41,171,226,0.1);
}
.wf-panel-hero:hover { box-shadow: 0 24px 72px rgba(41,171,226,0.18); }
.wf-hero-glow {
 position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
 width: 300px; height: 200px; border-radius: 50%;
 background: radial-gradient(circle, rgba(41,171,226,0.07) 0%, transparent 70%);
 pointer-events: none;
}
.wf-panel-header { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.wf-stage-badge {
 width: 32px; height: 32px; border-radius: 10px; background: var(--navy);
 color: #fff; font-size: 14px; font-weight: 800;
 display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.wf-badge-hero { background: var(--cyan); }
.wf-stage-label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cyan); }
.wf-hero-tag { margin-left: auto; font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white); background: var(--cyan); padding: 3px 10px; border-radius: 100px; }
.wf-title { font-size: 19px; font-weight: 800; color: var(--ink); line-height: 1.25; margin-bottom: 18px; }
.wf-devices { display: flex; gap: 12px; margin-bottom: 18px; flex-wrap: wrap; }
.wf-device-card {
 flex: 1; min-width: 0; background: #f8fbfd; border-radius: 14px;
 border: 1px solid var(--border); padding: 14px 10px 10px;
 display: flex; flex-direction: column; align-items: center; gap: 6px;
 transition: all 0.25s var(--ease);
}
.wf-device-card:hover { box-shadow: 0 6px 20px rgba(41,171,226,0.12); border-color: rgba(41,171,226,0.3); transform: translateY(-3px); }
.wf-device-card img { width: 80px; height: 80px; object-fit: contain; object-position: center; }
.wf-device-wide img { width: 80px; height: 80px; }
.wf-device-sm img { width: 80px; height: 80px; }
.wf-device-name { font-size: 11px; font-weight: 700; color: var(--ink); text-align: center; }
.wf-device-desc { font-size: 10px; color: var(--gray); text-align: center; line-height: 1.35; }
.wf-devices-hero { gap: 8px; }
.wf-plus { display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; color: var(--cyan); flex-shrink: 0; padding: 0 2px; align-self: center; }
.wf-lifestyle { width: 100%; height: 200px; object-fit: cover; object-position: center; border-radius: 12px; margin-bottom: 16px; display: block; }
.wf-copy { font-size: 13px; color: var(--gray); line-height: 1.7; margin-bottom: 14px; }
.wf-bullets { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.wf-bullets li { display: flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 500; color: var(--ink); }
.wf-bullets li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); flex-shrink: 0; }
@media (max-width: 960px) {
 .workflow-grid { grid-template-columns: 1fr; gap: 16px; }
 .wf-connector-arrow { display: none; }
}

/* ══════════════════════════════════════
 CLOUD DIAGRAM
══════════════════════════════════════ */
#cloud { background: var(--navy); }
#cloud .section-label { color: rgba(41,171,226,0.6); }
#cloud .section-title { color: #fff; }
#cloud .section-subtitle { color: rgba(255,255,255,0.5); }
.cloud-header { text-align: center; margin-bottom: 72px; }
.cloud-header .section-subtitle { margin: 0 auto; }
.cloud-diagram-tree { width: 100%; max-width: 860px; margin: 0 auto; }
/* Orbit node styles */
.orbit-node { cursor: default; }
.orbit-node:hover .orbit-circle { filter: brightness(1.3); }
.node-label { font-family: 'Poppins', sans-serif; font-size: 11px; font-weight: 600; fill: rgba(255,255,255,0.7); text-anchor: middle; }
.node-sub { font-family: 'Poppins', sans-serif; font-size: 9.5px; fill: rgba(255,255,255,0.4); text-anchor: middle; }
.center-label { font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 800; fill: #fff; text-anchor: middle; }
.center-sub { font-family: 'Poppins', sans-serif; font-size: 10px; fill: rgba(255,255,255,0.5); text-anchor: middle; }
/* Animated connection lines */
.conn-line { stroke: rgba(41,171,226,0.3); stroke-width: 1.5; fill: none; stroke-dasharray: 6 4; animation: dashMove 3s linear infinite; }
@keyframes dashMove { to { stroke-dashoffset: -100; } }
/* Pulsing center */
@keyframes pulse { 0%,100% { r: 72; opacity: 0.15; } 50% { r: 82; opacity: 0; } }
@keyframes pulse2 { 0%,100% { r: 56; opacity: 0.1; } 50% { r: 66; opacity: 0; } }
/* Orbit rotation */
.orbit-ring { animation: orbitSpin 40s linear infinite; transform-origin: 390px 390px; }
.orbit-ring-2 { animation: orbitSpin2 55s linear infinite; transform-origin: 390px 390px; }
@keyframes orbitSpin { to { transform: rotate(360deg); } }
@keyframes orbitSpin2 { to { transform: rotate(-360deg); } }
/* Floating particles */
.particle { animation: particleFloat 4s ease-in-out infinite; }
@keyframes particleFloat { 0%,100% { opacity:0.4; transform: translateY(0); } 50% { opacity:0.9; transform: translateY(-12px); } }

/* ══════════════════════════════════════
 BENEFITS GRID
══════════════════════════════════════ */
#benefits { background: var(--off-white); }
.benefits-header { text-align: center; margin-bottom: 64px; }
.benefits-header .section-subtitle { margin: 0 auto; }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit-card {
 background: var(--white); border: 1.5px solid var(--border); border-radius: 20px;
 padding: 36px 28px; transition: all 0.3s var(--ease);
}
.benefit-card:hover { border-color: rgba(41,171,226,0.35); box-shadow: 0 16px 48px rgba(41,171,226,0.09); transform: translateY(-4px); }
.benefit-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--cyan-light); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.benefit-icon svg { width: 24px; height: 24px; }
.benefit-title { font-size: 17px; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.benefit-body { font-size: 14px; font-weight: 400; color: var(--gray); line-height: 1.7; }

/* ══════════════════════════════════════
 REAL CLINICS
══════════════════════════════════════ */
#realclinics { background: var(--white); }
.realclinics-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.realclinics-img-wrap { position: relative; }
.realclinics-img-wrap img { width: 100%; border-radius: 20px; box-shadow: 0 32px 80px rgba(13,30,51,0.15); }
.realclinics-badge {
 position: absolute; bottom: -18px; right: -18px;
 background: var(--white); border-radius: 16px; padding: 16px 20px;
 box-shadow: 0 8px 32px rgba(13,30,51,0.12);
 display: flex; align-items: center; gap: 12px;
}
.realclinics-badge-icon { width: 38px; height: 38px; border-radius: 10px; background: var(--cyan); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.usecase-list { display: flex; flex-direction: column; gap: 16px; margin: 28px 0; }
.usecase-item { display: flex; align-items: flex-start; gap: 14px; padding: 16px; border-radius: 14px; background: var(--off-white); border: 1px solid var(--border); transition: all 0.2s; }
.usecase-item:hover { border-color: rgba(41,171,226,0.3); background: var(--cyan-light); }
.usecase-num { width: 32px; height: 32px; border-radius: 8px; background: var(--cyan); color: #fff; font-size: 13px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.usecase-title { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.usecase-body { font-size: 13px; color: var(--gray); line-height: 1.5; }

/* ══════════════════════════════════════
 PILOT ACCESS
══════════════════════════════════════ */
#pilot { background: #f8fbfd; padding: 110px 0; }
.pilot-grid {
 max-width: 1100px; margin: 0 auto;
 display: grid; grid-template-columns: 1.05fr 1fr;
 gap: 80px; align-items: center;
}
.pilot-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cyan); margin-bottom: 18px; display: inline-flex; align-items: center; gap: 10px; }
.pilot-eyebrow::before { content: ""; width: 28px; height: 1.5px; background: var(--cyan); display: inline-block; }
.pilot-title { font-size: clamp(30px, 3.4vw, 44px); font-weight: 800; line-height: 1.12; color: var(--ink); letter-spacing: -0.015em; margin-bottom: 20px; }
.pilot-sub { font-size: 16px; line-height: 1.7; color: var(--gray); margin-bottom: 22px; max-width: 520px; }
.pilot-body { font-size: 15px; line-height: 1.75; color: #5a6878; margin-bottom: 36px; max-width: 520px; }

.pilot-card {
 background: #fff; border-radius: 18px;
 padding: 40px 38px;
 box-shadow: 0 1px 0 rgba(13,30,51,0.04), 0 24px 60px -24px rgba(13,30,51,0.18);
}
.pilot-card-label { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cyan); margin-bottom: 4px; }
.pilot-card-heading { font-size: 19px; font-weight: 700; color: var(--ink); margin-bottom: 22px; letter-spacing: -0.01em; }
.pilot-benefits { list-style: none; margin: 0 0 28px; padding: 0; }
.pilot-benefits li {
 display: flex; align-items: flex-start; gap: 14px;
 padding: 14px 0; border-top: 1px solid #eef3f7;
 font-size: 14.5px; line-height: 1.55; color: var(--ink);
}
.pilot-benefits li:last-child { border-bottom: 1px solid #eef3f7; }
.pilot-benefits .pilot-check {
 flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%;
 background: var(--cyan-light); color: var(--cyan);
 display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.pilot-benefits .pilot-check svg { width: 10px; height: 10px; }

.pilot-meta { display: flex; gap: 28px; margin-bottom: 28px; padding-top: 4px; }
.pilot-meta-item { flex: 1; }
.pilot-meta-label { font-size: 10.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray); margin-bottom: 6px; }
.pilot-meta-value { font-size: 14px; font-weight: 600; color: var(--ink); line-height: 1.4; }

.pilot-btn {
 display: inline-flex; align-items: center; justify-content: center; gap: 10px;
 width: 100%; padding: 15px 28px; border-radius: 100px;
 background: var(--cyan); color: #fff;
 font-family: var(--font); font-size: 15px; font-weight: 700;
 border: none; cursor: pointer; text-decoration: none;
 transition: all 0.2s ease;
}
.pilot-btn:hover { background: var(--cyan-dark); transform: translateY(-1px); box-shadow: 0 10px 28px rgba(41,171,226,0.32); }
.pilot-btn svg { width: 14px; height: 14px; }
.pilot-microcopy { text-align: center; font-size: 12px; color: var(--gray); margin-top: 14px; }

@media (max-width: 900px) {
 #pilot { padding: 80px 0; }
 .pilot-grid { grid-template-columns: 1fr; gap: 48px; }
 .pilot-card { padding: 32px 26px; }
 .pilot-meta { flex-direction: column; gap: 18px; }
}

/* ══════════════════════════════════════
 CTA
══════════════════════════════════════ */
#cta {
 background: linear-gradient(150deg, var(--navy) 0%, #0f3050 100%);
 padding: 120px 0; text-align: center;
}
#cta .section-title { color: #fff; margin-bottom: 12px; }
#cta .section-subtitle { color: rgba(255,255,255,0.55); margin: 0 auto 48px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════
 FOOTER
══════════════════════════════════════ */
footer { background: var(--navy); padding: 56px 40px 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 28px; }
.footer-left { display: flex; flex-direction: column; gap: 20px; }
.footer-logo { display: inline-block; }
.footer-logo img { height: 36px; object-fit: contain; display: block; max-width: 160px; }
.footer-partner-label { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 8px; }
.footer-partner img { height: 56px; max-width: 220px; object-fit: contain; display: block; opacity: 0.85; filter: brightness(0) invert(1); transition: opacity 0.2s; }
.footer-partner img:hover { opacity: 1; }
.footer-social { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.social-icon { width: 32px; height: 32px; border-radius: 8px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.45); transition: all 0.2s; text-decoration: none; }
.social-icon:hover { background: var(--cyan); border-color: var(--cyan); color: #fff; }
.footer-links { display: flex; gap: 48px; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.55); margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--cyan); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.28); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.28); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

@media (max-width: 960px) {
 .hero-content { grid-template-columns: 1fr; gap: 40px; }
 .hero-right { display: none; }
 .devices-grid { grid-template-columns: 1fr; }
 .devices-grid > .device-card,
 .devices-grid > .device-card.span-3 { grid-column: span 1; }
 .phases, .benefits-grid { grid-template-columns: 1fr; }
 .phases::before { display: none; }
 .realclinics-inner { grid-template-columns: 1fr; gap: 40px; }
 .realclinics-badge { display: none; }
 .footer-top { flex-direction: column; gap: 32px; }
 .container, #cta { padding: 0 24px; }
 .section { padding: 64px 0; }
}

/* ─────────────────────────── */

/* Mobile hardening, applied across the site */
html, body { overflow-x: hidden; max-width: 100%; }
img, video, svg, iframe { max-width: 100%; height: auto; }
* { -webkit-tap-highlight-color: rgba(41,171,226,0.15); }
@media (max-width: 768px) {
  button, .btn-primary, .btn-outline, .btn-outline-dark, .filter-btn { min-height: 44px; }
  .hero-headline { font-size: clamp(30px, 8vw, 44px) !important; line-height: 1.1 !important; }
  .hero-sub { font-size: 15px !important; line-height: 1.6 !important; }
  .section-title { font-size: clamp(26px, 6.5vw, 36px) !important; line-height: 1.18 !important; }
  .section-subtitle { font-size: 15px !important; }
  .container { padding-left: 20px !important; padding-right: 20px !important; }
  #hero { padding-left: 20px !important; padding-right: 20px !important; }
  .hero-content { padding-left: 0 !important; padding-right: 0 !important; }
  .nav-links { gap: 16px !important; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: clamp(26px, 8.5vw, 36px) !important; }
  .hero-headline br { display: none; }
  .section-title br { display: none; }
  .perspective-feature { padding: 28px 22px !important; }
  .perspective-pull { font-size: 18px !important; }
}

/* ─────────────────────────── */

/* ════════════════════════════════════════════════
   MOBILE OVERHAUL V2 — premium iOS/SaaS-grade
   Desktop UI is completely untouched.
   All rules below scope to <= 900px.
   ════════════════════════════════════════════════ */
@media (max-width: 900px) {
  /* Hide desktop nav links + nav-cta; show hamburger */
  #nav .nav-links { display: none !important; }
  #nav .nav-cta:not(.fq-m-menu-cta) { display: none !important; }
  /* Hamburger trigger */
  .fq-m-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 12px;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
    color: #fff; cursor: pointer; padding: 0; -webkit-tap-highlight-color: transparent;
    transition: background 0.2s, border-color 0.2s;
  }
  #nav.scrolled .fq-m-toggle { background: rgba(13,30,51,0.06); border-color: rgba(13,30,51,0.10); color: #0d1e33; }
  .fq-m-toggle:active { transform: scale(0.97); }
  .fq-m-toggle svg { width: 18px; height: 18px; }
  .fq-m-toggle .bar { stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), opacity 0.2s; transform-origin: center; }
  body.fq-m-open .fq-m-toggle .bar-top { transform: translateY(6px) rotate(45deg); }
  body.fq-m-open .fq-m-toggle .bar-mid { opacity: 0; }
  body.fq-m-open .fq-m-toggle .bar-bot { transform: translateY(-6px) rotate(-45deg); }

  /* Slide-down full-screen menu */
  .fq-m-menu {
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: linear-gradient(170deg, #0a1b32 0%, #0d2238 60%, #0e3050 100%);
    z-index: 99; padding: 32px 24px 40px;
    display: flex; flex-direction: column;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), opacity 0.4s ease;
    overflow-y: auto;
    padding-bottom: calc(40px + env(safe-area-inset-bottom));
  }
  body.fq-m-open { overflow: hidden; }
  body.fq-m-open .fq-m-menu { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .fq-m-menu-links { display: flex; flex-direction: column; gap: 2px; margin-top: 8px; }
  .fq-m-menu-links a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 22px 4px; font-size: 22px; font-weight: 600; letter-spacing: -0.01em;
    color: rgba(255,255,255,0.92); text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: color 0.2s, transform 0.2s;
  }
  .fq-m-menu-links a:active { color: var(--cyan); transform: translateX(2px); }
  .fq-m-menu-links a.is-active { color: var(--cyan); }
  .fq-m-menu-links a svg { opacity: 0.4; width: 16px; height: 16px; }
  .fq-m-menu-cta {
    margin-top: auto; padding-top: 28px; padding-bottom: 8px;
    display: flex; flex-direction: column; gap: 10px;
  }
  .fq-m-menu-cta a.fq-m-book {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%; padding: 18px 24px; border-radius: 999px;
    background: var(--cyan); color: #fff; font-family: var(--font);
    font-size: 16px; font-weight: 700; letter-spacing: 0.01em; text-decoration: none;
    box-shadow: 0 14px 30px rgba(41,171,226,0.30);
    transition: background 0.2s, transform 0.15s;
  }
  .fq-m-menu-cta a.fq-m-book:active { background: var(--cyan-dark); transform: scale(0.98); }
  .fq-m-menu-cta-sub { text-align: center; font-size: 12px; color: rgba(255,255,255,0.4); letter-spacing: 0.04em; }

  /* Stagger animation on links */
  body.fq-m-open .fq-m-menu-links a { animation: fqMSlide 0.5s cubic-bezier(0.22,1,0.36,1) both; }
  body.fq-m-open .fq-m-menu-links a:nth-child(1) { animation-delay: 0.06s; }
  body.fq-m-open .fq-m-menu-links a:nth-child(2) { animation-delay: 0.10s; }
  body.fq-m-open .fq-m-menu-links a:nth-child(3) { animation-delay: 0.14s; }
  body.fq-m-open .fq-m-menu-links a:nth-child(4) { animation-delay: 0.18s; }
  body.fq-m-open .fq-m-menu-links a:nth-child(5) { animation-delay: 0.22s; }
  body.fq-m-open .fq-m-menu-cta { animation: fqMSlide 0.55s cubic-bezier(0.22,1,0.36,1) 0.28s both; }
  @keyframes fqMSlide { from { opacity: 0; transform: translateX(-8px); } to { opacity: 1; transform: translateX(0); } }

  /* HOW IT WORKS — horizontal snap carousel on mobile */
  #howitworks .steps {
    display: flex !important; grid-template-columns: none !important;
    overflow-x: auto; overflow-y: visible;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    padding: 4px 24px 32px; margin: 0 -24px;
    gap: 18px;
    scrollbar-width: none;
  }
  #howitworks .steps::-webkit-scrollbar { display: none; }
  #howitworks .steps::before { display: none !important; }
  #howitworks .step {
    flex: 0 0 78%; max-width: 320px; scroll-snap-align: center;
    padding: 0; text-align: left;
    background: #fff; border-radius: 22px; border: 1px solid #e2eef5;
    padding: 26px 22px 28px;
    box-shadow: 0 4px 24px rgba(13,30,51,0.04);
  }
  #howitworks .step-num {
    width: 40px; height: 40px; font-size: 16px;
    margin: 0 0 18px 0; box-shadow: 0 0 0 6px rgba(41,171,226,0.10);
  }
  #howitworks .step-img { height: 140px; border-radius: 14px; }
  /* hint scroll affordance */
  .fq-m-scroll-hint { display: flex; justify-content: center; gap: 6px; margin-top: -8px; padding-bottom: 8px; }
  .fq-m-scroll-hint span { width: 22px; height: 3px; border-radius: 2px; background: #d6e3ed; transition: background 0.3s; }
  .fq-m-scroll-hint span.is-active { background: var(--cyan); width: 32px; }

  /* BENEFITS — convert to accordion on mobile */
  #benefits .benefits-inner { grid-template-columns: 1fr !important; gap: 16px !important; }
  #benefits .tab-nav { gap: 12px !important; }
  #benefits .tab-btn {
    width: 100%; padding: 18px 18px !important; border-radius: 14px !important;
    background: #fff !important; border: 1px solid #e2eef5 !important;
    box-shadow: 0 1px 0 rgba(13,30,51,0.02);
  }
  #benefits .tab-btn.is-acc-open { background: #fff !important; box-shadow: 0 8px 28px rgba(13,30,51,0.08) !important; }
  #benefits .tab-btn .fq-acc-chev { margin-left: auto; transition: transform 0.3s cubic-bezier(0.22,1,0.36,1); color: var(--gray); }
  #benefits .tab-btn.is-acc-open .fq-acc-chev { transform: rotate(180deg); color: var(--cyan); }
  /* Hide the side-panel column entirely on mobile (we inject accordion panes inline instead) */
  #benefits .benefits-inner > .reveal.reveal-delay-1 { display: none !important; }
  /* Inline accordion pane */
  .fq-acc-pane {
    max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.22,1,0.36,1);
    background: #fff; border-radius: 14px; margin-top: -6px; margin-bottom: 6px;
    border: 1px solid #e2eef5; border-top: none;
  }
  .fq-acc-pane.is-open { max-height: 1400px; }
  .fq-acc-pane-inner { padding: 18px 18px 22px; }
  .fq-acc-pane .tab-panel { padding: 0 !important; box-shadow: none !important; background: transparent !important; }
  .fq-acc-pane .tab-panel-title { font-size: 16px !important; margin-bottom: 14px !important; }
  .fq-acc-pane .benefit-list { gap: 10px !important; }
  .fq-acc-pane .benefit-item { padding: 12px !important; border-radius: 10px !important; }

  /* EARLY ACCESS / WAITLIST (home) — premium mobile padding */
  #waitlist { padding: 72px 0 !important; }
  #waitlist .waitlist-inner { padding: 0 26px !important; max-width: 100% !important; }
  #waitlist .section-title { font-size: clamp(26px, 7vw, 32px) !important; margin-bottom: 14px !important; }
  #waitlist .section-subtitle { font-size: 15px !important; margin-bottom: 36px !important; padding: 0 4px; }
  #waitlist .waitlist-form { gap: 12px !important; }
  #waitlist .form-input { padding: 18px 20px !important; font-size: 15px !important; border-radius: 14px !important; }
  #waitlist .form-submit { padding: 18px !important; border-radius: 14px !important; font-size: 16px !important; }

  /* EARLY ACCESS (Technology page #cta) — breathing room */
  #cta { padding: 96px 0 !important; }
  #cta .container { padding: 0 28px !important; }
  #cta .section-title { font-size: clamp(28px, 7.5vw, 36px) !important; }
  #cta .section-subtitle { font-size: 15px !important; padding: 0 4px; }
  #cta .cta-buttons { flex-direction: column; gap: 12px; width: 100%; }
  #cta .cta-buttons button { width: 100%; padding: 16px 24px !important; }

  /* NEWS — category filter: hide scrollbar, smooth snap */
  #filterbar .filter-inner {
    overflow-x: auto !important; -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none;
    padding: 8px 24px !important; gap: 10px !important;
    mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
  }
  #filterbar .filter-inner::-webkit-scrollbar { display: none !important; height: 0 !important; width: 0 !important; }
  #filterbar .filter-btn {
    scroll-snap-align: start; flex-shrink: 0; white-space: nowrap;
    padding: 10px 18px !important; font-size: 13px !important;
  }
}

@media (min-width: 901px) {
  .fq-m-toggle, .fq-m-menu { display: none !important; }
}

/* ─────────────────────────── */

@media (max-width: 900px) {
  /* Hamburger color adapts to nav background */
  body.fq-light-nav .fq-m-toggle {
    color: #0d1e33 !important;
    background: rgba(13,30,51,0.05) !important;
    border-color: rgba(13,30,51,0.10) !important;
  }
  body.fq-light-nav .fq-m-toggle:hover { background: rgba(13,30,51,0.08) !important; }

  /* More reliable accordion: simple show/hide, with subtle fade-in */
  .fq-acc-pane { display: none !important; max-height: none !important; overflow: visible !important; }
  .fq-acc-pane.is-open { display: block !important; animation: fqAccIn 0.32s cubic-bezier(0.22,1,0.36,1) both; }
  @keyframes fqAccIn {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
  }
  /* Wrap pane visually under its button */
  .fq-acc-pane {
    background: #fff;
    border: 1px solid #e2eef5;
    border-top: none;
    border-radius: 0 0 14px 14px;
    margin-top: -8px;
    margin-bottom: 10px;
  }
  /* Open btn becomes flat-bottom to merge into pane */
  #benefits .tab-btn.is-acc-open {
    border-radius: 14px 14px 0 0 !important;
    border-bottom-color: transparent !important;
  }
}

/* ─────────────────────────── */

.fq-disclaimer { position: fixed; inset: 0; z-index: 9999; display: none; align-items: center; justify-content: center; padding: 24px; font-family: 'Poppins', 'Inter', system-ui, sans-serif; }
.fq-disclaimer.is-open { display: flex; }
.fq-disclaimer-backdrop { position: absolute; inset: 0; background: rgba(8, 22, 41, 0.78); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); animation: fqDiscFade 0.35s ease both; }
.fq-disclaimer-card { position: relative; max-width: 520px; width: 100%; background: linear-gradient(160deg, #0e2541 0%, #0a1b32 100%); color: #fff; border-radius: 18px; padding: 36px 36px 32px; box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(41,171,226,0.18) inset; animation: fqDiscRise 0.4s cubic-bezier(0.22,1,0.36,1) both; }
.fq-disclaimer-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #29ABE2; background: rgba(41,171,226,0.10); border: 1px solid rgba(41,171,226,0.25); padding: 8px 12px; border-radius: 999px; margin-bottom: 20px; }
.fq-disclaimer-title { font-size: 24px; font-weight: 700; line-height: 1.25; margin: 0 0 14px; color: #fff; letter-spacing: -0.01em; }
.fq-disclaimer-body { font-size: 14.5px; line-height: 1.65; color: rgba(255,255,255,0.72); margin: 0 0 26px; }
.fq-disclaimer-cta { width: 100%; padding: 14px 18px; border-radius: 12px; border: none; background: #29ABE2; color: #fff; font-family: inherit; font-size: 14px; font-weight: 700; letter-spacing: 0.01em; cursor: pointer; transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease; }
.fq-disclaimer-cta:hover { background: #1a8fc0; transform: translateY(-1px); box-shadow: 0 10px 24px rgba(41,171,226,0.35); }
.fq-disclaimer-cta:active { transform: translateY(0); }
@keyframes fqDiscFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes fqDiscRise { from { opacity: 0; transform: translateY(14px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
@media (max-width: 480px) {
  .fq-disclaimer-card { padding: 28px 24px 24px; border-radius: 16px; }
  .fq-disclaimer-title { font-size: 20px; }
  .fq-disclaimer-body { font-size: 13.5px; }
}
body.fq-disc-lock { overflow: hidden; }

/* ─────────────────────────── */

@media (min-width: 901px) {
  /* On desktop hide all accordion panes (clones) — originals render normally */
  .fq-acc-pane { display: none !important; }
}
@media (max-width: 900px) {
  /* Desktop side panel is hidden on mobile */
  #benefits .benefits-inner > .reveal.reveal-delay-1 { display: none !important; }
  .fq-acc-pane { display: none; }
  .fq-acc-pane.is-open { display: block; animation: fqAccIn 0.32s cubic-bezier(0.22,1,0.36,1) both; }
  @keyframes fqAccIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }
  .fq-acc-pane {
    background: #fff; border: 1px solid #e2eef5; border-top: none;
    border-radius: 0 0 14px 14px; margin-top: -8px; margin-bottom: 10px;
  }
  .fq-acc-pane-inner { padding: 18px 18px 22px; }
  .fq-acc-pane .tab-panel { padding: 0 !important; box-shadow: none !important; background: transparent !important; }
  .fq-acc-pane .tab-panel-title { font-size: 16px !important; margin-bottom: 14px !important; }
  .fq-acc-pane .benefit-list { gap: 10px !important; }
  .fq-acc-pane .benefit-item { padding: 12px !important; border-radius: 10px !important; }
  #benefits .tab-btn.is-acc-open { border-radius: 14px 14px 0 0 !important; border-bottom-color: transparent !important; box-shadow: 0 8px 28px rgba(13,30,51,0.08) !important; }
  #benefits .tab-btn .fq-acc-chev { margin-left: auto; transition: transform 0.3s cubic-bezier(0.22,1,0.36,1); color: var(--gray); }
  #benefits .tab-btn.is-acc-open .fq-acc-chev { transform: rotate(180deg); color: var(--cyan); }
}