* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; background: #000; color: #fff; overflow-x: hidden; }
:root { --gold: #d4af37; --black: #000; --dark-gray: #1a1a1a; --light-gray: #333; }
.navbar { position: fixed; top: 0; left: 0; right: 0; background: rgba(0,0,0,0.95); backdrop-filter: blur(10px); padding: 1rem 2rem; display: flex; justify-content: flex-start; align-items: center; z-index: 1000; border-bottom: 1px solid rgba(212,175,55,0.1); }
.logo { font-size: 1.5rem; font-weight: 700; color: var(--gold); display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.logo img { height: 50px; width: auto; }
.logo-text { font-size: 1.5rem; font-weight: 700; color: var(--gold); }
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 6rem 2rem 2rem; background: linear-gradient(135deg,#000 0%,#1a1a1a 100%); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -50%; right: -50%; width: 100%; height: 100%; background: radial-gradient(circle,rgba(212,175,55,0.1) 0%,transparent 70%); animation: float 20s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-20px,20px); } }
.hero-content { max-width: 1200px; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
.hero-text h1 { font-size: 3.5rem; font-weight: 800; margin-bottom: 1.5rem; background: linear-gradient(135deg,#fff 0%,var(--gold) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1.2; }
.hero-text p { font-size: 1.2rem; color: rgba(255,255,255,0.8); margin-bottom: 2rem; line-height: 1.6; }
.app-store-btn { display: inline-flex; align-items: center; gap: 1rem; background: transparent; color: var(--gold); padding: 1rem 2.5rem; border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 1.1rem; transition: all 0.3s ease; border: 2px solid var(--gold); }
.app-store-btn img { height: 24px; width: auto; }
.app-store-btn:hover { background: var(--gold); color: #000; }
.hero-image { display: flex; justify-content: center; align-items: center; }
.phone-mockup { width: 100%; max-width: 350px; aspect-ratio: 9/19.5; background: linear-gradient(135deg,#1a1a1a 0%,#000 100%); border-radius: 40px; border: 8px solid #333; box-shadow: 0 20px 60px rgba(0,0,0,0.5); position: relative; overflow: hidden; animation: phoneFloat 3s ease-in-out infinite; }
@keyframes phoneFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
.phone-screen { width: 100%; height: 100%; background: #000; display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.features { padding: 7rem 2rem; background: #060606; }
.features-container { max-width: 1140px; margin: 0 auto; }
.section-eyebrow { text-align: center; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.18em; color: var(--gold); text-transform: uppercase; margin-bottom: 1rem; opacity: 0.9; }
.section-title { text-align: center; font-size: 3rem; font-weight: 800; margin-bottom: 0.85rem; background: linear-gradient(135deg, #fff 30%, var(--gold) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1.15; letter-spacing: -0.02em; }
.section-subtitle { text-align: center; font-size: 1.05rem; color: rgba(255,255,255,0.45); margin: 0 auto 4rem; max-width: 480px; line-height: 1.6; }
.bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; gap: 1.1rem; }
.bento-card { background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.07); border-radius: 22px; padding: 2rem; position: relative; overflow: hidden; transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), border-color 0.3s, box-shadow 0.3s; }
.bento-card::after { content: ''; position: absolute; inset: 0; border-radius: 22px; background: linear-gradient(135deg, rgba(212,175,55,0.07) 0%, transparent 55%); opacity: 0; transition: opacity 0.3s; pointer-events: none; }
.bento-card:hover { border-color: rgba(212,175,55,0.3); transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 0 1px rgba(212,175,55,0.08); }
.bento-card:hover::after { opacity: 1; }
.bento-wide { grid-column: span 2; }
.bento-glow { position: absolute; border-radius: 50%; filter: blur(55px); pointer-events: none; opacity: 0.18; }
.bento-badge { display: inline-flex; align-items: center; gap: 0.35rem; background: rgba(212,175,55,0.1); color: var(--gold); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.28rem 0.7rem; border-radius: 100px; border: 1px solid rgba(212,175,55,0.22); margin-bottom: 1.1rem; }
.bento-icon { font-size: 2.2rem; margin-bottom: 1rem; display: block; line-height: 1; }
.bento-card h3 { font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 0.55rem; line-height: 1.3; letter-spacing: -0.01em; }
.bento-wide h3 { font-size: 1.5rem; }
.bento-card p { color: rgba(255,255,255,0.5); line-height: 1.65; font-size: 0.93rem; }
.cta { padding: 6rem 2rem; background: linear-gradient(135deg,#000 0%,#1a1a1a 100%); text-align: center; }
.cta h2 { font-size: 2.5rem; margin-bottom: 1.5rem; color: var(--gold); }
.cta p { font-size: 1.2rem; color: rgba(255,255,255,0.8); margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.footer { background: #080808; padding: 3rem 2rem 2rem; border-top: 1px solid rgba(212,175,55,0.1); }
.footer-inner { max-width: 1140px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 2rem; margin-bottom: 2.5rem; }
.footer-brand { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.footer-logo img { height: 32px; width: auto; }
.footer-logo span { font-size: 1.2rem; font-weight: 700; color: var(--gold); }
.footer-tagline { color: rgba(255,255,255,0.35); font-size: 0.85rem; }
.footer-nav { display: flex; gap: 2rem; align-items: center; flex-wrap: wrap; }
.footer-nav a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-nav a:hover { color: var(--gold); }
.footer-copy { text-align: center; color: rgba(255,255,255,0.2); font-size: 0.8rem; max-width: 1140px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 1.5rem; }
.legal-page { padding: 6rem 2rem 2rem; max-width: 900px; margin: 0 auto; min-height: 100vh; }
.legal-page h1 { font-size: 2.5rem; color: var(--gold); margin-bottom: 1rem; }
.legal-page .last-updated { color: rgba(255,255,255,0.5); margin-bottom: 2rem; }
.legal-page h2 { font-size: 1.8rem; color: var(--gold); margin-top: 2rem; margin-bottom: 1rem; }
.legal-page p, .legal-page li { color: rgba(255,255,255,0.8); line-height: 1.8; margin-bottom: 1rem; }
.legal-page ul { margin-left: 2rem; margin-bottom: 1rem; }
.back-btn { display: inline-flex; color: var(--gold); text-decoration: none; margin-bottom: 2rem; font-weight: 500; }
@media (max-width: 900px) { .bento-grid { grid-template-columns: repeat(2, 1fr); } .bento-wide { grid-column: span 2; } }
@media (max-width: 768px) { .hero-content { grid-template-columns: 1fr; text-align: center; } .hero-text h1 { font-size: 2.5rem; } .hero-image { order: -1; } .phone-mockup { max-width: 250px; } .section-title { font-size: 2.2rem; } .bento-grid { grid-template-columns: 1fr; } .bento-wide { grid-column: span 1; } }
