/* ============================================
   VERSE GUARD - REDESIGNED LANDING PAGE
   Inspired by Cluely & Stripe aesthetics
   ============================================ */

/* ==========================================
   DESIGN TOKENS
   ========================================== */
:root {
    /* Light Theme Palette */
    --color-bg: #FDFCFB;
    --color-bg-alt: #F5F7FA;
    --color-bg-card: rgba(255, 255, 255, 0.8);
    --color-bg-glass: rgba(255, 255, 255, 0.6);

    /* Text Colors */
    --color-text: #1A1A2E;
    --color-text-muted: #6B7280;
    --color-text-light: #9CA3AF;

    /* Brand Colors - Blue Shield, Gold Rim, Silver Cross */
    --color-primary: #2563EB;
    --color-primary-dark: #1D4ED8;
    --color-secondary: #0EA5E9;
    --color-accent-gold: #D4AF37;
    --color-accent-silver: #C0C0C0;
    --color-accent-emerald: #10B981;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #2563EB 0%, #1E40AF 50%, #0EA5E9 100%);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F5D061 50%, #B8860B 100%);
    --gradient-warm: linear-gradient(135deg, #D4AF37 0%, #F59E0B 100%);
    --gradient-cool: linear-gradient(135deg, #10B981 0%, #3B82F6 100%);
    --gradient-hero: linear-gradient(135deg, #2563EB 0%, #1E3A8A 100%);
    --gradient-mesh: radial-gradient(at 40% 20%, rgba(37, 99, 235, 0.15) 0px, transparent 50%),
        radial-gradient(at 80% 0%, rgba(14, 165, 233, 0.1) 0px, transparent 50%),
        radial-gradient(at 0% 50%, rgba(212, 175, 55, 0.08) 0px, transparent 50%);

    /* Shadows & Glows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --glow-blue: 0 0 60px rgba(37, 99, 235, 0.4);
    --glow-gold: 0 0 40px rgba(212, 175, 55, 0.3);

    /* Typography */
    --font-display: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing Scale */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
}

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

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

body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* ==========================================
   ANIMATIONS
   ========================================== */

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Stagger Delays */
.stagger-1 {
    transition-delay: 0.1s;
}

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

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

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

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

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

/* Fade In Up */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* Float Animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Pulse Glow */
@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 40px rgba(37, 99, 235, 0.5);
        transform: scale(1.02);
    }
}

.animate-pulse-glow {
    animation: pulseGlow 3s ease-in-out infinite;
}

/* Pulse Gold */
@keyframes pulseGold {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.7);
        transform: scale(1.1);
    }
}

.animate-pulse-gold {
    animation: pulseGold 2s ease-in-out infinite;
}

/* Gradient Shimmer */
@keyframes shimmer {
    0% {
        background-position: 0% 50%;
    }

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

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

.animate-shimmer {
    background-size: 200% 200%;
    animation: shimmer 3s ease infinite;
}

/* Rotate slow */
@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Blob animation */
@keyframes blob {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(20px, -30px) scale(1.1);
    }

    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }

    75% {
        transform: translate(30px, 10px) scale(1.05);
    }
}

/* ==========================================
   LAYOUT
   ========================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.section {
    padding: var(--space-24) 0;
    position: relative;
}

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

/* ==========================================
   TYPOGRAPHY
   ========================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: var(--space-4);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-12);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-4) 0;
    background: transparent;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(253, 252, 251, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-text);
}

.logo-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-lg);
}

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

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

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

/* Ensure nav button has white text */
.nav-links a.btn-primary {
    color: white;
}

/* Mobile menu toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: var(--space-2);
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-lg);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
}

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

.btn-secondary {
    background: transparent;
    color: var(--color-text);
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.2);
}

.btn-large {
    padding: var(--space-4) var(--space-8);
    font-size: 1.05rem;
    border-radius: var(--radius-xl);
}

.btn-icon {
    font-size: 1.1em;
}

/* Animated gradient border button */
.btn-glow {
    position: relative;
    background: white;
    color: var(--color-text);
    border: none;
    z-index: 1;
}

.btn-glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-primary);
    border-radius: inherit;
    z-index: -1;
    opacity: 0.8;
    transition: opacity var(--transition-base);
}

.btn-glow::after {
    content: '';
    position: absolute;
    inset: 0;
    background: white;
    border-radius: calc(var(--radius-lg) - 2px);
    z-index: -1;
}

.btn-glow:hover::before {
    opacity: 1;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--space-24);
    position: relative;
    overflow: hidden;
    background: var(--gradient-mesh), var(--color-bg);
}

/* Animated background blobs */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: blob 20s ease-in-out infinite;
}

.hero-blob-1 {
    width: 600px;
    height: 600px;
    background: rgba(37, 99, 235, 0.15);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.hero-blob-2 {
    width: 500px;
    height: 500px;
    background: rgba(14, 165, 233, 0.1);
    bottom: -100px;
    left: -100px;
    animation-delay: -5s;
}

.hero-blob-3 {
    width: 400px;
    height: 400px;
    background: rgba(245, 158, 11, 0.08);
    top: 50%;
    left: 50%;
    animation-delay: -10s;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(37, 99, 235, 0.1) 100%);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-accent-gold);
    margin-bottom: var(--space-6);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-accent-gold);
    border-radius: 50%;
    animation: pulseGold 2s ease-in-out infinite;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-6);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-8);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    margin-bottom: var(--space-10);
}

.hero-verse {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--color-text-light);
    padding-left: var(--space-4);
    border-left: 3px solid var(--color-accent-gold);
}

/* Hero Image/Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-glow-ring {
    position: absolute;
    width: 350px;
    height: 350px;
    background: var(--gradient-primary);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: pulseGlow 4s ease-in-out infinite;
}

/* Pure CSS Hero Visual */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: float 8s ease-in-out infinite;
}

.hero-orb-1 {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.6) 0%, rgba(30, 64, 175, 0.4) 100%);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 220px;
    height: 220px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.5) 0%, rgba(59, 130, 246, 0.3) 100%);
    top: 50%;
    right: 15%;
    animation-delay: -2s;
}

.hero-orb-3 {
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.5) 0%, rgba(234, 179, 8, 0.3) 100%);
    bottom: 20%;
    left: 30%;
    animation-delay: -4s;
}

.hero-center-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 3s ease-in-out infinite;
}

.hero-cross {
    position: relative;
    z-index: 2;
    font-size: 12rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 10px 40px rgba(37, 99, 235, 0.4));
    animation: float 6s ease-in-out infinite;
    font-family: serif;
}

/* ==========================================
   FEATURES SECTION
   ========================================== */
.features {
    padding: var(--space-24) 0;
    background: var(--color-bg-alt);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--space-6);
}

.feature-card {
    background: var(--color-bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(212, 175, 55, 0.15);
}

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

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    font-size: 1.5rem;
    margin-bottom: var(--space-5);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
}

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

.feature-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================
   PHILOSOPHY SECTION
   ========================================== */
.philosophy {
    padding: var(--space-24) 0;
    background: var(--color-bg);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-8);
}

.philosophy-card {
    text-align: center;
    padding: var(--space-6);
}

.philosophy-number {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: white;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: var(--radius-xl);
    margin: 0 auto var(--space-5);
    box-shadow: var(--glow-blue);
    border: 2px solid var(--color-accent-gold);
}

.philosophy-card h3 {
    font-size: 1.15rem;
    margin-bottom: var(--space-3);
    color: var(--color-text);
}

.philosophy-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* ==========================================
   ROADMAP SECTION
   ========================================== */
.roadmap {
    padding: var(--space-24) 0;
    background: var(--color-bg-alt);
}

.roadmap-timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-primary), var(--color-secondary));
    border-radius: var(--radius-full);
}

.roadmap-item {
    display: flex;
    gap: var(--space-6);
    padding: var(--space-6) 0;
    position: relative;
}

.roadmap-marker {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
    z-index: 1;
    border: 3px solid var(--color-bg-alt);
}

.roadmap-item.current .roadmap-marker {
    background: var(--color-accent-emerald);
    color: white;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

.roadmap-item.upcoming .roadmap-marker {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
}

.roadmap-content h3 {
    font-size: 1.2rem;
    margin-bottom: var(--space-2);
}

.roadmap-content p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: var(--space-3);
}

.roadmap-status {
    display: inline-block;
    padding: var(--space-1) var(--space-3);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    background: rgba(0, 0, 0, 0.05);
    color: var(--color-text-muted);
}

.roadmap-item.current .roadmap-status {
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-accent-emerald);
}

.roadmap-item.upcoming .roadmap-status {
    background: rgba(37, 99, 235, 0.1);
    color: var(--color-primary);
}

/* ==========================================
   DOWNLOAD / CTA SECTION
   ========================================== */
.download {
    padding: var(--space-24) 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.download::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.download-container {
    max-width: 700px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.download .section-title {
    color: white;
}

.download .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.download .btn-primary {
    background: white;
    color: var(--color-primary-dark);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.download .btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

.download-note {
    margin-top: var(--space-6);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--color-bg);
    padding: var(--space-16) 0 var(--space-8);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--space-12);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    width: 48px;
    height: 48px;
    margin-bottom: var(--space-4);
    border-radius: var(--radius-lg);
}

.footer-brand p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-column h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--space-4);
    color: var(--color-text);
}

.footer-column a {
    display: block;
    padding: var(--space-2) 0;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    margin-top: var(--space-12);
    padding-top: var(--space-6);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-text-light);
}

/* ==========================================
   PRIVACY PAGE STYLES
   ========================================== */
.privacy-page {
    padding-top: calc(var(--space-24) + 60px);
    min-height: 100vh;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-8);
    background: white;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
}

.privacy-content h1 {
    font-size: 2.5rem;
    margin-bottom: var(--space-4);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.privacy-content h2 {
    font-size: 1.5rem;
    margin-top: var(--space-8);
    margin-bottom: var(--space-4);
    color: var(--color-text);
}

.privacy-content p,
.privacy-content li {
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-4);
}

.privacy-content ul {
    padding-left: var(--space-6);
    margin-bottom: var(--space-6);
}

.privacy-content li {
    margin-bottom: var(--space-2);
}

.privacy-content a {
    color: var(--color-primary);
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition-fast);
}

.privacy-content a:hover {
    border-color: var(--color-primary);
}

.privacy-back {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-8);
    color: var(--color-text-muted);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.privacy-back:hover {
    color: var(--color-primary);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .hero-cta {
        justify-content: center;
    }

    .hero-verse {
        border-left: none;
        border-top: 3px solid var(--color-primary);
        padding-left: 0;
        padding-top: var(--space-4);
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-visual {
        order: -1;
        margin-bottom: var(--space-8);
    }

    .hero-shield {
        width: 200px;
        height: 200px;
    }

    .hero-glow-ring {
        width: 250px;
        height: 250px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: span 2;
        text-align: center;
        max-width: 100%;
    }
}

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

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding-top: var(--space-32);
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

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

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

    .roadmap-timeline::before {
        left: 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        grid-column: 1;
    }

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

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

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn-large {
        width: 100%;
        max-width: 300px;
    }

    .privacy-content {
        padding: var(--space-6);
        margin: var(--space-4);
        border-radius: var(--radius-xl);
    }
}

/* ==========================================
   WAITLIST FORM
   ========================================== */
.waitlist-form {
    max-width: 500px;
    margin: 0 auto;
}

.waitlist-input-group {
    display: flex;
    gap: var(--space-3);
    background: var(--color-bg-card);
    padding: var(--space-2);
    border-radius: var(--radius-xl);
    border: 2px solid rgba(37, 99, 235, 0.2);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
}

.waitlist-input-group:focus-within {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1), var(--shadow-lg);
}

.waitlist-input-group input {
    flex: 1;
    padding: var(--space-4) var(--space-5);
    border: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text);
    outline: none;
}

.waitlist-input-group input::placeholder {
    color: var(--color-text-light);
}

.waitlist-input-group .btn {
    flex-shrink: 0;
}

.waitlist-count {
    display: inline-block;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: var(--space-2);
}

/* ==========================================
   WAITLIST MODAL
   ========================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    padding: var(--space-6);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--color-bg);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    max-width: 450px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-xl);
    transform: scale(0.9) translateY(20px);
    transition: all var(--transition-base);
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-full);
    font-size: 1.5rem;
    color: var(--color-text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: var(--color-text);
}

.modal-icon {
    font-size: 4rem;
    margin-bottom: var(--space-4);
    filter: drop-shadow(0 8px 20px rgba(37, 99, 235, 0.3));
}

.modal-content h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-3);
    color: var(--color-text);
}

.modal-content>p {
    color: var(--color-text-muted);
    margin-bottom: var(--space-6);
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.modal-form input {
    padding: var(--space-4) var(--space-5);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-lg);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text);
    background: var(--color-bg-alt);
    transition: all var(--transition-fast);
}

.modal-form input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.modal-form input::placeholder {
    color: var(--color-text-light);
}

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

.modal-note {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-top: var(--space-4);
}

/* Modal responsive */
@media (max-width: 480px) {
    .modal-content {
        padding: var(--space-8);
    }

    .waitlist-input-group {
        flex-direction: column;
    }

    .waitlist-input-group .btn {
        width: 100%;
    }
}