/* ===================================
   Lythouse Labs - Landing Page Styles
   Apple-inspired, modern, animated
   =================================== */

/* CSS Variables */
:root {
    /* Colors - matching the webapp */
    --primary: #7c3aed;
    --primary-dark: #6d28d9;
    --primary-light: #a78bfa;
    --purple-600: #9333ea;
    --indigo-600: #4f46e5;
    
    /* Neutrals */
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --slate-950: #020617;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--purple-600) 50%, var(--indigo-600) 100%);
    --gradient-text: linear-gradient(135deg, var(--primary) 0%, var(--purple-600) 100%);
    --gradient-hero: linear-gradient(180deg, var(--slate-50) 0%, rgba(124, 58, 237, 0.03) 50%, var(--slate-50) 100%);
    
    /* Spacing */
    --container-max: 1280px;
    --section-padding: 120px;
    --section-padding-mobile: 80px;
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px rgba(124, 58, 237, 0.15);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--slate-700);
    background: var(--slate-50);
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 48px;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--slate-900);
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

/* ===================================
   Navigation
   =================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-base);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 12px 0;
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .nav-container {
        padding: 0 48px;
    }
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 32px;
    width: auto;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 40px;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--slate-600);
    transition: color var(--transition-fast);
}

.nav-link:hover {
    color: var(--slate-900);
}

.nav-cta {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    background: var(--gradient-primary);
    border-radius: 10px;
    transition: all var(--transition-base);
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.3);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--slate-700);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: white;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    border-bottom: 1px solid var(--slate-200);
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

@media (min-width: 768px) {
    .mobile-menu {
        display: none;
    }
}

.mobile-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--slate-700);
    padding: 12px 0;
    border-bottom: 1px solid var(--slate-100);
}

.mobile-cta {
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    background: var(--gradient-primary);
    border-radius: 12px;
    text-align: center;
    margin-top: 8px;
    border: none;
    cursor: pointer;
    width: 100%;
    text-decoration: none;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero {
        padding: 140px 48px 100px;
    }
}

/* Hero Background */
.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(124, 58, 237, 0.15), transparent),
                radial-gradient(ellipse 60% 40% at 80% 60%, rgba(147, 51, 234, 0.08), transparent),
                radial-gradient(ellipse 60% 40% at 20% 80%, rgba(79, 70, 229, 0.08), transparent);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(124, 58, 237, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 58, 237, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
}

/* Floating Orbs */
.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(124, 58, 237, 0.2);
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(147, 51, 234, 0.15);
    top: 60%;
    right: -5%;
    animation-delay: -7s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: rgba(79, 70, 229, 0.15);
    bottom: 10%;
    left: 20%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(10px, 30px) scale(1.02); }
}

/* Hero Content */
.hero-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: white;
    border: 1px solid var(--slate-200);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--slate-600);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-size: clamp(40px, 8vw, 72px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: var(--slate-900);
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    color: var(--slate-600);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* Hero CTAs */
.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 60px;
}

@media (min-width: 480px) {
    .hero-ctas {
        flex-direction: row;
        justify-content: center;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all var(--transition-base);
    border: none;
    text-decoration: none;
}

.btn-primary {
    color: white;
    background: var(--gradient-primary);
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.45);
}

.btn-primary svg {
    transition: transform var(--transition-fast);
}

.btn-primary:hover svg {
    transform: translateX(3px);
}

.btn-secondary {
    color: var(--slate-700);
    background: white;
    border: 1px solid var(--slate-200);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--slate-50);
    border-color: var(--slate-300);
}

.btn-white {
    color: var(--primary);
    background: white;
    box-shadow: var(--shadow-lg);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-ghost {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-outline {
    color: var(--slate-600);
    background: transparent;
    border: 1px solid var(--slate-300);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 24px 32px;
    background: white;
    border: 1px solid var(--slate-200);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

@media (min-width: 640px) {
    .hero-stats {
        flex-direction: row;
        justify-content: center;
    }
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--slate-900);
}

.stat-label {
    font-size: 13px;
    color: var(--slate-500);
}

/* Rotating text animation */
.stat-dynamic {
    display: block;
    height: 32px;
    overflow: hidden;
}

.rotating-text {
    display: flex;
    flex-direction: column;
    animation: rotateText 8s ease-in-out infinite;
}

.rotating-text span {
    height: 32px;
    line-height: 32px;
    font-size: 28px;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes rotateText {
    0%, 20% { transform: translateY(0); }
    25%, 45% { transform: translateY(-32px); }
    50%, 70% { transform: translateY(-64px); }
    75%, 95% { transform: translateY(-96px); }
    100% { transform: translateY(0); }
}

.stat-divider {
    width: 40px;
    height: 1px;
    background: var(--slate-200);
}

@media (min-width: 640px) {
    .stat-divider {
        width: 1px;
        height: 40px;
    }
}

/* Hero Visual */
.hero-visual {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin-top: 60px;
}

.browser-mockup {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-2xl), var(--shadow-glow);
    overflow: hidden;
    border: 1px solid var(--slate-200);
}

.browser-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    background: var(--slate-50);
    border-bottom: 1px solid var(--slate-200);
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--slate-300);
}

.browser-dots span:first-child { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:last-child { background: #28c840; }

.browser-url {
    flex: 1;
    text-align: center;
    font-size: 12px;
    color: var(--slate-500);
    background: white;
    padding: 6px 16px;
    border-radius: 6px;
    border: 1px solid var(--slate-200);
}

.browser-content {
    background: linear-gradient(135deg, var(--slate-100) 0%, var(--slate-50) 100%);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    padding: 0;
}

.dashboard-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeInUp 1s ease 2s both;
}

@media (max-height: 800px) {
    .scroll-indicator {
        display: none;
    }
}

.mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--slate-300);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 3px;
    height: 8px;
    background: var(--slate-400);
    border-radius: 2px;
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(6px); opacity: 0.3; }
}

.scroll-indicator span {
    font-size: 12px;
    color: var(--slate-400);
}

/* ===================================
   Animations
   =================================== */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Problem Section
   =================================== */
.problem-section {
    padding: var(--section-padding-mobile) 0;
    background: white;
}

@media (min-width: 768px) {
    .problem-section {
        padding: var(--section-padding) 0;
    }
}

.problem-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-text {
    font-size: 18px;
    color: var(--slate-600);
    line-height: 1.7;
}

.section-text em {
    color: var(--slate-800);
    font-style: normal;
    background: linear-gradient(180deg, transparent 60%, rgba(124, 58, 237, 0.15) 60%);
}

.problem-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .problem-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

.problem-card {
    padding: 32px;
    background: var(--slate-50);
    border-radius: 20px;
    border: 1px solid var(--slate-100);
    transition: all var(--transition-base);
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--slate-200);
}

.problem-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 14px;
    margin-bottom: 20px;
    border: 1px solid var(--slate-200);
    color: var(--primary);
}

.problem-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.problem-card p {
    font-size: 15px;
    color: var(--slate-600);
    line-height: 1.6;
}

/* ===================================
   Products Section
   =================================== */
.products-section {
    padding: var(--section-padding-mobile) 0;
    background: var(--slate-50);
}

@media (min-width: 768px) {
    .products-section {
        padding: var(--section-padding) 0;
    }
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--slate-600);
}

.product-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 900px) {
    .product-showcase {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.product-card {
    position: relative;
    padding: 40px;
    background: white;
    border-radius: 24px;
    border: 1px solid var(--slate-200);
    transition: all var(--transition-base);
}

.product-card:hover {
    box-shadow: var(--shadow-xl);
}

.product-card.featured {
    background: linear-gradient(180deg, white 0%, rgba(124, 58, 237, 0.02) 100%);
    border-color: rgba(124, 58, 237, 0.2);
}

.product-card.featured:hover {
    border-color: var(--primary);
}

.product-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--gradient-primary);
    color: white;
    border-radius: 6px;
}

.product-badge.soon {
    background: var(--slate-200);
    color: var(--slate-600);
}

.product-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--slate-100);
    border-radius: 18px;
    margin-bottom: 24px;
    color: var(--slate-400);
}

.product-icon.glynt-icon {
    background: linear-gradient(135deg, var(--primary), var(--purple-600));
    padding: 14px;
}

.product-icon.glynt-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.product-name {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 4px;
}

.product-tagline {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 16px;
}

.product-description {
    font-size: 15px;
    color: var(--slate-600);
    line-height: 1.7;
    margin-bottom: 24px;
}

.product-features {
    list-style: none;
    margin-bottom: 32px;
}

.product-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--slate-700);
    border-bottom: 1px solid var(--slate-100);
}

.product-features li:last-child {
    border-bottom: none;
}

.product-features svg {
    flex-shrink: 0;
    color: var(--primary);
    margin-top: 2px;
}

.product-btn {
    width: 100%;
}

/* Waitlist Form */
.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 480px) {
    .waitlist-form {
        flex-direction: row;
    }
}

.waitlist-input {
    flex: 1;
    padding: 12px 16px;
    font-size: 14px;
    border: 1px solid var(--slate-300);
    border-radius: 10px;
    outline: none;
    transition: all var(--transition-fast);
}

.waitlist-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.waitlist-btn {
    white-space: nowrap;
}

/* ===================================
   How It Works Section
   =================================== */
.how-section {
    padding: var(--section-padding-mobile) 0;
    background: white;
}

@media (min-width: 768px) {
    .how-section {
        padding: var(--section-padding) 0;
    }
}

.steps-container {
    max-width: 700px;
    margin: 0 auto;
}

.step {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: start;
    padding: 32px 0;
}

.step-number {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    width: 40px;
}

.step-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 15px;
    color: var(--slate-600);
    line-height: 1.6;
}

.step-visual {
    display: none;
}

@media (min-width: 640px) {
    .step-visual {
        display: block;
    }
}

.step-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(147, 51, 234, 0.1));
    border-radius: 14px;
    color: var(--primary);
}

.step-connector {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, var(--primary), var(--slate-200));
    margin-left: 19px;
    border-radius: 2px;
}

/* ===================================
   Social Proof Section
   =================================== */
.social-proof-section {
    padding: var(--section-padding-mobile) 0;
    background: var(--slate-900);
    color: white;
}

@media (min-width: 768px) {
    .social-proof-section {
        padding: var(--section-padding) 0;
    }
}

.proof-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.quote-mark {
    font-size: 120px;
    font-weight: 700;
    line-height: 0.5;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.5;
    margin-bottom: 24px;
}

blockquote {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 500;
    line-height: 1.5;
    color: white;
    margin-bottom: 24px;
}

.proof-attribution {
    font-size: 14px;
    color: var(--slate-400);
}

.trust-logos {
    text-align: center;
}

.trust-logos p {
    font-size: 13px;
    color: var(--slate-500);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.logo-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-logo {
    height: 32px;
    opacity: 0.4;
    transition: opacity var(--transition-fast);
}

.trust-logo:hover {
    opacity: 0.7;
}

.trust-logo.placeholder {
    width: 100px;
    height: 32px;
    background: var(--slate-800);
    border-radius: 4px;
}

/* ===================================
   About Section
   =================================== */
.about-section {
    padding: var(--section-padding-mobile) 0;
    background: var(--slate-50);
}

@media (min-width: 768px) {
    .about-section {
        padding: var(--section-padding) 0;
    }
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

@media (min-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-text {
    font-size: 16px;
    color: var(--slate-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-values {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 32px;
}

.value {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: white;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--slate-700);
    border: 1px solid var(--slate-200);
}

.value-icon {
    color: var(--primary);
    flex-shrink: 0;
}

/* Lighthouse Animation */
.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lighthouse-animation {
    position: relative;
    width: 250px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lighthouse-logo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lighthouse-img {
    width: 80px;
    height: auto;
    position: relative;
    z-index: 2;
}

/* Glowing aura effect */
.lighthouse-logo::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.6;
    animation: glow 2s ease-in-out infinite;
    z-index: 1;
}

/* Light beam */
.lighthouse-light {
    position: absolute;
    top: 8px;
    left: calc(50% + 8px);
    width: 20px;
    height: 20px;
    z-index: 3;
}

.light-beam {
    position: absolute;
    top: 50%;
    left: 0;
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, rgba(124, 58, 237, 0.7), rgba(124, 58, 237, 0.2), transparent);
    transform-origin: left center;
    animation: beam 4s ease-in-out infinite;
    border-radius: 2px;
}

@keyframes glow {
    0%, 100% { 
        opacity: 0.5;
        transform: translateX(-50%) scale(1);
    }
    50% { 
        opacity: 0.8;
        transform: translateX(-50%) scale(1.2);
    }
}

@keyframes beam {
    0%, 100% { transform: rotate(-20deg); opacity: 0.7; }
    50% { transform: rotate(20deg); opacity: 0.5; }
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    position: relative;
    padding: var(--section-padding-mobile) 0;
    background: var(--gradient-primary);
    overflow: hidden;
}

@media (min-width: 768px) {
    .cta-section {
        padding: var(--section-padding) 0;
    }
}

.cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 80% at 50% 120%, rgba(255, 255, 255, 0.1), transparent);
}

.cta-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.gradient-text-light {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.7));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 480px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* ===================================
   Footer
   =================================== */
.footer {
    padding: 80px 0 40px;
    background: var(--slate-950);
    color: var(--slate-400);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1.5fr 2fr;
    }
}

.footer-logo {
    height: 28px;
    width: auto;
    margin-bottom: 12px;
    opacity: 0.9;
}

.footer-tagline {
    font-size: 14px;
    color: var(--slate-500);
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--slate-900);
    border-radius: 10px;
    color: var(--slate-400);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--slate-800);
    color: white;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: var(--slate-400);
    padding: 6px 0;
    transition: color var(--transition-fast);
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--slate-800);
    text-align: center;
    font-size: 13px;
}

/* ===================================
   AI SoV Section
   =================================== */
.ai-sov-section {
    padding: var(--section-padding-mobile) 0;
    background: linear-gradient(180deg, white 0%, var(--slate-50) 100%);
}

@media (min-width: 768px) {
    .ai-sov-section {
        padding: var(--section-padding) 0;
    }
}

.ai-sov-content {
    display: grid;
    gap: 48px;
    align-items: center;
}

@media (min-width: 768px) {
    .ai-sov-content {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

.ai-sov-text .section-text {
    margin-bottom: 16px;
}

.ai-sov-text .section-text strong {
    color: var(--primary);
}

/* SoV Metric Card */
.sov-metric-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--slate-200);
}

.sov-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.sov-label {
    font-size: 14px;
    color: var(--slate-600);
    font-weight: 500;
}

.sov-badge {
    font-size: 11px;
    padding: 4px 10px;
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border-radius: 100px;
    font-weight: 600;
}

.sov-value {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 24px;
}

.sov-number {
    font-size: 64px;
    font-weight: 800;
    color: var(--slate-900);
    line-height: 1;
}

.sov-percent {
    font-size: 32px;
    font-weight: 700;
    color: var(--slate-400);
}

.sov-bar {
    position: relative;
    height: 12px;
    background: var(--slate-100);
    border-radius: 100px;
    overflow: visible;
    margin-bottom: 32px;
}

.sov-bar-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 100px;
    width: 0;
    transition: width 1.5s ease-out;
}

.sov-competitors {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
}

.sov-competitors span {
    position: absolute;
    font-size: 10px;
    color: var(--slate-400);
    transform: translateX(-50%);
    white-space: nowrap;
}

.sov-competitors span::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 8px;
    background: var(--slate-300);
}

.sov-insight {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--slate-600);
    padding: 12px 16px;
    background: var(--slate-50);
    border-radius: 10px;
}

.sov-insight svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* SoV Benefits */
.ai-sov-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
}

@media (max-width: 767px) {
    .ai-sov-benefits {
        grid-template-columns: 1fr;
    }
}

.sov-benefit {
    text-align: center;
    padding: 24px;
}

.sov-benefit .benefit-icon {
    width: 48px;
    height: 48px;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--primary);
}

.sov-benefit h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--slate-900);
    margin-bottom: 8px;
}

.sov-benefit p {
    font-size: 14px;
    color: var(--slate-600);
    line-height: 1.6;
}

/* ===================================
   AI Model Colors & Animation
   =================================== */
.ai-chatgpt {
    color: #10a37f !important;
    -webkit-text-fill-color: #10a37f !important;
}

.ai-gemini {
    background: linear-gradient(135deg, #4285f4, #ea4335, #fbbc04, #34a853) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.ai-claude {
    color: #d97706 !important;
    -webkit-text-fill-color: #d97706 !important;
}

.ai-model-rotate {
    animation: rotateAIModel 6s ease-in-out infinite;
}

@keyframes rotateAIModel {
    0%, 30% { transform: translateY(0); }
    33%, 63% { transform: translateY(-32px); }
    66%, 96% { transform: translateY(-64px); }
    100% { transform: translateY(0); }
}

.insights-rotate {
    animation: rotateInsights 6s ease-in-out infinite;
}

@keyframes rotateInsights {
    0%, 30% { transform: translateY(0); }
    33%, 63% { transform: translateY(-32px); }
    66%, 96% { transform: translateY(-64px); }
    100% { transform: translateY(0); }
}

/* ===================================
   Accent Button (Purple Gradient Variant)
   =================================== */
.btn-accent {
    color: white;
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    box-shadow: 0 4px 14px rgba(139, 92, 246, 0.35);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.45);
}

.btn-accent svg {
    transition: transform var(--transition-fast);
}

.btn-accent:hover svg {
    transform: translateX(3px);
}

/* ===================================
   Waitlist Modal
   =================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: white;
    border-radius: 20px;
    max-width: 440px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-2xl);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.modal-overlay.active .modal-container {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--slate-100);
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-500);
    transition: all var(--transition-fast);
    z-index: 10;
}

.modal-close:hover {
    background: var(--slate-200);
    color: var(--slate-700);
}

.modal-content {
    padding: 32px;
}

.modal-header {
    text-align: center;
    margin-bottom: 24px;
}

.modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 16px;
}

.modal-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.modal-subtitle {
    font-size: 14px;
    color: var(--slate-600);
    line-height: 1.6;
}

/* Form Styles */
.waitlist-form-modal {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: var(--slate-700);
}

.form-group input,
.form-group select {
    padding: 10px 14px;
    border: 1px solid var(--slate-200);
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--slate-900);
    background: white;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.form-group input::placeholder {
    color: var(--slate-400);
}

.form-hint {
    font-size: 12px;
    color: var(--slate-500);
}

.form-error {
    font-size: 12px;
    color: #ef4444;
    display: none;
}

.form-error.show {
    display: block;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 480px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.btn-full {
    width: 100%;
    margin-top: 8px;
}

/* Success State */
.waitlist-success {
    text-align: center;
    padding: 20px 0;
}

.waitlist-success .success-icon {
    width: 80px;
    height: 80px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #16a34a;
}

.waitlist-success h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 12px;
}

.waitlist-success p {
    font-size: 15px;
    color: var(--slate-600);
    margin-bottom: 24px;
}

/* Email Verification */
.email-verification {
    text-align: center;
    padding: 20px 0;
}

.email-verification .verification-icon {
    width: 80px;
    height: 80px;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--primary);
}

.email-verification h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 12px;
}

.email-verification p {
    font-size: 15px;
    color: var(--slate-600);
    margin-bottom: 24px;
}

.otp-inputs {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 24px;
}

.otp-input {
    width: 48px;
    height: 56px;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    border: 2px solid var(--slate-200);
    border-radius: 12px;
    transition: all var(--transition-fast);
}

.otp-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.btn-link {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 14px;
    cursor: pointer;
    margin-top: 16px;
}

.btn-link:hover {
    text-decoration: underline;
}

/* ===================================
   Responsive Utilities
   =================================== */
@media (max-width: 767px) {
    .hero-visual {
        margin-top: 40px;
    }
    
    .browser-mockup {
        border-radius: 12px;
    }
    
    .browser-header {
        padding: 8px 12px;
    }
    
    .browser-dots span {
        width: 8px;
        height: 8px;
    }
}

/* Selection */
::selection {
    background: rgba(124, 58, 237, 0.2);
    color: var(--slate-900);
}

/* Focus styles */
:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Smooth scrolling */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}
