:root {
    --color-base: #08090E;
    --color-accent: #F8FAFC;
    --color-accent-light: #E2E8F0;
    --color-violet: #8B5CF6;
    --color-violet-light: #A78BFA;
    --color-blue: #38BDF8;
    --color-green: #10B981;
    --color-text-main: #FFFFFF;
    --color-text-body: #CBD5E1;
    --color-text-muted: #94A3B8;
    --color-text-dim: #64748B;

    --glass-border: rgba(255, 255, 255, 0.10);
    --glass-border-hover: rgba(255, 255, 255, 0.18);
    --glass-bg-transparent: rgba(18, 22, 35, 0.40);
    --glass-bg-light: rgba(18, 22, 35, 0.65);
    --glass-bg-medium: rgba(18, 22, 35, 0.75);
    --glass-bg-heavy: rgba(18, 22, 35, 0.85);

    --font-heading: 'Space Grotesk', sans-serif;
    --font-accent: 'Space Grotesk', sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;
    --font-body: 'Inter', sans-serif;

    --color-error: #EF4444;

    --section-pad-desktop: 120px;
    --section-pad-mobile: 80px;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 10000;
    padding: 12px 24px;
    background: var(--color-accent);
    color: var(--color-base);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    border-radius: 0 0 8px 8px;
    text-decoration: none;
    transition: top 0.15s ease;
}
.skip-link:focus { top: 0; }

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

body {
    font-family: var(--font-body);
    background-color: var(--color-base);
    color: var(--color-text-main);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

#preloader {
    position: fixed;
    inset: 0;
    background-color: var(--color-base);
    z-index: 9999;
    transition: opacity 0.8s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

#preloader.loaded {
    opacity: 0;
    pointer-events: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
}

.unicorn-bg,
#unicorn-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at 30% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 30%, rgba(59, 130, 246, 0.06) 0%, transparent 50%),
                var(--color-base);
    filter: saturate(0.3) brightness(0.9);
}

.bg-scrim {
    position: fixed;
    inset: 0;
    z-index: 0;
    background: var(--color-base);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.1s;
}

.page-content {
    position: relative;
    z-index: 1;
}

.page-content::before {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,0.25) 100%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
}

/* Typography Constants */
.bold-text {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-text-main);
}

.mono-text {
    font-family: var(--font-mono);
    font-weight: 700;
    color: var(--color-text-main);
}

.section-title {
    font-weight: 700;
    font-size: 48px;
    letter-spacing: -0.02em;
    margin-bottom: 56px;
    text-align: center;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
}

.full-section {
    padding: var(--section-pad-desktop) 0;
}

@media (max-width: 768px) {
    .full-section {
        padding: var(--section-pad-mobile) 0;
    }
}

/* Glass & Texture */
.glass-container,
.glass-card {
    background: var(--glass-bg-light);
    backdrop-filter: blur(60px) saturate(120%);
    -webkit-backdrop-filter: blur(60px) saturate(120%);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 2px 20px -5px rgba(255,255,255,0.1);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(40px) saturate(1.3);
    -webkit-backdrop-filter: blur(40px) saturate(1.3);
}

.noise-overlay {
    position: relative;
}

.noise-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.035;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
    border-radius: inherit;
    z-index: 1;
    filter: url(#frosted-refract);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    width: calc(100% - 48px);
    max-width: 1200px;
    transition: all 0.4s ease;
    border-radius: 9999px;
    padding: 16px 32px;
}

.navbar.floating {
    background: transparent;
    backdrop-filter: none;
    border: none;
}

.navbar.scrolled {
    background: var(--glass-bg-heavy);
    backdrop-filter: blur(40px) saturate(140%);
    -webkit-backdrop-filter: blur(40px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    color: var(--color-text-main);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-weight: 500;
    font-size: 15px;
    color: var(--color-text-main);
}

.nav-links a:hover {
    color: var(--color-accent);
}

.nav-cta {
    padding: 10px 24px;
    font-size: 15px !important;
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }

    .navbar {
        top: 16px;
        padding: 12px 20px;
    }

    .logo {
        font-size: 18px;
    }

    .nav-cta {
        padding: 8px 16px;
        font-size: 14px !important;
    }
}

/* Hero Section */
.hero {
    min-height: 100dvh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px 0;
    background: transparent;
    /* Allows unicorn bg to show */
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, rgba(8,9,14,0.3) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.site-section {
    background: rgba(8, 9, 14, 0.35);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    position: relative;
    z-index: 1;
}

.site-section:nth-child(even) {
    background: rgba(8, 9, 14, 0.35);
}

.site-section::before {
    content: none;
}

.site-section .container {
    position: relative;
    z-index: 1;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 64px;
    width: 100%;
}

.hero-left {
    flex: 1.2;
}

.hero-right {
    flex: 1;
    max-width: 480px;
}

.hero-heading {
    font-weight: 800;
    font-size: 88px;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
    text-shadow: 0 0 80px rgba(255, 255, 255, 0.15), 0 0 40px rgba(255, 255, 255, 0.05);
}

.hero-subheading {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 24px;
    color: var(--color-text-body);
    margin-bottom: 48px;
}

.stat-pills {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.stat-pill {
    background: var(--glass-bg-transparent);
    backdrop-filter: blur(24px) saturate(140%);
    -webkit-backdrop-filter: blur(24px) saturate(140%);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    box-shadow: none;
}

.stat-pill:hover {
    transform: none;
    border-color: var(--glass-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.stat-number {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 28px;
    color: var(--color-text-main);
    line-height: 1.2;
}

.stat-label {
    font-size: 13px;
    color: var(--color-text-muted);
}

.safety-line {
    font-size: 14px;
    color: var(--color-text-muted);
}

@media (max-width: 1024px) {
    .hero-heading {
        font-size: 68px;
    }

    .hero-subheading {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        gap: 48px;
        align-items: flex-start;
    }

    .hero-right {
        max-width: 100%;
        width: 100%;
    }

    .hero-heading {
        font-size: 48px;
        margin-bottom: 16px;
    }

    .hero-subheading {
        font-size: 20px;
        margin-bottom: 32px;
    }

    .stat-pills {
        gap: 12px;
    }

    .stat-pill {
        padding: 12px 16px;
        flex: 1;
        min-width: 100px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 12px;
    }

    .hero {
        align-items: flex-start;
        padding-top: 140px;
    }
}

/* Shimmer Border */
@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

.shimmer-border {
    position: relative;
    border-radius: 24px;
    padding: 1px;
    background: conic-gradient(from var(--angle, 0deg), rgba(255,255,255,0.15), rgba(255,255,255,0.03), rgba(255,255,255,0.15), rgba(255,255,255,0.03), rgba(255,255,255,0.15));
    animation: rotate-border 8s linear infinite;
    z-index: 2;
}

@keyframes rotate-border {
    to {
        --angle: 360deg;
    }
}

@supports not (background: conic-gradient(from 0deg, red, blue)) {
    .shimmer-border {
        background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.15), rgba(255,255,255,0.08));
        background-size: 200% 200%;
        animation: gradient-shift 4s ease infinite;
    }

    @keyframes gradient-shift {

        0%,
        100% {
            background-position: 0% 50%;
        }

        50% {
            background-position: 100% 50%;
        }
    }
}

.shimmer-border>.inner {
    background: var(--glass-bg-heavy);
    backdrop-filter: blur(60px) saturate(120%);
    -webkit-backdrop-filter: blur(60px) saturate(120%);
    border-radius: 23px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 2px 20px -5px rgba(255,255,255,0.1), 0 24px 60px rgba(0, 0, 0, 0.8);
}

.shimmer-border>.inner::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(255,255,255,0.04), transparent 40%);
    pointer-events: none;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s;
}

.shimmer-border:hover>.inner::after {
    opacity: 1;
}

@media (max-width: 768px) {
    .shimmer-border>.inner {
        padding: 32px 24px;
    }
}

.form-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.04) 0%, transparent 80%);
    pointer-events: none;
    z-index: 0;
}

/* Forms */
.form-header {
    font-weight: 700;
    font-size: 22px;
    color: var(--color-text-main);
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}

.form-privacy {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

#lead-form {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

label {
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 12px 16px;
    color: var(--color-text-main);
    font-family: var(--font-body);
    font-size: 16px;
    transition: all 0.3s ease;
    min-height: 48px;
    outline: none;
}

textarea {
    resize: vertical;
    min-height: 80px;
}

input::placeholder,
textarea::placeholder {
    color: var(--color-text-dim);
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

/* Keyboard focus indicators */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--color-blue);
    outline-offset: 2px;
}

.field-hint {
    font-size: 12px;
    color: var(--color-text-dim);
    margin-top: -4px;
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23CBD5E1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

select {
    appearance: none;
    -webkit-appearance: none;
}

select option {
    background: var(--color-base);
    color: var(--color-text-main);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 8px;
    margin-bottom: 8px;
}

.checkbox-group input {
    margin-top: 4px;
    width: 16px;
    height: 16px;
    accent-color: var(--color-accent);
}

.checkbox-group label {
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
    color: var(--color-text-body);
    cursor: pointer;
}

.checkbox-group a {
    color: var(--color-accent-light);
    text-decoration: underline;
}

.form-safety-centered {
    text-align: center;
    font-size: 14px;
    color: var(--color-text-muted);
    margin-top: 8px;
}

/* Buttons */
.cta-button {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 0.01em;
    color: var(--color-base);
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.full-width {
    width: 100%;
}

.large-cta {
    padding: 18px 48px;
}

.cta-button:hover {
    transform: scale(1.03);
}

.cta-button:active {
    transform: scale(0.98);
}

.primary-cta {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.25), 0 0 60px rgba(255, 255, 255, 0.08);
    animation: pulse-glow 3s infinite alternate;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.15), 0 0 40px rgba(255, 255, 255, 0.05);
    }

    100% {
        box-shadow: 0 0 24px rgba(255, 255, 255, 0.3), 0 0 80px rgba(255, 255, 255, 0.1);
    }
}

.shimmer-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: skewX(-45deg);
    animation: sweep 4s infinite 2s;
}

@keyframes sweep {
    0% {
        left: -100%;
    }

    20%,
    100% {
        left: 200%;
    }
}

.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--color-text-main);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    vertical-align: middle;
    margin-right: 8px;
}

.cta-button .spinner {
    border-color: rgba(8, 9, 14, 0.2);
    border-top-color: var(--color-base);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Credibility Strip */
.credibility {
    padding: 20px 0;
}

.credibility-strip {
    background: rgba(8, 9, 14, 0.60);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    border-left: none;
    border-right: none;
    border-radius: 12px;
    padding: 20px 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

@media (max-width: 768px) {
    .credibility-strip {
        flex-direction: column;
        padding: 24px;
        border: 1px solid rgba(255, 255, 255, 0.06);
    }
}

.credibility-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.stars {
    display: flex;
    gap: 2px;
}

.credibility-strip .stars svg {
    fill: var(--color-green);
}

.pulsing-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-green);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* Scams Grid */
.scam-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (max-width: 768px) {
    .scam-grid {
        grid-template-columns: 1fr;
    }
}

.scam-card {
    padding: 32px;
}

.scam-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 20px;
    color: var(--color-text-muted);
}

.scam-card:hover .scam-icon {
    color: var(--color-accent);
}

.scam-title {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 12px;
}

.scam-desc {
    color: var(--color-text-muted);
}

/* How It Works */
.steps-container {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    position: relative;
}

.steps-line {
    position: absolute;
    top: 32px;
    left: 32px;
    right: 32px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,0.15), rgba(255,255,255,0.25), rgba(255,255,255,0.15));
    opacity: 0.3;
    z-index: 0;
}

@media (max-width: 768px) {
    .steps-container {
        flex-direction: column;
        gap: 48px;
    }

    .steps-line {
        top: 32px;
        left: 32px;
        bottom: 32px;
        width: 2px;
        height: auto;
        background: linear-gradient(180deg, rgba(255,255,255,0.15), rgba(255,255,255,0.25), rgba(255,255,255,0.15));
    }
}

.step {
    flex: 1;
    position: relative;
    z-index: 1;
}

.step-number-container {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
}

.step-number {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 28px;
    color: var(--color-blue);
}

.step-title {
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 12px;
}

.step-desc {
    color: var(--color-text-muted);
}

/* Team Section */
.team-profiles {
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 800px;
    margin: 0 auto;
}

.team-profile {
    display: flex;
    align-items: flex-start;
    gap: 32px;
}

.team-profile-photo {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-profile-info {
    flex: 1;
    min-width: 0;
}

.team-name {
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 4px;
}

.team-role {
    font-weight: 600;
    font-size: 14px;
    color: var(--color-accent-light);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-bio {
    color: var(--color-text-muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.team-location {
    font-family: var(--font-mono);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 600px) {
    .team-profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .team-profile-photo {
        width: 120px;
        height: 120px;
    }
}

/* FAQ Section */
.faq-container {
    padding: 16px;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 24px 16px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

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

.chevron {
    width: 20px;
    height: 20px;
    transition: transform 0.35s ease;
    color: var(--color-text-muted);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding: 0 16px;
}

.faq-answer p {
    padding-bottom: 24px;
    color: var(--color-text-body);
    font-size: 16px;
}

.faq-item.active {
    border-left: 3px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.02);
}

.faq-item.active .chevron {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    /* generous max-height for transition */
}

/* Final CTA */
.final-cta {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    /* separate from faq safely */
}

.final-cta-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.final-cta .container {
    position: relative;
    z-index: 1;
}

.text-center {
    text-align: center;
}

.final-cta-heading {
    font-weight: 700;
    font-size: 48px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .final-cta-heading {
        font-size: 36px;
    }
}

.final-safety {
    margin-top: 24px;
    color: var(--color-text-muted);
    font-size: 15px;
}

/* Footer */
.footer {
    background: var(--color-base);
    border-radius: 48px 48px 0 0;
    padding: 80px 0 40px 0;
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

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

    .footer {
        padding-bottom: 120px;
    }

    /* Space for mobile sticky CTA */
}

.footer-logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 16px;
    display: inline-block;
}

.footer-tagline {
    color: var(--color-text-muted);
}

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

.footer-links a,
.footer-contact {
    font-weight: 500;
    color: var(--color-text-body);
}

.footer-links a:hover,
.footer-contact:hover {
    color: var(--color-text-main);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    gap: 24px;
    font-size: 13px;
    color: var(--color-text-dim);
    flex-wrap: wrap;
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(8, 9, 14, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 24px;
    z-index: 100;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: block;
    }
}

/* Animations & Scroll Reveals */
.stagger-item,
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.delay-1 {
    transition-delay: 0.08s;
}

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

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

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

.card-stagger-1 {
    transition-delay: 0.0s;
}

.card-stagger-2 {
    transition-delay: 0.1s;
}

.card-stagger-3 {
    transition-delay: 0.2s;
}

.card-stagger-4 {
    transition-delay: 0.3s;
}

.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-stat {
    opacity: 0;
    animation: fadeIn 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.5s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Thank You Page Specifics */
.success-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
}

.success-circle {
    stroke: var(--color-green);
    stroke-width: 2;
    stroke-dasharray: 157;
    stroke-dashoffset: 157;
    animation: drawCircle 0.8s ease forwards;
}

.success-check {
    stroke: var(--color-green);
    stroke-width: 2;
    stroke-dasharray: 36;
    stroke-dashoffset: 36;
    animation: drawCheck 0.4s ease forwards 0.6s;
}

@keyframes drawCircle {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes drawCheck {
    to {
        stroke-dashoffset: 0;
    }
}

.success-heading {
    margin-bottom: 16px;
    font-size: 36px;
}

@media (max-width: 768px) {
    .success-heading {
        font-size: 28px;
    }
}

.qualify-container {
    display: flex;
    gap: 64px;
    max-width: 1000px;
    margin: 0 auto;
}

.qualify-form-card {
    padding: 48px;
    flex: 1.5;
}

.timeline-card {
    flex: 1;
    padding-top: 24px;
}

@media (max-width: 768px) {
    .qualify-container {
        flex-direction: column;
        gap: 48px;
    }

    .qualify-form-card {
        padding: 32px 24px;
    }
}

.timeline-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 32px;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 10px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.2), rgba(255,255,255,0.08));
    opacity: 0.3;
}

.timeline-item {
    display: flex;
    gap: 20px;
    position: relative;
}

.timeline-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-accent-light);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.25);
    margin-top: 6px;
    position: relative;
    z-index: 2;
}

.timeline-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-main);
    margin-bottom: 4px;
}

.timeline-content p {
    font-size: 15px;
    color: var(--color-text-muted);
}

/* Multi-step form — progressive enhancement: without JS, all steps visible */
.form-steps-indicator { display: none; }
.form-next-btn, .form-back-btn { display: none; }

.form-stepped .form-steps-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 1.5rem;
}

.form-step-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    background: var(--glass-bg-light);
    border: 1px solid var(--glass-border);
    color: var(--color-text-muted);
    transition: all 0.3s ease;
}

.form-step-dot.active {
    background: var(--color-green);
    border-color: var(--color-green);
    color: var(--color-base);
}

.form-step-dot.completed {
    background: rgba(16, 185, 129, 0.2);
    border-color: var(--color-green);
    color: var(--color-green);
}

.form-step-line {
    width: 40px;
    height: 1px;
    background: var(--glass-border);
}

.form-stepped .form-step { display: none; }
.form-stepped .form-step.active {
    display: block;
    animation: fadeInStep 0.25s ease;
}
.form-stepped .form-next-btn { display: inline-flex; }
.form-stepped .form-back-btn { display: inline-flex; }

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

.form-step-nav {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.form-back-btn {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--color-text-muted);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.form-back-btn:hover {
    border-color: var(--color-text-muted);
    color: var(--color-text-main);
}

.form-next-btn {
    width: 100%;
}

.form-step-nav .form-next-btn,
.form-step-nav .form-submit {
    flex: 1;
}

/* Trust strip inside form */
.form-trust-strip {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 0.75rem 0;
    flex-wrap: wrap;
}

.form-trust-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--color-text-muted);
    letter-spacing: 0.02em;
}

/* Inline validation */
.field-valid {
    border-color: var(--color-green) !important;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='%2310B981' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 36px;
}

.field-invalid {
    border-color: var(--color-error) !important;
}

select.field-valid {
    background-image: none;
}

/* Form urgency note */
.form-urgency-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: var(--color-text-muted);
    margin-bottom: 1.25rem;
    padding: 0.5rem 0.75rem;
    background: rgba(16, 185, 129, 0.06);
    border-radius: 12px;
    border: 1px solid rgba(16, 185, 129, 0.12);
    position: relative;
    z-index: 2;
}

.form-urgency-note svg {
    flex-shrink: 0;
    stroke: var(--color-green);
}

/* News ticker */
.in-the-news {
    padding: 1.5rem 0;
}

.news-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    opacity: 0.7;
    text-align: center;
    margin-bottom: 1rem;
}

.news-ticker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.news-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-source {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-text-body);
    white-space: nowrap;
}

.news-headline {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.news-divider {
    width: 1px;
    height: 24px;
    background: var(--glass-border);
}

@media (max-width: 768px) {
    .news-ticker {
        flex-direction: column;
        gap: 0.75rem;
    }
    .news-divider {
        display: none;
    }
}

/* Case results */
.section-subtitle {
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-top: -0.5rem;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.case-card {
    padding: 2rem;
}

.case-type {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
    margin-bottom: 0.75rem;
}

.case-amount {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-green);
    line-height: 1.1;
}

.case-asset {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--color-text-body);
    margin-bottom: 1rem;
}

.case-summary {
    font-size: 0.9rem;
    color: var(--color-text-body);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.case-timeline {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--color-green);
    padding-top: 0.75rem;
    border-top: 1px solid var(--glass-border);
}

.case-disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    opacity: 0.7;
    margin-top: 2rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .case-grid {
        grid-template-columns: 1fr;
    }
}

/* Comparison table */
.comparison-table {
    display: grid;
    grid-template-columns: 1fr;
    padding: 0;
    overflow: hidden;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    border-bottom: 1px solid var(--glass-border);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-cell {
    padding: 1rem 1.25rem;
    font-size: 0.85rem;
    color: var(--color-text-body);
    display: flex;
    align-items: center;
}

.comparison-header .comparison-cell {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    padding: 1.25rem;
}

.comparison-label {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--color-text-muted);
}

.comparison-highlight {
    background: rgba(16, 185, 129, 0.04);
    color: var(--color-text-main);
    font-weight: 500;
}

.comparison-header .comparison-highlight {
    color: var(--color-green);
}

@media (max-width: 768px) {
    .comparison-row {
        grid-template-columns: 1fr;
        padding: 0.75rem 1rem;
    }
    .comparison-header {
        display: none;
    }
    .comparison-cell {
        padding: 0.25rem 0;
        font-size: 0.8rem;
    }
    .comparison-cell::before {
        content: attr(data-label);
        font-family: var(--font-mono);
        font-size: 0.7rem;
        color: var(--color-text-muted);
        display: block;
        margin-bottom: 0.15rem;
    }
    .comparison-label {
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--color-text-main);
        padding-top: 0.75rem;
        border-top: 1px solid var(--glass-border);
    }
    .comparison-label::before {
        display: none;
    }
}

/* Click-to-call credibility link */
.credibility-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.credibility-link:hover {
    color: var(--color-green);
}

/* Performance Degradation for Mobile */
@media (max-width: 768px) {

    .glass-container,
    .glass-card,
    .shimmer-border>.inner,
    .navbar.scrolled {
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
    }

    .shimmer-border {
        animation: none !important;
        background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.15), rgba(255,255,255,0.08)) !important;
    }

    .noise-overlay::before {
        display: none !important;
    }

    .primary-cta {
        animation: none !important;
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.2) !important;
    }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto !important;
    }

    .shimmer-border {
        animation: none !important;
    }
}

html {
    scroll-behavior: smooth;
}

/* fix intl-tel-input full width */
.iti {
    width: 100%;
}

.iti__country-list {
    background-color: var(--glass-bg-heavy);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: var(--color-text-main);
}

.iti__country {
    padding: 10px 10px;
}

.iti__country.iti__highlight {
    background-color: rgba(255, 255, 255, 0.1);
}

.iti__selected-flag {
    background-color: transparent !important;
}

.iti__flag-container:hover .iti__selected-flag {
    background-color: rgba(255, 255, 255, 0.05) !important;
}