:root {
    --bg: #071120;
    --bg-alt: #0b1d35;
    --panel: rgba(11, 30, 54, 0.78);
    --line: rgba(130, 173, 219, 0.22);
    --text: #e8f2ff;
    --muted: #9bb5d5;
    --primary: #32c2ff;
    --primary-strong: #1ea8df;
    --accent: #56f1cc;
    --shadow: 0 18px 45px rgba(2, 12, 24, 0.45);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: radial-gradient(1200px 600px at 10% -5%, rgba(50, 194, 255, 0.12), transparent 55%),
                radial-gradient(900px 500px at 90% 10%, rgba(86, 241, 204, 0.08), transparent 58%),
                linear-gradient(180deg, #06101e 0%, #071120 40%, #081a2f 100%);
    color: var(--text);
    font-family: "Space Grotesk", "Segoe UI", Tahoma, sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: linear-gradient(120deg, rgba(50, 194, 255, 0.06), transparent 40%, rgba(86, 241, 204, 0.05));
    background-size: 180% 180%;
    animation: ambienceShift 18s ease infinite;
    z-index: -3;
}

h1,
h2,
h3,
.brand,
.btn {
    font-family: "Sora", "Segoe UI", Tahoma, sans-serif;
}

.container {
    width: min(1100px, 92vw);
    margin: 0 auto;
}

.narrow {
    width: min(850px, 92vw);
}

.section {
    padding: 84px 0;
}

.section-alt {
    background: linear-gradient(180deg, rgba(11, 29, 53, 0.66), rgba(6, 17, 32, 0.2));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.background-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    z-index: -1;
}

.floating-files {
    position: fixed;
    inset: -10% 0 0 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.top-folder-lane {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    height: 150px;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.float-item {
    position: absolute;
    left: var(--x, 50%);
    top: 112%;
    font-size: var(--size, 1rem);
    opacity: 0;
    color: rgba(173, 226, 255, 0.32);
    text-shadow: 0 0 10px rgba(50, 194, 255, 0.2);
    transform: translate3d(0, 0, 0);
    will-change: transform, opacity;
    animation:
        fileRise var(--dur, 26s) linear infinite,
        fileSway 6.8s ease-in-out infinite;
    animation-delay: var(--delay, 0s), var(--delay, 0s);
}

.float-item::before {
    content: attr(data-glyph);
}

.lane-item {
    position: absolute;
    left: -14vw;
    top: var(--y, 72px);
    font-size: var(--size, 2rem);
    opacity: 0;
    color: rgba(173, 226, 255, 0.25);
    text-shadow: 0 0 14px rgba(50, 194, 255, 0.18);
    transform: translate3d(0, 0, 0);
    will-change: transform, opacity;
    animation:
        laneDrift var(--dur, 32s) linear infinite,
        laneBob 5.5s ease-in-out infinite;
    animation-delay: var(--delay, 0s), var(--delay, 0s);
}

.lane-item::before {
    content: attr(data-glyph);
}

.grid-overlay,
.scanline-overlay,
.cursor-glow {
    position: fixed;
    inset: 0;
    pointer-events: none;
}

.grid-overlay {
    z-index: -2;
    background-image:
        linear-gradient(rgba(130, 173, 219, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(130, 173, 219, 0.06) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.88) 45%, transparent 88%);
    animation: gridDrift 22s linear infinite;
}

.scanline-overlay {
    z-index: -1;
    opacity: 0.18;
    background: repeating-linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.04) 0px,
        rgba(255, 255, 255, 0.04) 1px,
        transparent 2px,
        transparent 5px
    );
}

.cursor-glow {
    z-index: 3;
    background: radial-gradient(300px circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(86, 241, 204, 0.14), transparent 65%);
    transition: background 0.14s ease-out;
}

.orb-one {
    width: 280px;
    height: 280px;
    left: -80px;
    top: 170px;
    background: rgba(50, 194, 255, 0.16);
    animation: pulse 8s ease-in-out infinite;
}

.orb-two {
    width: 350px;
    height: 350px;
    right: -100px;
    top: 430px;
    background: rgba(86, 241, 204, 0.12);
    animation: pulse 9s ease-in-out infinite reverse;
}

@keyframes pulse {
    0%,
    100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-14px) scale(1.06); }
}

@keyframes fileRise {
    0% {
        transform: translate3d(0, 0, 0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.85;
    }
    80% {
        opacity: 0.55;
    }
    100% {
        transform: translate3d(var(--drift, 24px), -136vh, 0) rotate(11deg);
        opacity: 0;
    }
}

@keyframes fileSway {
    0%,
    100% { margin-left: 0; }
    50% { margin-left: 12px; }
}

@keyframes laneDrift {
    0% {
        transform: translate3d(0, 0, 0) rotate(0deg);
        opacity: 0;
    }
    12% {
        opacity: 0.55;
    }
    88% {
        opacity: 0.5;
    }
    100% {
        transform: translate3d(128vw, 0, 0) rotate(6deg);
        opacity: 0;
    }
}

@keyframes laneBob {
    0%,
    100% { margin-top: 0; }
    50% { margin-top: -7px; }
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(4, 14, 27, 0.72);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(10px);
}

.nav-wrap {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-decoration: none;
    color: var(--text);
    position: relative;
}

.brand::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    transform: scaleX(0.38);
    transform-origin: left center;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: transform 0.3s ease;
}

.brand:hover::after {
    transform: scaleX(1);
}

.site-nav {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.site-nav a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.25s ease;
    position: relative;
}

.site-nav a:hover {
    color: var(--text);
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    transform-origin: center;
    background: linear-gradient(90deg, rgba(50, 194, 255, 0.15), var(--accent), rgba(50, 194, 255, 0.15));
    transition: transform 0.28s ease;
}

.site-nav a:hover::after {
    transform: scaleX(1);
}

.btn {
    border: none;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.01em;
    padding: 12px 20px;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.34) 48%, transparent 100%);
    transform: translateX(-135%);
    transition: transform 0.65s ease;
}

.btn:hover::before {
    transform: translateX(135%);
}

.btn-nav {
    background-color: rgba(50, 194, 255, 0.12);
    color: var(--primary);
    border: 1px solid rgba(50, 194, 255, 0.32);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #06223a;
    box-shadow: 0 10px 28px rgba(49, 192, 249, 0.33);
    animation: ctaBreath 4.8s ease-in-out infinite;
}

.btn-secondary {
    color: var(--text);
    border: 1px solid var(--line);
    background-color: rgba(7, 19, 36, 0.8);
}

.btn-block {
    width: 100%;
}

.btn:hover {
    transform: translateY(-2px);
}

.hero {
    padding-top: 96px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 28px;
    align-items: start;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.13em;
    font-size: 0.78rem;
    color: var(--accent);
    margin-bottom: 16px;
    font-weight: 600;
}

.hero-copy h1 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    line-height: 1.1;
    margin-bottom: 18px;
}

.hero-text {
    color: var(--muted);
    max-width: 60ch;
    margin-bottom: 24px;
}

.cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.hero-metrics {
    list-style: none;
    display: grid;
    gap: 8px;
}

.hero-metrics li {
    color: var(--muted);
    font-size: 0.95rem;
}

.hero-metrics span {
    color: var(--text);
    margin-right: 6px;
    font-weight: 700;
}

.hero-panel {
    background: linear-gradient(180deg, rgba(15, 37, 66, 0.94), rgba(9, 24, 44, 0.9));
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 26px;
    box-shadow: var(--shadow);
    transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.hero-panel:hover {
    border-color: rgba(86, 241, 204, 0.46);
    box-shadow: 0 28px 58px rgba(2, 12, 24, 0.58);
}

.panel-kicker {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.11em;
    font-size: 0.72rem;
    margin-bottom: 10px;
}

.hero-panel h2 {
    font-size: 2.2rem;
    margin-bottom: 8px;
}

.panel-copy,
.panel-note {
    color: var(--muted);
    font-size: 0.93rem;
}

.panel-copy {
    margin-bottom: 20px;
}

.panel-note {
    margin-top: 12px;
}

.section-head {
    margin-bottom: 26px;
}

.section-head h2 {
    font-size: clamp(1.6rem, 3.4vw, 2.5rem);
    line-height: 1.2;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.feature-card,
.status-card,
.faq-item {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 22px;
    box-shadow: var(--shadow);
    transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover,
.status-card:hover,
.faq-item:hover {
    border-color: rgba(86, 241, 204, 0.45);
    box-shadow: 0 24px 50px rgba(3, 13, 24, 0.55);
}

.feature-card h3,
.status-card h3,
.faq-item h3 {
    margin-bottom: 10px;
    font-size: 1.16rem;
}

.feature-card p,
.status-card p,
.faq-item p,
.status-list li {
    color: var(--muted);
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.status-list {
    list-style: none;
    display: grid;
    gap: 10px;
}

.status-list li {
    padding: 9px 10px;
    border-left: 2px solid rgba(86, 241, 204, 0.45);
    background: rgba(3, 10, 20, 0.2);
    border-radius: 6px;
    font-size: 0.95rem;
}

.roadmap-list li {
    border-left-color: rgba(50, 194, 255, 0.55);
}

.faq-item + .faq-item {
    margin-top: 12px;
}

.section-bridge-cta {
    padding-top: 40px;
    padding-bottom: 24px;
}

.bridge-cta {
    text-align: center;
    background: linear-gradient(180deg, rgba(10, 28, 51, 0.9), rgba(6, 17, 32, 0.9));
    border: 1px solid rgba(50, 194, 255, 0.25);
    border-radius: 18px;
    padding: 28px 22px;
}

.bridge-cta h2 {
    font-size: clamp(1.45rem, 3.8vw, 2.05rem);
    margin-bottom: 10px;
}

.bridge-cta p {
    color: var(--muted);
    margin: 0 auto 16px;
    max-width: 62ch;
}

.bridge-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.bridge-meta {
    margin-top: 14px;
    font-size: 0.85rem;
}

.support-grid-wrap .section-head {
    margin-bottom: 16px;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.support-card {
    background: rgba(7, 19, 36, 0.72);
    border: 1px solid rgba(130, 173, 219, 0.24);
    border-radius: 14px;
    padding: 18px;
}

.support-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.support-card p,
.support-card li,
.support-card a {
    color: var(--muted);
    font-size: 0.91rem;
}

.support-card ul {
    list-style: none;
    display: grid;
    gap: 7px;
}

.support-card a {
    text-decoration: none;
    border-bottom: 1px dashed rgba(130, 173, 219, 0.45);
}

.support-card a:hover {
    color: var(--text);
    border-bottom-color: rgba(86, 241, 204, 0.55);
}

.support-note {
    margin-top: 8px;
    color: #ffd9d9;
}

.section-buy {
    padding-top: 68px;
}

.buy-wrap {
    text-align: center;
    background: linear-gradient(180deg, rgba(15, 36, 64, 0.9), rgba(6, 17, 32, 0.95));
    border: 1px solid rgba(86, 241, 204, 0.26);
    border-radius: 20px;
    padding: 42px 24px;
    box-shadow: 0 24px 60px rgba(4, 12, 23, 0.42);
    transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.urgency-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.84rem;
    color: #b8fff0;
    background: linear-gradient(90deg, rgba(86, 241, 204, 0.15), rgba(50, 194, 255, 0.15));
    border: 1px solid rgba(86, 241, 204, 0.45);
    border-radius: 999px;
    padding: 8px 14px;
    margin-bottom: 16px;
    animation: urgencyPulse 3.6s ease-in-out infinite;
}

.pricing-band {
    margin: 8px auto 18px;
    padding: 14px 18px;
    max-width: 420px;
    border-radius: 14px;
    background: rgba(2, 10, 20, 0.42);
    border: 1px solid rgba(50, 194, 255, 0.28);
}

.price-main {
    font-family: "Sora", "Segoe UI", Tahoma, sans-serif;
    font-size: clamp(2rem, 6vw, 2.9rem);
    line-height: 1;
    color: var(--text);
    margin-bottom: 6px;
}

.price-main span {
    font-size: 1rem;
    color: var(--muted);
    margin-left: 6px;
}

.price-sub {
    margin: 0;
    font-size: 0.9rem;
}

.buy-cta {
    min-width: 220px;
}

.orbit-cta {
    --mx: 50%;
    --my: 50%;
    isolation: isolate;
    background-image:
        radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, 0.28), transparent 36%),
        linear-gradient(135deg, var(--primary), var(--accent));
    animation: ctaOrbitGlow 3.4s ease-in-out infinite;
}

.orbit-cta::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    padding: 2px;
    background: conic-gradient(
        from 0deg,
        rgba(86, 241, 204, 0.15),
        rgba(50, 194, 255, 0.92),
        rgba(86, 241, 204, 0.22),
        rgba(50, 194, 255, 0.92),
        rgba(86, 241, 204, 0.15)
    );
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.78;
    animation: orbitSpin 5.2s linear infinite;
}

.orbit-cta:hover::after {
    animation-duration: 1.25s;
    opacity: 1;
    filter: drop-shadow(0 0 9px rgba(86, 241, 204, 0.6));
}

.orbit-cta.is-pulsing {
    animation: ctaShock 0.42s cubic-bezier(0.2, 0.85, 0.25, 1);
}

.orbit-cta.checkout-link.is-disabled {
    animation: none;
}

.orbit-cta.checkout-link.is-disabled::after {
    animation-play-state: paused;
    opacity: 0.35;
    filter: none;
}

.purchase-consent {
    margin: 0 auto 14px;
    max-width: 560px;
    text-align: left;
    background: rgba(7, 19, 36, 0.68);
    border: 1px solid rgba(130, 173, 219, 0.28);
    border-radius: 12px;
    padding: 12px 14px;
}

.consent-check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    cursor: pointer;
    color: var(--text);
    font-size: 0.92rem;
}

.consent-check input {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    accent-color: var(--accent);
    cursor: pointer;
}

.consent-note {
    margin: 8px 0 0;
    color: #ffd9d9;
    font-size: 0.79rem;
}

.consent-stamp {
    margin: 6px 0 0;
    color: #b8fff0;
    font-size: 0.78rem;
}

.checkout-link.is-disabled {
    opacity: 0.55;
    filter: grayscale(0.18);
    pointer-events: none;
    box-shadow: none;
    cursor: not-allowed;
}

.conversion-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    text-align: left;
}

.conversion-card {
    background: rgba(7, 19, 36, 0.72);
    border: 1px solid rgba(130, 173, 219, 0.24);
    border-radius: 14px;
    padding: 16px;
}

.conversion-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.conversion-card p {
    margin: 0;
    font-size: 0.92rem;
}

.conversion-list {
    list-style: none;
    display: grid;
    gap: 7px;
}

.conversion-list li {
    color: var(--muted);
    font-size: 0.91rem;
}

.proof-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.proof-chips span {
    border-radius: 999px;
    border: 1px solid rgba(86, 241, 204, 0.35);
    background: rgba(86, 241, 204, 0.1);
    padding: 5px 10px;
    font-size: 0.8rem;
    color: #b8fff0;
}

.buy-wrap:hover {
    border-color: rgba(86, 241, 204, 0.5);
    box-shadow: 0 28px 68px rgba(4, 12, 23, 0.5);
}

.buy-wrap h2 {
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    margin-bottom: 10px;
}

.buy-wrap p {
    color: var(--muted);
    margin-bottom: 20px;
}

.legal-note {
    font-size: 0.85rem;
    margin-top: 14px;
    color: #ffd9d9;
}

.mobile-sticky-buy {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    background: rgba(4, 14, 27, 0.92);
    border-top: 1px solid rgba(130, 173, 219, 0.28);
    backdrop-filter: blur(10px);
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.mobile-sticky-meta {
    display: grid;
    line-height: 1.2;
}

.mobile-sticky-meta strong {
    color: var(--text);
    font-size: 0.94rem;
}

.mobile-sticky-meta span {
    color: #ffd9d9;
    font-size: 0.74rem;
}

.site-footer {
    border-top: 1px solid var(--line);
    padding: 28px 0 36px;
    background: rgba(5, 13, 23, 0.7);
}

.footer-wrap {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: var(--muted);
    font-size: 0.92rem;
}

.footer-nav {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--muted);
    text-decoration: none;
}

.footer-nav a:hover {
    color: var(--text);
}

.reveal {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
}

.reveal.is-visible {
    animation: revealUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.08s; }
.delay-2 { animation-delay: 0.16s; }
.delay-3 { animation-delay: 0.24s; }

@keyframes revealUp {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes ambienceShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes gridDrift {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-42px, -42px, 0); }
}

@keyframes ctaBreath {
    0%, 100% { box-shadow: 0 10px 28px rgba(49, 192, 249, 0.33); }
    50% { box-shadow: 0 16px 34px rgba(49, 192, 249, 0.44); }
}

@keyframes orbitSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes ctaOrbitGlow {
    0%, 100% {
        box-shadow: 0 10px 28px rgba(49, 192, 249, 0.33);
    }
    50% {
        box-shadow: 0 14px 34px rgba(86, 241, 204, 0.35);
    }
}

@keyframes ctaShock {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(86, 241, 204, 0.48);
    }
    45% {
        transform: scale(0.97);
        box-shadow: 0 0 0 12px rgba(86, 241, 204, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(86, 241, 204, 0);
    }
}

@keyframes urgencyPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(86, 241, 204, 0.2); }
    50% { box-shadow: 0 0 0 8px rgba(86, 241, 204, 0); }
}

@media (max-width: 980px) {
    .hero-grid,
    .feature-grid,
    .status-grid,
    .support-grid {
        grid-template-columns: 1fr;
    }

    .conversion-grid {
        grid-template-columns: 1fr;
    }

    .cursor-glow {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .float-item,
    .lane-item {
        animation: none;
        opacity: 0.18;
    }

    .orbit-cta,
    .orbit-cta::after,
    .orbit-cta.is-pulsing {
        animation: none;
    }
}

@media (max-width: 760px) {
    body {
        padding-bottom: 92px;
    }

    .section {
        padding: 66px 0;
    }

    .nav-wrap {
        min-height: auto;
        padding: 12px 0;
        align-items: flex-start;
        flex-direction: column;
    }

    .site-nav {
        width: 100%;
    }

    .footer-wrap {
        flex-direction: column;
    }

    .urgency-pill {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .bridge-actions {
        flex-direction: column;
    }

    .bridge-actions .btn {
        width: 100%;
    }

    .purchase-consent {
        text-align: left;
    }

    .mobile-sticky-buy {
        display: flex;
    }
}

/* Enhanced Animation Layers */

/* Card Hover Lift - Smooth elevation with enhanced shadow */
.feature-card:hover,
.status-card:hover,
.faq-item:hover {
    transform: translateY(-4px);
}

.hero-panel:hover,
.buy-wrap:hover,
.support-card:hover {
    transform: translateY(-4px);
}

/* Staggered List Item Animations */
.status-list li,
.conversion-list li,
.hero-metrics li {
    opacity: 0;
    animation: listItemFadeSlide 0.6s ease forwards;
    animation-play-state: paused;
}

.status-list li:nth-child(1) { animation-delay: 0.12s; }
.status-list li:nth-child(2) { animation-delay: 0.22s; }
.status-list li:nth-child(3) { animation-delay: 0.32s; }
.status-list li:nth-child(4) { animation-delay: 0.42s; }
.status-list li:nth-child(5) { animation-delay: 0.52s; }

.conversion-list li:nth-child(1) { animation-delay: 0.12s; }
.conversion-list li:nth-child(2) { animation-delay: 0.22s; }
.conversion-list li:nth-child(3) { animation-delay: 0.32s; }

.hero-metrics li:nth-child(1) { animation-delay: 0.14s; }
.hero-metrics li:nth-child(2) { animation-delay: 0.28s; }
.hero-metrics li:nth-child(3) { animation-delay: 0.42s; }

/* Header Shimmer on Reveal */
.reveal h2,
.section-head h2 {
    position: relative;
}

.reveal.is-visible h2,
.section-head.is-visible h2 {
    animation: headerShimmer 1.8s ease-out 0.2s 1;
}

/* Floating Icon Subtle Hover Pulse */
.float-item:hover,
.lane-item:hover {
    filter: drop-shadow(0 0 8px rgba(86, 241, 204, 0.4));
    animation-play-state: paused;
}

/* Support Card Lift */
.support-card {
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.support-card:hover {
    transform: translateY(-3px);
    border-color: rgba(86, 241, 204, 0.35);
    box-shadow: 0 12px 32px rgba(86, 241, 204, 0.15);
}

/* Enhanced Footer Links */
.footer-nav a {
    position: relative;
    transition: color 0.25s ease;
}

.footer-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 1px;
    transform: scaleX(0);
    transform-origin: left center;
    background: var(--accent);
    transition: transform 0.3s ease;
}

.footer-nav a:hover::after {
    transform: scaleX(1);
}

/* Button Advanced Hover */
.btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.12);
}

.btn:active {
    transform: translateY(0);
}

/* Keyframe Animations for Enhancements */

@keyframes listItemFadeSlide {
    from {
        opacity: 0;
        transform: translateX(-8px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes headerShimmer {
    0% {
        text-shadow: -2px -2px 0 rgba(86, 241, 204, 0), 2px 2px 0 rgba(50, 194, 255, 0);
    }
    50% {
        text-shadow: -2px -2px 0 rgba(86, 241, 204, 0.28), 2px 2px 0 rgba(50, 194, 255, 0.28);
    }
    100% {
        text-shadow: -2px -2px 0 rgba(86, 241, 204, 0), 2px 2px 0 rgba(50, 194, 255, 0);
    }
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.12); }
}

/* Reduced Motion Accessibility */
@media (prefers-reduced-motion: reduce) {
    .feature-card:hover,
    .status-card:hover,
    .faq-item:hover,
    .hero-panel:hover,
    .buy-wrap:hover,
    .support-card:hover {
        transform: none;
    }
    
    .status-list li,
    .conversion-list li,
    .hero-metrics li {
        animation: none !important;
        opacity: 1;
    }
    
    .reveal.is-visible h2,
    .section-head.is-visible h2 {
        animation: none;
    }
    
    .float-item:hover::before,
    .lane-item:hover::before {
        animation: none;
    }
    
    .btn:hover {
        filter: none;
    }
}
