/* ============================================
   Manifest Daily — Landing Page Styles
   ============================================ */

/* Design Tokens */
:root {
    --deep-rose: #C1556B;
    --rose-mist: #E8D0D4;
    --warm-taupe: #8A7B6B;
    --charcoal: #2D2D2D;
    --pearl: #F7F3F0;
    --gold: #D4A373;
    --ivory: #FFF8F4;
    --gradient-rose: linear-gradient(135deg, #C1556B, #D4A373);
    --gradient-pearl: linear-gradient(135deg, rgba(247, 243, 240, 0.8), rgba(255, 248, 244, 0.5));
    /* Glassmorphism Variables */
    --glass-bg: rgba(255, 255, 255, 0.35);
    --glass-bg-hover: rgba(255, 255, 255, 0.55);
    --glass-border: 1px solid rgba(255, 255, 255, 0.6);
    --glass-border-hover: 1px solid rgba(255, 255, 255, 0.8);
    --glass-blur: blur(24px) saturate(180%);
    --shadow-glass: 0 12px 40px rgba(193, 85, 107, 0.08);
    --shadow-glass-hover: 0 16px 50px rgba(193, 85, 107, 0.15);
    
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 40px;
}

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

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

body {
    font-family: 'DM Sans', -apple-system, sans-serif;
    color: var(--charcoal);
    background: #FDF9F7;
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

h1, h2, h3 {
    font-family: 'DM Serif Display', Georgia, serif;
    line-height: 1.15;
}

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

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

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

/* ============================================
   GLOBAL BACKGROUND ORBS (Glassmorphism base)
   ============================================ */
.global-bg-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: float 12s ease-in-out infinite;
}

.orb-1 { width: 600px; height: 600px; background: rgba(193, 85, 107, 0.18); top: -10%; right: -10%; animation-delay: 0s; }
.orb-2 { width: 500px; height: 500px; background: rgba(212, 163, 115, 0.2); bottom: -10%; left: -10%; animation-delay: -3s; }
.orb-3 { width: 400px; height: 400px; background: rgba(232, 208, 212, 0.25); top: 40%; left: 40%; animation-delay: -6s; }
.orb-4 { width: 500px; height: 500px; background: rgba(255, 255, 255, 0.8); top: 20%; left: 10%; animation-delay: -9s; }
.orb-5 { width: 700px; height: 700px; background: rgba(193, 85, 107, 0.12); bottom: 10%; right: 20%; animation-delay: -4s; }

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-40px) scale(1.05); }
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    padding: 12px 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Serif Display', serif;
    font-size: 22px;
    color: var(--charcoal);
}

.logo-icon {
    color: var(--deep-rose);
    font-size: 20px;
}

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

.nav-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.icon-btn {
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.5);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
}
.icon-btn:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.6);
}

.color-picker {
    display: flex;
    gap: 8px;
    align-items: center;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 6px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.color-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease;
}
.color-dot:hover {
    transform: scale(1.2);
}
.color-dot.active {
    border-color: var(--charcoal);
    transform: scale(1.2);
}

/* Custom Language Selector */
.custom-lang-selector {
    position: relative;
}

.lang-trigger {
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 6px 14px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--charcoal);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.lang-trigger:hover {
    background: rgba(255, 255, 255, 0.6);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #2a2a2a;
    border-radius: 12px;
    padding: 8px 0;
    width: 200px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: opacity 0.2s ease, transform 0.2s ease;
    transform-origin: top right;
}

.lang-dropdown.hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.95);
}

.lang-option {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.lang-option:hover {
    background: rgba(255,255,255,0.1);
}

.lang-flag {
    font-size: 18px;
    margin-right: 12px;
}

.lang-name {
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    flex: 1;
}

.lang-radio {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #888;
    position: relative;
}

.lang-option.active .lang-radio {
    border-color: var(--deep-rose);
}

.lang-option.active .lang-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--deep-rose);
    border-radius: 50%;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--warm-taupe);
    position: relative;
}

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

.nav-highlight {
    color: var(--deep-rose) !important;
    font-weight: 600 !important;
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-rose);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-links a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient-rose);
    color: white !important;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 16px rgba(193, 85, 107, 0.25);
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(193, 85, 107, 0.35);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    padding: 24px;
    flex-direction: column;
    gap: 20px;
    z-index: 999;
    border-bottom: var(--glass-border);
}

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

.mobile-menu a {
    font-size: 16px;
    font-weight: 500;
    color: var(--charcoal);
    padding: 8px 0;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.btn-primary {
    background: var(--gradient-rose);
    color: white;
    box-shadow: 0 4px 20px rgba(193, 85, 107, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(193, 85, 107, 0.4);
}

.btn-ghost {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    color: var(--deep-rose);
    border: var(--glass-border);
}

.btn-ghost:hover {
    background: var(--glass-bg-hover);
    border-color: var(--deep-rose);
    box-shadow: var(--shadow-glass);
}

.btn-large {
    padding: 18px 40px;
    font-size: 17px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    color: var(--deep-rose);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(193, 85, 107, 0.05);
}

.hero h1 {
    font-size: clamp(40px, 5.5vw, 64px);
    margin-bottom: 20px;
    color: var(--charcoal);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--warm-taupe);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    padding: 20px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-glass);
    display: inline-flex;
}

.stat-number {
    display: block;
    font-family: 'DM Serif Display', serif;
    font-size: 28px;
    color: var(--charcoal);
}

.stat-label {
    font-size: 13px;
    color: var(--warm-taupe);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(193, 85, 107, 0.2);
}

.hero-image {
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-image img {
    max-height: 600px;
    width: auto;
    filter: drop-shadow(0 20px 60px rgba(193, 85, 107, 0.2));
    animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
}

/* ============================================
   SOCIAL PROOF BAR
   ============================================ */
.social-proof {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-top: var(--glass-border);
    border-bottom: var(--glass-border);
    padding: 28px 0;
}

.proof-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.proof-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--warm-taupe);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.proof-logos {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.proof-item {
    font-size: 14px;
    color: var(--warm-taupe);
    opacity: 0.8;
    padding: 8px 16px;
    background: var(--glass-bg);
    border: var(--glass-border);
    border-radius: 100px;
    font-weight: 500;
}

/* ============================================
   SECTIONS (Shared)
   ============================================ */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    color: var(--deep-rose);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(193, 85, 107, 0.05);
}

.section-header h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 17px;
    color: var(--warm-taupe);
    line-height: 1.7;
}

/* ============================================
   FEATURES
   ============================================ */
.features {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: var(--glass-border);
    box-shadow: var(--shadow-glass);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-8px);
    background: var(--glass-bg-hover);
    box-shadow: var(--shadow-glass-hover);
    border-color: rgba(255, 255, 255, 1);
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 20px;
    display: inline-block;
    width: 64px;
    height: 64px;
    line-height: 64px;
    text-align: center;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-md);
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.5);
}

.feature-card h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: var(--charcoal);
    opacity: 0.8;
    line-height: 1.6;
}

/* ============================================
   STEPASAURUS
   ============================================ */
.stepasaurus {
    padding: 80px 0;
    position: relative;
}

.stepa-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.stepa-text .section-badge {
    margin-bottom: 16px;
}

.stepa-text h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 20px;
}

.stepa-desc {
    font-size: 17px;
    color: var(--warm-taupe);
    line-height: 1.7;
    margin-bottom: 36px;
}

.stepa-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stepa-features li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 15px;
    color: var(--charcoal);
}

.check {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: var(--glass-border);
    color: var(--deep-rose);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    margin-top: 2px;
}

.stepa-visual {
    display: flex;
    justify-content: center;
}

.dino-showcase {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--radius-xl);
    padding: 60px 48px;
    text-align: center;
    position: relative;
    border: var(--glass-border);
    box-shadow: var(--shadow-glass);
    overflow: hidden;
    width: 100%;
}

.dino-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(193, 85, 107, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.dino-emoji {
    font-size: 100px;
    margin-bottom: 20px;
    animation: dinoBounce 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes dinoBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    25% { transform: translateY(-10px) scale(1.02); }
    75% { transform: translateY(5px) scale(0.98); }
}

.dino-label {
    font-size: 15px;
    color: var(--charcoal);
    opacity: 0.8;
    margin-bottom: 28px;
    font-weight: 500;
}

.dino-stages {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.stage {
    font-size: 28px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid white;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.stage-arrow {
    color: var(--deep-rose);
    opacity: 0.5;
    font-size: 14px;
    font-weight: 700;
}

/* ============================================
   SOUL TRIBE
   ============================================ */
.tribe {
    padding: 80px 0;
}

.tribe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.tribe-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    border: var(--glass-border);
    box-shadow: var(--shadow-glass);
    transition: all 0.4s ease;
}

.tribe-card:hover {
    transform: translateY(-8px);
    background: var(--glass-bg-hover);
    box-shadow: var(--shadow-glass-hover);
    border-color: white;
}

.tribe-icon {
    font-size: 44px;
    margin-bottom: 20px;
    display: inline-block;
    padding: 16px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid white;
    border-radius: 50%;
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.8);
}

.tribe-card h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.tribe-card p {
    font-size: 14px;
    color: var(--charcoal);
    opacity: 0.8;
    line-height: 1.7;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: 80px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: var(--glass-border);
    box-shadow: var(--shadow-glass);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-glass-hover);
    background: var(--glass-bg-hover);
}

.stars {
    color: var(--gold);
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-card p {
    font-size: 15px;
    color: var(--charcoal);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
}

.author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: var(--gradient-rose);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(193, 85, 107, 0.3);
}

.author strong {
    display: block;
    font-size: 14px;
}

.author span {
    font-size: 12px;
    color: var(--warm-taupe);
}

/* ============================================
   DOWNLOAD CTA
   ============================================ */
.download {
    padding: 120px 0;
}

.download-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: var(--glass-border);
    box-shadow: 0 20px 60px rgba(193, 85, 107, 0.15);
}

.download-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(193, 85, 107, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.download-card h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.download-card > p {
    font-size: 17px;
    color: var(--warm-taupe);
    max-width: 480px;
    margin: 0 auto 36px;
    position: relative;
    z-index: 1;
}

.download-ctas {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.download-note {
    font-size: 13px;
    color: var(--warm-taupe);
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-top: var(--glass-border);
    padding: 60px 0 30px;
    color: var(--charcoal);
}

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

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 48px;
    gap: 40px;
}

.footer-brand .logo-text {
    font-size: 20px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--warm-taupe);
    margin-top: 12px;
    max-width: 260px;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-col h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--charcoal);
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: var(--warm-taupe);
    padding: 4px 0;
}

.footer-col a:hover {
    color: var(--deep-rose);
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--warm-taupe);
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    font-size: 20px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-social a:hover {
    opacity: 1;
}

/* ============================================
   SCREENSHOT PHONE FRAMES
   ============================================ */
.css-phone-frame {
    position: relative;
    border: 12px solid #1c1c1e;
    border-radius: 44px;
    box-shadow: inset 0 0 0 2px #3a3a3c, 0 30px 60px rgba(193, 85, 107, 0.2);
    overflow: hidden;
    background: #000;
}

.css-phone-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 35%;
    height: 28px;
    background: #1c1c1e;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 10;
}

.css-phone-frame img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 32px;
}

/* ============================================
   SCREENSHOT MARQUEE GALLERY
   ============================================ */
.screenshot-marquee-section {
    padding: 80px 0;
    overflow: hidden;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.4));
    border-top: var(--glass-border);
    border-bottom: var(--glass-border);
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 20px 0 60px;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: marquee 50s linear infinite;
}

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

.marquee-item {
    width: 260px;
    flex-shrink: 0;
    transition: transform 0.4s ease;
}

.marquee-item:hover {
    transform: translateY(-15px) scale(1.05);
}

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

/* ============================================
   FEATURE SHOWCASE
   ============================================ */
.feature-showcase {
    padding: 80px 0;
}

.showcase-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 80px;
}

.showcase-row.reverse {
    direction: rtl;
}

.showcase-row.reverse > * {
    direction: ltr;
}

.showcase-text {
    max-width: 500px;
}

.showcase-text h2, .showcase-text h3 {
    font-size: clamp(32px, 4vw, 42px);
    margin-bottom: 20px;
}

.showcase-text p {
    font-size: 17px;
    color: var(--warm-taupe);
    line-height: 1.7;
    margin-bottom: 32px;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 15px;
    color: var(--charcoal);
}

.feature-list li span {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: var(--glass-border);
    color: var(--deep-rose);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    margin-top: 2px;
}

.showcase-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-glass-frame {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--radius-xl);
    padding: 24px;
    border: var(--glass-border);
    box-shadow: var(--shadow-glass);
    transition: transform 0.5s ease;
}

.image-glass-frame:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-glass-hover);
}

.image-glass-frame img {
    border-radius: var(--radius-lg);
    display: block;
}

.more-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.small-card {
    padding: 24px 20px;
    text-align: left;
}

.feature-icon-small {
    font-size: 28px;
    margin-bottom: 16px;
}

.small-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
    font-family: 'DM Sans', sans-serif;
}

.small-card p {
    font-size: 13px;
    margin-bottom: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .more-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .showcase-row {
        gap: 40px;
    }
    
    .stepa-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image img {
        max-height: 400px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .more-features-grid {
        grid-template-columns: 1fr;
    }
    
    .showcase-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }
    
    .showcase-row.reverse {
        direction: ltr;
    }
    
    .showcase-text {
        margin: 0 auto;
    }
    
    .feature-list {
        text-align: left;
    }
    
    .tribe-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        flex-direction: column;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .download-card {
        padding: 48px 28px;
    }
    
    .proof-container {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .dino-stages {
        flex-wrap: wrap;
    }
    
    .dino-emoji {
        font-size: 72px;
    }
}

/* ============================================
   INTERACTIVE DEMO
   ============================================ */
.interactive-demo {
    padding: 80px 0;
}

.demo-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    padding: 60px 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-glass);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.demo-card p {
    font-size: 18px;
    color: var(--warm-taupe);
    margin-bottom: 40px;
}

.demo-generator {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
}

.demo-input {
    flex: 1;
    max-width: 400px;
    padding: 16px 24px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(193, 85, 107, 0.3);
    background: rgba(255, 255, 255, 0.8);
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    color: var(--charcoal);
    outline: none;
    transition: all 0.3s ease;
}

.demo-input:focus {
    border-color: var(--deep-rose);
    box-shadow: 0 0 0 3px rgba(193, 85, 107, 0.1);
}

.demo-result {
    margin-top: 32px;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.demo-result.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    display: none;
}

.result-glass {
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.affirmation-text {
    font-family: 'DM Serif Display', serif;
    font-size: 28px;
    color: var(--charcoal);
    margin-bottom: 32px;
    line-height: 1.4;
}

.waitlist-capture {
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 24px;
}

.waitlist-form {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.waitlist-form input {
    padding: 12px 20px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(193, 85, 107, 0.3);
    background: white;
    font-size: 15px;
    width: 250px;
}

@media (max-width: 768px) {
    .hide-mobile { display: none; }
    .nav-controls { gap: 8px; }
    
    .demo-generator, .waitlist-form {
        flex-direction: column;
    }
    .demo-input, .waitlist-form input {
        max-width: 100%;
        width: 100%;
    }
}

/* ============================================
   DARK THEME OVERRIDES
   ============================================ */
body.dark-theme {
    --bg-color: #121212;
    --charcoal: #fcf9f2; /* Text becomes light */
    --warm-taupe: #a0a0a0;
    --deep-rose: #ff7a96;
    --sand: #2a2a2a;
    --glass-bg: rgba(30, 30, 30, 0.6);
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.4);
}

body.dark-theme .orb-1 { background: radial-gradient(circle, rgba(193, 85, 107, 0.3) 0%, transparent 70%); }
body.dark-theme .orb-2 { background: radial-gradient(circle, rgba(138, 123, 107, 0.3) 0%, transparent 70%); }
body.dark-theme .orb-3 { background: radial-gradient(circle, rgba(230, 220, 200, 0.2) 0%, transparent 70%); }

body.dark-theme .navbar.scrolled {
    background: rgba(18, 18, 18, 0.85);
}

body.dark-theme .lang-trigger {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

body.dark-theme .icon-btn {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

body.dark-theme .demo-input, body.dark-theme .waitlist-form input, body.dark-theme .investor-form input, body.dark-theme .investor-form textarea, body.dark-theme .investor-form select {
    background: rgba(40, 40, 40, 0.8);
    color: #fff;
    border-color: rgba(255,255,255,0.2);
}

body.dark-theme .nav-cta {
    background: #fff;
    color: #000 !important;
}

body.dark-theme .btn-primary {
    color: #fff;
}
body.dark-theme .color-picker {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}
body.dark-theme .color-dot.active {
    border-color: #fff;
}

/* ============================================
   ACCENT COLOR THEMES
   ============================================ */
body.theme-blue {
    --deep-rose: #558bc1;
    --gradient-rose: linear-gradient(135deg, #558bc1 0%, #8bbad8 100%);
}
body.theme-blue .orb-1 { background: radial-gradient(circle, rgba(85, 139, 193, 0.3) 0%, transparent 70%); }
body.theme-blue.dark-theme .orb-1 { background: radial-gradient(circle, rgba(85, 139, 193, 0.4) 0%, transparent 70%); }

body.theme-green {
    --deep-rose: #55c18b;
    --gradient-rose: linear-gradient(135deg, #55c18b 0%, #8bd8ba 100%);
}
body.theme-green .orb-1 { background: radial-gradient(circle, rgba(85, 193, 139, 0.3) 0%, transparent 70%); }
body.theme-green.dark-theme .orb-1 { background: radial-gradient(circle, rgba(85, 193, 139, 0.4) 0%, transparent 70%); }

body.theme-purple {
    --deep-rose: #9b55c1;
    --gradient-rose: linear-gradient(135deg, #9b55c1 0%, #c58bd8 100%);
}
body.theme-purple .orb-1 { background: radial-gradient(circle, rgba(155, 85, 193, 0.3) 0%, transparent 70%); }
body.theme-purple.dark-theme .orb-1 { background: radial-gradient(circle, rgba(155, 85, 193, 0.4) 0%, transparent 70%); }
