/* ==========================================================================
   SAFEGOT — PREMIUM VENTURE-SCALE FINTECH BRAND DESIGN SYSTEM
   ========================================================================== */

/* --- Fonts & Imports --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@500;600;700;800;900&family=Fira+Code:wght@400;500&display=swap');

:root {
    /* --- Brand Color System (Light Mode by default) --- */
    --bg-dark: #FFFFFF;             /* Pure white base */
    --bg-dark-card: rgba(248, 250, 252, 0.7); /* Frosted light card glass */
    --bg-dark-card-hover: rgba(241, 245, 249, 0.9);
    --brand-green: #10B981;         /* Emerald trust accent */
    --brand-green-hover: #059669;   /* Readability-optimized green */
    --brand-green-glow: rgba(16, 185, 129, 0.06);
    --brand-green-glow-intense: rgba(16, 185, 129, 0.18);
    
    /* --- Accent Colors for Depth --- */
    --brand-cyan: #0891b2;          /* Cyber cyan */
    --brand-cyan-glow: rgba(8, 145, 178, 0.08);
    --brand-indigo: #4f46e5;        /* Developer indigo */
    
    /* --- Neutral Text Palette --- */
    --text-primary: #0F172A;        /* Slate 900 */
    --text-secondary: #475569;      /* Slate 600 */
    --text-muted: #64748B;          /* Slate 500 */
    
    /* --- Utility Borders --- */
    --border-color: rgba(15, 23, 42, 0.06);
    --border-color-hover: rgba(15, 23, 42, 0.12);
    --border-green: rgba(16, 185, 129, 0.2);
    
    /* --- Typography tokens --- */
    --font-heading: 'Outfit', -apple-system, sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-mono: 'Fira Code', monospace;
    
    /* --- Transition Curves --- */
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* --- Grid & Gradient Settings --- */
    --grid-opacity-1: 0.012;
    --grid-opacity-2: 0.015;
    --grid-color-1: 15, 23, 42;
    --grid-color-2: 16, 185, 129;
    --blob-opacity: 0.25;
    
    --bg-mesh-linear: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(248, 250, 252, 0.95));
    --terminal-bg: rgba(241, 245, 249, 0.85);
    --terminal-border: rgba(15, 23, 42, 0.08);
    --header-bg: rgba(255, 255, 255, 0.8);
    --success-bg: #FFFFFF;
    
    /* --- Max Width & Header Height --- */
    --max-width: 1280px;
    --header-height: 80px;
    
    --blob-1-gradient: radial-gradient(circle, rgba(16, 185, 129, 0.22) 0%, rgba(16, 185, 129, 0) 70%);
    --blob-2-gradient: radial-gradient(circle, rgba(6, 182, 212, 0.18) 0%, rgba(6, 182, 212, 0) 70%);
    --blob-3-gradient: radial-gradient(circle, rgba(99, 102, 241, 0.18) 0%, rgba(99, 102, 241, 0) 70%);
    --section-bg: rgba(15, 23, 42, 0.015); /* very light slate grey tint for light mode */
}

/* Dark Mode Overrides (System preference OR explicit attribute) */
@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) {
        --bg-dark: #05070c;             /* Deepest midnight void black */
        --bg-dark-card: rgba(10, 16, 30, 0.45); /* Sleek dark glassmorphism */
        --bg-dark-card-hover: rgba(15, 23, 42, 0.6);
        --brand-green: #10B981;
        --brand-green-hover: #34D399;
        --brand-green-glow: rgba(16, 185, 129, 0.15);
        --brand-green-glow-intense: rgba(16, 185, 129, 0.45);
        
        --brand-cyan: #06b6d4;
        --brand-cyan-glow: rgba(6, 182, 212, 0.15);
        --brand-indigo: #6366f1;
        
        --text-primary: #F8FAFC;        /* Sharp slate white */
        --text-secondary: #94A3B8;      /* Clean secondary slate */
        --text-muted: #475569;          /* Muted borders/utility text */
        
        --border-color: rgba(255, 255, 255, 0.05);
        --border-color-hover: rgba(255, 255, 255, 0.12);
        --border-green: rgba(16, 185, 129, 0.25);
        
        --grid-opacity-1: 0.012;
        --grid-opacity-2: 0.015;
        --grid-color-1: 255, 255, 255;
        --grid-color-2: 16, 185, 129;
        --blob-opacity: 0.1;
        
        --bg-mesh-linear: linear-gradient(to bottom, rgba(5, 7, 12, 0.8), rgba(5, 7, 12, 0.95));
        --terminal-bg: rgba(8, 12, 22, 0.75);
        --terminal-border: rgba(255, 255, 255, 0.06);
        --header-bg: rgba(5, 7, 12, 0.75);
        --success-bg: #040814;
        
        --blob-1-gradient: radial-gradient(circle, var(--brand-green) 0%, rgba(16, 185, 129, 0) 70%);
        --blob-2-gradient: radial-gradient(circle, var(--brand-cyan) 0%, rgba(6, 182, 212, 0) 70%);
        --blob-3-gradient: radial-gradient(circle, var(--brand-indigo) 0%, rgba(99, 102, 241, 0) 70%);
        --section-bg: rgba(5, 7, 12, 0.45);
    }
}

:root[data-theme="dark"] {
    --bg-dark: #05070c;             /* Deepest midnight void black */
    --bg-dark-card: rgba(10, 16, 30, 0.45); /* Sleek dark glassmorphism */
    --bg-dark-card-hover: rgba(15, 23, 42, 0.6);
    --brand-green: #10B981;
    --brand-green-hover: #34D399;
    --brand-green-glow: rgba(16, 185, 129, 0.15);
    --brand-green-glow-intense: rgba(16, 185, 129, 0.45);
    
    --brand-cyan: #06b6d4;
    --brand-cyan-glow: rgba(6, 182, 212, 0.15);
    --brand-indigo: #6366f1;
    
    --text-primary: #F8FAFC;        /* Sharp slate white */
    --text-secondary: #94A3B8;      /* Clean secondary slate */
    --text-muted: #475569;          /* Muted borders/utility text */
    
    --border-color: rgba(255, 255, 255, 0.05);
    --border-color-hover: rgba(255, 255, 255, 0.12);
    --border-green: rgba(16, 185, 129, 0.25);
    
    --grid-opacity-1: 0.012;
    --grid-opacity-2: 0.015;
    --grid-color-1: 255, 255, 255;
    --grid-color-2: 16, 185, 129;
    --blob-opacity: 0.1;
    
    --bg-mesh-linear: linear-gradient(to bottom, rgba(5, 7, 12, 0.8), rgba(5, 7, 12, 0.95));
    --terminal-bg: rgba(8, 12, 22, 0.75);
    --terminal-border: rgba(255, 255, 255, 0.06);
    --header-bg: rgba(5, 7, 12, 0.75);
    --success-bg: #040814;
    
    --blob-1-gradient: radial-gradient(circle, var(--brand-green) 0%, rgba(16, 185, 129, 0) 70%);
    --blob-2-gradient: radial-gradient(circle, var(--brand-cyan) 0%, rgba(6, 182, 212, 0) 70%);
    --blob-3-gradient: radial-gradient(circle, var(--brand-indigo) 0%, rgba(99, 102, 241, 0) 70%);
    --section-bg: rgba(5, 7, 12, 0.45);
}

/* --- Base Reset & Setup --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
    background-color: var(--bg-dark);
    /* Grid background overlay with diagonal volumetric lighting */
    background-image: 
        var(--bg-mesh-linear),
        radial-gradient(rgba(var(--grid-color-1), var(--grid-opacity-1)) 1.5px, transparent 0),
        radial-gradient(rgba(var(--grid-color-2), var(--grid-opacity-2)) 1.5px, transparent 0);
    background-size: 100% 100%, 24px 24px, 48px 48px;
    background-position: 0 0, 0 0, 12px 12px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.15;
}

p {
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: -0.01em;
}

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

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

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

/* --- Layout Utility Classes --- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.page-wrapper {
    position: relative;
    width: 100%;
    overflow-x: hidden;
}

.section-padding {
    padding: 100px 0;
    position: relative;
}

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

.text-gradient-green {
    background: linear-gradient(135deg, #34D399 0%, #10B981 50%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-silver {
    background: linear-gradient(135deg, #FFFFFF 0%, #94A3B8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 9999px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(16, 185, 129, 0.04);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: var(--brand-green);
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--brand-green);
    box-shadow: 0 0 10px var(--brand-green);
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0% { opacity: 0.6; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.1); }
    100% { opacity: 0.6; transform: scale(0.9); }
}

/* --- Volumetric Background Glow Blobs --- */
.glow-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    opacity: var(--blob-opacity);
    z-index: -2;
    pointer-events: none;
    animation: floatBlob 25s infinite alternate ease-in-out;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: var(--blob-1-gradient);
    top: -10%;
    right: -10%;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: var(--blob-2-gradient);
    bottom: 10%;
    left: -10%;
    animation-delay: -6s;
    animation-duration: 30s;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: var(--blob-3-gradient);
    top: 45%;
    right: 15%;
    animation-delay: -12s;
}

@keyframes floatBlob {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(80px, -50px) scale(1.15); }
    100% { transform: translate(-50px, 60px) scale(0.9); }
}

/* --- Navigation Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    background: var(--header-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    transition: var(--transition-smooth);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo-wrapper {
    height: 44px;
    display: flex;
    align-items: center;
}

.logo-wrapper svg {
    height: 40px;
    width: 120px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

@media (max-width: 991px) {
    .nav-menu {
        display: none;
    }
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 6px 0;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--brand-green);
    transition: var(--transition-fast);
}

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

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

/* --- Premium Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
    letter-spacing: -0.01em;
}

html[data-theme="dark"] .phone-mockup {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.65);
}

.btn-primary {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #020408;
    border: 1px solid #34D399;
    animation: premium-float 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    will-change: transform, box-shadow;
}

@media (hover: hover) {
    .btn-primary:hover {
        transform: translateY(-4px) scale(1.02);
        box-shadow: 0 12px 30px rgba(16, 185, 129, 0.45);
        background: linear-gradient(135deg, #34D399 0%, #10B981 100%);
        animation-play-state: paused;
    }
}

@keyframes premium-float {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
    }
    50% {
        transform: translateY(-4px);
        box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
    }
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.01);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-color-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.02);
}

.btn-sm {
    padding: 10px 22px;
    font-size: 13px;
    border-radius: 8px;
}

/* --- Premium Custom Card Framework --- */
.card-premium {
    position: relative;
    background: var(--bg-dark-card);
    border-radius: 24px;
    padding: 48px;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition-smooth);
}

/* Custom Gradient Borders via Masks */
.card-premium::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 24px;
    padding: 1px; /* border thickness */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.card-premium:hover {
    background: var(--bg-dark-card-hover);
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 25px rgba(16, 185, 129, 0.03);
}

.card-premium:hover::before {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.45) 0%, rgba(6, 182, 212, 0.1) 100%);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    padding-top: calc(var(--header-height) + 50px);
    padding-bottom: 80px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

@media (max-width: 1200px) {
    .hero-grid {
        gap: 40px;
    }
}

@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

.hero-content {
    max-width: 640px;
}

@media (max-width: 991px) {
    .hero-content {
        margin: 0 auto;
    }
}

.hero-headline {
    font-size: 68px;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 16px;
    letter-spacing: -0.05em;
}

@media (max-width: 576px) {
    .hero-headline {
        font-size: 46px;
    }
}

.hero-subheadline {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-supporting {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 28px;
    border-left: 2px solid var(--brand-green);
    padding-left: 20px;
    text-align: left;
    max-width: 520px;
    font-weight: 500;
}

@media (max-width: 991px) {
    .hero-supporting {
        margin: 0 auto 28px auto;
    }
}

/* Quick Hero Form */
.hero-cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
}

.hero-form-mini {
    display: flex;
    gap: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 8px;
    border-radius: 14px;
    max-width: 520px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: var(--transition-smooth);
}

.hero-form-mini:focus-within {
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 0 20px var(--brand-green-glow);
    background: rgba(255, 255, 255, 0.04);
}

.hero-form-mini input {
    flex: 1;
    padding: 0 20px;
    font-size: 15px;
    color: var(--text-primary);
}

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

@media (max-width: 576px) {
    .hero-form-mini {
        flex-direction: column;
        padding: 12px;
        background: none;
        border: none;
    }
    .hero-form-mini input {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid var(--border-color);
        padding: 18px;
        border-radius: 12px;
        width: 100%;
        margin-bottom: 8px;
    }
    .hero-form-mini button {
        width: 100%;
        padding: 18px;
    }
}

.hero-microcopy {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 24px;
    font-weight: 600;
}

@media (max-width: 991px) {
    .hero-microcopy {
        justify-content: center;
    }
}

.hero-microcopy span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-microcopy span::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--brand-green);
    box-shadow: 0 0 8px var(--brand-green);
}

/* --- Hero Visual: High-Fidelity SaaS Escrow Dashboard --- */
.hero-visual {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Dotted grid panel behind the terminal widget */
.hero-visual::before {
    content: '';
    position: absolute;
    top: -30px; right: -30px; bottom: -30px; left: -30px;
    background-image: radial-gradient(rgba(16, 185, 129, 0.08) 1.5px, transparent 0);
    background-size: 16px 16px;
    z-index: -1;
    border-radius: 32px;
    opacity: 0.7;
    mask-image: radial-gradient(circle, black, transparent 75%);
}

@media (max-width: 768px) {
    .hero-visual::before {
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
    }
}

/* Full Portal Layout Mock */
.dashboard-terminal {
    width: 100%;
    max-width: 480px;
    background: var(--terminal-bg);
    border: 1px solid var(--terminal-border);
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    overflow: hidden;
}

/* Terminal Header */
.dashboard-terminal-header {
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-dots {
    display: flex;
    gap: 6px;
}

.header-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.header-dot-green { background: #EF4444; }
.header-dot-yellow { background: #F59E0B; }
.header-dot-blue { background: #10B981; }

.header-path {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.header-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--brand-green);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 9px;
    font-family: var(--font-mono);
    font-weight: 600;
}

/* Dashboard Content Grid */
.dashboard-terminal-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Main Visual: Escrow Lock Widget */
.vault-widget {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.vault-widget::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 3px; height: 100%;
    background: var(--brand-green);
    box-shadow: 0 0 10px var(--brand-green);
}

.vault-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.vault-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    font-weight: 700;
}

.vault-value {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.vault-value span {
    font-size: 13px;
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--text-secondary);
}

.vault-parties {
    font-size: 11px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.vault-party-arrow {
    color: var(--brand-green);
    font-weight: bold;
}

/* Circular Progress Ring Animation */
.vault-circle-progress {
    position: relative;
    width: 64px;
    height: 64px;
    flex-shrink: 0;
}

.vault-circle-svg {
    transform: rotate(-90deg);
}

.vault-circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.03);
    stroke-width: 4;
}

.vault-circle-fill {
    fill: none;
    stroke: var(--brand-green);
    stroke-width: 4;
    stroke-dasharray: 176;
    stroke-dashoffset: 44; /* 75% complete */
    stroke-linecap: round;
    transition: stroke-dashoffset 1.5s ease;
    box-shadow: 0 0 8px var(--brand-green);
}

.vault-progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 11px;
    font-family: var(--font-mono);
    font-weight: 600;
    color: var(--brand-green);
}

/* Ledger Table Mock */
.ledger-widget {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.ledger-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    font-weight: 700;
}

.ledger-sync-tag {
    font-size: 10px;
    font-family: var(--font-mono);
    color: var(--brand-cyan);
}

.ledger-rows {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ledger-row {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-fast);
}

.ledger-row:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.06);
}

.ledger-row-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ledger-row-source {
    font-size: 13px;
    font-weight: 600;
}

.ledger-row-meta {
    font-size: 10px;
    color: var(--text-muted);
}

.ledger-row-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.ledger-row-amount {
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-mono);
}

/* Status Badges */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-badge-secured {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--brand-green);
}

.status-badge-transit {
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.2);
    color: var(--brand-cyan);
}

.status-badge-settled {
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: #818cf8;
}

.status-badge-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: currentColor;
}

/* --- Social Proof Strip --- */
.social-proof {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: rgba(5, 7, 12, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 44px 0;
}

.social-proof-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 32px;
}

@media (max-width: 768px) {
    .social-proof-content {
        flex-direction: column;
        text-align: center;
    }
}

.social-proof-title {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.social-proof-logos {
    display: flex;
    align-items: center;
    gap: 56px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .social-proof-logos {
        justify-content: center;
        gap: 28px;
    }
}

.proof-logo-item {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    color: var(--text-secondary);
    opacity: 0.5;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.proof-logo-item:hover {
    opacity: 0.9;
    color: var(--text-primary);
}

.proof-logo-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--brand-green);
    box-shadow: 0 0 6px var(--brand-green);
}

/* --- Problem Section --- */
.problem {
    position: relative;
}

.editorial-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 100px;
    align-items: start;
}

@media (max-width: 991px) {
    .editorial-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

.section-header {
    max-width: 480px;
    position: sticky;
    top: 120px;
}

@media (max-width: 991px) {
    .section-header {
        position: static;
        max-width: 100%;
        text-align: center;
    }
}

.section-title {
    font-size: 46px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.04em;
}

@media (max-width: 576px) {
    .section-title {
        font-size: 36px;
    }
}

.section-desc {
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-secondary);
    margin-bottom: 36px;
}

.problem-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.problem-card {
    display: flex;
    gap: 24px;
    background: var(--bg-dark-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
    transition: var(--transition-smooth);
}

.problem-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(6px);
    background: var(--bg-dark-card-hover);
}

.problem-num {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: rgba(16, 185, 129, 0.15);
    line-height: 1;
    transition: var(--transition-fast);
}

.problem-card:hover .problem-num {
    color: var(--brand-green);
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
}

.problem-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.problem-card-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- Solution Section --- */
.solution {
    position: relative;
}

.solution-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.solution-headline {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 28px;
    letter-spacing: -0.04em;
}

@media (max-width: 576px) {
    .solution-headline {
        font-size: 40px;
    }
}

.solution-desc-large {
    font-size: 21px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 64px;
    font-weight: 400;
    letter-spacing: -0.02em;
}

@media (max-width: 576px) {
    .solution-desc-large {
        font-size: 18px;
    }
}

.solution-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

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

.metric-card {
    padding: 36px 24px;
}

.metric-val {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 900;
    color: var(--brand-green);
    margin-bottom: 10px;
    letter-spacing: -0.04em;
}

.metric-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* --- How It Works Section --- */
.how-it-works {
    background: var(--section-bg);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.center-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 90px auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

@media (max-width: 991px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

/* Horizontal connectors for desktop */
.steps-grid::before {
    content: '';
    position: absolute;
    top: 68px;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(to right, rgba(16, 185, 129, 0) 0%, rgba(16, 185, 129, 0.2) 50%, rgba(16, 185, 129, 0) 100%);
    z-index: 1;
}

@media (max-width: 991px) {
    .steps-grid::before {
        display: none;
    }
}

.step-card {
    padding: 48px 36px;
    text-align: center;
}

.step-badge {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--brand-green);
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.15);
}

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

.step-desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.6;
}

.step-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: var(--transition-fast);
}

.step-card:hover .step-status-pill {
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.3);
    color: var(--brand-green);
}

/* --- SECTION 7: BENEFITS BENTO GRID --- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 24px;
    margin-top: 24px;
}

.bento-card-large {
    grid-column: span 2;
}

@media (max-width: 991px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-card-large {
        grid-column: span 1;
    }
}

.bento-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 24px;
}

.bento-card-body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(16, 185, 129, 0.05);
    border: 1.5px solid var(--border-green);
    color: var(--brand-green);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.card-premium:hover .benefit-icon {
    background: var(--brand-green);
    color: #020408;
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
}

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

.benefit-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Bento Visuals */
.bento-visual-wrapper {
    margin-top: 24px;
    background: rgba(2, 4, 8, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 18px;
    overflow: hidden;
    position: relative;
}

/* Monospace Verification Log Stream for Bento 1 */
.bento-log-stream {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bento-log-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.log-timestamp {
    color: var(--text-muted);
    flex-shrink: 0;
}

.log-status {
    color: var(--brand-green);
    font-weight: 600;
}

.log-status-warn {
    color: var(--brand-cyan);
}

/* Simulated WhatsApp Checkout Flow inside Bento Card */
.whatsapp-chat-preview {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.whatsapp-bubble {
    align-self: flex-start;
    background: #0b141a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 14px;
    border-radius: 0 14px 14px 14px;
    max-width: 85%;
    font-size: 13px;
    position: relative;
}

.whatsapp-bubble-right {
    align-self: flex-end;
    background: #005c4b;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #e9edef;
    border-radius: 14px 14px 0 14px;
}

/* Safegot Checkout Card inside WhatsApp */
.safegot-whatsapp-card {
    margin-top: 6px;
    background: rgba(8, 12, 24, 0.85);
    border: 1.5px solid var(--brand-green);
    border-radius: 10px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.whatsapp-card-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.whatsapp-card-title {
    font-size: 12px;
    font-weight: 700;
}

.whatsapp-card-link {
    font-size: 10px;
    color: var(--brand-green);
    font-family: var(--font-mono);
}

.whatsapp-card-pay-btn {
    background: var(--brand-green);
    color: #020408;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
}

/* Code Snippet block for Developer Bento Card */
.code-terminal-widget {
    background: #060913;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 16px;
    font-family: var(--font-mono);
    font-size: 11px;
    overflow-x: auto;
    color: #38bdf8;
    line-height: 1.5;
}

.code-keyword { color: #f472b6; }
.code-string { color: #34d399; }
.code-comment { color: var(--text-muted); }
.code-class { color: #fbbf24; }

/* Partner Integration Grid - M-Pesa, Access, Kuda */
.partner-logo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.partner-logo-box {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    padding: 12px;
    font-size: 11px;
    text-align: center;
    font-weight: 700;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.partner-logo-box::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-green);
}

/* --- Why Now Section --- */
.why-now {
    position: relative;
    background: var(--section-bg);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.why-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 100px;
    align-items: center;
}

@media (max-width: 991px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

.why-left {
    max-width: 600px;
}

.why-subtitle {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.why-desc {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.65;
}

.why-points {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.why-point-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.why-point-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid var(--border-green);
    color: var(--brand-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
    box-shadow: 0 0 6px var(--brand-green-glow);
}

.why-point-text {
    font-size: 15px;
    color: var(--text-secondary);
}

.why-right {
    display: flex;
    justify-content: center;
}

.stat-box {
    width: 100%;
    max-width: 380px;
    background: var(--bg-dark-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.stat-box:hover {
    background: var(--bg-dark-card-hover);
    transform: translateY(-6px);
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 900;
    color: var(--brand-green);
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -0.04em;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.1);
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.stat-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* --- Waitlist Form Section --- */
.waitlist-section {
    position: relative;
}

.waitlist-wrapper {
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
}

.waitlist-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: 56px 48px;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

@media (max-width: 576px) {
    .waitlist-card {
        padding: 40px 24px;
    }
}

.waitlist-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--brand-green), transparent);
}

.waitlist-header {
    text-align: center;
    margin-bottom: 40px;
}

.waitlist-title {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}

.waitlist-desc {
    font-size: 15px;
    color: var(--text-secondary);
}

/* Form Styling */
.form-group {
    margin-bottom: 28px;
    position: relative;
}

.form-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.form-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.form-input {
    width: 100%;
    background: rgba(var(--grid-color-1), 0.02);
    border: 1.5px solid var(--border-color);
    border-radius: 10px;
    padding: 16px 20px;
    font-size: 15px;
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

.form-input:focus {
    border-color: var(--brand-green);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 0 15px var(--brand-green-glow);
}

.form-input.error {
    border-color: #EF4444;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.1);
}

.error-message {
    font-size: 12px;
    color: #EF4444;
    margin-top: 6px;
    display: none;
    font-weight: 500;
}

/* Custom Role Select Pills */
.role-pills-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

@media (max-width: 480px) {
    .role-pills-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

.role-pill {
    background: rgba(var(--grid-color-1), 0.02);
    border: 1px solid var(--border-color);
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
    user-select: none;
}

.role-pill:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--border-color-hover);
    color: var(--text-primary);
}

.role-pill.selected {
    background: rgba(16, 185, 129, 0.08);
    border-color: var(--brand-green);
    color: var(--brand-green);
    font-weight: 600;
    box-shadow: 0 0 12px var(--brand-green-glow);
}

/* Business Name Field (Conditional) */
.business-field-container {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.business-field-container.visible {
    max-height: 120px;
    opacity: 1;
    margin-top: 24px;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    font-size: 15px;
    margin-top: 16px;
}

.form-privacy-reassurance {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 24px;
    font-weight: 500;
}

.form-privacy-reassurance svg {
    color: var(--brand-green);
}

/* Success State Overlay */
.success-state {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--success-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 32px 24px;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.95);
    transition: var(--transition-smooth);
}

.waitlist-card.success .success-state {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.success-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.08);
    border: 2px solid rgba(16, 185, 129, 0.4);
    color: var(--brand-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 24px;
    box-shadow: 0 0 25px var(--brand-green-glow);
    animation: successPulse 2s infinite;
}

.success-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.03em;
}

.success-desc {
    font-size: 14px;
    color: var(--text-secondary);
    max-width: 440px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.success-badge {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 14px 24px;
    border-radius: 14px;
    font-size: 14px;
}

.success-badge span {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 6px;
    letter-spacing: 0.05em;
}

.success-badge strong {
    color: var(--brand-green);
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.1);
}

/* --- Final CTA Section --- */
.final-cta {
    position: relative;
    background: rgba(5, 7, 12, 0.45);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
    overflow: hidden;
}

.final-cta-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 auto;
}

.final-cta-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -0.04em;
}

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

.final-cta-desc {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* --- Compact Footer --- */
.footer-compact {
    background: var(--bg-dark);
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-secondary);
    position: relative;
}

.footer-compact-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

@media (max-width: 768px) {
    .footer-compact-container {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
}

.footer-compact-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 768px) {
    .footer-compact-left {
        flex-direction: column;
        gap: 12px;
    }
}

.footer-compact-logo {
    height: 30px;
    display: flex;
    align-items: center;
}

.footer-compact-logo svg {
    height: 26px;
    width: auto;
}

.footer-compact-copyright {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-compact-right {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .footer-compact-right {
        justify-content: center;
        gap: 16px;
    }
}

.footer-compact-link {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition-fast);
}

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

/* --- Theme Toggle Styles --- */
.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.theme-toggle-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition-fast);
    border: 1px solid var(--border-color);
}

.theme-toggle-btn:hover {
    color: var(--text-primary);
    background: rgba(var(--grid-color-1), 0.04);
    border-color: var(--border-color-hover);
    transform: scale(1.05);
}

.theme-toggle-btn svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
    transition: var(--transition-fast);
}

/* Hide sun icon in light mode, show moon icon */
html:not([data-theme="dark"]) .sun-icon {
    display: none;
}
html:not([data-theme="dark"]) .moon-icon {
    display: block;
}

/* Hide moon icon in dark mode, show sun icon */
html[data-theme="dark"] .sun-icon {
    display: block;
}
html[data-theme="dark"] .moon-icon {
    display: none;
}

/* Fallback case when theme is not set but system prefers dark */
@media (prefers-color-scheme: dark) {
    html:not([data-theme="light"]) .sun-icon {
        display: block;
    }
    html:not([data-theme="light"]) .moon-icon {
        display: none;
    }
}

/* --- Merged CTA styles inside Why Now section --- */
.merged-cta-container {
    margin-top: 50px;
    text-align: center;
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
    position: relative;
    z-index: 2;
}

.merged-cta-container .final-cta-title {
    font-size: 44px;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -0.04em;
    color: var(--text-primary);
}

.merged-cta-container .final-cta-desc {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Scroll Animation Triggers --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* --- Live Count Waitlist Badge --- */
.live-count-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 600;
    color: var(--brand-green);
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    margin-bottom: 20px;
    width: fit-content;
}

.live-count-pulse {
    width: 8px;
    height: 8px;
    background-color: var(--brand-green);
    border-radius: 50%;
    position: relative;
    display: inline-block;
}

.live-count-pulse::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--brand-green);
    border-radius: 50%;
    animation: livePulse 1.8s infinite ease-out;
}

@keyframes livePulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* --- Dynamic SVG Logo Theme Overrides --- */
.logo-wrapper svg line[stroke="#F8FAFC"],
.footer-compact-logo svg line[stroke="#F8FAFC"] {
    stroke: var(--text-primary);
}

.logo-wrapper svg path[stroke="#F8FAFC"],
.footer-compact-logo svg path[stroke="#F8FAFC"] {
    stroke: var(--text-primary);
}

.brand-text {
    fill: var(--text-primary) !important;
}

/* --- Mobile Menu & Hamburger Toggle --- */
.mobile-menu-toggle-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 38px;
    height: 38px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 1001;
}

.mobile-menu-toggle-btn:hover {
    background: rgba(var(--grid-color-1), 0.04);
    border-color: var(--border-color-hover);
}

.hamburger-line {
    display: block;
    width: 18px;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 9999px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Transform hamburger to X when open */
.mobile-menu-toggle-btn.open .hamburger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.mobile-menu-toggle-btn.open .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle-btn.open .hamburger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Drawer Overlay styles */
.mobile-menu-drawer {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
    pointer-events: none;
    background: var(--bg-dark); /* theme responsive */
    background-image: 
        radial-gradient(rgba(var(--grid-color-1), var(--grid-opacity-1)) 1.5px, transparent 0);
    background-size: 24px 24px;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 999;
    flex-direction: column;
    padding: 0 24px;
    gap: 16px;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, padding 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu-drawer.open {
    max-height: 380px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    padding: 24px 24px 32px 24px;
}

.mobile-nav-link {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
    transition: var(--transition-fast);
}

.mobile-nav-link:hover {
    color: var(--brand-green);
    padding-left: 8px;
}

.mobile-btn-waitlist {
    width: 100%;
    margin-top: 16px;
    padding: 16px;
    font-size: 15px;
}

@media (max-width: 991px) {
    .mobile-menu-toggle-btn {
        display: flex;
    }
    
    .mobile-menu-drawer {
        display: flex;
    }
    
    .header-actions {
        gap: 12px;
    }
}

/* ==========================================================================
   SAFEGOT — DESIGN REVISIONS & DYNAMIC COMPONENT SYSTEM
   ========================================================================== */

/* --- Announcement Badges & Badges --- */
.nav-announcement-badge {
    font-size: 10px;
    font-weight: 700;
    color: var(--brand-green);
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 4px 10px;
    border-radius: 9999px;
    margin-right: auto;
    margin-left: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    animation: badgeGlow 2s infinite alternate;
}
@media (max-width: 991px) {
    .nav-announcement-badge {
        display: none;
    }
}
@keyframes badgeGlow {
    0% { box-shadow: 0 0 4px rgba(16, 185, 129, 0.2); }
    100% { box-shadow: 0 0 12px rgba(16, 185, 129, 0.4); }
}

/* --- Hero Stats Badge & Avatar Stack --- */
.hero-stats-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-dark-card);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 9999px;
    margin-bottom: 32px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.launching-tag {
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #000;
    background: var(--brand-green);
    padding: 3px 8px;
    border-radius: 9999px;
}
.hero-avatar-stack {
    display: flex;
    align-items: center;
}
.hero-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid var(--bg-dark);
    margin-left: -8px;
    font-size: 9px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.hero-avatar:first-child {
    margin-left: 0;
}
.hero-avatar.color-1 { background: #3b82f6; }
.hero-avatar.color-2 { background: #10b981; }
.hero-avatar.color-3 { background: #6366f1; }
.hero-avatar.color-4 { background: #f59e0b; }
.hero-avatar-more {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid var(--bg-dark);
    background: var(--text-muted);
    color: #FFF;
    margin-left: -8px;
    font-size: 9px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-stats-count {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
}

/* --- Standalone Page Avatar Stack --- */
.avatar-stack-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}
.avatar-stack {
    display: flex;
    align-items: center;
}
.avatar-stack-item {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2.5px solid var(--bg-dark);
    margin-left: -10px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.avatar-stack-item:first-child {
    margin-left: 0;
}
.avatar-green { background: #10B981; }
.avatar-cyan { background: #06B6D4; }
.avatar-indigo { background: #6366F1; }
.avatar-yellow { background: #F59E0B; }
.avatar-more {
    background: var(--text-muted);
    color: #FFF;
}
.avatar-stack-label {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* --- Trust Comparison Section --- */
.comparison-section {
    background: rgba(var(--grid-color-1), 0.01);
    border-top: 1px solid var(--border-color);
}
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 36px;
}
@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
.comparison-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}
.comparison-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
}
.without-safegot::before {
    background: linear-gradient(90deg, #ef4444, #f87171);
}
.with-safegot::before {
    background: linear-gradient(90deg, var(--brand-green), #34d399);
}
.comparison-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.card-title-header {
    margin-bottom: 32px;
}
.card-title-header h3 {
    font-size: 24px;
    margin-bottom: 6px;
}
.without-safegot .card-title-header h3 {
    color: #f87171;
}
.with-safegot .card-title-header h3 {
    color: var(--brand-green);
}
.card-subtitle {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}
.comparison-points {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.comp-point {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.comp-icon-fail {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 3px;
}
.comp-icon-success {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    color: var(--brand-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 3px;
}
.comp-text strong {
    display: block;
    font-size: 15px;
    margin-bottom: 4px;
    color: var(--text-primary);
}
.comp-text p {
    font-size: 13px;
    line-height: 1.5;
}

/* --- Role-Based How It Works Tabs --- */
.how-tabs-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    margin-bottom: 30px;
}
.how-tab {
    padding: 12px 28px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    background: rgba(var(--grid-color-1), 0.01);
    cursor: pointer;
    transition: var(--transition-fast);
}
.how-tab:hover {
    background: rgba(var(--grid-color-1), 0.03);
    color: var(--text-primary);
    border-color: var(--border-color-hover);
}
.how-tab.active {
    background: rgba(16, 185, 129, 0.08);
    border-color: var(--brand-green);
    color: var(--brand-green);
    box-shadow: 0 0 15px var(--brand-green-glow);
}
.how-content-wrapper {
    position: relative;
}
.how-tab-panel {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.how-tab-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}
.how-panel-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
}
@media (max-width: 991px) {
    .how-panel-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
.how-panel-text {
    max-width: 600px;
}
.role-heading {
    font-size: 32px;
    margin-bottom: 18px;
    color: var(--text-primary);
}
.role-paragraph {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 32px;
}
.role-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.highlight-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-dark-card);
    border: 1px solid var(--border-color);
    padding: 16px 20px;
    border-radius: 12px;
    transition: var(--transition-fast);
}
.highlight-item:hover {
    transform: translateX(4px);
    border-color: var(--border-color-hover);
    background: var(--bg-dark-card-hover);
}
.highlight-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.08);
    color: var(--brand-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
}
.highlight-item span:last-child {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}
.how-panel-visual {
    display: flex;
    justify-content: center;
}
.interactive-diagram {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: var(--bg-dark-card);
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    position: relative;
}

/* --- Interactive Visual Animations --- */

/* --- Redesigned Premium Smartphone Mockup --- */
:root {
    --phone-frame-bg: #FFFFFF;
    --phone-frame-border: #E2E8F0;
    --phone-inner-bezel: #0F172A;
    --phone-screen-bg: #F8FAFC;
    --phone-card-bg: #FFFFFF;
    --phone-text-primary: #0F172A;
    --phone-text-secondary: #64748B;
    --phone-border: rgba(15, 23, 42, 0.06);
    --phone-btn-bg: #10B981;
    --phone-btn-text: #FFFFFF;
}

html[data-theme="dark"],
@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) {
        --phone-frame-bg: #090D16;
        --phone-frame-border: #1E293B;
        --phone-inner-bezel: #020617;
        --phone-screen-bg: #0B0F17;
        --phone-card-bg: #1E293B;
        --phone-text-primary: #F8FAFC;
        --phone-text-secondary: #94A3B8;
        --phone-border: rgba(255, 255, 255, 0.05);
        --phone-btn-bg: #10B981;
        --phone-btn-text: #0B0F17;
    }
}

html[data-theme="dark"] {
    --phone-frame-bg: #090D16;
    --phone-frame-border: #1E293B;
    --phone-inner-bezel: #020617;
    --phone-screen-bg: #0B0F17;
    --phone-card-bg: #1E293B;
    --phone-text-primary: #F8FAFC;
    --phone-text-secondary: #94A3B8;
    --phone-border: rgba(255, 255, 255, 0.05);
    --phone-btn-bg: #10B981;
    --phone-btn-text: #0B0F17;
}

.phone-mockup {
    width: 260px;
    height: 460px;
    background: var(--phone-frame-bg);
    border: 10px solid var(--phone-frame-border);
    border-radius: 40px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15), inset 0 0 0 2px var(--phone-inner-bezel);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.phone-inner-bezel-ring {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid var(--phone-inner-bezel);
    border-radius: 30px;
    pointer-events: none;
    z-index: 9;
}

.phone-dynamic-island {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 24px;
    background: #000000;
    border-radius: 20px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 12px;
    box-shadow: 0 1px 2px rgba(255,255,255,0.1) inset;
}

.island-camera {
    width: 7px;
    height: 7px;
    background: #10141d;
    border-radius: 50%;
    opacity: 0.8;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--phone-screen-bg);
    padding: 38px 16px 16px 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.phone-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 6px 6px 6px;
    font-size: 9px;
    font-weight: 600;
    color: var(--phone-text-secondary);
    z-index: 8;
}

.status-icons {
    display: flex;
    align-items: center;
    gap: 6px;
}

.phone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 10px;
    font-weight: 700;
    color: var(--phone-text-secondary);
    padding-bottom: 8px;
    border-bottom: 1px solid var(--phone-border);
}

.phone-logo {
    font-family: var(--font-heading);
    color: var(--brand-green);
    font-weight: 700;
}

.phone-sec-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #10B981;
}

.phone-content-area {
    flex: 1;
    position: relative;
    margin-top: 10px;
    overflow: hidden;
}

.phone-home-indicator {
    width: 80px;
    height: 4px;
    background: var(--phone-text-secondary);
    border-radius: 99px;
    margin: 6px auto 0 auto;
    opacity: 0.3;
}

/* --- Redesigned 5-Stage Animation Loop --- */
.flow-step {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: scale(0.95) translateX(100%);
    pointer-events: none;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

/* Loop timing mapping (18s total loop) */
.step-select-product { animation: stepSelectAnim 18s infinite; }
.step-pay { animation: stepPayAnim 18s infinite; }
.step-secure-hold { animation: stepSecureAnim 18s infinite; }
.step-ships { animation: stepShipsAnim 18s infinite; }
.step-released { animation: stepReleasedAnim 18s infinite; }

@keyframes stepSelectAnim {
    0%, 16% { opacity: 1; transform: scale(1) translateX(0); }
    18%, 100% { opacity: 0; transform: scale(0.95) translateX(-100%); }
}

@keyframes stepPayAnim {
    0%, 16% { opacity: 0; transform: scale(0.95) translateX(100%); }
    18%, 36% { opacity: 1; transform: scale(1) translateX(0); }
    38%, 100% { opacity: 0; transform: scale(0.95) translateX(-100%); }
}

@keyframes stepSecureAnim {
    0%, 36% { opacity: 0; transform: scale(0.95) translateX(100%); }
    38%, 58% { opacity: 1; transform: scale(1) translateX(0); }
    60%, 100% { opacity: 0; transform: scale(0.95) translateX(-100%); }
}

@keyframes stepShipsAnim {
    0%, 58% { opacity: 0; transform: scale(0.95) translateX(100%); }
    60%, 78% { opacity: 1; transform: scale(1) translateX(0); }
    80%, 100% { opacity: 0; transform: scale(0.95) translateX(-100%); }
}

@keyframes stepReleasedAnim {
    0%, 78% { opacity: 0; transform: scale(0.95) translateX(100%); }
    80%, 97% { opacity: 1; transform: scale(1) translateX(0); }
    98%, 100% { opacity: 0; transform: scale(0.95) translateX(-100%); }
}

/* --- Step Custom Components --- */
.phone-card {
    width: 100%;
    background: var(--phone-card-bg);
    border: 1px solid var(--phone-border);
    border-radius: 14px;
    padding: 14px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
}

.phone-btn {
    width: 100%;
    padding: 12px;
    background: var(--phone-btn-bg);
    color: var(--phone-btn-text);
    border: none;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    cursor: default;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

/* Step 1: Select Product Tap Animation */
.phone-product-img {
    height: 90px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(6, 182, 212, 0.08));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 10px;
}
.phone-product-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--phone-text-primary);
    margin-bottom: 2px;
}
.phone-product-price {
    font-size: 12px;
    color: var(--brand-green);
    font-weight: 700;
    margin-bottom: 4px;
}
.phone-product-merchant {
    font-size: 10px;
    color: var(--phone-text-secondary);
    margin-bottom: 8px;
}
.step-select-product .phone-btn {
    animation: selectTap 18s infinite;
}
@keyframes selectTap {
    0%, 10% { transform: scale(1); background: var(--phone-btn-bg); }
    12%, 15% { transform: scale(0.96); background: var(--brand-green-hover); }
    16%, 100% { transform: scale(1); }
}

/* Step 2: Checkout details and Tap Animation */
.phone-pay-header {
    font-size: 9px;
    color: var(--phone-text-secondary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}
.phone-pay-amount {
    font-size: 22px;
    font-weight: 800;
    color: var(--phone-text-primary);
    margin-bottom: 12px;
}
.phone-pay-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.phone-pay-row {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: var(--phone-text-secondary);
}
.phone-pay-row strong {
    color: var(--phone-text-primary);
}
.fee-waived {
    color: #10B981 !important;
}
.step-pay .phone-btn {
    animation: payTap 18s infinite;
}
@keyframes payTap {
    18%, 28% { transform: scale(1); background: var(--phone-btn-bg); }
    30%, 34% { transform: scale(0.96); background: var(--brand-green-hover); }
    35%, 100% { transform: scale(1); }
}

/* Step 3: Coin drop and secure hold shield vault pulse */
.escrow-animation-container {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.coin-glow {
    position: absolute;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.4) 0%, rgba(16, 185, 129, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    animation: coinGlowPulse 2.5s infinite;
}
@keyframes coinGlowPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.3); opacity: 0.9; }
}

.escrow-coin {
    position: absolute;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    z-index: 3;
    box-shadow: 0 4px 10px rgba(217, 119, 6, 0.3);
    animation: coinDrop 18s infinite cubic-bezier(0.25, 1, 0.5, 1);
}
@keyframes coinDrop {
    0%, 38% { transform: translateY(-70px) scale(0); opacity: 0; }
    40% { transform: translateY(-70px) scale(1); opacity: 1; }
    45%, 100% { transform: translateY(0) scale(0.5); opacity: 0; }
}

.phone-shield-container {
    position: relative;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.phone-shield-icon {
    font-size: 36px;
    z-index: 2;
    filter: drop-shadow(0 4px 12px rgba(16, 185, 129, 0.25));
    animation: shieldFloat 3s infinite ease-in-out;
}
@keyframes shieldFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.phone-shield-wave {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1.5px solid var(--brand-green);
    border-radius: 50%;
    opacity: 0;
    animation: shieldWave 3s infinite;
}
.phone-shield-wave:nth-child(2) {
    animation-delay: 1.5s;
}
@keyframes shieldWave {
    0% { transform: scale(0.7); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
}

.phone-secure-status {
    font-size: 14px;
    font-weight: 800;
    color: var(--phone-text-primary);
    margin-bottom: 2px;
}
.phone-secure-desc {
    font-size: 10px;
    color: var(--phone-text-secondary);
    margin-bottom: 12px;
    text-align: center;
}
.phone-vault-badge {
    padding: 4px 12px;
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: var(--brand-green);
}

/* Step 4: Map & Delivery Transit Animation */
.phone-delivery-map {
    position: relative;
    width: 100%;
    height: 90px;
    background: rgba(var(--grid-color-1), 0.02);
    border: 1.5px solid var(--phone-border);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
}

.map-route {
    position: absolute;
    top: 50%;
    left: 20px;
    right: 20px;
    height: 3px;
    background: dashed rgba(var(--grid-color-1), 0.1);
    transform: translateY(-50%);
}

.map-dot {
    position: absolute;
    top: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
}
.dot-seller {
    left: 20px;
    background: #6366f1;
}
.dot-buyer {
    right: 10px;
    background: var(--brand-green);
    animation: buyerPulse 1.5s infinite;
}
@keyframes buyerPulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    100% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
}

.map-courier {
    position: absolute;
    top: 48%;
    font-size: 20px;
    transform: translate(-50%, -50%);
    animation: courierDrive 18s infinite ease-in-out;
}
@keyframes courierDrive {
    0%, 60% { left: 20px; opacity: 0; }
    61% { opacity: 1; }
    75%, 78% { left: calc(100% - 20px); opacity: 1; }
    79%, 100% { opacity: 0; }
}

.phone-delivery-status {
    font-size: 13px;
    font-weight: 800;
    color: var(--phone-text-primary);
    margin-bottom: 2px;
}
.phone-delivery-desc {
    font-size: 10px;
    color: var(--phone-text-secondary);
}

/* Step 5: Confirmed & Released checkmark wrapper */
.phone-success-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.phone-success-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.08);
    border: 2px solid var(--brand-green);
    color: var(--brand-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 16px;
    box-shadow: 0 0 15px var(--brand-green-glow);
    animation: successPop 18s infinite;
}
@keyframes successPop {
    0%, 80% { transform: scale(0.6); opacity: 0; }
    82%, 96% { transform: scale(1) rotate(360deg); opacity: 1; }
    98%, 100% { transform: scale(0.6); opacity: 0; }
}

.phone-released-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--phone-text-primary);
    margin-bottom: 2px;
}
.phone-released-desc {
    font-size: 10px;
    color: var(--phone-text-secondary);
    margin-bottom: 14px;
}
.phone-done-badge {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #818cf8;
    background: rgba(99, 102, 241, 0.06);
    border: 1px solid rgba(99, 102, 241, 0.2);
    padding: 4px 10px;
    border-radius: 20px;
}

/* Seller animation styling */
.visual-seller-flow {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.seller-dashboard {
    width: 240px;
    background: var(--bg-dark-card);
    border: 1.5px solid var(--border-color);
    border-radius: 14px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    overflow: hidden;
}
.dashboard-header {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-secondary);
    background: rgba(var(--grid-color-1), 0.02);
    border-bottom: 1.5px solid var(--border-color);
    padding: 10px 14px;
}
.dashboard-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.payment-link-box {
    background: rgba(var(--grid-color-1), 0.03);
    border: 1px dashed var(--border-color);
    border-radius: 8px;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.link-label {
    font-size: 9px;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
}
.link-url {
    font-size: 11px;
    font-family: var(--font-mono);
    color: var(--brand-green);
    font-weight: 500;
}
.deposit-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--brand-green);
}
.alert-dot {
    width: 8px;
    height: 8px;
    background: var(--brand-green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--brand-green);
    animation: alertPulse 1s infinite alternate;
}
@keyframes alertPulse {
    0% { opacity: 0.4; }
    100% { opacity: 1; }
}

/* Dispatcher animation styling */
.visual-dispatcher-flow {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dispatcher-animation {
    width: 240px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.transit-line {
    width: 100%;
    height: 4px;
    background: var(--border-color);
    border-radius: 99px;
    position: relative;
}
.rider-icon {
    font-size: 20px;
    position: absolute;
    top: -20px;
    left: 0%;
    transform: translateX(-50%);
}
.rider-icon.animate-ride {
    animation: rideTransit 4s infinite cubic-bezier(0.4, 0, 0.2, 1);
}
.step-nodes {
    display: flex;
    justify-content: space-between;
}
.step-node {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
    position: relative;
}
.step-node.active {
    color: var(--text-primary);
}
.step-node.transit {
    animation: nodeActivateTransit 4s infinite;
}
.step-node.verified {
    animation: nodeActivateVerified 4s infinite;
}
@keyframes rideTransit {
    0% { left: 0%; }
    50% { left: 50%; }
    80% { left: 100%; }
    100% { left: 100%; }
}
@keyframes nodeActivateTransit {
    0%, 49% { color: var(--text-muted); }
    50%, 100% { color: var(--text-primary); }
}
@keyframes nodeActivateVerified {
    0%, 79% { color: var(--text-muted); }
    80%, 100% { color: var(--brand-green); }
}

/* --- FAQ Accordion Section --- */
.faq {
    border-top: 1px solid var(--border-color);
    background: var(--section-bg);
}
.faq-accordion-wrapper {
    max-width: 720px;
    margin: 36px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq-item {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
}
.faq-item:hover {
    background: var(--bg-dark-card-hover);
    border-color: var(--border-color-hover);
}
.faq-item.active {
    border-color: var(--border-green);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.03);
}
.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    transition: var(--transition-fast);
}
.faq-question span:first-child {
    padding-right: 20px;
}
.faq-icon-arrow {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(var(--grid-color-1), 0.02);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    transition: var(--transition-fast);
}
.faq-icon-arrow::before,
.faq-icon-arrow::after {
    content: '';
    position: absolute;
    background: var(--text-secondary);
    transition: var(--transition-fast);
}
/* Horizontal line */
.faq-icon-arrow::before {
    width: 10px;
    height: 2px;
}
/* Vertical line */
.faq-icon-arrow::after {
    width: 2px;
    height: 10px;
}
.faq-item.active .faq-icon-arrow {
    background: rgba(16, 185, 129, 0.08);
    border-color: var(--border-green);
}
.faq-item.active .faq-icon-arrow::before {
    background: var(--brand-green);
}
.faq-item.active .faq-icon-arrow::after {
    transform: rotate(90deg);
    opacity: 0;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-answer-content {
    padding: 0 24px 24px 24px;
}
.faq-answer-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* --- Waitlist Dedicated Page Layout --- */
.waitlist-page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.waitlist-main-section {
    flex: 1;
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 100px;
    display: flex;
    align-items: center;
}
/* Ensure the background blobs are positioned correctly on waitlist.html */
.waitlist-page-wrapper .blob-1 { top: -20%; right: -20%; }
.waitlist-page-wrapper .blob-2 { bottom: -20%; left: -20%; }
.waitlist-page-wrapper .blob-3 { top: 30%; right: 10%; }
.waitlist-page-wrapper .waitlist-card {
    margin-top: 40px;
    margin-bottom: 40px;
}
@media (max-width: 768px) {
    .waitlist-main-section {
        padding-top: calc(var(--header-height) + 20px);
        padding-bottom: 60px;
    }
}

/* Logo theme compliance overrides */
.logo-wrapper svg g#logo-mark line[stroke="#F8FAFC"] {
    stroke: var(--text-primary) !important;
}
.logo-wrapper svg g#logo-mark line[stroke="#0C111D"] {
    stroke: var(--text-primary) !important;
}

/* --- Community Voices Section --- */
.community-voices {
    background: var(--bg-dark);
    position: relative;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.voices-slider-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 48px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--bg-dark-card);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.slider-arrow-prev {
    left: 12px;
}

.slider-arrow-next {
    right: 12px;
}

@media (hover: hover) {
    .slider-arrow:hover {
        color: var(--brand-green);
        border-color: rgba(16, 185, 129, 0.3);
        background: rgba(16, 185, 129, 0.04);
        transform: translateY(-50%) scale(1.08);
    }
    .slider-arrow:active {
        transform: translateY(-50%) scale(0.96);
    }
}

@media (max-width: 991px) {
    .slider-arrow {
        display: none;
    }
}

.voices-carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 32px 0;
}

.voices-track {
    display: flex;
    gap: 24px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.voice-card {
    flex-shrink: 0;
    width: 580px;
    background: var(--bg-dark-card);
    border: 1.5px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    opacity: 0.3;
    transform: scale(0.92);
    filter: blur(1.5px);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease, filter 0.6s ease, box-shadow 0.6s ease, border-color 0.6s ease;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.voice-card.active {
    opacity: 1;
    transform: scale(1.0);
    filter: none;
    pointer-events: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 30px rgba(16, 185, 129, 0.03);
    border-color: rgba(16, 185, 129, 0.25);
}

.voice-quote-icon {
    position: absolute;
    top: 24px;
    right: 28px;
    color: rgba(16, 185, 129, 0.06);
    width: 48px;
    height: 48px;
    pointer-events: none;
}

.voice-quote-icon svg {
    width: 100%;
    height: 100%;
}

.voice-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.voice-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

/* Avatar Color Themes with Sophisticated Gradients */
.avatar-bg-blue { background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%); }
.avatar-bg-emerald { background: linear-gradient(135deg, #34d399 0%, #059669 100%); }
.avatar-bg-indigo { background: linear-gradient(135deg, #818cf8 0%, #4f46e5 100%); }
.avatar-bg-amber { background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%); }
.avatar-bg-rose { background: linear-gradient(135deg, #fb7185 0%, #e11d48 100%); }
.avatar-bg-violet { background: linear-gradient(135deg, #a78bfa 0%, #7c3aed 100%); }
.avatar-bg-cyan { background: linear-gradient(135deg, #22d3ee 0%, #0891b2 100%); }

.voice-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.voice-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.voice-badge-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.voice-badge {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 3px 8px;
    border-radius: 20px;
}

.voice-badge-buyer {
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.2);
    color: var(--brand-cyan);
}

.voice-badge-seller {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--brand-green);
}

.voice-badge-marketplace {
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: var(--brand-indigo);
}

.voice-stars {
    color: #f59e0b;
    font-size: 13px;
    letter-spacing: 1px;
}

.voice-quote {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    font-style: normal;
    margin: 0;
}

.voices-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.voice-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.voice-dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--border-color);
}

.voice-dot.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--brand-green);
    border-radius: 4px;
}

.voice-dot.active.animating::after {
    animation: dotProgress 5s linear forwards;
}

@keyframes dotProgress {
    0% { width: 0; }
    100% { width: 100%; }
}

@media (max-width: 768px) {
    .voice-card {
        width: calc(100vw - 48px);
        padding: 24px;
        opacity: 0;
        transform: scale(0.95);
        filter: none;
    }
    
    .voice-card.active {
        opacity: 1;
        transform: scale(1.0);
    }
}



