/* ══════════════════════════════════════════════════════════════════════
 * OPTERA DESIGN SYSTEM v2 — PREMIUM EXTENSIONS
 * ══════════════════════════════════════════════════════════════════════ */

/* ── GLOBAL OVERFLOW LOCK ────────────────────────────────────────────── */
html {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    overflow-x: hidden;
    max-width: 100%;
}

/* ── CONTAINER ───────────────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: clamp(1rem, 4vw, 2.5rem);
    padding-right: clamp(1rem, 4vw, 2.5rem);
    box-sizing: border-box;
}

/* ── PAGE HEADER BANNER ──────────────────────────────────────────────── */
.page-header-banner {
    background: linear-gradient(135deg, var(--color-primary-950, #060B14), var(--color-primary-800, #0d2040));
    /* nav height (72px) + breathing room that scales with viewport */
    padding-top: calc(72px + clamp(2.5rem, 8vw, 6rem));
    padding-bottom: clamp(2.5rem, 6vw, 5rem);
    position: relative;
    overflow: hidden;
}

/* On mobile the heading must never touch the fixed nav */
@media (max-width: 768px) {
    .page-header-banner {
        padding-top: calc(72px + 2rem);
        /* 72px nav + 32px gap */
        padding-bottom: 2rem;
    }
}

/* subtle diagonal grid overlay */
.page-header-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* left emerald accent stripe */
.page-header-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--color-accent-500, #059669);
}

.page-header-banner-content,
.page-header-banner>.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: clamp(1rem, 4vw, 2.5rem);
    padding-right: clamp(1rem, 4vw, 2.5rem);
    position: relative;
    z-index: 1;
}

.page-header-title {
    font-family: var(--font-display, 'Sora', sans-serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin: 0 0 1rem;
}

/* breadcrumbs */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--color-accent-400, #34d399);
}

.breadcrumb-sep {
    color: rgba(255, 255, 255, 0.25);
}

.breadcrumb-current {
    color: var(--color-accent-400, #34d399);
    font-weight: 600;
}





/* ── SECTION UTILITIES ───────────────────────────────────────────────── */
.section {
    padding-top: clamp(3.5rem, 8vw, 6rem);
    padding-bottom: clamp(3.5rem, 8vw, 6rem);
}

.section-white {
    background: #ffffff;
}

.section-light {
    background: #f8fafc;
}

.section-navy {
    background: var(--color-navy, #0a1628);
}

.section-dark {
    background: #060d1a;
}

/* eyebrow on dark backgrounds */
.section-eyebrow-dark {
    color: var(--color-accent-400, #34d399);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* ── LEGAL DOCUMENT TYPOGRAPHY ───────────────────────────────────────── */
.legal-doc {
    color: var(--color-neutral-700, #374151);
    font-size: 1rem;
    line-height: 1.9;
    counter-reset: legal-section;
}

.legal-doc>div {
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--color-neutral-100, #f1f5f9);
}

.legal-doc>div:first-child {
    padding-top: 0;
}

.legal-doc>div:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.legal-doc h2 {
    font-family: var(--font-display, 'Sora', sans-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-neutral-900, #0f172a);
    margin: 0 0 1rem 0;
    padding-bottom: 0.625rem;
    border-bottom: 2px solid var(--color-neutral-100, #f1f5f9);
    display: flex;
    align-items: center;
    gap: 0.625rem;
    counter-increment: legal-section;
    letter-spacing: -0.01em;
}

.legal-doc h2::before {
    content: counter(legal-section, decimal-leading-zero);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    background: var(--color-accent-500, #059669);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    border-radius: 6px;
    flex-shrink: 0;
    letter-spacing: 0;
}

.legal-doc p {
    margin: 0 0 1.25rem 0;
    color: var(--color-neutral-600, #4b5563);
    line-height: 1.85;
}

.legal-doc p:last-child {
    margin-bottom: 0;
}

.legal-doc ol,
.legal-doc ul {
    padding-left: 1.5rem;
    margin: 0 0 1.25rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.legal-doc li {
    color: var(--color-neutral-600, #4b5563);
    line-height: 1.8;
}

.legal-doc strong {
    color: var(--color-neutral-800, #1e293b);
    font-weight: 600;
}

.legal-doc a {
    color: var(--color-accent-600, #059669);
    font-weight: 600;
    text-decoration: none;
}

.legal-doc a:hover {
    text-decoration: underline;
}

.legal-doc-alert {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-left: 4px solid var(--color-accent-500, #059669);
    border-radius: 0.5rem;
    padding: 1.125rem 1.375rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #14532d;
    line-height: 1.75;
}

.legal-doc-warn {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-left: 4px solid #f59e0b;
    border-radius: 0.5rem;
    padding: 1.125rem 1.375rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #78350f;
    line-height: 1.75;
}

.legal-meta-card {
    background: var(--color-neutral-50, #f8fafc);
    border: 1px solid var(--color-neutral-200, #e2e8f0);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-top: 2rem;
}

/* ── ACCORDION V2 ────────────────────────────────────────────────────── */
.accordion-v2 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.accordion-v2-item {
    border: 1px solid var(--color-neutral-200, #e2e8f0);
    border-radius: 0.75rem;
    overflow: hidden;
    background: #ffffff;
    transition: box-shadow 0.2s;
}

.accordion-v2-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.accordion-v2-item.open {
    border-color: var(--color-accent-300, #6ee7b7);
    box-shadow: 0 0 0 2px rgba(5, 150, 105, 0.08);
}

.accordion-v2-trigger {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.125rem 1.25rem;
    font-family: var(--font-body, 'DM Sans', sans-serif);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-neutral-900, #0f172a);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color 0.2s;
}

.accordion-v2-trigger:hover,
.accordion-v2-item.open .accordion-v2-trigger {
    color: var(--color-accent-600, #059669);
}

.accordion-v2-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--color-neutral-400, #94a3b8);
    transition: transform 0.3s ease;
}

.accordion-v2-item.open .accordion-v2-icon {
    transform: rotate(180deg);
    color: var(--color-accent-500, #10b981);
}

.accordion-v2-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.accordion-v2-item.open .accordion-v2-content {
    max-height: 600px;
}

.accordion-v2-body {
    padding: 0 1.25rem 1.25rem;
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--color-neutral-600, #475569);
    border-top: 1px solid var(--color-neutral-100, #f1f5f9);
    padding-top: 1rem;
}

/* ── LEGAL DOCUMENT STYLES ───────────────────────────────────────────── */
.legal-doc h2 {
    font-family: var(--font-display, 'Sora', sans-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-neutral-900, #0f172a);
    margin: 2rem 0 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-accent-100, #d1fae5);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legal-doc p,
.legal-doc ol,
.legal-doc ul {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--color-neutral-600, #475569);
    margin-bottom: 1rem;
}

.legal-doc ol,
.legal-doc ul {
    padding-left: 1.5rem;
}

.legal-doc li {
    margin-bottom: 0.5rem;
}

/* ── KEYFRAME ANIMATIONS ─────────────────────────────────────────────── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(32px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-32px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(32px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(.92)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-14px)
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(5, 150, 105, .4)
    }

    50% {
        box-shadow: 0 0 0 16px rgba(5, 150, 105, 0)
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center
    }

    100% {
        background-position: 200% center
    }
}

@keyframes marquee {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

@keyframes orb-drift {

    0%,
    100% {
        transform: translate(0, 0) scale(1)
    }

    33% {
        transform: translate(30px, -20px) scale(1.05)
    }

    66% {
        transform: translate(-20px, 15px) scale(.95)
    }
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

@keyframes ticker-glow {

    0%,
    100% {
        opacity: .6
    }

    50% {
        opacity: 1
    }
}

@keyframes card-rise {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* ── SCROLL-REVEAL ───────────────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal-scale {
    opacity: 0;
    transform: scale(.92);
    transition: opacity .6s ease, transform .6s ease
}

.reveal.revealed,
.reveal-left.revealed,
.reveal-right.revealed,
.reveal-scale.revealed {
    opacity: 1;
    transform: none;
}

.delay-100 {
    transition-delay: .1s
}

.delay-200 {
    transition-delay: .2s
}

.delay-300 {
    transition-delay: .3s
}

.delay-400 {
    transition-delay: .4s
}

.delay-500 {
    transition-delay: .5s
}

.delay-600 {
    transition-delay: .6s
}

/* ── GLASSMORPHISM ───────────────────────────────────────────────────── */
.glass {
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .12)
}

.glass-light {
    background: rgba(255, 255, 255, .7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .4)
}

.glass-dark {
    background: rgba(11, 17, 33, .7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .08)
}

.glass-accent {
    background: rgba(5, 150, 105, .1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(5, 150, 105, .2)
}

/* ── GRADIENT PRESETS ────────────────────────────────────────────────── */
.gradient-navy {
    background: linear-gradient(135deg, var(--color-primary-950), var(--color-primary-800))
}

.gradient-emerald {
    background: linear-gradient(135deg, var(--color-accent-600), var(--color-accent-400))
}

.gradient-navy-emerald {
    background: linear-gradient(135deg, var(--color-primary-900) 0%, var(--color-primary-700) 60%, rgba(5, 150, 105, .3) 100%)
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-accent-400), var(--color-accent-300));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

/* ── BUTTONS EXTRA ───────────────────────────────────────────────────── */
.btn-ghost {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, .3)
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .5);
    color: white
}

.btn-pill {
    border-radius: var(--radius-full);
    padding-left: var(--space-8);
    padding-right: var(--space-8)
}

/* ── NAVIGATION v2 ───────────────────────────────────────────────────── */
.nav-v2 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    transition: background .3s, box-shadow .3s;
    background: transparent
}

.nav-v2.scrolled {
    background: rgba(11, 17, 33, .92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .06), 0 4px 24px rgba(0, 0, 0, .3)
}

.nav-v2 .nav-container {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Ensure hamburger never sits flush against the edge on mobile */
    padding-left: clamp(.75rem, 4vw, 2.5rem);
    padding-right: clamp(.75rem, 4vw, 2.5rem);
}

.nav-v2 .nav-brand {
    color: white
}

.nav-v2 .nav-link {
    color: rgba(255, 255, 255, .78);
    font-size: var(--text-sm);
    letter-spacing: .03em;
    padding: .5rem .25rem;
    border-bottom: 2px solid transparent;
    transition: color .2s, border-color .2s
}

.nav-v2 .nav-link:hover,
.nav-v2 .nav-link.active {
    color: var(--color-accent-400);
    border-bottom-color: var(--color-accent-400)
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    /* Generous touch target — not too close to the edge */
    padding: 10px 12px;
    margin-right: 4px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.nav-hamburger:hover {
    background: rgba(255, 255, 255, .16);
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all .3s
}

.nav-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.nav-hamburger.open span:nth-child(2) {
    opacity: 0
}

.nav-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

.nav-mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--color-primary-950);
    /* Above the nav so it covers everything cleanly */
    z-index: calc(var(--z-fixed) + 10);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-6);
    opacity: 0;
    transition: opacity .3s;
    padding: 0 1.5rem 2rem;
}

.nav-mobile-menu.open {
    display: flex;
    opacity: 1;
}

/* Logo + close row pinned to top of the overlay */
.nav-mobile-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.nav-mobile-header .nav-brand {
    color: white;
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    text-decoration: none;
    letter-spacing: -0.02em;
}

@media (max-width:768px) {
    .nav-hamburger {
        display: flex
    }

    .nav-v2 .nav-menu {
        display: none
    }
}

/* ── MOBILE HERO-V2 OVERRIDE ───────────────────────────────────────── */
/* The stats/ticker hero sits below the full-viewport video hero.       */
/* On mobile min-height:100vh makes it appear mostly empty. Override:  */
@media (max-width: 768px) {
    .hero-v2 {
        min-height: auto;
        padding-top: 72px;
        /* clear the fixed nav */
        padding-bottom: 3rem;
    }

    .hero-v2-content {
        padding-top: 2rem;
        padding-bottom: 1.5rem;
    }

    /* Keep ticker cards from overflowing narrow screens */
    .hero-ticker {
        overflow-x: auto;
        flex-wrap: nowrap;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: .5rem;
        justify-content: flex-start;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-ticker-card {
        scroll-snap-align: start;
        flex-shrink: 0;
    }

    /* Stats row: reduce gap so all 4 fit */
    .hero-v2-stats {
        gap: 1.5rem;
    }

    .hero-v2-orb-1,
    .hero-v2-orb-2,
    .hero-v2-orb-3 {
        display: none;
        /* Hide heavy blur orbs on mobile for performance */
    }
}

/* ── HERO v2 ─────────────────────────────────────────────────────────── */
.hero-v2 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg,
            #060d1a 0%,
            #0b1525 40%,
            #0f1f38 70%,
            #0a1a1a 100%);
    padding-top: 20px;
}

/* Layered mesh gradient for uniqueness */
.hero-v2::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 20%, rgba(5, 150, 105, .18) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(5, 150, 105, .10) 0%, transparent 55%),
        radial-gradient(ellipse 40% 40% at 50% 50%, rgba(44, 69, 117, .15) 0%, transparent 60%);
    pointer-events: none;
}

.hero-v2-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    animation: orb-drift 12s ease-in-out infinite
}

.hero-v2-orb-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(5, 150, 105, .16) 0%, transparent 70%);
    top: -150px;
    right: -150px
}

.hero-v2-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(5, 150, 105, .10) 0%, transparent 70%);
    bottom: -100px;
    left: 5%;
    animation-delay: -4s
}

.hero-v2-orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(44, 69, 117, .3) 0%, transparent 70%);
    top: 25%;
    left: 35%;
    animation-delay: -8s
}

/* Grid lines */
.hero-v2-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Content */
.hero-v2-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 2.5rem);
    text-align: center;
}

.hero-v2-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: .375rem 1rem;
    border-radius: var(--radius-full);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--color-accent-400);
    border: 1px solid rgba(5, 150, 105, .3);
    background: rgba(5, 150, 105, .08);
    margin-bottom: var(--space-6);
    animation: fadeInUp .6s ease both;
}

.hero-v2-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.03em;
    color: white;
    margin-bottom: var(--space-6);
    animation: fadeInUp .6s .1s ease both;
}

.hero-v2-title .accent {
    color: var(--color-accent-400)
}

.hero-v2-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: rgba(255, 255, 255, .65);
    max-width: 580px;
    margin: 0 auto var(--space-10);
    line-height: 1.7;
    animation: fadeInUp .6s .2s ease both;
}

.hero-v2-ctas {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp .6s .3s ease both;
}

/* Floating stat cards in hero */
.hero-v2-stats {
    display: flex;
    gap: clamp(1rem, 3vw, 2.5rem);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: clamp(2.5rem, 5vw, 5rem);
    padding-top: clamp(1.5rem, 3vw, 2rem);
    border-top: 1px solid rgba(255, 255, 255, .08);
    animation: fadeInUp .6s .4s ease both;
}

.hero-v2-stat {
    text-align: center
}

.hero-v2-stat-value {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    color: white;
    line-height: 1;
}

.hero-v2-stat-label {
    font-size: .75rem;
    color: rgba(255, 255, 255, .45);
    margin-top: .25rem;
    letter-spacing: .05em
}

/* Floating ticker cards */
.hero-ticker {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--space-12);
    animation: fadeInUp .6s .5s ease both;
}

.hero-ticker-card {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .625rem 1.25rem;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(12px);
    animation: ticker-glow 3s ease-in-out infinite;
}

.hero-ticker-card:nth-child(2) {
    animation-delay: 1s
}

.hero-ticker-card:nth-child(3) {
    animation-delay: 2s
}

.hero-ticker-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent-400);
    animation: pulseGlow 2s ease-in-out infinite
}

.hero-ticker-label {
    font-size: .75rem;
    color: rgba(255, 255, 255, .5);
    text-transform: uppercase;
    letter-spacing: .08em
}

.hero-ticker-value {
    font-size: .9rem;
    font-weight: 700;
    color: white
}

.hero-ticker-change {
    font-size: .75rem;
    font-weight: 600;
    color: #34d399
}

/* ── TRUST BAR ───────────────────────────────────────────────────────── */
.trust-bar {
    background: white;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    padding: 1.25rem 0;
    overflow: hidden
}

.trust-bar-track {
    display: flex;
    gap: 3rem;
    animation: marquee 35s linear infinite;
    width: max-content;
    /* Prevent the infinite-width track from creating horizontal scroll */
    will-change: transform;
}

.trust-bar-item {
    display: flex;
    align-items: center;
    gap: .625rem;
    white-space: nowrap;
    color: #94a3b8;
    font-size: .8125rem;
    font-weight: 500;
    letter-spacing: .04em
}

.trust-bar-item svg {
    color: var(--color-accent-500)
}

/* ── STATS BAR ───────────────────────────────────────────────────────── */
.stats-bar {
    background: linear-gradient(135deg, var(--color-primary-900), var(--color-primary-800));
    padding: clamp(3rem, 6vw, 5rem) 0;
    position: relative;
    overflow: hidden
}

.stats-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(5, 150, 105, .12) 0%, transparent 70%);
    pointer-events: none
}

.stats-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    z-index: 1
}

.stat-item {
    text-align: center;
    padding: clamp(1rem, 2vw, 1.5rem) var(--space-6);
    border-right: 1px solid rgba(255, 255, 255, .08)
}

.stat-item:last-child {
    border-right: none
}

.stat-item-icon {
    width: 48px;
    height: 48px;
    background: rgba(5, 150, 105, .15);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-400);
    margin: 0 auto var(--space-3)
}

.stat-item-value {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.75rem);
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: .25rem
}

.stat-item-suffix {
    color: var(--color-accent-400)
}

.stat-item-label {
    font-size: .8125rem;
    color: rgba(255, 255, 255, .5);
    letter-spacing: .04em
}

/* ── SECTIONS ────────────────────────────────────────────────────────── */
.section {
    padding: clamp(4rem, 8vw, 7rem) 0
}

.section-sm {
    padding: clamp(2rem, 4vw, 4rem) 0
}

.section-dark {
    background: var(--color-primary-900);
    color: white
}

.section-navy {
    background: var(--color-primary-950);
    color: white
}

.section-muted {
    background: #f8fafc
}

.section-white {
    background: #ffffff
}

.section-eyebrow {
    display: inline-block;
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--color-accent-500);
    margin-bottom: .75rem
}

.section-eyebrow-dark {
    color: var(--color-accent-400)
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: var(--color-neutral-900);
    line-height: 1.15;
    letter-spacing: -.025em;
    margin-bottom: var(--space-4)
}

.section-title-white {
    color: white
}

.section-desc {
    font-size: 1.0625rem;
    color: var(--color-neutral-500);
    max-width: 540px;
    line-height: 1.75
}

.section-desc-white {
    color: rgba(255, 255, 255, .6)
}

.section-header-center {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 4.5rem)
}

.section-header-center .section-desc {
    margin: 0 auto
}

.section-title-decorated::after {
    content: '';
    display: block;
    width: 44px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent-500), var(--color-accent-300));
    border-radius: 2px;
    margin-top: var(--space-4);
}

.section-header-center .section-title-decorated::after {
    margin-left: auto;
    margin-right: auto
}

/* ── FEATURE CARDS ───────────────────────────────────────────────────── */
.feature-card {
    background: white;
    border-radius: 1.25rem;
    border: 1px solid #e2e8f0;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(11, 17, 33, .1);
    border-color: rgba(5, 150, 105, .2)
}

.feature-card-icon {
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, rgba(5, 150, 105, .12), rgba(5, 150, 105, .04));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-500);
    margin-bottom: 1.25rem;
    transition: transform .3s ease;
}

.feature-card:hover .feature-card-icon {
    transform: scale(1.1)
}

/* ── PRICING CARDS ───────────────────────────────────────────────────── */
.pricing-card {
    background: white;
    border-radius: 1.5rem;
    border: 2px solid #e2e8f0;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    position: relative;
    transition: transform .3s ease, box-shadow .3s ease
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 48px rgba(11, 17, 33, .12)
}

.pricing-card.featured {
    border-color: var(--color-accent-500);
    box-shadow: 0 0 0 4px rgba(5, 150, 105, .1), 0 20px 40px rgba(5, 150, 105, .15)
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent-500);
    color: white;
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .3rem 1rem;
    border-radius: var(--radius-full)
}

.pricing-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-neutral-900);
    margin-bottom: .25rem
}

.pricing-roi {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-accent-500);
    line-height: 1;
    margin: .75rem 0 .25rem
}

.pricing-roi-label {
    font-size: .8125rem;
    color: var(--color-neutral-500);
    margin-bottom: 1.5rem
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    border-top: 1px solid #f1f5f9;
    padding-top: 1.5rem
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .4rem 0;
    font-size: .875rem;
    color: var(--color-neutral-600)
}

.pricing-features li::before {
    content: '';
    width: 18px;
    height: 18px;
    min-width: 18px;
    border-radius: 50%;
    background: #ecfdf5 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23059669' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center;
}

/* ── PROCESS STEPS ───────────────────────────────────────────────────── */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent-500), var(--color-accent-300));
    z-index: 0
}

.process-step-v2 {
    text-align: center;
    padding: 0 clamp(.5rem, 2vw, 1.25rem);
    position: relative;
    z-index: 1
}

.process-step-v2-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--color-accent-500);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-accent-500);
    box-shadow: 0 0 0 8px rgba(5, 150, 105, .1);
    transition: transform .3s ease, box-shadow .3s ease
}

.process-step-v2:hover .process-step-v2-number {
    transform: scale(1.1);
    box-shadow: 0 0 0 12px rgba(5, 150, 105, .12), 0 8px 24px rgba(5, 150, 105, .3)
}

.process-step-v2-title {
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--color-neutral-900);
    margin-bottom: .5rem
}

.process-step-v2-desc {
    font-size: .875rem;
    color: var(--color-neutral-500);
    line-height: 1.65
}

/* ── TESTIMONIALS ────────────────────────────────────────────────────── */
.testimonial-v2 {
    background: white;
    border-radius: 1.5rem;
    padding: clamp(1.5rem, 3vw, 2rem);
    border: 1px solid #e2e8f0;
    position: relative;
    transition: transform .3s ease, box-shadow .3s ease;
    height: 100%
}

.testimonial-v2:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(11, 17, 33, .1)
}

.testimonial-v2-stars {
    display: flex;
    gap: 2px;
    color: #F59E0B;
    margin-bottom: 1rem
}

.testimonial-v2-quote {
    font-size: 3rem;
    color: var(--color-accent-200);
    line-height: 1;
    margin-bottom: .75rem;
    font-family: Georgia, serif
}

.testimonial-v2-text {
    font-size: .9375rem;
    color: var(--color-neutral-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic
}

.testimonial-v2-author {
    display: flex;
    align-items: center;
    gap: .875rem
}

.testimonial-v2-name {
    font-weight: 700;
    color: var(--color-neutral-900);
    font-size: .875rem
}

.testimonial-v2-role {
    font-size: .75rem;
    color: var(--color-neutral-500);
    margin-top: .125rem
}

/* ── ACCORDION ───────────────────────────────────────────────────────── */
.accordion-v2 {
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    overflow: hidden
}

.accordion-v2-item {
    border-bottom: 1px solid #e2e8f0
}

.accordion-v2-item:last-child {
    border-bottom: none
}

.accordion-v2-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: white;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-neutral-900);
    transition: background .2s;
    gap: 1rem
}

.accordion-v2-trigger:hover {
    background: #f8fafc
}

.accordion-v2-trigger.open {
    color: var(--color-accent-500);
    background: rgba(5, 150, 105, .03)
}

.accordion-v2-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    color: #94a3b8;
    transition: transform .3s ease;
    flex-shrink: 0
}

.accordion-v2-trigger.open .accordion-v2-icon {
    transform: rotate(180deg);
    color: var(--color-accent-500)
}

.accordion-v2-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease
}

.accordion-v2-content.open {
    max-height: 500px
}

.accordion-v2-body {
    padding: 0 1.5rem 1.25rem;
    font-size: .9375rem;
    color: var(--color-neutral-600);
    line-height: 1.7
}

/* ── TRUST/CTA BANNER ────────────────────────────────────────────────── */
.cta-banner-v2 {
    background: linear-gradient(135deg, var(--color-primary-900), var(--color-primary-700));
    border-radius: 2rem;
    padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 4rem);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner-v2::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(5, 150, 105, .22) 0%, transparent 70%);
    pointer-events: none
}

.cta-banner-v2::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(5, 150, 105, .15) 0%, transparent 70%);
    pointer-events: none
}

.cta-banner-v2-content {
    position: relative;
    z-index: 1
}

.cta-banner-v2-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.75rem);
    font-weight: 800;
    color: white;
    margin-bottom: var(--space-4);
    letter-spacing: -.025em
}

.cta-banner-v2-desc {
    color: rgba(255, 255, 255, .65);
    font-size: 1.0625rem;
    margin-bottom: var(--space-8);
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7
}

/* ── PAGE HEADER BANNER (additional styles) ─── */
/* Note: base .page-header-banner rule with correct nav-aware padding is at the TOP of this file */

.page-header-banner-content {
    position: relative;
    z-index: 1
}

.page-header-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: .75rem
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .875rem;
    color: rgba(255, 255, 255, .5)
}

.breadcrumb a {
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
    transition: color .2s
}

.breadcrumb a:hover {
    color: var(--color-accent-400)
}

.breadcrumb-sep {
    color: rgba(255, 255, 255, .3)
}

.breadcrumb-current {
    color: var(--color-accent-400)
}

/* ── FOOTER v2 ───────────────────────────────────────────────────────── */
.footer-v2 {
    background: var(--color-primary-950);
    color: rgba(255, 255, 255, .55);
    padding: clamp(4rem, 8vw, 6rem) 0 0
}

.footer-v2-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: clamp(1.5rem, 4vw, 3.5rem);
    padding-bottom: clamp(2.5rem, 5vw, 4rem);
    border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.footer-v2-brand-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: .75rem
}

.footer-v2-brand-desc {
    font-size: .875rem;
    line-height: 1.7;
    margin-bottom: 1.5rem
}

.footer-v2-col-title {
    font-size: .75rem;
    font-weight: 700;
    color: white;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 1.25rem
}

.footer-v2-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .75rem
}

.footer-v2-links a {
    font-size: .875rem;
    color: rgba(255, 255, 255, .45);
    text-decoration: none;
    transition: color .2s
}

.footer-v2-links a:hover {
    color: var(--color-accent-400)
}

.footer-v2-bottom {
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem
}

.footer-v2-legal {
    display: flex;
    gap: 1.5rem
}

.footer-v2-legal a {
    color: rgba(255, 255, 255, .35);
    text-decoration: none;
    font-size: .75rem;
    transition: color .2s
}

.footer-v2-legal a:hover {
    color: var(--color-accent-400)
}

/* ── MISC UTILITIES ──────────────────────────────────────────────────── */
.animate-float {
    animation: float 4s ease-in-out infinite
}

.animate-pulse-glow {
    animation: pulseGlow 2.5s ease-in-out infinite
}

.shimmer {
    background: linear-gradient(90deg, #f1f5f9 25%, #f8fafc 50%, #f1f5f9 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite
}

.divider-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #94a3b8;
    font-size: .875rem
}

.divider-text::before,
.divider-text::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e2e8f0
}

.progress-bar {
    height: 6px;
    background: #f1f5f9;
    border-radius: 999px;
    overflow: hidden
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-accent-600), var(--color-accent-400));
    border-radius: 999px;
    transition: width .8s ease
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem
}

.empty-state-icon {
    width: 64px;
    height: 64px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #94a3b8
}

.empty-state-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-neutral-900);
    margin-bottom: .5rem
}

.empty-state-desc {
    font-size: .875rem;
    color: var(--color-neutral-500);
    margin-bottom: 1.5rem
}

/* ── STAT WIDGET (Dashboard) ─────────────────────────────────────────── */
.stat-widget {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: transform .25s ease, box-shadow .25s ease
}

.stat-widget:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(11, 17, 33, .08)
}

.stat-widget-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center
}

.stat-widget-icon-emerald {
    background: #ecfdf5;
    color: var(--color-accent-500)
}

.stat-widget-icon-navy {
    background: rgba(11, 17, 33, .08);
    color: var(--color-primary-800)
}

.stat-widget-icon-warning {
    background: #fffbeb;
    color: #d97706
}

.stat-widget-icon-info {
    background: #eff6ff;
    color: #2563eb
}

.stat-widget-label {
    font-size: .6875rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: .25rem
}

.stat-widget-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-neutral-900);
    line-height: 1;
    margin-bottom: .25rem
}

.stat-widget-trend {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-size: .75rem;
    font-weight: 600
}

.stat-widget-trend-up {
    color: var(--color-accent-500)
}

.stat-widget-trend-down {
    color: #ef4444
}

.sidebar-v2 {
    background: linear-gradient(180deg, var(--color-primary-950), var(--color-primary-900));
    border-right: 1px solid rgba(255, 255, 255, .04)
}

.sidebar-section-label {
    font-size: .625rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .22);
    padding: .875rem 1.5rem .375rem
}

.sidebar-menu-item-v2 {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem 1rem;
    margin: 1px .75rem;
    border-radius: var(--radius-lg);
    color: rgba(255, 255, 255, .52);
    text-decoration: none;
    font-size: .875rem;
    font-weight: 500;
    transition: all .2s
}

.sidebar-menu-item-v2:hover {
    color: white;
    background: rgba(255, 255, 255, .06)
}

.sidebar-menu-item-v2.active {
    color: white;
    background: rgba(5, 150, 105, .15);
    border: 1px solid rgba(5, 150, 105, .2)
}

.sidebar-menu-item-v2.active svg {
    color: var(--color-accent-400)
}

/* ── EMAIL ───────────────────────────────────────────────────────────── */
.email-highlight-box {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin: 1.25rem 0
}

.email-highlight-box p {
    margin: 0;
    color: #065f46;
    font-size: .875rem
}

.email-divider {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 1.5rem 0
}

.email-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #059669
}

.email-warning-box {
    background: #fef3c7;
    border: 1px solid #fde68a;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin: 1.25rem 0
}

.email-warning-box p {
    margin: 0;
    color: #92400e;
    font-size: .875rem
}

/* ── RESPONSIVE GRIDS ────────────────────────────────────────────────── */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1rem, 2.5vw, 1.75rem)
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 2.5vw, 1.75rem)
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1rem, 2.5vw, 1.75rem)
}

.grid-auto {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1rem, 2.5vw, 1.75rem)
}

/* ── RESPONSIVE BREAKPOINTS ──────────────────────────────────────────── */
@media (max-width:1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr)
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-v2-grid {
        grid-template-columns: 1fr 1fr
    }

    .stats-bar-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .08)
    }

    .stat-item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, .08)
    }

    .stat-item:last-child,
    .stat-item:nth-last-child(2):nth-child(odd) {
        border-bottom: none
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem
    }

    .process-timeline::before {
        display: none
    }
}

@media (max-width:768px) {
    .grid-3 {
        grid-template-columns: 1fr
    }

    .hero-v2-stats {
        gap: 1.5rem
    }

    .hero-v2-stat-value {
        font-size: 1.5rem
    }

    .hero-ticker {
        display: none
    }

    body {
        padding-top: 0
    }
}

@media (max-width:640px) {

    .grid-2,
    .grid-4 {
        grid-template-columns: 1fr
    }

    .stats-bar-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .stat-item {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, .08)
    }

    .stat-item:last-child {
        border-bottom: none
    }

    .footer-v2-grid {
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .footer-v2-bottom {
        flex-direction: column;
        text-align: center
    }

    .process-timeline {
        grid-template-columns: 1fr
    }

    .cta-banner-v2 {
        border-radius: 1.25rem;
        padding: 2rem 1.25rem
    }

    .section-header-center {
        margin-bottom: 2rem
    }

    .hero-v2-ctas {
        flex-direction: column;
        align-items: center
    }

    .hero-v2-ctas .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center
    }

    /* Two-column stats on mobile hero */
    .hero-v2-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem
    }
}


/* ══════════════════════════════════════════════════════════════════════
 * VIDEO HERO SECTION
 * Full-viewport background video with dark overlay, company name,
 * financial tagline, and join CTA button.
 * ══════════════════════════════════════════════════════════════════════ */

.video-hero {
    position: relative;
    width: 100%;
    /* Slide under the fixed nav (72px) so no black gap at top */
    height: calc(100vh + 72px);
    min-height: 680px;
    margin-top: -72px;
    /* pull up behind the fixed nav */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* The <video> element fills the entire container */
.video-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

/* Dark cinematic overlay — heavier at top (nav) and bottom */
.video-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to bottom,
            rgba(6, 11, 20, .80) 0%,
            rgba(6, 11, 20, .52) 45%,
            rgba(6, 11, 20, .52) 55%,
            rgba(6, 11, 20, .88) 100%);
}

/* Subtle emerald radial glow on the overlay for brand warmth */
.video-hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 55% at 60% 35%, rgba(5, 150, 105, .15) 0%, transparent 65%);
    pointer-events: none;
}

/* Content wrapper — appears above the video and overlay */
.video-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 clamp(1.25rem, 5vw, 3rem);
    max-width: 860px;
    animation: fadeInUp .9s ease both;
}

/* Eyebrow badge */
.video-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .375rem 1rem;
    border-radius: 999px;
    background: rgba(5, 150, 105, .15);
    border: 1px solid rgba(5, 150, 105, .35);
    color: var(--color-accent-400, #10b981);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeInUp .9s .1s ease both;
}

/* Company name — the hero H1 */
.video-hero-title {
    font-family: var(--font-display, 'Sora', sans-serif);
    font-size: clamp(2.75rem, 8vw, 5.5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
    animation: fadeInUp .9s .18s ease both;
    /* Subtle shimmer gradient on the text */
    background: linear-gradient(135deg, #fff 30%, rgba(16, 185, 129, .85) 80%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp .9s .18s ease both, shimmer 6s linear 1.5s infinite;
}

/* Financial tagline */
.video-hero-tagline {
    font-family: var(--font-primary, 'DM Sans', sans-serif);
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    font-weight: 400;
    color: rgba(255, 255, 255, .72);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 2.25rem;
    animation: fadeInUp .9s .28s ease both;
}

/* CTA button — uses existing .btn .btn-primary, just adds animation */
.video-hero-cta {
    animation: fadeInUp .9s .38s ease both;
    box-shadow: 0 0 32px rgba(5, 150, 105, .35);
    transition: transform .2s ease, box-shadow .2s ease;
}

.video-hero-cta:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 0 48px rgba(5, 150, 105, .55);
}

/* Animated scroll indicator at the bottom of the video hero */
.video-hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, .45);
    animation: bounce-scroll 2.2s ease-in-out infinite;
    cursor: pointer;
}

@keyframes bounce-scroll {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: .55;
    }

    50% {
        transform: translateX(-50%) translateY(8px);
        opacity: 1;
    }
}

/* ── Video Hero Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
    .video-hero {
        /* On tablets/mobile the nav is still 72px */
        height: calc(100svh + 72px);
        min-height: 600px;
    }

    .video-hero-content {
        padding: 2rem 1.25rem 1.5rem;
        text-align: center;
    }

    .video-hero-tagline {
        font-size: 1rem;
        max-width: 90vw;
    }
}

@media (max-width: 480px) {
    .video-hero {
        min-height: 560px;
    }

    .video-hero-title {
        font-size: clamp(2rem, 11vw, 2.6rem) !important;
        word-break: break-word;
    }

    .video-hero-tagline {
        font-size: .9rem;
    }

    .video-hero-cta {
        font-size: .95rem;
        padding: .85rem 1.5rem;
        width: 90%;
        max-width: 320px;
    }

    .video-hero-scroll {
        display: none;
    }
}


/* ══════════════════════════════════════════════════════════════════════
 * GOLD INVESTMENT SECTION
 * Premium split section: text left, animated gold card right.
 * Gold palette tokens: #C9A84C (base) · #F5D98B (light) · #A07530 (deep)
 * ══════════════════════════════════════════════════════════════════════ */

/* Gold color tokens — used throughout this section */
:root {
    --gold-base: #C9A84C;
    --gold-light: #F5D98B;
    --gold-deep: #A07530;
    --gold-glow: rgba(201, 168, 76, .35);
}

.gold-section {
    background: linear-gradient(135deg, #060d1a 0%, #0b1525 55%, #0d1a10 100%);
    position: relative;
    overflow: hidden;
}

/* Subtle radial gold glow in the background */
.gold-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, .12) 0%, transparent 65%);
    top: -100px;
    right: -100px;
    pointer-events: none;
}

.gold-section::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, .08) 0%, transparent 65%);
    bottom: -80px;
    left: 5%;
    pointer-events: none;
}

/* Two-column split layout */
.gold-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 7vw, 5.5rem);
    align-items: center;
}

/* ── Left: Text content ────────────────────────────────────────────── */
.gold-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .35rem .9rem;
    border-radius: 999px;
    background: rgba(201, 168, 76, .12);
    border: 1px solid rgba(201, 168, 76, .3);
    color: var(--gold-light);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.gold-section-title {
    font-family: var(--font-display, 'Sora', sans-serif);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
    /* Gold gradient text */
    background: linear-gradient(135deg, #F5D98B 0%, #C9A84C 50%, #F5D98B 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 5s linear 1s infinite;
}

.gold-section-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, .62);
    line-height: 1.78;
    margin-bottom: 2rem;
}

/* Feature list items */
.gold-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.25rem;
}

.gold-feature-item {
    display: flex;
    align-items: flex-start;
    gap: .875rem;
}

.gold-feature-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: .75rem;
    background: rgba(201, 168, 76, .12);
    border: 1px solid rgba(201, 168, 76, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    margin-top: .1rem;
}

.gold-feature-title {
    font-weight: 700;
    color: #ffffff;
    font-size: .9375rem;
    margin-bottom: .15rem;
}

.gold-feature-desc {
    font-size: .875rem;
    color: rgba(255, 255, 255, .52);
    line-height: 1.65;
}

/* Gold CTA button override */
.btn-gold {
    background: linear-gradient(135deg, var(--gold-deep), var(--gold-base), var(--gold-light));
    background-size: 200% auto;
    color: #0b1525;
    font-weight: 700;
    border: none;
    animation: shimmer 4s linear infinite;
    box-shadow: 0 4px 20px rgba(201, 168, 76, .3);
    transition: transform .2s ease, box-shadow .2s ease;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201, 168, 76, .5);
    color: #0b1525;
}

/* ── Right: Gold Card visual ───────────────────────────────────────── */
.gold-card {
    background: rgba(201, 168, 76, .06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 168, 76, .22);
    border-radius: 1.5rem;
    padding: clamp(1.5rem, 3.5vw, 2.5rem);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .45), inset 0 1px 0 rgba(201, 168, 76, .12);
}

/* Inner gold shimmer line at the top of the card */
.gold-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-base), var(--gold-light), var(--gold-base), transparent);
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
}

/* Gold bar icon header */
.gold-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.gold-bar-icon {
    width: 56px;
    height: 56px;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(160, 117, 48, .3), rgba(201, 168, 76, .15));
    border: 1px solid rgba(201, 168, 76, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    font-size: 1.5rem;
    box-shadow: 0 0 20px rgba(201, 168, 76, .2);
    animation: pulseGoldGlow 3s ease-in-out infinite;
}

@keyframes pulseGoldGlow {

    0%,
    100% {
        box-shadow: 0 0 12px rgba(201, 168, 76, .2);
    }

    50% {
        box-shadow: 0 0 28px rgba(201, 168, 76, .45);
    }
}

.gold-card-title {
    font-family: var(--font-display, 'Sora', sans-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .2rem;
}

.gold-card-subtitle {
    font-size: .8125rem;
    color: rgba(255, 255, 255, .45);
}

/* Live gold price display */
.gold-price-display {
    background: rgba(0, 0, 0, .25);
    border: 1px solid rgba(201, 168, 76, .18);
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gold-price-label {
    font-size: .8rem;
    color: rgba(255, 255, 255, .45);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: .3rem;
}

.gold-price-value {
    font-family: var(--font-display, 'Sora', sans-serif);
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--gold-light);
    line-height: 1;
}

.gold-price-unit {
    font-size: .8rem;
    color: rgba(255, 255, 255, .4);
    margin-top: .3rem;
}

.gold-price-change {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .4rem .85rem;
    border-radius: 999px;
    background: rgba(5, 150, 105, .15);
    border: 1px solid rgba(5, 150, 105, .3);
    color: var(--color-accent-400, #10b981);
    font-size: .8125rem;
    font-weight: 700;
}

/* Three stat chips at the bottom of the gold card */
.gold-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .875rem;
}

.gold-stat-chip {
    background: rgba(0, 0, 0, .2);
    border: 1px solid rgba(201, 168, 76, .14);
    border-radius: .875rem;
    padding: .875rem .75rem;
    text-align: center;
}

.gold-stat-chip-value {
    font-family: var(--font-display, 'Sora', sans-serif);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: .2rem;
}

.gold-stat-chip-label {
    font-size: .72rem;
    color: rgba(255, 255, 255, .4);
    text-transform: uppercase;
    letter-spacing: .07em;
}

/* ── Gold Section Responsive ───────────────────────────────────────── */
@media (max-width: 900px) {
    .gold-split {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .gold-stats-row {
        grid-template-columns: repeat(3, 1fr);
    }
}


@media (max-width: 480px) {
    .gold-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .gold-stat-chip:last-child {
        grid-column: span 2;
    }
}

/* ── FOOTER v3 RESPONSIVE ────────────────────────────────────────────── */
/* The new footer uses inline grid-template-columns:1.8fr 1fr 1fr 1fr   */
/* We override to stack on smaller screens using a specific container     */

@media (max-width: 1024px) {

    .footer-v2 [style*="grid-template-columns:1.8fr 1fr 1fr 1fr"],
    .footer-v2 [style*="grid-template-columns: 1.8fr 1fr 1fr 1fr"] {
        grid-template-columns: 1fr 1fr !important;
        gap: 2rem !important;
    }
}

@media (max-width: 640px) {

    .footer-v2 [style*="grid-template-columns:1.8fr 1fr 1fr 1fr"],
    .footer-v2 [style*="grid-template-columns: 1.8fr 1fr 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .footer-v2 [style*="justify-content:space-between"][style*="border-top"] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    /* Trust strip: stack on mobile */
    .footer-v2 [style*="justify-content:space-between"]>div:last-child {
        gap: 1rem;
    }
}

/* Google Translate — reset the invert on the iframe/select so it stays readable */
.goog-te-gadget {
    font-family: inherit !important;
}

.goog-te-gadget .goog-te-combo {
    background: transparent !important;
    color: rgba(255, 255, 255, 0.75) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 0.5rem !important;
    padding: 0.3rem 0.6rem !important;
    font-size: 0.8rem !important;
    outline: none !important;
    cursor: pointer;
    width: 100%;
}

.goog-te-gadget .goog-te-combo:hover {
    border-color: rgba(5, 150, 105, 0.5) !important;
    color: white !important;
}

.goog-logo-link,
.goog-te-gadget>span {
    display: none !important;
}