@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&family=Outfit:wght@300;400;600;900&display=swap');

:root {
    --primary-orange: #FF6B35;
    --primary-navy: #0F3460;
    --deep-bg: #050505;
    --text-white: #FFFFFF;
    --text-dim: #999999;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --accent-gradient: linear-gradient(135deg, #FF6B35 0%, #FF9F4B 100%);
    --card-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

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

/* Background Atmosphere */
#page-video-bg {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -2;
    filter: brightness(0.3) blur(15px);
    opacity: 0.6;
}

.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: -1;
}

/* --- NAVIGATION --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 8%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.6rem;
    color: #fff;
    text-decoration: none;
    letter-spacing: -1px;
}

.logo img {
    height: 36px;
}

/* --- HERO SECTION --- */
.hero {
    min-height: 100vh;
    padding: 180px 8% 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-text {
    flex: 1.2;
    max-width: 650px;
}

.hero-text h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 5rem;
    line-height: 0.95;
    font-weight: 900;
    margin-bottom: 30px;
    letter-spacing: -3px;
    background: linear-gradient(180deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline {
    font-size: 1.6rem;
    color: var(--text-dim);
    margin-bottom: 50px;
    line-height: 1.3;
}

.waitlist-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 32px;
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(40px);
    max-width: 480px;
}

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

/* Phone Mockup */
.phone-mockup {
    width: 320px;
    height: 640px;
    background: #000;
    border: 14px solid #1a1a1a;
    border-radius: 54px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 100px 200px -40px rgba(0, 0, 0, 0.9);
}

#hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-screen {
    position: absolute;
    width: 200px;
    border-radius: 24px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.screen-1 {
    bottom: -20px;
    left: -60px;
    transform: rotate(-12deg);
    animation: float1 6s infinite ease-in-out;
}

.screen-2 {
    top: 40px;
    right: -60px;
    transform: rotate(12deg);
    animation: float2 5s infinite ease-in-out;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0) rotate(-12deg); }
    50% { transform: translateY(-20px) rotate(-10deg); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0) rotate(12deg); }
    50% { transform: translateY(20px) rotate(14deg); }
}

/* Form Styles */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    color: var(--text-dim);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    margin-bottom: 8px;
    padding-left: 4px;
}

input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px 24px;
    border-radius: 16px;
    font-size: 1rem;
    color: #fff;
    transition: 0.3s;
}

input:focus {
    outline: none;
    border-color: var(--primary-orange);
    background: rgba(255, 255, 255, 0.08);
}

.btn-submit {
    width: 100%;
    background: var(--accent-gradient);
    color: #000;
    border: none;
    padding: 20px;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn-submit:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

/* --- BENTO GRID FEATURES --- */
.features {
    padding: 140px 8%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-label {
    background: var(--primary-orange);
    color: #000;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.section-head h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 60px;
}

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

.bento-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
}

.bento-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

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

.bento-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.bento-card p {
    color: var(--text-dim);
    font-size: 1.1rem;
    max-width: 300px;
}

.bento-icon {
    font-size: 3rem;
    margin-bottom: 24px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- FAQ SECTION --- */
.faq-section {
    padding: 100px 8%;
    background: #000;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.faq-answer {
    margin-top: 20px;
    color: var(--text-dim);
    font-size: 1.1rem;
    max-height: 0;
    overflow: hidden;
    transition: 0.5s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item i {
    transition: 0.3s;
}

.faq-item.active i {
    transform: rotate(180deg);
}

/* --- FOOTER --- */
footer {
    padding: 120px 8% 60px;
    background: linear-gradient(0deg, #0a0a0a 0%, #050505 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-brand h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-dim);
    max-width: 250px;
}

.footer-col h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: var(--primary-orange);
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 15px; }
.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    transition: 0.3s;
}
.footer-links a:hover { color: #fff; }

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.social-links a {
    font-size: 1.5rem;
    color: var(--text-dim);
    transition: 0.3s;
}
.social-links a:hover { color: #fff; }

.download-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.store-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #111;
    border: 1px solid #333;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}

.store-badge:hover { background: #222; transform: translateY(-3px); }

.copy {
    text-align: center;
    color: #444;
    font-size: 0.8rem;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .hero { flex-direction: column; text-align: center; padding-top: 140px; }
    .hero-text h1 { font-size: 3.5rem; letter-spacing: -2px; }
    .tagline { margin: 0 auto 40px; }
    .waitlist-card { margin: 0 auto; }
    .bento-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
}

@media (max-width: 768px) {
    .hero-text h1 { font-size: 3rem; }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-card.large, .bento-card.wide { grid-column: span 1; grid-row: span 1; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .section-head h2 { font-size: 2.5rem; }
}