/* =====================================================
   HIGH VELOCITY TRADING — STYLES
   Inspired by Quartr design system
   ===================================================== */

/* ─── RESET ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
img, svg { display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─── VARIABLES ─────────────────────────────────────── */
:root {
    --bg:         #000000;
    --bg-1:       #04040a;
    --bg-2:       #0a0a14;
    --border:     rgba(255,255,255,0.07);
    --border-2:   rgba(255,255,255,0.13);
    --text:       #ffffff;
    --text-2:     #8a8a9e;
    --text-3:     #55556a;
    --accent:     #0055fe;
    --accent-dim: rgba(0,85,254,0.15);
    --radius:     12px;
    --radius-lg:  18px;
    --nav-h:      100px;
    --max-w:      1160px;
    --font:       'Inter', system-ui, sans-serif;
}

/* ─── BASE ──────────────────────────────────────────── */
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ─── CONTAINER ─────────────────────────────────────── */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── TYPOGRAPHY HELPERS ────────────────────────────── */
.section-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-heading {
    font-family: 'General Sans', 'Inter', sans-serif;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 16px;
}

.section-sub {
    font-size: 16px;
    color: var(--text-2);
    max-width: 500px;
    line-height: 1.6;
    margin-bottom: 56px;
}

.text-link {
    color: var(--text);
    text-decoration: underline;
    text-underline-offset: 3px;
    opacity: 0.6;
    transition: opacity 0.2s;
}
.text-link:hover { opacity: 1; }

/* ─── BUTTONS ───────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s cubic-bezier(0.4,0,0.2,1),
                box-shadow 0.2s cubic-bezier(0.4,0,0.2,1),
                background 0.2s ease,
                border-color 0.2s ease;
}

/* Shimmer sweep on hover */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -80%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 0%,
        rgba(255,255,255,0.18) 50%,
        transparent 100%
    );
    transform: skewX(-15deg);
    transition: none;
    pointer-events: none;
}
.btn:hover::before {
    left: 140%;
    transition: left 0.5s ease;
}

/* Primary */
.btn-primary {
    background: #0055fe;
    color: #fff;
    border: 1px solid rgba(100,160,255,0.35);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.18),
        0 1px 8px rgba(0,85,254,0.35);
}
.btn-primary:hover {
    background: #1a6aff;
    transform: translateY(-1px);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.22),
        0 4px 20px rgba(0,85,254,0.40);
}
.btn-primary:active {
    transform: translateY(0);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}

/* Ghost */
.btn-ghost {
    background: rgba(255,255,255,0.05);
    color: var(--text);
    border: 1px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(255,255,255,0.18);
    transform: translateY(-1px);
}
.btn-ghost:active {
    transform: translateY(0);
}

.btn-lg {
    padding: 13px 28px;
    font-size: 15px;
    border-radius: 10px;
}

.btn-full {
    width: 100%;
}

/* ─── NAV ───────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    height: var(--nav-h);
    transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}
.nav--scrolled {
    background: rgba(0,0,0,0.80);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.nav-inner {
    padding: 0 40px 0 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    flex-shrink: 0;
    margin-left: -20px;
    margin-top: -10px;
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-wordmark {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255,255,255,0.90);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    white-space: nowrap;
    margin-left: -50px;
}
.logo-img {
    height: 94px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 10px rgba(0,85,254,0.30));
}

/* Glass pill container for nav links */
.nav-pill {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 100px;
    padding: 6px 8px;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.06),
        0 4px 24px rgba(0,0,0,0.25);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
}
.nav-links a {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.55);
    padding: 8px 18px;
    border-radius: 100px;
    transition: color 0.18s, background 0.18s;
    letter-spacing: 0.01em;
}
.nav-links a:hover {
    color: #fff;
    background: rgba(255,255,255,0.08);
}
.nav-links a.active {
    color: var(--accent);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.nav-text-link {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.55);
    transition: color 0.18s;
    letter-spacing: 0.01em;
}
.nav-text-link:hover { color: #fff; }

.nav-btn {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.01em;
    padding: 8px 20px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.20);
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background 0.18s, border-color 0.18s;
}
.nav-btn:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.30);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    margin-left: auto;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(11,11,13,0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px 28px;
    z-index: 199;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.22s, transform 0.22s;
    pointer-events: none;
}
.mobile-menu.open {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 20px;
}
.mobile-menu ul a {
    display: block;
    padding: 11px 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-2);
    border-radius: 8px;
    transition: color 0.18s, background 0.18s;
}
.mobile-menu ul a:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

/* ─── HERO ──────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:
        radial-gradient(ellipse 60% 70% at 60% 40%, rgba(0,18,120,0.55) 0%, transparent 100%),
        radial-gradient(ellipse 35% 45% at 10% 80%, rgba(0,12,90,0.35) 0%, transparent 100%),
        #000000;
}

.hero-sticky {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Full-bleed canvas — sits behind all hero content */
#bullExplosionCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    display: block;
    mix-blend-mode: screen;
    will-change: transform;
}

/* Soft left-side vignette so text stays readable */
.hero-sticky::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.72) 0%,
        rgba(0,0,0,0.35) 38%,
        transparent 65%
    );
    pointer-events: none;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    padding-left: 80px;
    padding-top: var(--nav-h);
}

/* Subtle top-center glow — breathing animation */
.hero-glow {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 600px;
    background: radial-gradient(ellipse 50% 45% at 50% 0%, rgba(0,25,160,0.35) 0%, transparent 70%);
    pointer-events: none;
    animation: glowBreathe 6s ease-in-out infinite;
}

@keyframes glowBreathe {
    0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1.00); }
    50%       { opacity: 1.0; transform: translateX(-50%) scale(1.08); }
}

.hero-container {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 60%;
    margin-left: 0;
    margin-right: auto;
}

.hero-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-dim);
    border: 1px solid rgba(0,85,254,0.25);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 28px;
}

.hero-heading {
    font-family: 'General Sans', 'Inter', sans-serif;
    font-size: clamp(34px, 4.5vw, 58px);
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1.15;
    color: rgba(255,255,255,0.95);
    max-width: 720px;
    margin-bottom: 22px;
}

/* Rotating line */
.hero-rotate-wrap {
    display: block;
    position: relative;
    height: 1.15em;
    overflow: hidden;
}

.rotate-item {
    display: block;
    position: absolute;
    left: 0; right: 0;
    color: var(--accent);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}
.rotate-item.active {
    opacity: 1;
    transform: translateY(0);
}

.hero-sub {
    font-size: 16px;
    color: var(--text-2);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-2);
    font-size: 14px;
}
.proof-dots {
    display: flex;
}
.proof-dots span {
    position: relative;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(160deg, #1a3a7a, #0044cc);
    border: 2px solid var(--bg);
    margin-left: -14px;
    overflow: hidden;
    flex-shrink: 0;
}
.proof-dots span:first-child { margin-left: 0; }

/* Head */
.proof-dots span::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(180,210,255,0.75);
}

/* Shoulders / body */
.proof-dots span::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 13px;
    border-radius: 50% 50% 0 0;
    background: rgba(180,210,255,0.75);
}

/* ─── LOGO BAR ──────────────────────────────────────── */
.logo-bar {
    padding: 48px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.logo-bar-label {
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-3);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.logo-track-wrap {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}
.logo-track {
    display: flex;
    gap: 0;
    animation: marquee 36s linear infinite;
    width: max-content;
}
.logo-track span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-3);
    letter-spacing: 0.01em;
    padding: 0 36px;
    white-space: nowrap;
    transition: color 0.2s;
}
.logo-track span:hover { color: var(--text-2); }

@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ─── SECTION STRUCTURE ─────────────────────────────── */
.section {
    padding: 140px 0;
}

/* ─── PRODUCT CARDS ─────────────────────────────────── */
.product-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: border-color 0.28s ease, transform 0.28s cubic-bezier(0.4,0,0.2,1), box-shadow 0.28s ease;
    display: flex;
    flex-direction: column;
    gap: 14px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 4px 20px rgba(0,0,0,0.25);
}
.product-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.10) 50%, transparent);
    pointer-events: none;
}
.product-card:hover {
    border-color: rgba(0,85,254,0.25);
    transform: translateY(-4px);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.08),
        0 16px 48px rgba(0,0,0,0.4),
        0 0 0 1px rgba(0,85,254,0.12);
}

.product-card-icon {
    width: 42px;
    height: 42px;
    background: var(--accent-dim);
    border: 1px solid rgba(0,85,254,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 4px;
}

.product-card h3 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.product-card p {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.6;
    flex: 1;
}

.card-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    margin-top: 4px;
}


/* ─── ABOUT ─────────────────────────────────────────── */
.about-section {
    background:
        radial-gradient(ellipse 30% 50% at 80% 30%, rgba(0,30,120,0.18) 0%, transparent 100%),
        var(--bg);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
}

.about-left {
    position: sticky;
    top: calc(var(--nav-h) + 40px);
}

.about-left .section-heading {
    font-size: clamp(28px, 3.5vw, 42px);
    max-width: 400px;
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-card {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.28s ease, transform 0.28s cubic-bezier(0.4,0,0.2,1);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.08),
        0 4px 20px rgba(0,0,0,0.25);
}
.about-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.10) 50%, transparent);
    pointer-events: none;
}
.about-card:hover {
    border-color: rgba(255,255,255,0.14);
    transform: translateY(-2px);
}

.about-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
}

.about-card p {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .about-left { position: static; }
}

/* ─── WHAT'S INCLUDED ───────────────────────────────── */
.included-section {
    background:
        radial-gradient(ellipse 28% 40% at 90% 60%, rgba(0,35,130,0.16) 0%, transparent 100%),
        radial-gradient(ellipse 22% 30% at 5% 20%, rgba(0,25,100,0.10) 0%, transparent 100%),
        var(--bg);
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.included-card {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: border-color 0.28s ease, transform 0.28s cubic-bezier(0.4,0,0.2,1), box-shadow 0.28s ease;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 4px 20px rgba(0,0,0,0.25);
}
.included-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.10) 50%, transparent);
    pointer-events: none;
}
.included-card:hover {
    border-color: rgba(0,85,254,0.22);
    transform: translateY(-3px);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.07),
        0 12px 36px rgba(0,0,0,0.35),
        0 0 0 1px rgba(0,85,254,0.10);
}

.included-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-dim);
    border: 1px solid rgba(0,85,254,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.included-card h3 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.included-card p {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.65;
}

/* ─── TESTIMONIAL HEADLINE ──────────────────────────── */
.testimonial-headline {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.4;
}

/* ─── PRICING TAGLINE ───────────────────────────────── */
.pricing-tagline {
    text-align: center;
    font-size: 14px;
    color: var(--text-3);
    margin-bottom: 32px;
    margin-top: -40px;
}

/* ─── FOOTER TAGLINE ────────────────────────────────── */
.footer-tagline {
    font-size: 12px;
    color: var(--text-3);
    line-height: 1.6;
    margin-top: -4px;
}

/* ─── FEATURES SHOWCASE ─────────────────────────────── */
.features-section {
    background:
        radial-gradient(ellipse 30% 45% at 80% 40%, rgba(0,40,140,0.18) 0%, transparent 100%),
        radial-gradient(ellipse 20% 30% at 10% 70%, rgba(0,30,100,0.12) 0%, transparent 100%),
        #000000;
    position: relative;
    overflow: hidden;
}
.features-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.features-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.features-left {
    position: sticky;
    top: calc(var(--nav-h) + 40px);
}

.feature-tabs {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.feature-tab {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
}
.feature-tab:hover {
    background: rgba(255,255,255,0.03);
}
.feature-tab.active {
    background: rgba(0,85,254,0.07);
    border-color: rgba(0,85,254,0.22);
    border-left: 2px solid var(--accent);
    padding-left: 15px;
    box-shadow: inset 0 1px 0 rgba(0,85,254,0.10), 0 2px 12px rgba(0,85,254,0.08);
}

.tab-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-3);
    margin-top: 6px;
    flex-shrink: 0;
    transition: background 0.2s;
}
.feature-tab.active .tab-dot {
    background: var(--accent);
    box-shadow: 0 0 8px rgba(0,85,254,0.75), 0 0 2px rgba(0,85,254,1);
}
.feature-tab.active .tab-text strong {
    color: #fff;
}

.tab-text strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px;
}
.tab-text span {
    display: block;
    font-size: 13px;
    color: var(--text-2);
    line-height: 1.5;
}

/* Feature panels — liquid glass */
.features-right {
    position: relative;
}
.features-right::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 560px;
    height: 560px;
    background: radial-gradient(ellipse at center, rgba(0,50,160,0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.feature-panel {
    display: none;
    position: relative;
    z-index: 1;
    background: rgba(12,12,20,0.75);
    backdrop-filter: blur(32px) saturate(140%);
    -webkit-backdrop-filter: blur(32px) saturate(140%);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.12),
        inset 0 -1px 0 rgba(0,0,0,0.20),
        0 4px 6px rgba(0,0,0,0.15),
        0 16px 60px rgba(0,0,0,0.55),
        0 0 0 1px rgba(0,85,254,0.06);
    animation: panelIn 0.35s cubic-bezier(0.4,0,0.2,1) both;
    overflow: hidden;
}
.feature-panel::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,85,254,0.5) 40%, rgba(0,85,254,0.5) 60%, transparent);
    pointer-events: none;
}
.feature-panel.active { display: block; }

@keyframes panelIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.panel-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}

.panel-headline {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 14px;
}

.panel-desc {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* "What you see" block */
.panel-sees {
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 20px 22px;
    margin-bottom: 18px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.panel-sees-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--text-3);
    margin-bottom: 14px;
}

.panel-see-list {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.panel-see-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: var(--text-2);
    line-height: 1.5;
}

.panel-see-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    margin-top: 5px;
}

/* Result callout */
.panel-result {
    background: rgba(0,85,254,0.09);
    border: 1px solid rgba(0,85,254,0.25);
    border-left: 3px solid var(--accent);
    border-radius: 10px;
    padding: 16px 20px;
    font-size: 13.5px;
    color: var(--text-2);
    line-height: 1.6;
    box-shadow:
        inset 0 1px 0 rgba(0,85,254,0.15),
        0 4px 20px rgba(0,85,254,0.08);
}

.panel-result span {
    font-weight: 700;
    color: var(--text);
}

/* ─── TESTIMONIALS ──────────────────────────────────── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: border-color 0.28s ease, transform 0.28s cubic-bezier(0.4,0,0.2,1), box-shadow 0.28s ease;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 4px 20px rgba(0,0,0,0.25);
}
.testimonial-card:hover {
    border-color: rgba(255,255,255,0.14);
    transform: translateY(-3px);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.09),
        0 14px 40px rgba(0,0,0,0.35);
}

.quote-icon {
    color: var(--text);
    flex-shrink: 0;
}

.testimonial-card p {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.7;
    flex: 1;
}

.testimonial-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.testimonial-avatar {
    position: relative;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(160deg, #1a3a7a, #0044cc);
    flex-shrink: 0;
    overflow: hidden;
}

/* Head */
.testimonial-avatar::before {
    content: '';
    position: absolute;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(180,210,255,0.75);
}

/* Shoulders */
.testimonial-avatar::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 16px;
    border-radius: 50% 50% 0 0;
    background: rgba(180,210,255,0.75);
}
.testimonial-meta strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
}
.testimonial-meta span {
    display: block;
    font-size: 12px;
    color: var(--text-3);
    margin-top: 1px;
}

/* ─── PRICING ───────────────────────────────────────── */
.pricing-section {
    position: relative;
    overflow: hidden;
}
.pricing-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(0,60,200,0.20) 0%, transparent 60%);
    pointer-events: none;
}

/* Pricing grid */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 780px;
    margin: 0 auto;
}

/* Pricing cards — blue liquid glass */
.pricing-card {
    background: linear-gradient(165deg, rgba(60,130,255,0.06) 0%, rgba(255,255,255,0.03) 50%, rgba(0,40,160,0.04) 100%);
    backdrop-filter: blur(40px) saturate(160%);
    -webkit-backdrop-filter: blur(40px) saturate(160%);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 20px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 1px 0 inset rgba(255,255,255,0.12),
        0 12px 40px rgba(0,0,0,0.30);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s;
}
.pricing-card::before {
    content: '';
    position: absolute;
    top: 0; left: 15%; right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.20), transparent);
    pointer-events: none;
}
.pricing-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 45%;
    background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, transparent 100%);
    pointer-events: none;
    border-radius: 20px 20px 0 0;
}
.pricing-card:hover {
    transform: translateY(-3px);
    box-shadow:
        0 1px 0 inset rgba(255,255,255,0.15),
        0 20px 60px rgba(0,0,0,0.40);
}

/* Featured card — stronger blue */
.pricing-card--featured {
    background: linear-gradient(165deg, rgba(60,130,255,0.12) 0%, rgba(255,255,255,0.04) 50%, rgba(0,40,160,0.08) 100%);
    border-color: rgba(0,85,254,0.30);
    box-shadow:
        0 1px 0 inset rgba(100,170,255,0.18),
        0 12px 40px rgba(0,0,0,0.30),
        0 0 60px rgba(0,85,254,0.12);
}
.pricing-card--featured::before {
    background: linear-gradient(90deg, transparent, rgba(100,170,255,0.40), transparent);
}
.pricing-card--featured:hover {
    box-shadow:
        0 1px 0 inset rgba(100,170,255,0.22),
        0 20px 60px rgba(0,0,0,0.40),
        0 0 80px rgba(0,85,254,0.18);
}

.pricing-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    background: var(--accent);
    padding: 4px 10px;
    border-radius: 6px;
    position: absolute;
    top: 16px;
    right: 16px;
}

.pricing-tier {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.pricing-price {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text);
    line-height: 1;
    margin-bottom: 24px;
}
.pricing-cadence {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-3);
    letter-spacing: 0;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
    margin-bottom: 28px;
}
.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-2);
}
.pricing-features li svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--accent);
}

.pricing-cta {
    margin-top: auto;
    padding: 13px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
}

.pricing-card .pricing-features {
    margin-bottom: 24px;
}

.pricing-note {
    text-align: center;
    font-size: 14px;
    color: var(--text-3);
    margin-top: 32px;
}
.pricing-note a {
    color: var(--text-2);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.pricing-note a:hover { color: var(--text); }

/* ─── FAQ ───────────────────────────────────────────── */
.faq-section {
    background:
        radial-gradient(ellipse 30% 50% at 95% 30%, rgba(0,30,120,0.14) 0%, transparent 100%),
        var(--bg);
}

.faq-inner {
    max-width: 720px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    text-align: left;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    background: transparent;
    transition: background 0.18s;
}
.faq-q:hover { background: rgba(255,255,255,0.03); }
.faq-q svg {
    flex-shrink: 0;
    color: var(--text-3);
    transition: transform 0.25s;
}
.faq-item.open .faq-q svg { transform: rotate(180deg); }

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.32s ease, padding 0.32s ease;
}
.faq-a p {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.7;
}
.faq-item.open .faq-a {
    max-height: 300px;
}

/* ─── FINAL CTA ─────────────────────────────────────── */
.cta-section {
    padding: 120px 0;
    background:
        radial-gradient(ellipse 35% 60% at 30% 80%, rgba(0,40,140,0.18) 0%, transparent 100%),
        var(--bg);
    position: relative;
    overflow: hidden;
}

.cta-inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-inner .section-label {
    display: block;
    margin-bottom: 20px;
}

.cta-heading {
    font-family: 'General Sans', 'Inter', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin-bottom: 18px;
}

.cta-sub {
    font-size: 15px;
    color: var(--text-2);
    line-height: 1.7;
    margin-bottom: 32px;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* ─── FOOTER ────────────────────────────────────────── */
.footer {
    padding: 64px 0 40px;
    background:
        radial-gradient(ellipse 25% 50% at 80% 50%, rgba(0,25,100,0.12) 0%, transparent 100%),
        var(--bg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 56px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}
.footer-logo {
    width: 200px;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    opacity: 0.9;
    border-radius: 6px;
    margin-left: -40px;
}
.footer-brand p {
    font-size: 13px;
    color: var(--text-3);
    line-height: 1.5;
}
.footer-phone {
    font-size: 13px;
    color: var(--text-3);
    transition: color 0.18s;
}
.footer-phone:hover { color: var(--text-2); }

.footer-partners {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-top: -42px;
}
.footer-partner-logo {
    height: 18px;
    width: auto;
    opacity: 0.6;
    transition: opacity 0.18s;
}
.footer-partners a:last-child .footer-partner-logo {
    height: 42px;
    margin-left: -18px;
}
.footer-partner-logo:hover {
    opacity: 0.9;
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-3);
    margin-bottom: 16px;
}
.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-col a {
    font-size: 14px;
    color: var(--text-2);
    transition: color 0.18s;
}
.footer-col a:hover { color: var(--text); }

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-bottom p {
    font-size: 13px;
    color: var(--text-3);
}
.footer-risk {
    font-size: 11px;
    color: var(--text-3);
    opacity: 0.6;
    max-width: 680px;
    line-height: 1.5;
}

/* ─── SCROLL REVEAL ─────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(4px);
    transition:
        opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* Stagger children in grids */
.product-cards .reveal:nth-child(1) { transition-delay: 0s; }
.product-cards .reveal:nth-child(2) { transition-delay: 0.08s; }
.product-cards .reveal:nth-child(3) { transition-delay: 0.16s; }
.product-cards .reveal:nth-child(4) { transition-delay: 0.24s; }

.included-grid .reveal:nth-child(1) { transition-delay: 0s; }
.included-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.included-grid .reveal:nth-child(3) { transition-delay: 0.10s; }
.included-grid .reveal:nth-child(4) { transition-delay: 0.16s; }
.included-grid .reveal:nth-child(5) { transition-delay: 0.20s; }

.testimonials-grid .reveal:nth-child(1) { transition-delay: 0s; }
.testimonials-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.testimonials-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.testimonials-grid .reveal:nth-child(4) { transition-delay: 0.20s; }
.testimonials-grid .reveal:nth-child(5) { transition-delay: 0.24s; }
.testimonials-grid .reveal:nth-child(6) { transition-delay: 0.28s; }

.pricing-grid .reveal:nth-child(1) { transition-delay: 0s; }
.pricing-grid .reveal:nth-child(2) { transition-delay: 0.12s; }

.about-right .reveal:nth-child(1) { transition-delay: 0s; }
.about-right .reveal:nth-child(2) { transition-delay: 0.10s; }
.about-right .reveal:nth-child(3) { transition-delay: 0.20s; }

/* Scale-in for cards */
.product-card.reveal,
.included-card.reveal,
.testimonial-card.reveal,
.pricing-card.reveal,
.about-card.reveal {
    transform: translateY(28px) scale(0.97);
}
.product-card.reveal.visible,
.included-card.reveal.visible,
.testimonial-card.reveal.visible,
.pricing-card.reveal.visible,
.about-card.reveal.visible {
    transform: translateY(0) scale(1);
}

/* Section headings — slide from left */
.section-heading.reveal {
    transform: translateX(-20px) translateY(0);
}
.section-heading.reveal.visible {
    transform: translateX(0) translateY(0);
}

/* Section labels — fade only */
.section-label.reveal {
    transform: none;
    filter: none;
    transition: opacity 0.5s ease;
}

/* FAQ stagger */
.faq-list .reveal:nth-child(1) { transition-delay: 0s; }
.faq-list .reveal:nth-child(2) { transition-delay: 0.06s; }
.faq-list .reveal:nth-child(3) { transition-delay: 0.12s; }
.faq-list .reveal:nth-child(4) { transition-delay: 0.18s; }
.faq-list .reveal:nth-child(5) { transition-delay: 0.24s; }

/* CTA — scale up */
.cta-inner.reveal {
    transform: translateY(20px) scale(0.98);
}
.cta-inner.reveal.visible {
    transform: translateY(0) scale(1);
}

/* Proof dots subtle pulse */
.proof-dots span {
    animation: dotPulse 3s ease-in-out infinite;
}
.proof-dots span:nth-child(2) { animation-delay: 0.3s; }
.proof-dots span:nth-child(3) { animation-delay: 0.6s; }
.proof-dots span:nth-child(4) { animation-delay: 0.9s; }
.proof-dots span:nth-child(5) { animation-delay: 1.2s; }

@keyframes dotPulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.55; }
}

/* ─── CHECKOUT OVERLAY ──────────────────────────────── */

/*
 * Layout model:
 *   overlay (fixed, fills screen, overflow hidden)
 *     inner (flex col, full height, pad-top clears fixed nav)
 *       header (flex-shrink:0 — always visible sub-bar)
 *       body   (flex:1, overflow-y scroll, scrollbar hidden — form scrolls here)
 */

/*
 * CHECKOUT OVERLAY — layout model:
 *
 *  .checkout-overlay  (fixed, inset:0, overflow-y:auto — THE scroll container)
 *    .checkout-header (sticky top:var(--nav-h) — always visible sub-bar)
 *    .checkout-body   (normal flow, grows to fit iframe)
 *
 * The overlay itself scrolls. The header sticks just below the nav.
 * No nested overflow needed — works on all screen sizes.
 */

.checkout-overlay {
    position: fixed;
    inset: 0;
    z-index: 150;
    background: #000;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    /* slide-up animation driven on the inner content via scroll-snap trick
       — we use a wrapper div for the transform so the overlay itself scrolls */
}
.checkout-overlay::-webkit-scrollbar { display: none; }
.checkout-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

/* Wrapper that carries the slide-up animation */
.checkout-inner {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding-top: var(--nav-h);
    transform: translateY(18px);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.checkout-overlay.open .checkout-inner {
    transform: translateY(0);
}

/* Sticky sub-bar — stays just below the fixed nav while you scroll */
.checkout-header {
    position: sticky;
    top: var(--nav-h);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 32px;
    background: #000;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    flex-shrink: 0;
}

.checkout-plan-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--accent);
}

.checkout-close {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.55);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 8px;
    padding: 8px 16px;
    cursor: pointer;
    transition: color 0.18s, background 0.18s, border-color 0.18s;
    /* Ensure large enough tap target on mobile */
    min-height: 44px;
    min-width: 44px;
}
.checkout-close:hover,
.checkout-close:focus-visible {
    color: #fff;
    background: rgba(255,255,255,0.09);
    border-color: rgba(255,255,255,0.22);
    outline: none;
}

/* Form area — normal document flow, no overflow tricks */
.checkout-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 24px 80px;
    width: 100%;
}

/* Loading state */
.checkout-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 80px 0;
    color: rgba(255,255,255,0.35);
    font-size: 14px;
}
.checkout-loading.hidden { display: none; }

.checkout-spinner {
    width: 28px;
    height: 28px;
    border: 2px solid rgba(255,255,255,0.08);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: coSpin 0.75s linear infinite;
}
@keyframes coSpin { to { transform: rotate(360deg); } }

/* Iframe — fills width, tall enough for full Jotform on every device */
.checkout-form-wrap {
    width: 100%;
    max-width: 720px;
}
.checkout-form-wrap iframe {
    width: 100%;
    /* Tall default so form never clips before postMessage resize fires */
    height: clamp(600px, 150vh, 1400px);
    border: none;
    background: transparent;
    display: block;
    transition: height 0.25s ease;
}

/* ─── MEDIA QUERIES ─────────────────────────────────── */

/* Large tablets / small laptops */
@media (max-width: 1200px) {
    .hero .container {
        padding-left: 60px;
    }
}

@media (max-width: 1024px) {
    .features-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .features-left {
        position: static;
    }
    .product-cards {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .included-grid {
        grid-template-columns: 1fr 1fr;
    }
    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero .container {
        padding-left: 40px;
    }
    .hero-container {
        max-width: 60%;
    }
    .about-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .about-left {
        position: static;
    }
    .nav-inner { padding: 0 24px; }
}

@media (max-width: 768px) {
    :root { --nav-h: 64px; }

    /* Checkout — mobile */
    .checkout-header { padding: 8px 16px; }
    .checkout-close { padding: 8px 12px; }
    .checkout-close span { display: none; }   /* icon only on mobile */
    .checkout-body { padding: 16px 8px 60px; }
    .checkout-form-wrap iframe { height: clamp(700px, 180vh, 1600px); }

    /* Nav: hide desktop nav elements, show hamburger */
    .nav-pill, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .nav-inner { padding: 0 20px; }
    .nav-logo { margin-left: 0; }
    .logo-img { height: 36px; width: auto; }
    .nav-wordmark { margin-left: -12px; font-size: 9px; }

    .section { padding: 80px 0; }

    .section-heading { font-size: clamp(26px, 7vw, 36px); }
    .section-sub { font-size: 15px; margin-bottom: 32px; }

    /* Hero mobile — full reset */
    .hero {
        min-height: 100vh;
    }
    .hero-sticky {
        align-items: flex-start;
        min-height: 100vh;
    }
    .hero .container {
        padding: 0 20px !important;
        padding-top: calc(var(--nav-h) + 20px) !important;
        margin: 0 !important;
        max-width: 100% !important;
        width: 100%;
    }
    .hero-container {
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        width: 100%;
        align-items: flex-start;
    }
    .hero-sticky::after {
        background: linear-gradient(
            to bottom,
            rgba(0,0,0,0.65) 0%,
            rgba(0,0,0,0.30) 50%,
            transparent 80%
        );
    }
    .hero-heading { font-size: clamp(28px, 7vw, 40px); max-width: 100%; }
    .hero-sub { font-size: 15px; max-width: 100%; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn { width: 100%; justify-content: center; }

    .product-cards { grid-template-columns: 1fr; gap: 16px; }
    .included-grid { grid-template-columns: 1fr; gap: 16px; }

    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; gap: 16px; }
    .pricing-card { padding: 28px 24px; }
    .pricing-badge { top: 12px; right: 12px; }

    .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }

    .features-left, .features-right { padding: 0; }
    .feature-panel { padding: 28px 24px; }

    .cta-section { padding: 80px 0; }
    .cta-heading { font-size: clamp(28px, 7vw, 36px); }
    .cta-actions { flex-direction: column; width: 100%; }
    .cta-actions .btn { width: 100%; justify-content: center; }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .footer-brand { grid-column: 1 / -1; }
    .footer-logo { margin-left: 0; width: 160px; }
    .footer-partners a:last-child .footer-partner-logo { margin-left: 0; }
}

@media (max-width: 480px) {
    .pricing-grid { max-width: 100%; }
    .pricing-package-img { width: 120px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand { grid-column: auto; }
    .hero-badge { font-size: 10px; padding: 4px 10px; }
    .hero-heading { font-size: clamp(26px, 8vw, 32px); }
    .about-card { padding: 24px; }
    .about-card h3 { font-size: 15px; }
    .testimonial-card { padding: 24px; }
    .feature-tab { padding: 12px 14px; }
    .panel-headline { font-size: 18px; }
}

/* ─── REDUCED MOTION ────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    /* Keep canvas visible but frozen — bull is already static after play */
    #bullExplosionCanvas { transition: none !important; }
    /* Keep reveal elements visible without the animation */
    .reveal { opacity: 1 !important; transform: none !important; }
    /* Stop marquee */
    .marquee-track { animation: none !important; }
}
