:root {
    --brand: #38a0d0;
    --brand-dark: #2d8bc0;
    --primary: #38a0d0;
    --accent: #0d9488;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --border-strong: #cbd5e1;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 24px -6px rgba(0,0,0,0.07), 0 2px 8px -4px rgba(0,0,0,0.04);
    --shadow-lg: 0 12px 40px -10px rgba(0,0,0,0.09), 0 4px 14px -6px rgba(0,0,0,0.05);
    --shadow-xl: 0 24px 48px -12px rgba(0,0,0,0.1), 0 10px 20px -8px rgba(0,0,0,0.06);
    --focus-ring: 0 0 0 3px rgba(56, 160, 208, 0.35);
    --cta-cellular: #6d28d9;
}

[data-theme="dark"] {
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-tertiary: #334155;
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --border: rgba(148, 163, 184, 0.18);
    --border-strong: rgba(148, 163, 184, 0.28);
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.35);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.35);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.4);
    --shadow-xl: 0 20px 48px rgba(0,0,0,0.45);
    --focus-ring: 0 0 0 3px rgba(56, 160, 208, 0.45);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.bg-animation {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0; overflow: hidden; pointer-events: none;
}
.bg-gradient {
    position: absolute; width: 420px; height: 420px; border-radius: 50%;
    filter: blur(80px); opacity: 0.15; animation: float 22s ease-in-out infinite;
}
.gradient-1 { background: radial-gradient(circle, var(--primary) 0%, transparent 70%); top: -120px; left: -120px; }
.gradient-2 { background: radial-gradient(circle, #8b5cf6 0%, transparent 70%); bottom: -120px; right: -120px; animation-delay: 6s; }
.gradient-3 { background: radial-gradient(circle, #06b6d4 0%, transparent 70%); top: 50%; right: -80px; animation-delay: 12s; }
[data-theme="dark"] .bg-gradient { opacity: 0.25; }
@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -20px) scale(1.05); }
    66% { transform: translate(-15px, 15px) scale(0.95); }
}

.scroll-progress {
    position: fixed; top: 0; left: 0; height: 3px; width: 100%;
    transform-origin: left; transform: scaleX(0);
    background: linear-gradient(90deg, var(--primary), #8b5cf6);
    z-index: 1001; pointer-events: none;
}

.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.infographic-slide.fade-in:nth-child(1) { transition-delay: 0s; }
.infographic-slide.fade-in:nth-child(2) { transition-delay: 0.08s; }
.infographic-slide.fade-in:nth-child(3) { transition-delay: 0.16s; }
.infographic-slide.fade-in:nth-child(4) { transition-delay: 0.24s; }
.infographic-slide.fade-in:nth-child(5) { transition-delay: 0.32s; }
.infographic-slide.fade-in:nth-child(6) { transition-delay: 0.4s; }
.infographic-slide.fade-in:nth-child(7) { transition-delay: 0.48s; }
.infographic-slide.fade-in:nth-child(8) { transition-delay: 0.56s; }
@media (prefers-reduced-motion: reduce) {
    .infographic-slide.fade-in { transition-delay: 0s !important; }
}
.slide-in-left { opacity: 0; transform: translateX(-32px); transition: opacity 0.6s ease, transform 0.6s ease; }
.slide-in-left.visible { opacity: 1; transform: translateX(0); }
.slide-in-right { opacity: 0; transform: translateX(32px); transition: opacity 0.6s ease, transform 0.6s ease; }
.slide-in-right.visible { opacity: 1; transform: translateX(0); }
.scale-in { opacity: 0; transform: scale(0.96); transition: opacity 0.6s ease, transform 0.6s ease; }
.scale-in.visible { opacity: 1; transform: scale(1); }

/* NAV */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.2s ease;
}
nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
    display: flex; justify-content: space-between; align-items: center;
    max-width: 1200px; margin: 0 auto; padding: 14px 24px;
}
.nav-brand {
    font-size: 1.25rem; font-weight: 700; color: var(--text-primary);
    text-decoration: none; display: flex; align-items: center; gap: 10px;
}
.nav-brand img:first-of-type { height: 36px; width: auto; }
.nav-brand .text-logo { height: 1.1em; vertical-align: middle; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-link {
    color: var(--text-secondary); text-decoration: none; font-weight: 500;
    font-size: 0.95rem; transition: color 0.2s ease;
    border-radius: 8px; padding: 6px 4px; margin: -6px -4px;
}
.nav-link:hover { color: var(--primary); }
.nav-link:focus-visible { outline: none; box-shadow: var(--focus-ring); color: var(--primary); }
.nav-cta {
    background: var(--primary); color: white; padding: 10px 20px;
    border-radius: 10px; text-decoration: none; font-weight: 600;
    font-size: 0.95rem; transition: background 0.2s ease, transform 0.2s ease;
}
.nav-cta:hover { background: var(--brand-dark); transform: translateY(-1px); }
.nav-cta:active { transform: translateY(0) scale(0.98); }
.nav-cta:focus-visible { outline: none; box-shadow: var(--focus-ring); }
.nav-login {
    color: var(--text-secondary); text-decoration: none; font-weight: 600;
    font-size: 0.95rem; padding: 8px 14px; border-radius: 8px;
    border: 1px solid var(--border); transition: all 0.2s ease;
}
.nav-login:hover { color: var(--primary); border-color: var(--primary); background: rgba(56,160,208,0.06); }
.nav-login:focus-visible { outline: none; box-shadow: var(--focus-ring); }
.nav-login:active { transform: scale(0.98); }
.theme-toggle {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid var(--border); background: var(--bg-secondary);
    color: var(--text-secondary); cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    transition: color 0.2s ease, border-color 0.2s ease;
}
.theme-toggle:hover { color: var(--text-primary); border-color: var(--border-strong); }
.theme-toggle:focus-visible { outline: none; box-shadow: var(--focus-ring); }
.theme-toggle:active { transform: scale(0.95); }

/* SECTION DEFAULTS */
.section { padding: 80px 24px; max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem); font-weight: 700;
    color: var(--text-primary); text-align: center; margin-bottom: 16px;
    line-height: 1.2; letter-spacing: -0.02em;
}
.section-sub {
    font-size: 1.05rem; color: var(--text-secondary); text-align: center;
    line-height: 1.65;
    margin-bottom: 48px; max-width: 600px; margin-left: auto; margin-right: auto;
}
.section-sub a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.section-sub a:hover { color: var(--brand-dark); }
.section-alt {
    background: var(--bg-secondary); border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border); position: relative; z-index: 1;
}

/* TOP INFOGRAPHIC (full width, scrollable when wider than viewport) */
.infographic-hero {
    width: 100%;
    position: relative;
    z-index: 1;
    padding-top: 80px;
    margin: 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
}
.infographic-hero-inner {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}
.infographic-scroll-wrap {
    position: relative;
    width: 100%;
}
/* Stat tiles: wrap on small screens; fixed 2×2 grid on desktop (see min-width: 1025px) */
.infographic-stats-static {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 8px;
    padding: 6px 12px 14px;
    max-width: 780px;
    margin: 0 auto;
    box-sizing: border-box;
}
.infographic-stats-static .infographic-slide {
    flex: 1 1 237px;
    max-width: 390px;
    min-width: 237px;
    width: auto;
    scroll-snap-align: unset;
    scroll-snap-stop: normal;
    display: flex;
}
.infographic-stats-static .stat-card {
    min-height: 0;
    flex: 1;
    width: 100%;
}
.infographic-scroll {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 16px;
    scrollbar-width: thin;
    overscroll-behavior-x: contain;
}
.infographic-scroll:focus {
    outline: none;
}
.infographic-scroll:focus-visible {
    box-shadow: var(--focus-ring);
    border-radius: 12px;
}
.infographic-scroll::-webkit-scrollbar { height: 8px; }
.infographic-scroll::-webkit-scrollbar-thumb {
    background: var(--border-strong);
    border-radius: 4px;
}
.infographic-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 16px;
    width: max-content;
    min-width: 100%;
    padding: 10px 16px 12px;
    box-sizing: border-box;
}
.infographic-slide {
    flex: 0 0 min(88vw, 300px);
    width: min(88vw, 300px);
    max-width: 100%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    display: flex;
}
.infographic-slide .stat-card {
    flex: 1;
    width: 100%;
}
.stat-card {
    height: 100%;
    min-height: 0;
    padding: 5px 7px 6px;
    border-radius: 9px;
    border: 2px solid rgba(185, 28, 28, 0.45);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 2px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}
.stat-card-stat-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    min-width: 0;
}
.stat-card-stat-row .stat-card-value {
    flex: 1;
    min-width: 0;
}
.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(153, 27, 27, 0.65);
}
.stat-card-icon {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    line-height: 1;
    flex-shrink: 0;
}
/* Caution palette: icon chips pop on saturated tiles */
.stat-card--a .stat-card-icon {
    background: rgba(255, 255, 255, 0.5);
    color: #9f1239;
}
.stat-card--b .stat-card-icon {
    background: rgba(255, 255, 255, 0.5);
    color: #9a3412;
}
.stat-card--c .stat-card-icon {
    background: rgba(255, 255, 255, 0.5);
    color: #92400e;
}
.stat-card--d .stat-card-icon {
    background: rgba(255, 255, 255, 0.55);
    color: #0c4a6e;
}
.stat-card--e .stat-card-icon {
    background: rgba(255, 255, 255, 0.5);
    color: #881337;
}
.stat-card--f .stat-card-icon {
    background: rgba(255, 255, 255, 0.5);
    color: #9a3412;
}
.stat-card--g .stat-card-icon {
    background: rgba(255, 255, 255, 0.55);
    color: #854d0e;
}
.stat-card--h .stat-card-icon {
    background: rgba(255, 255, 255, 0.55);
    color: #854d0e;
}
[data-theme="dark"] .stat-card--a .stat-card-icon,
[data-theme="dark"] .stat-card--b .stat-card-icon,
[data-theme="dark"] .stat-card--c .stat-card-icon,
[data-theme="dark"] .stat-card--d .stat-card-icon,
[data-theme="dark"] .stat-card--e .stat-card-icon,
[data-theme="dark"] .stat-card--f .stat-card-icon,
[data-theme="dark"] .stat-card--g .stat-card-icon,
[data-theme="dark"] .stat-card--h .stat-card-icon {
    background: rgba(0, 0, 0, 0.28);
}
[data-theme="dark"] .stat-card--a .stat-card-icon { color: #f87171; }
[data-theme="dark"] .stat-card--b .stat-card-icon { color: #fb923c; }
[data-theme="dark"] .stat-card--c .stat-card-icon { color: #fdba74; }
[data-theme="dark"] .stat-card--d .stat-card-icon { color: #7dd3fc; }
[data-theme="dark"] .stat-card--e .stat-card-icon { color: #fca5a5; }
[data-theme="dark"] .stat-card--f .stat-card-icon { color: #fdba74; }
[data-theme="dark"] .stat-card--g .stat-card-icon { color: #fde047; }
[data-theme="dark"] .stat-card--h .stat-card-icon { color: #5eead4; }
.stat-card-value {
    font-size: clamp(2.3rem, 6.4vw, 2.9rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.stat-card--a .stat-card-value { color: #b91c1c; }
.stat-card--b .stat-card-value { color: #c2410c; }
.stat-card--c .stat-card-value { color: #b45309; }
.stat-card--d .stat-card-value { color: #075985; }
.stat-card--e .stat-card-value { color: #991b1b; }
.stat-card--f .stat-card-value { color: #c2410c; }
.stat-card--g .stat-card-value { color: #a16207; }
.stat-card--h .stat-card-value { color: #115e59; }
[data-theme="dark"] .stat-card--a .stat-card-value { color: #f87171; }
[data-theme="dark"] .stat-card--b .stat-card-value { color: #fb923c; }
[data-theme="dark"] .stat-card--c .stat-card-value { color: #fdba74; }
[data-theme="dark"] .stat-card--d .stat-card-value { color: #e0f2fe; }
[data-theme="dark"] .stat-card--e .stat-card-value { color: #fca5a5; }
[data-theme="dark"] .stat-card--f .stat-card-value { color: #fdba74; }
[data-theme="dark"] .stat-card--g .stat-card-value { color: #fde047; }
[data-theme="dark"] .stat-card--h .stat-card-value { color: #99f6e4; }
.stat-card-value .stat-suffix {
    font-size: 0.55em;
    font-weight: 700;
    margin-left: 0.06em;
    opacity: 0.88;
}
.stat-card--a .stat-card-value .stat-suffix { color: #7f1d1d; }
.stat-card--b .stat-card-value .stat-suffix { color: #7c2d12; }
.stat-card--c .stat-card-value .stat-suffix { color: #78350f; }
.stat-card--d .stat-card-value .stat-suffix { color: #0c4a6e; }
.stat-card--e .stat-card-value .stat-suffix { color: #7f1d1d; }
.stat-card--f .stat-card-value .stat-suffix { color: #7c2d12; }
.stat-card--g .stat-card-value .stat-suffix { color: #713f12; }
.stat-card--h .stat-card-value .stat-suffix { color: #134e4a; }
[data-theme="dark"] .stat-card--a .stat-card-value .stat-suffix { color: #fecaca; }
[data-theme="dark"] .stat-card--b .stat-card-value .stat-suffix { color: #fed7aa; }
[data-theme="dark"] .stat-card--c .stat-card-value .stat-suffix { color: #fde68a; }
[data-theme="dark"] .stat-card--d .stat-card-value .stat-suffix { color: #bae6fd; }
[data-theme="dark"] .stat-card--e .stat-card-value .stat-suffix { color: #fecaca; }
[data-theme="dark"] .stat-card--f .stat-card-value .stat-suffix { color: #fed7aa; }
[data-theme="dark"] .stat-card--g .stat-card-value .stat-suffix { color: #fef9c3; }
[data-theme="dark"] .stat-card--h .stat-card-value .stat-suffix { color: #ccfbf1; }
.stat-card-value .stat-suffix.stat-suffix--long {
    font-size: 0.42em;
    font-weight: 600;
    margin-left: 0.12em;
    white-space: nowrap;
}
.stat-card-value--with-dollar {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    column-gap: 0;
    row-gap: 0;
}
.stat-card-value--with-dollar .stat-currency {
    font-size: 0.52em;
    font-weight: 800;
    margin-right: 0.04em;
    opacity: 0.92;
    line-height: 1;
}
.stat-card--d .stat-card-value--with-dollar .stat-currency {
    color: #075985;
}
[data-theme="dark"] .stat-card--d .stat-card-value--with-dollar .stat-currency {
    color: #e0f2fe;
}
.stat-card-title {
    font-size: 0.74rem;
    font-weight: 800;
    line-height: 1.15;
    margin: 0;
    padding: 0;
    color: #1c1917;
}
.stat-card-desc {
    font-size: 0.65rem;
    line-height: 1.28;
    flex: 0 0 auto;
    margin: 0;
    padding: 0;
    align-self: stretch;
    min-height: 0;
    color: #44403c;
}
/* Bold caution fills (light): saturated red / orange / amber gradients */
.stat-card--a {
    background: linear-gradient(145deg, #ffe4e6 0%, #fda4af 42%, #f43f5e 100%);
    border-color: rgba(190, 18, 60, 0.55);
}
.stat-card--b {
    background: linear-gradient(145deg, #ffedd5 0%, #fdba74 40%, #ea580c 100%);
    border-color: rgba(194, 65, 12, 0.55);
}
.stat-card--c {
    background: linear-gradient(145deg, #fef3c7 0%, #fcd34d 38%, #f59e0b 100%);
    border-color: rgba(180, 83, 9, 0.55);
}
.stat-card--d {
    background: linear-gradient(145deg, #e0f2fe 0%, #7dd3fc 38%, #0369a1 100%);
    border-color: rgba(7, 89, 133, 0.55);
}
.stat-card--e {
    background: linear-gradient(145deg, #fecdd3 0%, #fb7185 45%, #e11d48 100%);
    border-color: rgba(159, 18, 57, 0.55);
}
.stat-card--f {
    background: linear-gradient(145deg, #fed7aa 0%, #fb923c 42%, #c2410c 100%);
    border-color: rgba(154, 52, 18, 0.55);
}
.stat-card--g {
    background: linear-gradient(145deg, #fef08a 0%, #facc15 40%, #ca8a04 100%);
    border-color: rgba(146, 64, 14, 0.55);
}
.stat-card--h {
    background: linear-gradient(145deg, #ccfbf1 0%, #2dd4bf 42%, #0f766e 100%);
    border-color: rgba(15, 118, 110, 0.5);
}
[data-theme="dark"] .stat-card {
    border-color: rgba(251, 191, 36, 0.5);
}
[data-theme="dark"] .stat-card-title {
    color: #fffbeb;
}
[data-theme="dark"] .stat-card-desc {
    color: rgba(255, 251, 235, 0.88);
}
[data-theme="dark"] .stat-card--a {
    background: linear-gradient(145deg, #450a0a 0%, #991b1b 48%, #dc2626 100%);
}
[data-theme="dark"] .stat-card--b {
    background: linear-gradient(145deg, #431407 0%, #9a3412 45%, #ea580c 100%);
}
[data-theme="dark"] .stat-card--c {
    background: linear-gradient(145deg, #422006 0%, #b45309 45%, #f59e0b 100%);
}
[data-theme="dark"] .stat-card--d {
    background: linear-gradient(145deg, #0c1929 0%, #0e7490 42%, #0284c7 100%);
}
[data-theme="dark"] .stat-card--e {
    background: linear-gradient(145deg, #4c0519 0%, #9f1239 48%, #e11d48 100%);
}
[data-theme="dark"] .stat-card--f {
    background: linear-gradient(145deg, #431407 0%, #c2410c 45%, #fb923c 100%);
}
[data-theme="dark"] .stat-card--g {
    background: linear-gradient(145deg, #422006 0%, #a16207 42%, #facc15 100%);
}
[data-theme="dark"] .stat-card--h {
    background: linear-gradient(145deg, #042f2e 0%, #115e59 45%, #14b8a6 100%);
}
[data-theme="dark"] .infographic-hero {
    background: var(--bg-secondary);
}

/* Stats strip headline (above carousel) */
.stats-strip-header {
    text-align: center;
    max-width: min(100%, 56rem);
    margin: 0 auto 14px;
    padding: 0 16px;
}
.stats-strip-brand {
    margin: 0 0 1rem;
    font-size: clamp(2.75rem, 9vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35em;
}
.stats-strip-brand-name {
    display: block;
    font-size: 1em;
    font-weight: 800;
    color: var(--primary);
}
.stats-strip-brand-tagline {
    display: block;
    font-size: 0.5em;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--text-secondary);
    line-height: 1.35;
    max-width: 22em;
}
.stats-strip-brand::after {
    content: '';
    display: block;
    width: min(96px, 22vw);
    height: 4px;
    margin: 0.65em auto 0;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0.9;
}
.stats-strip-subline {
    font-size: clamp(1.15rem, 3.1vw, 1.55rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.35;
    margin: 1.1rem 0 0;
    padding: 0 8px;
}
.stat-card-value .stat-ref {
    font-size: 0.55em;
    font-weight: 800;
    vertical-align: super;
    text-decoration: none;
    color: var(--text-muted);
    margin-left: 0.12em;
    line-height: 0;
}
.stat-card-value .stat-ref:hover {
    color: var(--primary);
    text-decoration: underline;
}
.stat-card-value .stat-num {
    font-variant-numeric: tabular-nums;
    display: inline-block;
    min-width: 0.6em;
}
.stat-card-value .stat-num-plus {
    font-variant-numeric: tabular-nums;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.intro-video-wrap {
    max-width: min(100%, 520px);
    width: 100%;
    margin: 0 auto;
    padding: 0;
}
@media (min-width: 768px) {
    .intro-video-wrap {
        max-width: min(100%, 600px);
    }
}
.intro-video-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    background: #0f172a;
}
.intro-video-embed--direct iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    z-index: 1;
}
.intro-video-attrib {
    margin-top: 14px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.5;
}
.intro-video-attrib a {
    color: var(--primary);
    text-decoration: none;
}
.intro-video-attrib a:hover {
    text-decoration: underline;
}
.problem-lead-line {
    text-align: center;
    font-size: clamp(1.15rem, 2.5vw, 1.35rem);
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    margin: 0 0 20px;
    padding: 0 16px;
    line-height: 1.3;
}
.intro-video-wrap--lead {
    margin-bottom: 0;
    max-width: min(100%, 640px);
    margin-left: auto;
    margin-right: auto;
}
.intro-video-wrap--lead + .section-title {
    margin-top: 40px;
}
.problem-follow {
    margin-top: 48px;
    margin-bottom: 0;
}
.problem-follow-next {
    margin-top: 1.75rem;
    margin-bottom: 0;
}
.intro-video-wrap--solution {
    margin-top: 16px;
    margin-bottom: 0;
    max-width: min(100%, 640px);
    margin-left: auto;
    margin-right: auto;
}
.problem-follow a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.problem-follow a:hover { color: var(--brand-dark); }

/* HERO */
.hero {
    padding: 120px 24px 80px; max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
    align-items: center; min-height: 90vh; position: relative; z-index: 1;
}
.hero.hero-mid-page {
    min-height: auto;
    padding: 80px 24px 80px;
}
.hero.hero-mid-page .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.hero-content { max-width: 560px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.82rem; font-weight: 600; color: var(--primary);
    background: rgba(56,160,208,0.1); padding: 6px 16px;
    border-radius: 999px; margin-bottom: 20px; letter-spacing: 0.02em;
}
.hero-badge .pulse-dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}
.hero h1,
.hero h2,
.hero .hero-title {
    font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800;
    color: var(--text-primary); line-height: 1.15; letter-spacing: -0.025em;
    margin-bottom: 16px;
}
.hero .hero-sub {
    font-size: clamp(1.05rem, 2vw, 1.2rem); color: var(--text-secondary);
    margin-bottom: 0; line-height: 1.65;
}
.hero .hero-sub-continued {
    margin-top: 1.25rem;
    margin-bottom: 28px;
}
.hero-pricing-block {
    margin-bottom: 28px;
    margin-left: auto;
    margin-right: auto;
    padding: 16px 20px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: var(--bg-secondary);
    max-width: 400px;
}
.hero-price-lead {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 12px;
}
.hero-pricing-tiers {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.hero-pricing-tiers li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 24px;
    padding: 10px 14px;
    margin: 0 -6px;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.hero-pricing-tiers li:hover {
    background: rgba(56, 160, 208, 0.08);
    border-color: rgba(56, 160, 208, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px -8px rgba(15, 23, 42, 0.12);
}
[data-theme="dark"] .hero-pricing-tiers li:hover {
    background: rgba(56, 160, 208, 0.12);
    border-color: rgba(56, 160, 208, 0.4);
}
.hero-pricing-tiers li > i {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--primary);
    flex-shrink: 0;
}
.hero-pricing-tiers .tier-label { flex: 1; min-width: 0; }
.hero-pricing-tiers .tier-price {
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--primary);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
}
@media (max-width: 1024px) {
    .hero-pricing-block { margin-left: auto; margin-right: auto; }
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.hero.hero-mid-page .hero-actions,
.hero.hero-mid-page .hero-trust {
    justify-content: center;
}
.btn-primary {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    background: var(--primary); color: white; padding: 14px 28px;
    border-radius: 12px; font-size: 1.05rem; font-weight: 600;
    text-decoration: none; border: none; cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: var(--shadow-md);
    min-height: 48px;
}
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-2px); }
.btn-primary:active { transform: translateY(0) scale(0.98); }
.btn-primary:focus-visible { outline: none; box-shadow: var(--shadow-md), var(--focus-ring); }
.btn-primary:disabled { opacity: 0.55; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-secondary {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    background: transparent; color: var(--text-primary);
    padding: 14px 28px; border-radius: 12px; font-size: 1.05rem;
    font-weight: 600; text-decoration: none; border: 1px solid var(--border);
    cursor: pointer; transition: all 0.2s ease;
    min-height: 48px;
}
.btn-secondary:hover { border-color: var(--primary); background: rgba(56,160,208,0.06); }
.btn-secondary:active { transform: scale(0.98); }
.btn-secondary:focus-visible { outline: none; box-shadow: var(--focus-ring); }
.btn-cellular {
    background: var(--cta-cellular);
    box-shadow: var(--shadow-md);
}
.btn-cellular:hover { background: #5b21b6; }
.btn-cellular:focus-visible { outline: none; box-shadow: var(--shadow-md), 0 0 0 3px rgba(109, 40, 217, 0.4); }
.hero-trust {
    display: flex; flex-wrap: wrap; gap: 16px; align-items: center;
    font-size: 0.85rem; color: var(--text-muted);
}
.hero-trust span { display: flex; align-items: center; gap: 6px; }
.hero-trust i { color: var(--primary); }
.hero-image {
    display: flex; align-items: center; justify-content: center; position: relative;
}
.hero-device-placeholder {
    width: 100%; max-width: 440px; aspect-ratio: 3/4;
    background: linear-gradient(145deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    border-radius: 28px; border: 2px solid var(--border);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 16px; color: var(--text-muted); font-size: 0.95rem;
    box-shadow: var(--shadow-xl); position: relative; overflow: hidden;
}
.hero-device-placeholder img {
    width: 100%; height: 100%; object-fit: cover; border-radius: 26px;
}
.hero-device-placeholder .placeholder-content {
    display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 32px;
}
.hero-device-placeholder .placeholder-content i { font-size: 3rem; opacity: 0.3; }

/* Hero device carousel (multiple images, scroll through) */
.hero-device-carousel {
    width: 100%; max-width: 440px; aspect-ratio: 3/4;
    border-radius: 28px; border: 2px solid var(--border);
    box-shadow: var(--shadow-xl); position: relative; overflow: hidden;
    background: var(--bg-secondary);
}
.hero-device-carousel-inner {
    display: flex; overflow-x: auto; overflow-y: hidden;
    scroll-snap-type: x mandatory; scroll-behavior: smooth;
    height: 100%; -webkit-overflow-scrolling: touch;
    scrollbar-width: none; -ms-overflow-style: none;
}
.hero-device-carousel-inner::-webkit-scrollbar { display: none; }
.hero-device-carousel-slide {
    flex: 0 0 100%; width: 100%; height: 100%;
    scroll-snap-align: center; scroll-snap-stop: always;
}
.hero-device-carousel-slide img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero-carousel-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    left: 0; right: 0; display: flex; justify-content: space-between;
    padding: 0 8px; z-index: 2; pointer-events: none;
}
.hero-carousel-nav button { pointer-events: auto; }
.hero-carousel-nav button {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid var(--border); background: rgba(255,255,255,0.9);
    color: var(--text-secondary); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; line-height: 1; transition: background 0.2s, color 0.2s;
}
.hero-carousel-nav button:hover { background: var(--primary); color: white; border-color: var(--primary); }
[data-theme="dark"] .hero-carousel-nav button {
    background: rgba(30, 41, 59, 0.92);
    color: var(--text-secondary);
    border-color: var(--border);
}
[data-theme="dark"] .hero-carousel-nav button:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}
.hero-carousel-dots {
    position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 5px 6px; max-width: calc(100% - 20px); z-index: 2;
    align-items: center;
}
.hero-carousel-dot {
    width: 8px; height: 8px; border-radius: 50%;
    padding: 0;
    border: 2px solid rgba(255,255,255,0.85);
    background: var(--border-strong);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.hero-carousel-dot:hover {
    transform: scale(1.15);
}
.hero-carousel-dot:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(56, 160, 208, 0.55);
}
.hero-carousel-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}
.hero-carousel-live {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* AT A GLANCE: models, pricing highlights */
.at-a-glance-bar {
    background: var(--bg-secondary); border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border); padding: 20px 24px;
    position: relative; z-index: 1;
}
.at-a-glance-inner {
    max-width: 900px; margin: 0 auto;
    display: flex; justify-content: center; align-items: center;
    flex-wrap: wrap; gap: 32px;
}
.proof-item { text-align: center; }
.proof-item .proof-value {
    font-size: 1.4rem; font-weight: 800; color: var(--text-primary);
}
.proof-item .proof-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }

/* PROBLEM */
.problem-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px;
}
.problem-card {
    background: var(--bg-secondary); border: 1px solid var(--border);
    border-radius: 16px; padding: 28px;
    transition: transform 0.25s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.problem-card:hover { border-color: var(--primary); box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.problem-card .icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: rgba(56,160,208,0.1); color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; margin-bottom: 16px;
}
.problem-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.problem-card p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.65; }

/* PRODUCT SECTION */
.product-showcase {
    background: var(--bg-secondary); border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border); position: relative; z-index: 1;
}
[data-theme="dark"] .product-showcase {
    background: #0c1222;
    border-color: rgba(148, 163, 184, 0.12);
}
.product-cards {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px; max-width: 820px; margin: 0 auto;
}
.product-card {
    background: var(--bg-primary); border: 1px solid var(--border);
    border-radius: 20px; padding: 0; overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
}
[data-theme="dark"] .product-card {
    background: #1e293b;
    border-color: rgba(148, 163, 184, 0.14);
    box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); border-color: rgba(56, 160, 208, 0.45); }
[data-theme="dark"] .product-card:hover {
    border-color: rgba(56, 160, 208, 0.5);
    box-shadow: var(--shadow-lg);
}
.product-card.featured { border-color: var(--primary); }
.product-card.featured::before {
    content: 'Most Popular'; position: absolute; top: 0; left: 0; right: 0;
    background: var(--cta-cellular); color: white; text-align: center;
    padding: 8px; font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.12em;
}
.product-card.featured .product-card-inner { padding-top: 44px; }
.product-card-inner { padding: 32px; }
.product-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 4px;
}
.product-card-head .product-title-block { min-width: 0; }
.product-card-head .product-price {
    margin: 0;
    flex-shrink: 0;
    text-align: right;
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
    letter-spacing: -0.03em;
    font-variant-numeric: tabular-nums;
}
.product-image-placeholder {
    width: 100%; aspect-ratio: 4/3;
    background: linear-gradient(145deg, var(--bg-tertiary) 0%, var(--border) 100%);
    border-radius: 12px; margin-bottom: 20px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 8px; color: var(--text-muted); font-size: 0.85rem;
}
.product-image-placeholder img {
    width: 100%; height: 100%; object-fit: cover; border-radius: 12px;
}
.product-image-placeholder i { font-size: 2.5rem; opacity: 0.3; }
.product-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 4px; line-height: 1.2; letter-spacing: -0.02em; }
.product-card .product-variant { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 16px; }
.product-price-note { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 20px; margin-top: 2px; }
.product-fine-print { font-size: 0.75rem; color: var(--text-muted); margin-top: 12px; text-align: center; }
.product-features { list-style: none; margin-bottom: 24px; }
.product-features li {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 6px 0; font-size: 0.92rem; color: var(--text-secondary);
}
.product-features li i { color: var(--accent); margin-top: 3px; font-size: 0.85rem; }
.btn-reserve {
    display: block; width: 100%; padding: 14px 16px; border-radius: 12px;
    font-size: 1rem; font-weight: 700; border: none; cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease; text-align: center;
    min-height: 48px;
}
.btn-reserve:focus-visible { outline: none; box-shadow: var(--focus-ring); }
.btn-reserve:active:not(:disabled) { transform: scale(0.99); }
.btn-reserve.primary-reserve {
    background: var(--cta-cellular); color: white;
}
.btn-reserve.primary-reserve:hover { background: #5b21b6; }
.btn-reserve.secondary-reserve {
    background: transparent; color: var(--text-primary);
    border: 2px solid var(--border);
}
.btn-reserve.secondary-reserve:hover { border-color: var(--primary); background: rgba(56,160,208,0.06); }

/* FEATURES BENTO */
.features-bento {
    display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px;
}
.feat-card {
    background: linear-gradient(145deg, rgba(56,160,208,0.04) 0%, rgba(56,160,208,0.1) 100%);
    border-radius: 20px; border: 1px solid var(--border);
    backdrop-filter: blur(12px); padding: 28px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.feat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: rgba(56,160,208,0.4); }
[data-theme="dark"] .feat-card {
    background: linear-gradient(145deg, rgba(56,160,208,0.08) 0%, rgba(139,92,246,0.1) 100%);
}
.feat-card .meta {
    font-size: 0.72rem; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px;
}
.feat-card .icon {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 10px;
    color: var(--primary);
}
.feat-card .icon i {
    font-size: inherit;
    line-height: inherit;
}
.feat-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.feat-card p { color: var(--text-secondary); line-height: 1.65; font-size: 0.93rem; }
.feat-card p a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.feat-card p a:hover { color: var(--brand-dark); }
.feat-card .pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.feat-card .pill {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 12px; border-radius: 999px; border: 1px solid var(--border);
    background: var(--bg-secondary); color: var(--text-secondary); font-size: 0.82rem;
}
.feat-span-7 { grid-column: span 7; }
.feat-span-5 { grid-column: span 5; }
.feat-span-6 { grid-column: span 6; }

/* HOW IT WORKS */
.steps-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px; counter-reset: step;
}
.step-card { text-align: center; padding: 28px 20px; }
.step-num {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--primary); color: white;
    font-weight: 700; font-size: 1.1rem;
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}
.step-card h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; }
.step-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }

/* WHO IT'S FOR */
.audience-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px;
}
.audience-card {
    background: var(--bg-secondary); border: 1px solid var(--border);
    border-radius: 16px; padding: 28px;
    transition: transform 0.25s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.audience-card:hover { border-color: var(--primary); box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.audience-card .icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: rgba(56,160,208,0.1); color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; margin-bottom: 16px;
}
.audience-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.audience-card p { font-size: 0.93rem; color: var(--text-secondary); line-height: 1.65; }
.audience-card p a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.audience-card p a:hover { color: var(--brand-dark); }

/* TRUST / SECURITY */
.trust-badges {
    display: flex; justify-content: center; flex-wrap: wrap; gap: 10px;
    margin-bottom: 32px;
}
.badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 16px; border-radius: 999px;
    border: 1px solid var(--border); background: var(--bg-secondary);
    color: var(--text-secondary); font-size: 0.85rem; font-weight: 500;
}

/* FAQ */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid var(--border); padding: 0;
}
.faq-question {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 20px 0; background: none; border: none; cursor: pointer;
    font-size: 1.05rem; font-weight: 600; color: var(--text-primary);
    text-align: left; font-family: inherit;
    border-radius: 8px;
}
.faq-question:focus-visible { outline: none; box-shadow: var(--focus-ring); }
.faq-question:active { color: var(--primary); }
.faq-question i { font-size: 0.85rem; color: var(--text-muted); transition: transform 0.3s ease; }
.faq-question.open i { transform: rotate(180deg); }
.faq-answer {
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-answer.open { max-height: 300px; padding-bottom: 20px; }
.faq-answer p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; }

/* FINAL CTA */
.final-cta {
    text-align: center; padding: 64px 24px;
    background: linear-gradient(145deg, rgba(56,160,208,0.06) 0%, rgba(139,92,246,0.06) 100%);
    border-radius: 20px; border: 1px solid var(--border);
}
.final-cta h2 {
    font-size: clamp(1.5rem, 3vw, 1.85rem); font-weight: 700; margin-bottom: 12px;
}
.final-cta p { color: var(--text-secondary); margin-bottom: 24px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* FOOTER */
.footer {
    padding: 40px 24px; border-top: 1px solid var(--border);
    text-align: center; color: var(--text-muted); font-size: 0.9rem;
    position: relative; z-index: 1;
}
.footer a { color: var(--text-secondary); text-decoration: none; }
.footer a:hover { color: var(--primary); }
.footer-stats-note {
    margin-top: 20px;
    font-size: 0.78rem;
    color: var(--text-muted);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.55;
    text-align: left;
    scroll-margin-top: 88px;
}
.footer-stats-note p {
    margin-bottom: 0.85em;
}
.footer-stats-note p:last-child {
    margin-bottom: 0;
}
.footer-stats-note-lead {
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 1em;
}
.footer-stats-note strong {
    color: var(--text-secondary);
}
.footer-stats-note a {
    color: var(--primary);
    font-weight: 600;
}
.footer-stats-note a:hover {
    text-decoration: underline;
}
.stat-ref--inline {
    font-size: 0.85em;
    font-weight: 800;
    margin-left: 0.12em;
    text-decoration: none;
    color: var(--text-muted);
}
.stat-ref--inline:hover {
    color: var(--primary);
    text-decoration: underline;
}
.footer-analytics-note {
    margin-top: 16px;
    font-size: 0.82rem;
    color: var(--text-muted);
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}
.footer-analytics-note code {
    font-size: 0.85em;
    background: var(--bg-secondary);
    padding: 2px 6px;
    border-radius: 4px;
}
.footer-analytics-note a {
    color: var(--primary);
    font-weight: 600;
}
.footer-links {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 16px 24px; margin-top: 16px;
}

/* STICKY MOBILE CTA */
.sticky-cta {
    display: none; position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 999; padding: 12px 16px;
    background: var(--bg-primary); border-top: 1px solid var(--border);
    box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
}
.sticky-cta-inner {
    display: flex; align-items: center; justify-content: space-between;
    max-width: 600px; margin: 0 auto; gap: 12px;
}
.sticky-cta-text { font-size: 0.9rem; display: flex; flex-direction: column; gap: 2px; line-height: 1.25; }
.sticky-cta-brand { font-weight: 800; letter-spacing: -0.02em; color: var(--text-primary); }
.sticky-cta-from { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }
.sticky-cta-from strong { color: var(--primary); font-weight: 800; font-variant-numeric: tabular-nums; }
.sticky-cta .btn-primary { padding: 12px 24px; font-size: 0.95rem; white-space: nowrap; }

/* MODAL */
.modal-overlay {
    display: none; position: fixed; inset: 0; z-index: 2000;
    background: rgba(0,0,0,0.5); backdrop-filter: blur(4px);
    align-items: center; justify-content: center; padding: 24px;
}
.modal-overlay.active { display: flex; }
.modal {
    background: var(--bg-primary); border-radius: 20px;
    border: 1px solid var(--border); box-shadow: var(--shadow-xl);
    max-width: 520px; width: 100%; max-height: 90vh;
    display: flex; flex-direction: column; overflow: hidden;
    position: relative; animation: modalIn 0.3s ease;
}
.modal-step-content { overflow-y: auto; min-height: 0; flex: 1; -webkit-overflow-scrolling: touch; }
@keyframes modalIn {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
    position: absolute; top: 16px; right: 16px; width: 36px; height: 36px;
    border-radius: 50%; border: 1px solid var(--border);
    background: var(--bg-secondary); color: var(--text-secondary);
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; transition: all 0.2s; z-index: 1;
}
.modal-close:hover { background: var(--bg-tertiary); color: var(--text-primary); }
.modal-close:focus-visible { outline: none; box-shadow: var(--focus-ring); }
.modal-close:active { transform: scale(0.95); }
.modal-header {
    padding: 32px 32px 0;
}
.modal-header .selected-device {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(56,160,208,0.1); color: var(--primary);
    padding: 5px 14px; border-radius: 999px; font-size: 0.82rem;
    font-weight: 600; margin-bottom: 12px;
}
.modal-header h2 { font-size: 1.4rem; font-weight: 700; margin-bottom: 8px; }
.modal-header p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; }
.modal-body { padding: 24px 32px 32px; position: relative; }
.waitlist-section {
    margin-bottom: 20px; padding: 16px;
    border-radius: 14px; border: 1px solid var(--border);
    background: var(--bg-secondary);
}
.waitlist-section p {
    font-size: 0.85rem; color: var(--text-secondary); margin: 0 0 12px;
    line-height: 1.5;
}
.btn-waitlist {
    display: flex; width: 100%; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 16px; border-radius: 12px; font-size: 0.95rem; font-weight: 700;
    border: 2px solid var(--accent); background: transparent; color: var(--accent);
    cursor: pointer; font-family: inherit; transition: all 0.2s;
}
.btn-waitlist:hover {
    background: rgba(13, 148, 136, 0.08); border-color: var(--accent);
}
.btn-waitlist:focus-visible { outline: none; box-shadow: var(--focus-ring); }
.btn-waitlist:active:not(:disabled) { transform: scale(0.99); }
.btn-waitlist:disabled { opacity: 0.55; cursor: not-allowed; }
.waitlist-status { margin-top: 10px; font-size: 0.85rem; min-height: 1.25em; }
.waitlist-status.ok { color: var(--accent); }
.waitlist-status.err { color: #ef4444; }
.hp-field {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.btn-waitlist-card {
    display: block; width: 100%; padding: 12px; margin-bottom: 10px;
    border-radius: 12px; font-size: 0.92rem; font-weight: 600;
    border: 2px solid var(--accent); background: transparent; color: var(--accent);
    cursor: pointer; font-family: inherit; transition: all 0.2s;
}
.btn-waitlist-card:hover { background: rgba(13, 148, 136, 0.08); }
.btn-waitlist-card:focus-visible { outline: none; box-shadow: var(--focus-ring); }
.btn-waitlist-card:active { transform: scale(0.99); }
.deposit-options { display: grid; gap: 12px; margin-bottom: 24px; }
.deposit-option {
    display: flex; align-items: center; gap: 16px;
    padding: 16px 18px; border-radius: 14px;
    border: 2px solid var(--border); background: var(--bg-primary);
    cursor: pointer; transition: all 0.2s; position: relative;
}
.deposit-option:hover { border-color: var(--primary); background: rgba(56,160,208,0.04); }
.deposit-option.selected { border-color: var(--primary); background: rgba(56,160,208,0.08); }
.deposit-option:focus-within {
    outline: none;
    box-shadow: var(--focus-ring);
}
.deposit-option input[type="radio"] { display: none; }
.deposit-radio {
    width: 20px; height: 20px; border-radius: 50%;
    border: 2px solid var(--border-strong); flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}
.deposit-option.selected .deposit-radio {
    border-color: var(--primary);
}
.deposit-option.selected .deposit-radio::after {
    content: ''; width: 10px; height: 10px; border-radius: 50%;
    background: var(--primary);
}
.deposit-info { flex: 1; }
.deposit-info .deposit-amount { font-size: 1.1rem; font-weight: 700; color: var(--text-primary); }
.deposit-info .deposit-detail { font-size: 0.85rem; color: var(--text-secondary); }
.deposit-savings {
    background: rgba(13,148,136,0.1); color: var(--accent);
    padding: 4px 10px; border-radius: 999px; font-size: 0.78rem;
    font-weight: 700; white-space: nowrap;
}
.modal-email-group { margin-bottom: 20px; }
.modal-email-group label {
    display: block; font-size: 0.85rem; font-weight: 600;
    color: var(--text-primary); margin-bottom: 6px;
}
.modal-email-group input {
    width: 100%; padding: 12px 14px; border-radius: 10px;
    border: 1px solid var(--border); background: var(--bg-primary);
    color: var(--text-primary); font-size: 0.95rem; font-family: inherit;
    transition: border-color 0.2s;
}
.modal-email-group input:focus { outline: none; border-color: var(--primary); }
.modal-email-group input:focus-visible { box-shadow: var(--focus-ring); }
.modal-email-group input.error {
    border-color: #ef4444;
}
.modal-card-group { margin-bottom: 20px; }
.modal-card-group > .modal-card-label {
    display: block; font-size: 0.85rem; font-weight: 600;
    color: var(--text-primary); margin-bottom: 8px;
}
.modal-card-field {
    padding: 12px 14px; border: 1px solid var(--border); border-radius: 10px;
    margin-bottom: 12px; min-height: 48px; width: 100%;
    background: var(--bg-primary); transition: border-color 0.2s;
}
.modal-card-field:focus-within { border-color: var(--primary); box-shadow: 0 0 0 1px var(--primary); }
.modal-card-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.modal-card-row .modal-card-field { margin-bottom: 0; }
.btn-pay {
    display: block; width: 100%; padding: 14px; border-radius: 12px;
    font-size: 1rem; font-weight: 700; border: none; cursor: pointer;
    background: var(--primary); color: white;
    transition: all 0.2s; text-align: center;
}
.btn-pay:hover:not(:disabled) { background: var(--brand-dark); }
.btn-pay:focus-visible { outline: none; box-shadow: var(--focus-ring); }
.btn-pay:active:not(:disabled) { transform: scale(0.99); }
.btn-pay:disabled { opacity: 0.55; cursor: not-allowed; }
.payment-status {
    text-align: center; font-size: 0.9rem; margin-top: 12px; min-height: 20px;
}
.payment-status.error { color: #ef4444; }
.payment-status.success { color: var(--accent); }
.modal-footer-note {
    text-align: center; font-size: 0.8rem; color: var(--text-muted);
    margin-top: 16px; line-height: 1.5;
}
.modal-footer-note.fine-print { font-size: 0.75rem; opacity: 0.9; margin-top: 12px; }
.modal-success { text-align: center; padding: 40px 32px; }
.modal-success .check-icon {
    width: 64px; height: 64px; border-radius: 50%;
    background: rgba(13,148,136,0.12); color: var(--accent);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.8rem; margin-bottom: 16px;
}
.modal-success h2 { font-size: 1.4rem; font-weight: 700; margin-bottom: 8px; }
.modal-success p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; }

/* RESPONSIVE */
@media (min-width: 1025px) {
    .hero { padding: 140px 48px 100px; gap: 56px; }
    .section { padding: 96px 48px; }
    .at-a-glance-bar { padding: 24px 48px; }
    .nav-inner { padding: 14px 48px; }
    .footer { padding: 48px 48px; }
    .infographic-hero {
        padding-top: 88px;
    }
    .infographic-hero-inner {
        max-width: 1180px;
        padding: 12px 32px 28px;
    }
    .stats-strip-header {
        margin-bottom: 16px;
    }
    .infographic-scroll {
        scroll-padding-inline: 0;
        border-radius: 14px;
    }
    .infographic-track {
        padding: 12px 0 16px;
        gap: 20px;
    }
    .infographic-scroll .infographic-slide {
        flex: 0 0 292px;
        width: 292px;
        max-width: none;
        scroll-snap-stop: normal;
    }
    .infographic-stats-static {
        display: grid;
        grid-template-columns: repeat(2, 300px);
        grid-template-rows: repeat(2, auto);
        justify-content: center;
        align-content: start;
        align-items: stretch;
        gap: 8px;
        padding: 8px 24px 18px;
        max-width: none;
        width: 100%;
    }
    .infographic-stats-static .infographic-slide {
        flex: none;
        display: flex;
        width: 300px;
        max-width: 300px;
        min-width: 300px;
    }
    .infographic-stats-static .stat-card {
        min-height: 0;
        height: 100%;
    }
    .stat-card {
        min-height: 0;
        padding: 6px 8px 7px;
        border-radius: 10px;
        gap: 3px;
    }
    .stat-card-title {
        font-size: 0.78rem;
        line-height: 1.15;
    }
    .stat-card-desc {
        font-size: 0.68rem;
        line-height: 1.3;
    }
    .stat-card-value {
        font-size: 2.56rem;
    }
    .stat-card-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
        border-radius: 10px;
    }
    .infographic-scroll-wrap::before,
    .infographic-scroll-wrap::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 16px;
        width: 40px;
        z-index: 2;
        pointer-events: none;
    }
    .infographic-scroll-wrap::before {
        left: 0;
        background: linear-gradient(90deg, var(--bg-secondary), transparent);
    }
    .infographic-scroll-wrap::after {
        right: 0;
        background: linear-gradient(270deg, var(--bg-secondary), transparent);
    }
}
@media (min-width: 1440px) {
    .hero { padding-left: 64px; padding-right: 64px; }
    .section { padding-left: 64px; padding-right: 64px; }
    .nav-inner { padding-left: 64px; padding-right: 64px; max-width: 1400px; }
}
@media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; text-align: center; padding-top: 100px; min-height: auto; }
    .hero.hero-mid-page { padding-top: 64px; }
    .hero-content { max-width: 100%; margin: 0 auto; }
    .hero-actions { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-image { order: -1; }
    .hero-device-placeholder, .hero-device-carousel { max-width: 320px; aspect-ratio: 3/4; }
}
@media (max-width: 768px) {
    .nav-inner { padding: 12px 16px; }
    .nav-links { gap: 10px; }
    .nav-link { font-size: 0.82rem; }
    .nav-link.hide-mobile { display: none; }
    .features-bento { grid-template-columns: 1fr; }
    .feat-span-5, .feat-span-6, .feat-span-7 { grid-column: span 1; }
    .product-cards { grid-template-columns: 1fr; max-width: 400px; }
    .sticky-cta { display: block; }
    body { padding-bottom: 72px; }
    .hero { padding-bottom: 48px; }
    .hero.hero-mid-page { padding-bottom: 48px; }
}
@media (max-width: 480px) {
    .hero h1,
    .hero .hero-title { font-size: 1.75rem; }
    .section { padding: 56px 16px; }
    .modal { margin: 12px; }
    .modal-header, .modal-body { padding-left: 20px; padding-right: 20px; }
}
/* Skip link, utilities, extracted inline styles from home.html */
.skip-link {
    position: absolute;
    top: -120px;
    left: 16px;
    z-index: 10001;
    padding: 10px 18px;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: top 0.2s ease;
}
.skip-link:focus {
    top: 16px;
    outline: none;
    box-shadow: 0 0 0 3px var(--bg-primary), 0 0 0 5px var(--primary);
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.final-cta-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.trust-narrow-grid {
    max-width: 820px;
    margin: 0 auto;
}
.trust-card-centered {
    text-align: center;
}
.trust-card-centered .icon {
    margin: 0 auto 16px;
}
.modal-header-centered {
    text-align: center;
}
.modal-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(56, 160, 208, 0.1);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 16px;
}
.modal-deposit-callout {
    background: linear-gradient(145deg, rgba(13, 148, 136, 0.08) 0%, rgba(56, 160, 208, 0.08) 100%);
    border: 1px solid rgba(13, 148, 136, 0.2);
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 20px;
    text-align: center;
}
.modal-deposit-callout-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}
.modal-deposit-callout-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.modal-name-hint {
    font-weight: 400;
    color: var(--text-muted);
}
.modal-card-label-subtle {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 4px;
}
.modal-step-hidden {
    display: none !important;
}
.modal-success-cta {
    margin-top: 24px;
}
.footer-copy-line {
    margin-top: 6px;
}

@media (prefers-reduced-motion: reduce) {
    .bg-gradient {
        animation: none !important;
    }
    .scroll-progress {
        transition: none !important;
    }
    .fade-in,
    .slide-in-left,
    .slide-in-right,
    .scale-in { transition: none !important; }
    .hero-device-carousel-inner {
        scroll-behavior: auto; }
    .modal { animation: none !important; }
    .hero-carousel-nav button,
    .hero-carousel-dot { transition: none !important; }
}
