:root {
    --bg-black: #000000;
    --bg-surface: #0A0A0A;
    --bg-card: #111111;
    --border-color: #222222;
    --text-main: #FFFFFF;
    --text-muted: #888888;
    --gold: #FFD700;
    --gold-dark: #B39700;
    
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-black);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

/* Navigation */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    padding: 24px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}
.nav-brand {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -1px;
}
.nav-brand i { color: var(--gold); }

/* Buttons */
.btn-primary {
    background: var(--text-main);
    color: var(--bg-black);
    padding: 12px 24px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    transition: background 0.3s ease;
}
.btn-primary:hover { background: var(--gold); }

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--text-main);
    padding: 12px 24px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}
.btn-secondary:hover { background: var(--text-main); color: var(--bg-black); }

.btn-store {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 16px 32px;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    transition: border-color 0.3s ease, background 0.3s ease;
}
.btn-store i { font-size: 24px; color: var(--gold); }
.btn-store:hover { border-color: var(--gold); background: rgba(255,215,0,0.05); }

/* Layout */
.main-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 48px;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px;
}
.badge {
    border: 1px solid var(--border-color);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 40px;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: 8vw; /* Massive typography */
    line-height: 0.9;
    font-weight: 700;
    letter-spacing: -0.04em;
    margin-bottom: 32px;
    text-transform: uppercase;
}
.text-gold { color: var(--gold); }
.hero-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 48px;
}
.hero-buttons {
    display: flex;
    gap: 16px;
}

/* Features Zig-Zag Layout */
.features-section {
    padding: 80px 0 160px;
    display: flex;
    flex-direction: column;
    gap: 160px;
}
.feature-row {
    display: flex;
    align-items: center;
    gap: 80px;
}
.feature-row.reverse {
    flex-direction: row-reverse;
}
.feature-text {
    flex: 1;
}
.feature-icon {
    width: 64px; height: 64px;
    border-radius: 20px;
    background: linear-gradient(145deg, #1a1a1a 0%, #050505 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 32px; color: var(--gold);
    margin-bottom: 32px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.feature-text h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 24px;
}
.feature-text p {
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.6;
    max-width: 500px;
}

/* Feature Visuals */
.feature-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}
.glow-orb {
    position: absolute;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(255,215,0,0.08) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
}
.chat-mockup, .card-mockup, .proposal-mockup {
    background: linear-gradient(145deg, #0f0f0f 0%, #050505 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 32px;
    padding: 32px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
}
.feature-row.reverse .chat-mockup, 
.feature-row.reverse .card-mockup, 
.feature-row.reverse .proposal-mockup {
    transform: rotateY(10deg) rotateX(5deg);
}
.feature-visual:hover .chat-mockup,
.feature-visual:hover .card-mockup,
.feature-visual:hover .proposal-mockup {
    transform: rotateY(0) rotateX(0) translateY(-10px);
}

/* Chat Mockup Styles */
.chat-mockup { display: flex; flex-direction: column; gap: 16px; }
.chat-bubble {
    padding: 16px 20px;
    border-radius: 24px;
    font-size: 14px;
    max-width: 85%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.chat-bubble.left {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-top: 1px solid rgba(255,255,255,0.15);
    align-self: flex-start;
    border-bottom-left-radius: 6px;
}
.chat-bubble.right {
    background: linear-gradient(135deg, rgba(255,215,0,0.15) 0%, rgba(255,215,0,0.05) 100%);
    border: 1px solid rgba(255,215,0,0.2);
    border-top: 1px solid rgba(255,215,0,0.3);
    align-self: flex-end;
    border-bottom-right-radius: 6px;
    color: var(--text-main);
}

/* Card Mockup Styles */
.card-mockup { position: relative; padding: 16px; }
.card-mockup img { width: 100%; border-radius: 20px; }
.match-badge {
    position: absolute;
    top: 32px; right: 32px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 8px 16px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
}

/* Proposal Mockup Styles */
.proposal-header { font-family: var(--font-heading); font-size: 20px; margin-bottom: 24px; text-align: center; }
.proposal-line { height: 8px; background: #222; border-radius: 4px; margin-bottom: 12px; }
.proposal-line.short { width: 60%; margin-bottom: 32px; }
.proposal-price { font-family: var(--font-heading); font-size: 40px; color: var(--gold); text-align: center; font-weight: 700; }

/* Premium Banner */
.premium-banner {
    background: linear-gradient(135deg, #1A1700 0%, #0a0a0a 100%);
    border: 1px solid rgba(255,215,0,0.15);
    border-top: 1px solid rgba(255,215,0,0.4);
    border-radius: 32px;
    padding: 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: inset 0 2px 20px rgba(255, 215, 0, 0.05), 0 20px 40px rgba(0, 0, 0, 0.5);
}
.premium-text h2 { font-family: var(--font-heading); font-size: 40px; margin-bottom: 12px; letter-spacing: -1px; }
.premium-text p { color: var(--text-muted); font-size: 18px; max-width: 500px; }

/* Footer */
.footer {
    padding: 120px 0 80px;
    text-align: center;
    border-top: 1px solid var(--border-color);
}
.footer-title {
    font-family: var(--font-heading);
    font-size: 6vw;
    line-height: 0.9;
    letter-spacing: -0.04em;
    margin-bottom: 48px;
    color: #333; /* Very dark, stealthy text */
    transition: color 0.5s ease;
}
.footer:hover .footer-title { color: var(--text-main); }
.footer .hero-buttons { justify-content: center; margin-bottom: 80px; }

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    color: var(--text-muted);
    font-size: 14px;
}
.footer-links a:hover { color: var(--text-main); }

/* Responsive */
@media (max-width: 1024px) {
    .bento-grid { grid-template-columns: 1fr; }
    .bento-large, .bento-square, .bento-row { grid-column: span 1; }
    .bento-large { flex-direction: column; text-align: left; align-items: flex-start; }
    .row-layout { flex-direction: column; gap: 32px; align-items: flex-start; }
    .hero-title { font-size: 64px; }
}
@media (max-width: 768px) {
    .main-content { padding: 0 24px; }
    .nav { padding: 24px; }
    .hero-buttons { flex-direction: column; }
    .hero-title { font-size: 48px; }
    .footer-links { flex-direction: column; gap: 16px; }
}

/* Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Custom Cursor */
.custom-cursor {
    width: 24px;
    height: 24px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s, border-color 0.2s;
    mix-blend-mode: difference;
}
body:hover .custom-cursor {
    opacity: 1;
}
.custom-cursor.hovered {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-color: #FFFFFF;
    backdrop-filter: blur(4px);
}

/* Waitlist Modal */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}
.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 48px;
    border-radius: 24px;
    max-width: 480px;
    width: 90%;
    position: relative;
    transform: translateY(40px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal-overlay.active .modal-content {
    transform: translateY(0);
}
.modal-close {
    position: absolute;
    top: 24px; right: 24px;
    background: none; border: none;
    color: var(--text-muted);
    font-size: 24px;
    cursor: pointer;
    transition: color 0.2s;
}
.modal-close:hover { color: var(--text-main); }
.modal-header { text-align: center; margin-bottom: 32px; }
.modal-icon { font-size: 48px; color: var(--gold); margin-bottom: 16px; }
.modal-header h2 { font-family: var(--font-heading); font-size: 28px; margin-bottom: 8px; }
.modal-header p { color: var(--text-muted); font-size: 15px; }

.waitlist-form { display: flex; flex-direction: column; gap: 16px; }
.input-group {
    position: relative;
    display: flex; align-items: center;
}
.input-group i {
    position: absolute; left: 16px; color: var(--text-muted); font-size: 20px;
}
.input-group input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-main);
    font-size: 16px;
    font-family: var(--font-body);
    transition: border-color 0.3s;
}
.input-group input:focus { outline: none; border-color: var(--gold); }
.modal-submit { width: 100%; padding: 16px; font-size: 16px; }

.success-message {
    text-align: center;
    animation: fadeIn 0.4s ease;
}
.success-message i { font-size: 64px; color: #4CAF50; margin-bottom: 16px; }
.success-message h3 { font-family: var(--font-heading); font-size: 24px; margin-bottom: 8px; }
.success-message p { color: var(--text-muted); }

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
