* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --bg: #0a0a0c; --card: #161618; --elevated: #222226;
  --accent: #E8870E; --accent-bright: #FFB347; --accent-gold: #FFC857;
  --teal: #53D8A8; --success: #22C55E; --danger: #EF4444; --warning: #FBBF24;
  --purple: #A855F7; --blue: #3B82F6; --pink: #EC4899;
  --text: #f5f5f5; --secondary: #9CA3AF; --muted: #6b7280;
  --border: #2a2a2e;
}
html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }
a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-bright); }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ===== NAV ===== */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; backdrop-filter: blur(20px); background: rgba(10,10,12,0.85); border-bottom: 1px solid rgba(42,42,46,0.3); }
nav .container { display: flex; align-items: center; justify-content: space-between; height: 64px; }
nav .logo { display: flex; align-items: center; gap: 10px; font-size: 18px; font-weight: 800; }
nav .logo img { width: 32px; height: 32px; border-radius: 8px; object-fit: contain; }
nav .logo span { color: var(--accent); }
nav ul { list-style: none; display: flex; gap: 28px; }
nav ul a { color: var(--secondary); font-size: 14px; font-weight: 500; }
nav ul a:hover { color: var(--text); }
nav .cta { background: var(--accent); color: var(--bg); padding: 8px 20px; border-radius: 10px; font-weight: 700; font-size: 13px; }
nav .cta:hover { background: var(--accent-bright); color: var(--bg); }

/* ===== HERO ===== */
.hero { padding: 160px 0 100px; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: 50%; left: 50%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(232,135,14,0.08) 0%, transparent 70%); transform: translate(-50%, -50%); pointer-events: none; }
.hero h1 { font-size: clamp(40px, 6vw, 64px); font-weight: 900; line-height: 1.1; margin-bottom: 20px; }
.hero h1 .glow { color: var(--accent); text-shadow: 0 0 40px rgba(232,135,14,0.3); }
.hero p { font-size: 18px; color: var(--secondary); max-width: 560px; margin: 0 auto 36px; line-height: 1.7; }
.hero .badges { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero .badges a { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; background: var(--card); border: 1px solid var(--border); border-radius: 14px; color: var(--text); font-weight: 600; font-size: 15px; transition: all 0.2s; }
.hero .badges a:hover { border-color: var(--accent); background: rgba(232,135,14,0.05); }
.hero .badges svg { width: 24px; height: 24px; }
.hero-icon { width: 240px; height: 240px; margin: 0 auto 32px; object-fit: contain; filter: drop-shadow(0 0 40px rgba(232,135,14,0.3)); }

/* ===== FEATURES ===== */
.features { padding: 80px 0; }
.features .section-label { text-align: center; font-size: 11px; text-transform: uppercase; letter-spacing: 3px; color: var(--accent); font-weight: 700; margin-bottom: 12px; }
.features h2 { text-align: center; font-size: 36px; font-weight: 800; margin-bottom: 48px; }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.feature-card { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 28px; transition: all 0.25s; position: relative; overflow: hidden; }
.feature-card:hover { border-color: rgba(232,135,14,0.3); transform: translateY(-2px); }
.feature-card .icon { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 16px; }
.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ===== STATS BAR ===== */
.stats-bar { padding: 60px 0; background: var(--card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-bar .container { display: flex; justify-content: space-evenly; flex-wrap: wrap; gap: 32px; }
.stats-bar .stat { text-align: center; }
.stats-bar .stat .num { font-size: 42px; font-weight: 900; color: var(--accent); }
.stats-bar .stat .label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 2px; }

/* ===== CTA SECTION ===== */
.cta-section { padding: 100px 0; text-align: center; }
.cta-section h2 { font-size: 36px; font-weight: 800; margin-bottom: 16px; }
.cta-section p { color: var(--secondary); font-size: 16px; margin-bottom: 32px; }
.cta-section .btn { display: inline-flex; align-items: center; gap: 8px; padding: 16px 36px; background: var(--accent); color: var(--bg); border-radius: 14px; font-weight: 700; font-size: 16px; transition: all 0.2s; }
.cta-section .btn:hover { background: var(--accent-bright); transform: translateY(-1px); }

/* ===== FOOTER ===== */
footer { padding: 48px 0; border-top: 1px solid var(--border); }
footer .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
footer .links { display: flex; gap: 24px; }
footer .links a { color: var(--muted); font-size: 13px; }
footer .links a:hover { color: var(--text); }
footer .copy { color: var(--muted); font-size: 12px; }

/* ===== LEGAL PAGES ===== */
.legal { padding: 120px 0 60px; max-width: 720px; margin: 0 auto; }
.legal h1 { font-size: 32px; font-weight: 800; margin-bottom: 8px; }
.legal .updated { color: var(--muted); font-size: 13px; margin-bottom: 32px; }
.legal h2 { font-size: 18px; font-weight: 700; margin-top: 32px; margin-bottom: 8px; color: var(--accent); }
.legal p, .legal li { font-size: 14px; color: var(--secondary); line-height: 1.8; margin-bottom: 12px; }
.legal ul { padding-left: 20px; }

/* ===== CREATOR PAGES ===== */
.creator-hero { padding: 140px 0 60px; text-align: center; }
.creator-hero .badge { display: inline-block; padding: 6px 16px; border-radius: 20px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; }
.creator-hero h1 { font-size: 36px; font-weight: 800; margin-bottom: 12px; }
.creator-hero p { color: var(--secondary); font-size: 16px; max-width: 560px; margin: 0 auto 32px; }
.creator-form { max-width: 560px; margin: 0 auto; padding: 0 24px 80px; }
.creator-form label { display: block; font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-bottom: 6px; margin-top: 16px; }
.creator-form input, .creator-form textarea, .creator-form select { width: 100%; background: var(--elevated); border: 1px solid var(--border); color: var(--text); padding: 14px 16px; border-radius: 12px; font-size: 14px; font-family: inherit; transition: border-color 0.2s; }
.creator-form input:focus, .creator-form textarea:focus { outline: none; border-color: var(--accent); }
.creator-form textarea { height: 100px; resize: vertical; }
.creator-form button { margin-top: 24px; width: 100%; padding: 16px; background: var(--accent); color: var(--bg); border: none; border-radius: 12px; font-size: 15px; font-weight: 700; cursor: pointer; transition: all 0.2s; }
.creator-form button:hover { background: var(--accent-bright); }
.creator-form .note { font-size: 12px; color: var(--muted); margin-top: 12px; text-align: center; }

/* ===== SCROLL ANIMATIONS ===== */
.reveal { opacity: 0 !important; transform: translateY(60px) scale(0.95); transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1 !important; transform: translateY(0) scale(1); }
.reveal-left { opacity: 0 !important; transform: translateX(-80px) scale(0.96); transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-left.visible { opacity: 1 !important; transform: translateX(0) scale(1); }
.reveal-right { opacity: 0 !important; transform: translateX(80px) scale(0.96); transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-right.visible { opacity: 1 !important; transform: translateX(0) scale(1); }

/* Staggered delays */
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* Blur-in variant */
.reveal-blur { opacity: 0 !important; transform: translateY(30px); filter: blur(10px); transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1), filter 1s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-blur.visible { opacity: 1 !important; transform: translateY(0); filter: blur(0); }

/* Scroll page hero sections */
.scroll-section { min-height: 70vh; display: flex; align-items: center; padding: 100px 0; position: relative; overflow: hidden; }
.scroll-section:nth-child(even) { border-top: 1px solid var(--border); }
.scroll-section .content { max-width: 560px; }
.scroll-section .content .eyebrow { font-size: 12px; text-transform: uppercase; letter-spacing: 3px; font-weight: 700; margin-bottom: 14px; }
.scroll-section .content h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 900; line-height: 1.12; margin-bottom: 18px; }
.scroll-section .content p { font-size: 17px; color: var(--secondary); line-height: 1.75; }
.scroll-section .visual { flex: 1; display: flex; align-items: center; justify-content: center; font-size: 100px; opacity: 0; transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s; }
.scroll-section .visual.visible { opacity: 0.12; transform: scale(1.1); }

.scroll-layout { display: flex; gap: 60px; align-items: center; width: 100%; padding-left: 40px; }
.scroll-layout.reverse { flex-direction: row-reverse; padding-left: 0; padding-right: 40px; text-align: right; }

/* Glow line accent on scroll sections */
.scroll-section::after { content: ''; position: absolute; left: 0; top: 0; width: 3px; height: 100%; background: linear-gradient(to bottom, transparent, var(--accent), transparent); opacity: 0; transition: opacity 0.8s; }
.scroll-section.glowing::after { opacity: 0.3; }

@media (max-width: 768px) {
  .scroll-layout, .scroll-layout.reverse { flex-direction: column; gap: 32px; padding-left: 0; padding-right: 0; text-align: left; }
  .scroll-section .visual { display: none; }
  .scroll-section { min-height: auto; padding: 60px 0; }
  .scroll-section::after { display: none; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  nav ul { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .stats-bar .container { flex-direction: column; align-items: center; }
  footer .container { flex-direction: column; text-align: center; }
}
