* { margin: 0; padding: 0; box-sizing: border-box; }
:root { --amber: #F39C12; --amber-dark: #D68910; --bg: #080701; --bg-card: #120f06; --text: #fdf9f0; --text-muted: #9a8f7e; }
body { font-family: 'Montserrat', sans-serif; background: radial-gradient(ellipse at top, #1a1208 0%, var(--bg) 60%); background-attachment: fixed; color: var(--text); min-height: 100vh; }
.navbar { position: fixed; top: 0; left: 0; right: 0; display: flex; justify-content: space-between; align-items: center; padding: 16px 40px; z-index: 100; background: rgba(8,7,1,0.9); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(243,156,18,0.12); }
.nav-logo { display: flex; gap: 8px; align-items: center; text-decoration: none; color: var(--text-muted); font-size: 13px; font-weight: 500; transition: color 0.2s; }
.nav-logo:hover { color: var(--amber); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text-muted); font-size: 13px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--amber); }
.nav-cta { padding: 8px 20px; background: var(--amber); color: #080701 !important; border-radius: 20px; font-weight: 700 !important; }
.nav-cta:hover { background: var(--amber-dark) !important; }
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 120px 40px 80px; text-align: center; }
.hero-content { max-width: 680px; }
.hero-badge { display: inline-block; padding: 6px 16px; background: rgba(243,156,18,0.1); border: 1px solid rgba(243,156,18,0.35); border-radius: 20px; font-size: 11px; font-weight: 600; letter-spacing: 2px; color: var(--amber); margin-bottom: 20px; }
.hero-icon { font-size: 72px; margin-bottom: 12px; }
.hero-title { font-size: clamp(42px, 8vw, 80px); font-weight: 800; color: var(--text); margin-bottom: 12px; background: linear-gradient(135deg, #fff 30%, var(--amber) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-tagline { font-size: 20px; color: var(--amber); font-weight: 600; font-style: italic; margin-bottom: 20px; }
.hero-description { font-size: 16px; color: var(--text-muted); line-height: 1.7; max-width: 520px; margin: 0 auto 36px; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn { padding: 14px 32px; border-radius: 30px; font-size: 15px; font-weight: 700; text-decoration: none; transition: all 0.3s; display: inline-block; cursor: pointer; border: none; font-family: inherit; }
.btn-primary { background: var(--amber); color: #080701; box-shadow: 0 8px 24px rgba(243,156,18,0.3); }
.btn-primary:hover { background: var(--amber-dark); transform: translateY(-2px); }
.btn-secondary { background: transparent; color: var(--text); border: 2px solid rgba(243,156,18,0.4); }
.btn-secondary:hover { border-color: var(--amber); color: var(--amber); }
.waveform-bar { padding: 24px 0; background: rgba(243,156,18,0.03); border-top: 1px solid rgba(243,156,18,0.08); border-bottom: 1px solid rgba(243,156,18,0.08); display: flex; justify-content: center; }
.wave-container { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.wave-bars { display: flex; gap: 4px; align-items: center; height: 40px; }
.wave-bars span { width: 4px; background: var(--amber); border-radius: 2px; opacity: 0.6; animation: waveBounce 1.4s ease-in-out infinite; }
.wave-bars span:nth-child(2n) { animation-delay: 0.2s; }
.wave-bars span:nth-child(3n) { animation-delay: 0.4s; }
.wave-bars span:nth-child(4n) { animation-delay: 0.6s; }
.wave-bars span:nth-child(5n) { animation-delay: 0.1s; }
@keyframes waveBounce { 0%, 100% { height: 8px; } 50% { height: 32px; } }
.wave-label { font-size: 12px; color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase; }
.container { max-width: 1000px; margin: 0 auto; padding: 0 24px; }
.features { padding: 100px 0; }
.section-title { font-size: 36px; font-weight: 800; text-align: center; color: var(--text); margin-bottom: 12px; }
.section-subtitle { text-align: center; color: var(--text-muted); font-size: 16px; margin-bottom: 60px; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.feature-card { background: var(--bg-card); border: 1px solid rgba(243,156,18,0.12); border-radius: 20px; padding: 32px 24px; transition: all 0.3s; }
.feature-card:hover { border-color: var(--amber); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(243,156,18,0.12); }
.feature-icon { font-size: 36px; margin-bottom: 16px; }
.feature-card h3 { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.episodes-preview { padding: 100px 0; background: rgba(243,156,18,0.02); border-top: 1px solid rgba(243,156,18,0.06); border-bottom: 1px solid rgba(243,156,18,0.06); }
.episode-list { display: flex; flex-direction: column; gap: 16px; }
.episode-card { display: flex; align-items: center; gap: 24px; background: var(--bg-card); border: 1px solid rgba(243,156,18,0.1); border-radius: 16px; padding: 24px; transition: all 0.3s; }
.episode-card:hover { border-color: var(--amber); transform: translateX(4px); }
.episode-number { font-size: 11px; font-weight: 700; color: var(--amber); letter-spacing: 1px; min-width: 54px; }
.episode-info h3 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.episode-info p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.episode-duration { font-size: 12px; color: var(--text-muted); white-space: nowrap; margin-left: auto; }
.cta-section { padding: 100px 0; }
.cta-card { background: linear-gradient(135deg, #1a1208 0%, #120f06 100%); border: 1px solid rgba(243,156,18,0.25); border-radius: 28px; padding: 60px 40px; text-align: center; }
.cta-card h2 { font-size: 32px; font-weight: 800; color: var(--text); margin-bottom: 12px; }
.cta-card > p { color: var(--text-muted); font-size: 16px; margin-bottom: 32px; line-height: 1.6; }
.waitlist-form { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.waitlist-input { padding: 14px 20px; background: rgba(255,255,255,0.05); border: 1px solid rgba(243,156,18,0.3); border-radius: 30px; color: var(--text); font-family: inherit; font-size: 15px; width: 280px; outline: none; transition: border-color 0.2s; }
.waitlist-input:focus { border-color: var(--amber); }
.waitlist-input::placeholder { color: var(--text-muted); }
.cta-disclaimer { font-size: 12px; color: var(--text-muted); opacity: 0.6; }
.footer { padding: 40px 0; border-top: 1px solid rgba(243,156,18,0.08); text-align: center; }
.footer-links { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.footer-links a { text-decoration: none; color: var(--text-muted); font-size: 13px; transition: color 0.2s; }
.footer-links a:hover { color: var(--amber); }
.footer-copy { font-size: 12px; color: var(--text-muted); opacity: 0.5; }
@media (max-width: 600px) { .navbar { padding: 14px 20px; } .episode-card { flex-direction: column; align-items: flex-start; } .episode-duration { margin-left: 0; } }
