*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    transition: color 0.3s ease, opacity 0.3s ease;
    text-decoration: none;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--s-8);
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
.t-title,
.nav-brand {
    font-family: 'Sora', sans-serif;
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.nav-brand {
    font-weight: 800;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: var(--s-2);
    color: var(--text);
}

.nav-brand i {
    color: var(--primary);
    width: 28px;
    height: 28px;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.25;
    margin-bottom: var(--s-4);
}

h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.025em;
}

h3 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.015em;
}

p {
    font-family: 'Inter', sans-serif;
    color: var(--text-secondary);
    line-height: 1.65;
    font-size: 1.05rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), hsl(247, 80%, 78%));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.accent-word {
    color: var(--primary);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--s-2);
    font-family: inherit;
    font-weight: 600;
    font-size: 0.9375rem;
    border: none;
    cursor: pointer;
    border-radius: var(--r-lg);
    padding: 14px 28px;
    transition:
        transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1),
        background 0.3s ease,
        border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary,
.btn-primary * {
    color: var(--white) !important;
}

.btn-primary {
    background: var(--primary);
    box-shadow: 0 4px 12px hsla(247, 72%, 58%, 0.25);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--glow-primary);
}

.btn-ghost {
    background: var(--bg-card);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    border-color: var(--primary);
    background: var(--bg-subtle);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn-lg {
    padding: var(--s-4) var(--s-8);
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

/* --- Chips --- */
.chip {
    display: inline-flex;
    align-items: center;
    gap: var(--s-2);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    border: 1px solid hsla(247, 72%, 58%, 0.15);
    background: var(--primary-dim);
    border-radius: var(--r-full);
    padding: 6px 14px;
    margin-bottom: var(--s-5);
    align-self: flex-start;
    font-family: 'IBM Plex Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.chip:hover {
    background: var(--primary-light);
    border-color: var(--primary);
}

/* --- Navigation (app-specific) --- */

/* Nav scrolluje se stránkou, není fixed */
.nav {
    position: static;
    padding: var(--s-6) 0;
}

.nav .container {
    display: flex;
    justify-content: center;
}


.hero-waitlist {
    padding: var(--s-24) 0 140px;
    text-align: center;
}

.hero-waitlist h1 {
    line-height: 1.15;
    margin-bottom: var(--s-6);
}

/* === Reveal Animations === */

/* Base: blur + lift + spring overshoot */
.reveal-up {
    opacity: 0;
    transform: translateY(50px) scale(0.97);
    filter: blur(10px);
    transition:
        opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.85s cubic-bezier(0.34, 1.2, 0.64, 1),
        filter 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0px);
}

/* Cards: 3D perspective tilt */
.reveal-card {
    opacity: 0;
    transform: perspective(1000px) rotateX(12deg) translateY(50px) scale(0.95);
    filter: blur(8px);
    transform-origin: 50% 0%;
    transition:
        opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1s cubic-bezier(0.34, 1.1, 0.64, 1),
        filter 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-card.active {
    opacity: 1;
    transform: perspective(1000px) rotateX(0deg) translateY(0) scale(1);
    filter: blur(0px);
}

/* Pop: spring bounce */
.reveal-pop {
    opacity: 0;
    transform: scale(0.78) translateY(40px);
    filter: blur(14px);
    transition:
        opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.9s cubic-bezier(0.34, 1.56, 0.64, 1),
        filter 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-pop.active {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0px);
}

/* Left: slide from left */
.reveal-left {
    opacity: 0;
    transform: translateX(-60px) scale(0.97);
    filter: blur(8px);
    transition:
        opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.85s cubic-bezier(0.34, 1.2, 0.64, 1),
        filter 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0px);
}

/* Scale: zoom from center */
.reveal-scale {
    opacity: 0;
    transform: scale(0.88);
    filter: blur(12px);
    transition:
        opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.95s cubic-bezier(0.34, 1.2, 0.64, 1),
        filter 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
    filter: blur(0px);
}

/* Stagger delays */
.stagger-1 {
    transition-delay: 0.08s;
}

.stagger-2 {
    transition-delay: 0.16s;
}

.stagger-3 {
    transition-delay: 0.24s;
}

.stagger-4 {
    transition-delay: 0.32s;
}

.stagger-5 {
    transition-delay: 0.40s;
}

.stagger-6 {
    transition-delay: 0.48s;
}

.stagger-7 {
    transition-delay: 0.56s;
}

.stagger-8 {
    transition-delay: 0.64s;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--primary-dim);
    border: 1px solid hsla(247, 72%, 58%, 0.22);
    border-radius: var(--r-full);
    padding: 6px 16px;
    margin-bottom: var(--s-6);
}

.hero-sub {
    max-width: 500px;
    margin: 0 auto var(--s-10);
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--text-secondary);
}

.waitlist-form {
    display: flex;
    align-items: center;
    gap: 0;
    margin: var(--s-10) auto 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-full);
    padding: 6px;
    box-shadow: var(--shadow-md);
    width: fit-content;
}

.waitlist-form input {
    border: none;
    background: transparent;
    padding: 0 var(--s-6);
    font-size: 1rem;
    width: 260px;
    outline: none;
    height: 48px;
    color: var(--text);
    font-family: inherit;
}

.waitlist-form input::placeholder {
    color: var(--text-muted);
}

.waitlist-form input:-webkit-autofill,
.waitlist-form input:-webkit-autofill:hover,
.waitlist-form input:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--text);
    -webkit-box-shadow: 0 0 0px 1000px var(--white) inset;
    transition: background-color 5000s ease-in-out 0s;
}

.waitlist-form .btn {
    height: 48px;
    padding: 0 var(--s-6);
    font-size: 0.9375rem;
    border-radius: var(--r-full);
    white-space: nowrap;
}

.waitlist-note {
    font-size: 0.85rem;
    text-align: center;
    color: var(--text-muted);
    margin-top: var(--s-6);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    padding: var(--section-py-sm) 0 var(--s-12);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background:
        radial-gradient(ellipse 30% 120px at 50% 0%, hsla(247, 90%, 70%, 0.4) 0%, transparent 100%),
        radial-gradient(ellipse 70% 320px at 50% 0%, hsla(247, 72%, 58%, 0.18) 0%, transparent 100%),
        hsl(247, 55%, 7%);
    position: relative;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 0;
    padding-bottom: var(--s-12);
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-right: 40px;
}

.footer-brand {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    margin-bottom: 4px;
}

.footer-brand i {
    color: hsl(247, 80%, 78%);
    width: 18px;
    height: 18px;
}

.footer-desc {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    max-width: 240px;
}

.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

.footer-social-btn {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: all .3s;
}

.footer-social-btn:hover {
    border-color: hsla(var(--h), 80%, 75%, 0.4);
    background: hsla(var(--h), 80%, 75%, 0.1);
    color: var(--primary-light);
    transform: translateY(-2px);
}

.footer-social-btn i {
    width: 15px;
    height: 15px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    padding-left: 40px;
}

.footer-heading {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 16px;
    font-family: 'IBM Plex Mono', monospace;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
    transition: color .3s, transform .3s;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(3px);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom-info {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 0.775rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-bottom-badges {
    display: flex;
    gap: 8px;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.68rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.04);
    font-family: 'IBM Plex Mono', monospace;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.footer-badge i {
    width: 11px;
    height: 11px;
}

@media (max-width: 768px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px 24px;
    }

    .footer-brand-col {
        grid-column: 1 / -1;
        padding-right: 0;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

@media (max-width: 600px) {
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .footer-col {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        padding-top: 24px;
    }

    .footer-bottom-badges {
        flex-wrap: wrap;
    }
}


/* --- Sections --- */
.section {
    padding: var(--s-20) 0;
}

.section-alt {
    background: var(--bg-subtle);
}

.section-box {
    border: 1px solid var(--border);
    border-radius: var(--r-2xl);
    padding: var(--s-10) var(--s-12);
    background: rgba(255, 255, 255, 0.6);
}


.section-header {
    max-width: 680px;
    margin: 0 auto var(--s-12);
    text-align: center;
}

.section-header h2 {
    margin-bottom: var(--s-6);
}

/* --- Visual Refinements: Document-Wide Glows --- */
/* --- Visual Refinements: Document-Wide Glows --- */
body {
    position: relative;
    min-height: 100vh;
}

.glow-container {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
    background: var(--bg);
}

.glow {
    position: absolute;
    filter: blur(140px);
    opacity: 0.35;
    border-radius: var(--r-full);
}

/* Hero Glows — centered */
.glow-1 {
    top: 0%;
    left: 50%;
    transform: translateX(-20%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
}

.glow-2 {
    top: 3%;
    left: 25%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--info) 0%, transparent 70%);
}

/* Mid Glows */
.glow-3 {
    top: 35%;
    left: 50%;
    transform: translateX(-70%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.15;
}

.glow-4 {
    top: 40%;
    left: 50%;
    transform: translateX(10%);
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--info) 0%, transparent 70%);
    opacity: 0.12;
}

/* Bottom Glows */
.glow-5 {
    bottom: 10%;
    left: 50%;
    transform: translateX(-70%);
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.25;
}

.glow-6 {
    bottom: 5%;
    left: 50%;
    transform: translateX(10%);
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, var(--info) 0%, transparent 70%);
    opacity: 0.2;
}

.hero-waitlist {
    position: relative;
}

.why-sitecare {
    position: relative;
}

/* --- Scroll Indicator --- */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--border);
    border-radius: var(--r-full);
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: var(--r-full);
    position: absolute;
    top: 8px;
    left: 50%;
    margin-left: -2px;
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        transform: translateY(12px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 0;
    }
}

/* --- Platform Section (Bento Grid) --- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: var(--s-6);
    margin-top: var(--s-12);
}

.bento-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-2xl);
    padding: var(--s-10);
    position: relative;
    overflow: hidden;
    transition:
        transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.15s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
}

.bento-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, hsla(247, 72%, 58%, 0.07) 0%, transparent 65%);
    pointer-events: none;
    border-radius: var(--r-2xl);
}

.bento-card.x-8::after {
    background: radial-gradient(ellipse at 0% 50%, hsla(247, 72%, 58%, 0.1) 0%, transparent 65%);
}

.bento-card:hover {
    border-color: hsla(247, 72%, 58%, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px hsla(247, 72%, 58%, 0.15), 0 2px 8px rgba(0, 0, 0, 0.06);
}

.bento-content h3 {
    margin-bottom: var(--s-3);
    font-size: 1.5rem;
}

.bento-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 400px;
}

.bento-icon {
    width: 44px;
    height: 44px;
    color: var(--primary);
    background: var(--primary-dim);
    border: 1px solid hsla(247, 72%, 58%, 0.15);
    border-radius: var(--r-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--s-6);
}

.bento-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.75;
}

.bento-badge {
    position: absolute;
    top: var(--s-6);
    right: var(--s-6);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.7rem;
    text-transform: uppercase;
    background: var(--success-muted);
    color: var(--success);
    padding: 4px 10px;
    border-radius: var(--r-full);
    font-weight: 600;
}

@media (min-width: 992px) {
    .bento-grid {
        grid-template-columns: repeat(12, 1fr);
    }

    .bento-card.x-8 {
        grid-column: span 8;
    }

    .bento-card.x-4 {
        grid-column: span 4;
    }

    .bento-card.x-3 {
        grid-column: span 3;
    }

    /* Ensure content stays readable in larger spans */
    .bento-card.x-8 .bento-content {
        max-width: 600px;
    }
}

@media (min-width: 640px) {
    .waitlist-form {
        flex-direction: row;
        align-items: center;
        /* Centered alignment */
    }

    .waitlist-form .btn {
        white-space: nowrap;
    }
}

/* --- UI Enhancements: Back to Top & Sticky CTA --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-full);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-lg);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-5px);
}

/* --- Sticky Waitlist Pill --- */
.sticky-waitlist {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    padding: var(--s-3) 0;
    z-index: 900;
    transform: translateY(-100%);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
    pointer-events: none;
}

.sticky-waitlist.visible {
    transform: translateY(0);
}

/* Compact form size for sticky pill */
.waitlist-form-sm {
    pointer-events: auto;
    margin: 0;
    filter: drop-shadow(0 12px 40px rgba(99, 82, 229, 0.18));
}

.waitlist-form-sm input {
    width: 200px;
    height: 42px;
}

.waitlist-form-sm .btn {
    height: 42px;
    padding: 0 var(--s-5);
    font-size: 0.875rem;
}

/* --- Pain Section --- */
.pain-section {
    background: transparent;
    /* overridden by section-alt */
}

.pain-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s-10);
    margin-top: 0;
}

@media (min-width: 640px) {
    .pain-list {
        grid-template-columns: 1fr 1fr;
        gap: var(--s-12) var(--s-16);
    }
}

.pain-item {
    display: flex;
    align-items: flex-start;
    gap: var(--s-5);
}

.pain-icon {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--primary);
}

.pain-icon svg {
    width: 22px;
    height: 22px;
    stroke-width: 2;
}

.pain-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: var(--s-2);
    letter-spacing: -0.01em;
}

.pain-item p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--text-secondary);
    margin: 0;
}

/* --- How It Works --- */
.how-section {
    background: transparent;
    /* overridden by section-alt */
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--s-6);
    margin-top: var(--s-8);
}

.step-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-2xl);
    padding: var(--s-10);
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.15s ease;
}

.step-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--r-2xl);
    background: radial-gradient(ellipse at 50% 0%, hsla(247, 72%, 58%, 0.06) 0%, transparent 65%);
    pointer-events: none;
}

.step-card:hover {
    border-color: hsla(247, 72%, 58%, 0.4);
    box-shadow: 0 8px 32px hsla(247, 72%, 58%, 0.15), 0 2px 8px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

.step-number {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 3rem;
    font-weight: 600;
    line-height: 1;
    color: var(--primary);
    opacity: 0.15;
    letter-spacing: -0.02em;
    position: absolute;
    top: var(--s-6);
    right: var(--s-8);
}

.step-icon {
    width: 44px;
    height: 44px;
    color: var(--primary);
    background: var(--primary-dim);
    border: 1px solid hsla(247, 72%, 58%, 0.15);
    border-radius: var(--r-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--s-5);
}

.step-icon svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.75;
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--s-3);
}

.step-card p {
    font-size: 0.975rem;
    line-height: 1.65;
}

/* --- Stats Strip --- */
.stats-section {
    padding: var(--s-16) 0;
    background: transparent;
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--s-8);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--s-1);
    text-align: center;
}

.stat-value {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.03em;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .stat-divider {
        display: none;
    }

    .stats-grid {
        gap: var(--s-10);
    }
}

/* --- Final CTA --- */
.cta-final {
    background: transparent;
    padding: var(--s-16) 0;
    text-align: center;
}

.cta-final .section-box {
    background: linear-gradient(160deg, #E0E7FF 0%, #EEF2FF 50%, var(--white) 100%);
    border-color: hsla(247, 72%, 58%, 0.25);
    box-shadow: 0 0 0 1px hsla(247, 72%, 58%, 0.08), var(--shadow-lg);
}

.cta-final-inner {
    max-width: 620px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--s-5);
}

.cta-final h2 {
    color: var(--text);
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.2;
    margin: 0;
}

.cta-final>p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 480px;
    margin: 0;
}

.cta-final .waitlist-form {
    margin: 0;
}

/* --- FAQ Section --- */
.faq-section {
    background: transparent;
    /* overridden by section-alt */
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--s-3);
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item::before {
    content: '';
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, hsla(247, 72%, 58%, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.faq-item>* {
    position: relative;
    z-index: 1;
}

.faq-item:hover {
    border-color: hsla(247, 72%, 58%, 0.2);
    box-shadow: 0 2px 12px hsla(247, 72%, 58%, 0.06);
    transform: translateY(-1px);
}

.faq-item.open {
    border-color: hsla(247, 72%, 58%, 0.35);
    box-shadow: 0 4px 24px hsla(247, 72%, 58%, 0.1);
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-4);
    padding: var(--s-6) var(--s-8);
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    text-align: left;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-item.open .faq-question {
    color: var(--primary);
}

.faq-question svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease;
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer p {
    padding: 0 var(--s-8) var(--s-6);
    font-size: 0.975rem;
    line-height: 1.7;
}