/* ============================================
   INFRAZEN TECHNOLOGIES - APPLE DARK MODE DESIGN SYSTEM

   Design Philosophy: Apple Dark Mode
   - Pure black backgrounds (Saturn depth)
   - Massive, bold typography IS the design
   - Extreme white space with golden ratio spacing
   - Glassmorphism depth layers
   - Cinematic transitions (0.6-0.8s ease-out)
   - Scroll-triggered reveal animations

   Seven Planetary Energies:
   - Saturn (#000000)  = Deep authority, backgrounds
   - Jupiter (#C9A84C) = Wealth & prosperity, CTAs
   - Mercury (#00C9B7) = Communication, verification
   - Sun (#E8872A)     = Leadership, badges
   - Mars (#E84545)    = Urgency, alerts
   - Venus (#F5F5F7)   = Elegance, text
   - Moon (rgba white) = Clarity, borders

   Numerology:
   - 8rem section padding = wealth & power
   - Golden ratio (phi=1.618) spacing throughout
   - 8s gradient animation cycle = prosperity
   ============================================ */


/* =============================================
   1. CSS CUSTOM PROPERTIES
   ============================================= */
:root {
    /* Saturn - Deep Authority (backgrounds) */
    --bg: #000000;
    --bg-subtle: #0a0a0f;
    --bg-elevated: #111118;

    /* Jupiter - Wealth & Prosperity (CTAs, accents) */
    --gold: #C9A84C;
    --gold-light: #E0C878;
    --gold-glow: rgba(201, 168, 76, 0.15);

    /* Mercury - Communication (links, verification) */
    --teal: #00C9B7;
    --teal-glow: rgba(0, 201, 183, 0.15);

    /* Sun - Leadership */
    --sun: #E8872A;

    /* Mars - Urgency */
    --mars: #E84545;

    /* Venus - Elegance (text) */
    --text-primary: #F5F5F7;
    --text-secondary: #86868B;
    --text-tertiary: #48484A;

    /* Moon - Clarity (borders) */
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);

    /* Gradients */
    --gradient-gold-teal: linear-gradient(135deg, var(--gold), var(--teal));
    --gradient-hero: radial-gradient(ellipse at 50% 40%, rgba(201, 168, 76, 0.04) 0%, transparent 60%);

    /* Typography - Golden Ratio Scale (phi = 1.618) */
    --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --fs-mega: clamp(2.8rem, 5vw, 4.5rem);
    --fs-xl: clamp(2rem, 4vw, 3.5rem);
    --fs-lg: clamp(1.25rem, 2vw, 1.618rem);
    --fs-body: 1rem;
    --fs-sm: 0.875rem;
    --fs-xs: 0.75rem;

    /* Spacing - Golden Ratio (phi-based) */
    --space-1: 0.5rem;
    --space-2: 1rem;
    --space-3: 1.618rem;
    --space-4: 2.618rem;
    --space-5: 4.236rem;
    --space-6: 6.854rem;
    --space-section: 3.5rem;

    /* Transitions - Cinematic */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --transition-fast: 0.3s var(--ease-out);
    --transition-normal: 0.5s var(--ease-out);
    --transition-slow: 0.8s var(--ease-out);

    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
}


/* =============================================
   2. RESET & BASE
   ============================================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg);
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul, ol {
    list-style: none;
}

input, textarea, select, button {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    border: none;
    outline: none;
    background: none;
}

button {
    cursor: pointer;
}

::selection {
    background: rgba(201, 168, 76, 0.3);
    color: var(--text-primary);
}

/* Scrollbar - minimal */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--text-tertiary);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}


/* =============================================
   3. CONTAINER & LAYOUT UTILITIES
   ============================================= */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3);
}

.section-label {
    display: inline-block;
    font-family: var(--font-display);
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    padding: var(--space-1) var(--space-3);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-2);
}

.section-title {
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: var(--space-2);
}

.section-subtitle {
    font-size: var(--fs-lg);
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto;
}


/* =============================================
   4. GLASSMORPHISM PATTERN
   ============================================= */
.glass {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    transition: background var(--transition-normal),
                border-color var(--transition-normal),
                transform var(--transition-normal),
                box-shadow var(--transition-normal);
}

.glass:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
}

.glass::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.5s var(--ease-out);
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(201, 168, 76, 0.06), transparent 40%);
    pointer-events: none;
}
.glass:hover::after {
    opacity: 1;
}


/* =============================================
   5. BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-1);
    padding: 14px 32px;
    font-family: var(--font-display);
    font-size: var(--fs-sm);
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all 0.4s var(--ease-out);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-gold {
    background: var(--gold);
    color: #000000;
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.2),
                0 4px 15px rgba(201, 168, 76, 0.15);
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(201, 168, 76, 0.3),
                0 8px 25px rgba(201, 168, 76, 0.2);
}

.btn-gold:active {
    transform: translateY(0);
}

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-hover);
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-full {
    width: 100%;
}

.btn .btn-icon {
    transition: transform 0.3s var(--ease-out);
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}


/* =============================================
   6. KEYFRAME ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes float1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -40px) scale(1.05);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }
    75% {
        transform: translate(15px, -10px) scale(1.02);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(-40px, 30px) scale(1.08);
    }
    66% {
        transform: translate(25px, -20px) scale(0.96);
    }
}

@keyframes float3 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    20% {
        transform: translate(20px, 30px) scale(1.04);
    }
    40% {
        transform: translate(-30px, -20px) scale(0.98);
    }
    60% {
        transform: translate(15px, -35px) scale(1.06);
    }
    80% {
        transform: translate(-10px, 15px) scale(0.97);
    }
}

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

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}


/* =============================================
   7. REVEAL / SCROLL ANIMATIONS
   Content is always visible. Reveal adds a subtle
   slide-up polish but never hides content.
   ============================================= */
.reveal {
    transform: translateY(20px);
    transition: transform 0.6s var(--ease-out);
}

.reveal.visible {
    transform: translateY(0);
}


/* =============================================
   8. NAVBAR
   ============================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-3) 0;
    transition: all 0.5s var(--ease-out);
    background: rgba(0, 0, 0, 0.60);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.80);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    border-bottom: 1px solid var(--border);
    padding: var(--space-2) 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    text-decoration: none;
    z-index: 1001;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
}

.logo-full {
    height: 36px;
    width: auto;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.logo-text .gold {
    color: var(--gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.nav-link {
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition-normal);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    font-family: var(--font-display);
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--gold);
    padding: 10px 24px;
    border: 1px solid rgba(201, 168, 76, 0.4);
    border-radius: var(--radius-full);
    transition: all 0.4s var(--ease-out);
}

.nav-cta:hover {
    background: var(--gold);
    color: #000000;
    box-shadow: 0 0 25px rgba(201, 168, 76, 0.2);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
}

.mobile-menu.active {
    display: flex;
    opacity: 1;
}

.mobile-menu .nav-link {
    font-size: var(--fs-xl);
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--text-primary);
}

.mobile-menu .nav-cta {
    font-size: var(--fs-lg);
    padding: 14px 36px;
    margin-top: var(--space-3);
}


/* =============================================
   9. HERO SECTION
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* Premium gradient base: dark teal wash top → pure black bottom
       Planetary: Mercury teal (top/North = career) → Saturn black (grounding) */
    background:
        linear-gradient(180deg,
            rgba(0, 40, 38, 1) 0%,
            rgba(0, 25, 24, 0.95) 15%,
            rgba(5, 15, 18, 0.9) 35%,
            rgba(0, 0, 0, 1) 65%
        );
    overflow: hidden;
    padding: 6.5rem 0 var(--space-3);
}

/* Premium ambient gradient mesh — vivid layered radial glows */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        /* Mercury teal flood — top-left (Vastu North/career energy) */
        radial-gradient(ellipse 80% 60% at 5% 0%, rgba(0, 201, 183, 0.25) 0%, transparent 55%),
        /* Secondary teal — top-right accent */
        radial-gradient(ellipse 50% 40% at 90% 5%, rgba(0, 160, 145, 0.12) 0%, transparent 50%),
        /* Jupiter gold — center-right warmth (wealth energy, East = growth) */
        radial-gradient(ellipse 40% 50% at 85% 45%, rgba(201, 168, 76, 0.10) 0%, transparent 50%),
        /* Saturn deep blue — mid layer for depth */
        radial-gradient(ellipse 60% 50% at 30% 30%, rgba(15, 45, 65, 0.30) 0%, transparent 55%),
        /* Warm gold — bottom glow (Southeast = wealth in Vastu) */
        radial-gradient(ellipse 60% 30% at 60% 95%, rgba(201, 168, 76, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Noise grain texture — premium tactile feel (from cowork) */
.hero-noise {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.035;
    background-image: 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");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* Subtle grid overlay — tech aesthetic (from cowork) */
.hero-grid-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.04;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
}

/* Particle network canvas */
#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Secondary gradient layer — adds depth and color blending */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        /* Teal spotlight wash across top */
        radial-gradient(ellipse 100% 50% at 30% 0%, rgba(0, 80, 72, 0.40) 0%, transparent 60%),
        /* Gold warmth center-bottom */
        radial-gradient(ellipse 80% 40% at 50% 80%, rgba(201, 168, 76, 0.06) 0%, transparent 50%),
        /* Deep blue atmospheric layer */
        radial-gradient(ellipse 70% 60% at 60% 20%, rgba(10, 30, 50, 0.35) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}

/* Orb ambient light elements */
.orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* Orb 1: Large teal spotlight — top-left (Mercury/career, Vastu North) */
.orb:nth-child(1) {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 180, 160, 0.18), transparent 65%);
    top: -25%;
    left: -20%;
    filter: blur(60px);
    animation: float1 28s ease-in-out infinite;
}

/* Orb 2: Gold — right warmth (Jupiter/wealth, East growth) */
.orb:nth-child(2) {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.14), transparent 70%);
    top: 15%;
    right: -8%;
    filter: blur(80px);
    animation: float2 32s ease-in-out infinite;
    animation-delay: -5s;
}

/* Orb 3: Deep teal — bottom atmosphere */
.orb:nth-child(3) {
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(0, 120, 108, 0.10), transparent 70%);
    bottom: -5%;
    left: 10%;
    filter: blur(100px);
    animation: float3 36s ease-in-out infinite;
    animation-delay: -10s;
}

/* Orb 4: Teal accent — mid-right */
.orb:nth-child(4) {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 201, 183, 0.10), transparent 70%);
    top: 50%;
    right: 25%;
    filter: blur(70px);
    animation: float1 24s ease-in-out infinite;
    animation-delay: -8s;
}

/* Orb 5: Teal — top-center spread */
.orb:nth-child(5) {
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(0, 160, 145, 0.12), transparent 65%);
    top: -10%;
    left: 30%;
    filter: blur(90px);
    animation: float2 30s ease-in-out infinite;
    animation-delay: -3s;
}

/* Orb 6: Saturn blue — deep atmospheric */
.orb:nth-child(6) {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(20, 55, 80, 0.25), transparent 70%);
    bottom: 20%;
    right: -3%;
    filter: blur(70px);
    animation: float3 26s ease-in-out infinite;
    animation-delay: -12s;
}

/* Orb 7: Gold — left warmth accent */
.orb:nth-child(7) {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.12), transparent 70%);
    top: 40%;
    left: -3%;
    filter: blur(70px);
    animation: float1 22s ease-in-out infinite;
    animation-delay: -15s;
}

/* Orb 8: Deep teal — bottom-right (8=wealth) */
.orb:nth-child(8) {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 100, 90, 0.12), transparent 70%);
    bottom: -8%;
    right: 5%;
    filter: blur(80px);
    animation: float2 40s ease-in-out infinite;
    animation-delay: -7s;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 0 var(--space-4);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    font-family: var(--font-display);
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    padding: var(--space-1) var(--space-3);
    background: rgba(0, 0, 0, 0.50);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(201, 168, 76, 0.35);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-4);
    animation: fadeInUp 0.8s var(--ease-out) 0.2s both;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal);
    animation: pulse 2s ease-in-out infinite;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: var(--fs-mega);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -3px;
    color: var(--text-primary);
    margin-bottom: var(--space-3);
    animation: fadeInUp 0.8s var(--ease-out) 0.4s both;
}

.gradient-text {
    background: linear-gradient(
        135deg,
        var(--gold) 0%,
        var(--gold-light) 25%,
        var(--teal) 50%,
        var(--gold-light) 75%,
        var(--gold) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 8s ease infinite;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: var(--fs-lg);
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto var(--space-3);
    animation: fadeInUp 0.8s var(--ease-out) 0.6s both;
}

.hero-subtitle strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Terminal snippet — engineering credibility */
.hero-terminal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    font-family: 'JetBrains Mono', 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
    font-size: var(--fs-sm);
    margin-bottom: var(--space-4);
    animation: fadeInUp 0.8s var(--ease-out) 0.7s both;
    position: relative;
    z-index: 1;
}

.terminal-prompt {
    color: var(--teal);
    font-weight: 700;
    user-select: none;
}

.terminal-command {
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

.terminal-cursor {
    color: var(--teal);
    animation: pulse 1s step-end infinite;
    font-weight: 300;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
    animation: fadeInUp 0.8s var(--ease-out) 0.8s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    padding-top: var(--space-3);
    border-top: 1px solid var(--border);
    animation: fadeInUp 0.8s var(--ease-out) 1s both;
    width: 100%;
    max-width: 680px;
    position: relative;
    z-index: 1;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1.2;
    letter-spacing: -1px;
}

.stat-label {
    display: block;
    font-size: var(--fs-xs);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-tertiary);
    margin-top: var(--space-1);
}

/* Scroll-down cue — guides eye to content below */
.scroll-cue {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    animation: fadeInUp 0.8s var(--ease-out) 1.2s both;
}

.scroll-cue-text {
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-tertiary);
}

.scroll-cue-line {
    width: 1px;
    height: 32px;
    background: linear-gradient(180deg, var(--text-tertiary), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 0.8; transform: scaleY(1); }
}

/* Hide scroll cue on short viewports */
@media (max-height: 800px) {
    .scroll-cue { display: none; }
}


/* =============================================
   10. TRUST BAR
   ============================================= */
.trust-bar {
    padding: var(--space-3) 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    background: var(--bg);
}

/* Merged trust bar label (social proof text) */
.trust-bar-label {
    text-align: center;
    font-size: var(--fs-sm);
    color: var(--text-secondary);
    margin-bottom: var(--space-2);
    letter-spacing: 0.02em;
}

.trust-bar-label strong {
    color: var(--gold);
}

/* Inline stat highlights in trust strip */
.trust-bar-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    margin-bottom: var(--space-2);
    flex-wrap: wrap;
}

.trust-stat {
    font-size: var(--fs-sm);
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.trust-stat-number {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold);
    margin-right: 0.25em;
}

.trust-label {
    text-align: center;
    font-size: var(--fs-xs);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-tertiary);
    margin-bottom: var(--space-2);
}

.marquee {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, white 15%, white 85%, transparent);
    mask-image: linear-gradient(90deg, transparent, white 15%, white 85%, transparent);
}

.marquee-content {
    display: flex;
    gap: var(--space-3);
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    padding: var(--space-1) var(--space-3);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--text-secondary);
    white-space: nowrap;
    transition: border-color var(--transition-fast);
}

.trust-badge:hover {
    border-color: var(--border-hover);
}

/* Partner bar inside trust-bar, below marquee */
.partner-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    padding-top: var(--space-2);
    flex-wrap: wrap;
}
.partner-logo {
    opacity: 0.4;
    transition: opacity 0.3s var(--ease-out);
    height: 24px;
}
.partner-logo:hover {
    opacity: 0.7;
}
.partner-logo svg {
    height: 24px;
    width: auto;
}

/* Footer technology partners line */
.footer-partners {
    font-size: var(--fs-xs);
    color: var(--text-tertiary);
    margin-top: var(--space-1);
    letter-spacing: 1px;
}

/* Social Proof Strip */
.social-proof-strip {
    padding: var(--space-2) 0;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.04), transparent);
    border-bottom: 1px solid var(--border);
    text-align: center;
}
.proof-text {
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}
.proof-text strong {
    color: var(--gold);
    font-weight: 600;
}

/* Outcomes row – 3 metric cards inside global section */
.outcomes-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-5);
    margin-top: var(--space-4);
    padding-top: var(--space-3);
    border-top: 1px solid var(--border);
}

.outcome {
    text-align: center;
}

.outcome-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1.2;
}

.outcome-label {
    font-size: var(--fs-xs);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: var(--space-1);
}


/* =============================================
   11. SERVICES SECTION
   ============================================= */
.services {
    padding: var(--space-section) 0;
    background: var(--bg);
    position: relative;
}
.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 50% 50% at 80% 20%, rgba(0, 201, 183, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 20% 80%, rgba(201, 168, 76, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3);
}

.service-card {
    padding: var(--space-4);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s var(--ease-out), border-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--teal));
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    border-color: rgba(201, 168, 76, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(201, 168, 76, 0.08);
}

.service-number {
    font-family: var(--font-display);
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--text-tertiary);
    letter-spacing: 2px;
    margin-bottom: var(--space-3);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-2);
    line-height: 1.3;
}

.service-card > p {
    font-size: var(--fs-body);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-3);
}

.service-card ul {
    margin-bottom: var(--space-3);
    flex-grow: 1;
}

.service-card ul li {
    position: relative;
    padding-left: var(--space-3);
    font-size: var(--fs-sm);
    color: var(--text-secondary);
    line-height: 1.8;
}

.service-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    font-family: var(--font-display);
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--gold);
    transition: gap var(--transition-fast);
    margin-top: auto;
}

.service-link:hover {
    gap: var(--space-2);
}

.service-link .arrow {
    transition: transform 0.3s var(--ease-out);
}

.service-link:hover .arrow {
    transform: translateX(4px);
}

/* Tech tags — specific tool/platform badges on service cards */
.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: var(--space-2);
    margin-bottom: var(--space-3);
}

.tech-tag {
    display: inline-block;
    padding: 4px 10px;
    font-family: 'JetBrains Mono', 'SF Mono', monospace;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--teal);
    background: rgba(0, 201, 183, 0.06);
    border: 1px solid rgba(0, 201, 183, 0.12);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.tech-tag:hover {
    background: rgba(0, 201, 183, 0.12);
    border-color: rgba(0, 201, 183, 0.25);
}

/* Featured card */
.service-card.featured {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(201, 168, 76, 0.15);
}

.service-card.featured::before {
    opacity: 0.5;
}

.badge-sun {
    display: inline-flex;
    align-items: center;
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--sun);
    padding: 4px 12px;
    border: 1px solid rgba(232, 135, 42, 0.3);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-2);
}


/* =============================================
   12. GLOBAL / REGIONS SECTION
   ============================================= */
.global {
    padding: var(--space-section) 0;
    background: var(--bg-subtle);
    position: relative;
}
.global::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 40% 50% at 10% 50%, rgba(0, 201, 183, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 90% 30%, rgba(201, 168, 76, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3);
}

.region-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-4);
    transition: transform 0.3s var(--ease-out), border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.region-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 168, 76, 0.2);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.06);
}

.region-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-glow);
    border-radius: var(--radius-md);
    font-size: 1.25rem;
}

.region-card h3 {
    font-family: var(--font-display);
    font-size: var(--fs-body);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.region-card p {
    font-size: var(--fs-sm);
    color: var(--text-secondary);
    line-height: 1.6;
}


/* =============================================
   13. WHY US SECTION
   ============================================= */
.why-us {
    padding: var(--space-section) 0;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}
.why-us::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 50% 50% at 90% 80%, rgba(0, 201, 183, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 10% 20%, rgba(201, 168, 76, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-3);
}

.why-card {
    text-align: center;
    padding: var(--space-3) var(--space-2);
    transition: transform 0.4s var(--ease-out), border-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.why-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 168, 76, 0.15);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.06);
}

.why-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-glow);
    border-radius: var(--radius-md);
    margin: 0 auto var(--space-3);
    font-size: 1.25rem;
}

.why-card h3 {
    font-family: var(--font-display);
    font-size: var(--fs-body);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-1);
    line-height: 1.3;
}

.why-card p {
    font-size: var(--fs-sm);
    color: var(--text-secondary);
    line-height: 1.6;
}


/* =============================================
   14. ECOSYSTEM / TECHNOLOGY SECTION
   ============================================= */
.ecosystem {
    padding: var(--space-section) 0;
    background: var(--bg-subtle);
    position: relative;
}
.ecosystem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 50% 50% at 70% 70%, rgba(0, 201, 183, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 20% 30%, rgba(42, 74, 107, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
}

.tech-group {
    padding: var(--space-3);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.tech-group:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-hover);
}

.tech-group::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at 50% 0%, rgba(201, 168, 76, 0.06), transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    pointer-events: none;
}

.tech-group:hover::after {
    opacity: 1;
}

.tech-group-title {
    font-family: var(--font-display);
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: var(--space-3);
}

.tech-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
    flex-shrink: 0;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--fs-sm);
    color: var(--text-secondary);
    padding: var(--space-1) 0;
    transition: color var(--transition-fast);
}

.tech-item:hover {
    color: var(--text-primary);
}

.tech-item .tech-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    opacity: 0.5;
}


/* =============================================
   15. APPROACH / STEPS SECTION
   ============================================= */
.approach {
    padding: var(--space-section) 0;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}
.approach::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 40% 60% at 5% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 20%, rgba(0, 201, 183, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.steps {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
}

/* Vertical line connecting steps */
.steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 27px;
    bottom: 28px;
    width: 2px;
    background: linear-gradient(180deg, var(--gold), var(--teal));
    opacity: 0.3;
    border-radius: 2px;
}

.step {
    display: flex;
    gap: var(--space-4);
    padding: var(--space-2) 0;
    position: relative;
}

.step-number {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: var(--fs-body);
    font-weight: 700;
    color: var(--gold);
    z-index: 1;
}

.step-content {
    padding-top: 12px;
}

.step h3 {
    font-family: var(--font-display);
    font-size: var(--fs-body);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-1);
}

.step p {
    font-size: var(--fs-sm);
    color: var(--text-secondary);
    line-height: 1.7;
}


/* =============================================
   15B. INSIGHTS / BLOG SECTION (Section 9 = Mastery)
   ============================================= */
.insights {
    padding: var(--space-section) 0;
    background: var(--bg-subtle);
    position: relative;
    overflow: hidden;
}

/* Ambient glow */
.insights::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 50% 50% at 20% 80%, rgba(0, 201, 183, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 80% 20%, rgba(201, 168, 76, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
    position: relative;
    z-index: 1;
}

.insight-card {
    display: flex;
    flex-direction: column;
    padding: var(--space-4);
    transition: all var(--transition-normal);
    border-bottom: 2px solid transparent;
}

.insight-card:hover {
    border-bottom-color: var(--gold);
    transform: translateY(-4px);
}

.insight-category {
    display: inline-block;
    font-family: var(--font-display);
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-2);
}

.insight-cat-gold { color: var(--gold); }
.insight-cat-teal { color: var(--teal); }
.insight-cat-blue { color: #3B82F6; }

.insight-title {
    font-family: var(--font-display);
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: var(--space-2);
}

.insight-excerpt {
    font-size: var(--fs-sm);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-3);
    flex-grow: 1;
}

.insight-meta {
    font-family: 'JetBrains Mono', monospace;
    font-size: var(--fs-xs);
    color: var(--text-tertiary);
    letter-spacing: 0.5px;
}


/* =============================================
   16. CONTACT SECTION
   ============================================= */
.contact {
    padding: var(--space-section) 0;
    background: var(--bg-subtle);
    position: relative;
}
.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 50% 50% at 80% 80%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 10% 30%, rgba(0, 201, 183, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-5);
    align-items: start;
}

.contact-info {
    padding-top: var(--space-3);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.urgency-text {
    color: var(--mars) !important;
    font-weight: 600;
}

.contact-details {
    margin-bottom: var(--space-4);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) 0;
    font-size: var(--fs-sm);
    color: var(--text-secondary);
}

.contact-item .contact-icon {
    flex-shrink: 0;
    width: 20px;
    color: var(--text-tertiary);
}

.contact-item a {
    transition: color var(--transition-fast);
}

.contact-item a[href^="mailto"] {
    color: var(--teal);
}

.contact-item a[href^="mailto"]:hover {
    color: var(--text-primary);
}

.contact-item a[href^="tel"] {
    color: var(--text-secondary);
}

.contact-item a[href^="tel"]:hover {
    color: var(--text-primary);
}

.calendly-link {
    color: var(--gold);
    font-weight: 600;
    transition: color var(--transition-fast);
}

.calendly-link:hover {
    color: var(--gold-light);
}

.trust-signals {
    margin-top: var(--space-4);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: 6px 0;
    font-size: var(--fs-sm);
    color: var(--text-secondary);
}

.trust-item svg,
.trust-item .trust-check {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--teal);
}

/* Contact Form */
.contact-form {
    padding: var(--space-5);
}

.form-group {
    margin-bottom: var(--space-3);
}

.form-group label {
    display: block;
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: var(--space-1);
}

.form-group label .required {
    color: var(--mars);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px var(--space-3);
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: var(--fs-body);
    transition: border-color var(--transition-fast),
                box-shadow var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-tertiary);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2386868B' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-group select option {
    background: var(--bg-elevated);
    color: var(--text-primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
}

.form-submit {
    margin-top: var(--space-3);
}

.form-submit .btn-gold.btn-full {
    padding: 16px 32px;
    font-size: var(--fs-body);
    border-radius: var(--radius-md);
}

.form-privacy {
    font-size: var(--fs-xs);
    color: var(--text-tertiary);
    text-align: center;
    margin-top: var(--space-2);
}

.form-success {
    display: none;
    text-align: center;
    padding: var(--space-5);
    border: 1px solid rgba(0, 201, 183, 0.3);
    border-radius: var(--radius-lg);
    background: rgba(0, 201, 183, 0.05);
}

.form-success.show {
    display: block;
}

.form-success h4 {
    font-family: var(--font-display);
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--teal);
    margin-bottom: var(--space-2);
}

.form-success p {
    font-size: var(--fs-sm);
    color: var(--text-secondary);
    line-height: 1.7;
}


/* =============================================
   17. FOOTER
   ============================================= */
.footer {
    padding: var(--space-5) 0 var(--space-4);
    background: var(--bg);
    position: relative;
}

/* Thin gradient top border */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--teal), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-5);
    margin-bottom: var(--space-5);
}

.footer-brand .nav-logo {
    margin-bottom: var(--space-2);
}

.footer-tagline {
    font-size: var(--fs-sm);
    color: var(--text-tertiary);
    line-height: 1.7;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: var(--space-2);
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-tertiary);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    color: var(--gold);
    border-color: rgba(201, 168, 76, 0.3);
    background: rgba(201, 168, 76, 0.08);
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-3);
}

.footer-col ul li {
    margin-bottom: var(--space-1);
}

.footer-col ul li a {
    font-size: var(--fs-sm);
    color: var(--text-tertiary);
    transition: color var(--transition-fast);
}

.footer-col ul li a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-4);
    border-top: 1px solid var(--border);
    font-size: var(--fs-xs);
    color: var(--text-tertiary);
}

.footer-bottom a {
    color: var(--text-tertiary);
}

.footer-bottom a:hover {
    color: var(--text-secondary);
}

.footer-legal {
    display: flex;
    gap: var(--space-3);
}


/* =============================================
   18. UTILITY CLASSES
   ============================================= */
.text-gold { color: var(--gold); }
.text-teal { color: var(--teal); }
.text-sun { color: var(--sun); }
.text-mars { color: var(--mars); }
.text-secondary { color: var(--text-secondary); }
.text-tertiary { color: var(--text-tertiary); }

.gold { color: var(--gold); }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Loading spinner */
.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-top-color: #000;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

.btn-gold .spinner {
    border-color: rgba(0, 0, 0, 0.2);
    border-top-color: #000;
}


/* =============================================
   19. RESPONSIVE - 1024px
   ============================================= */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3);
    }

    .service-card {
        padding: var(--space-4);
    }

    .regions-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-3);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-3);
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .insights-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3);
    }

    .contact-form {
        padding: var(--space-4);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-4);
    }
}


/* =============================================
   20. RESPONSIVE - 768px
   ============================================= */
@media (max-width: 768px) {
    :root {
        --space-section: 2.5rem;
    }

    /* Show hamburger, hide nav links */
    .hamburger {
        display: flex;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    /* Hero adjustments */
    .hero-headline {
        letter-spacing: -2px;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: var(--space-2);
    }

    .hero-cta-group .btn {
        width: 100%;
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--space-4);
    }

    .stat-number {
        font-size: 2rem;
    }

    .scroll-cue {
        display: none;
    }

    .hero-terminal {
        font-size: 0.7rem;
        padding: 10px 16px;
    }

    .tech-tags {
        justify-content: center;
    }

    /* Sections */
    .regions-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .tech-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .steps::before {
        left: 27px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-2);
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

    /* Partner bar responsive */
    .partner-bar {
        flex-wrap: wrap;
        font-size: 0.65rem;
        gap: var(--space-2);
    }

    /* Outcomes row responsive */
    .outcomes-row {
        flex-direction: column;
        gap: var(--space-3);
    }

    /* Section title sizing */
    .section-title {
        letter-spacing: -0.5px;
    }
}


/* =============================================
   21. RESPONSIVE - 480px
   ============================================= */
@media (max-width: 480px) {
    :root {
        --space-section: 2rem;
    }

    .container {
        padding: 0 var(--space-3);
    }

    .hero-content {
        padding: 0 var(--space-2);
    }

    .hero-headline {
        letter-spacing: -1.5px;
    }

    .service-card {
        padding: var(--space-3);
    }

    .contact-form {
        padding: var(--space-3);
    }

    .region-card {
        padding: var(--space-3);
    }

    .why-card {
        padding: var(--space-3) var(--space-2);
    }

    .step {
        gap: var(--space-3);
    }

    .step-number {
        width: 44px;
        height: 44px;
        font-size: var(--fs-sm);
    }

    .steps::before {
        left: 21px;
    }
}


/* =============================================
   22. PREFERS 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;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .orb {
        animation: none !important;
    }

    .marquee-content {
        animation: none;
    }
}


/* =============================================
   23. PRINT STYLES
   ============================================= */
@media print {
    body {
        background: white;
        color: black;
    }

    .navbar,
    .orb,
    #hero-canvas,
    .hero-noise,
    .hero-grid-overlay,
    .scroll-cue,
    .trust-bar,
    .hamburger,
    .mobile-menu {
        display: none !important;
    }

    .glass {
        background: white;
        border: 1px solid #ccc;
        backdrop-filter: none;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
    }

    .gradient-text {
        -webkit-text-fill-color: black;
        background: none;
    }
}


/* =============================================
   24. A11Y — FOCUS VISIBLE + SKIP LINK
   ============================================= */
:focus-visible {
    outline: 2px solid #C9A84C;
    outline-offset: 3px;
    border-radius: 4px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid #C9A84C;
    outline-offset: 3px;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    z-index: 10000;
    padding: 0.75rem 1.25rem;
    background: #C9A84C;
    color: #000;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 1rem;
}

