:root {
  --bg: #0E0E0E;
  --bg-warm: #141210;
  --bg-card: #1A1816;
  --fg: #F5F0E8;
  --fg-muted: #8A8078;
  --accent: #FF5722;
  --accent-dim: rgba(255, 87, 34, 0.12);
  --border: rgba(245, 240, 232, 0.08);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Syne', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 8rem 6rem 5rem;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255,87,34,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner { max-width: 560px; }

.hero-label {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(255,87,34,0.2);
  padding: 0.3rem 0.8rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-headline .accent { color: var(--accent); }

.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  margin-bottom: 2rem;
  max-width: 460px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-family: 'Syne', sans-serif;
  font-weight: 500;
  color: var(--fg);
}

.hero-proof .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--fg-muted);
}

/* VIDEO MOCKUP */
.hero-visual { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }

.video-mockup {
  width: 100%;
  max-width: 360px;
  background: #1E1B18;
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.vm-topbar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: #252220;
  border-bottom: 1px solid var(--border);
}

.vm-dots { display: flex; gap: 5px; }
.vm-dots span { width: 10px; height: 10px; border-radius: 50%; background: #3a3632; display: block; }
.vm-title { font-size: 0.75rem; color: var(--fg-muted); font-family: 'DM Sans', sans-serif; }

.vm-player {
  aspect-ratio: 9/16;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vm-play {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  position: relative;
}
.vm-play::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  border: 12px solid transparent;
  border-left: 20px solid rgba(255,255,255,0.8);
}

.vm-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
}

.vm-handle { font-size: 0.8rem; font-weight: 600; margin-bottom: 0.4rem; }
.vm-caption { font-size: 0.72rem; line-height: 1.4; color: rgba(255,255,255,0.85); margin-bottom: 0.6rem; }
.vm-stats { display: flex; gap: 1rem; font-size: 0.72rem; }

.vm-badge {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(255,87,34,0.15);
  padding: 0.3rem 0.9rem;
  border-radius: 2rem;
}

/* STATS */
.stats {
  padding: 5rem 6rem;
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item { text-align: center; }

.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* SHOWCASE */
.showcase {
  padding: 7rem 6rem;
  background: var(--bg);
}

.showcase-header {
  margin-bottom: 3.5rem;
}

.showcase-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 0.75rem;
}

.showcase-header p {
  color: var(--fg-muted);
  font-size: 1rem;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

.show-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  transition: border-color 0.2s;
}

.show-item:hover { border-color: rgba(255,87,34,0.25); }

.show-featured { grid-row: span 2; }
.show-wide { grid-column: span 2; }

.show-badge {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 0.25rem 0.7rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}

.show-badge-small { font-size: 0.6rem; }

.show-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.show-item p {
  color: var(--fg-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.show-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.show-tags span {
  font-size: 0.7rem;
  color: var(--fg-muted);
  background: rgba(245,240,232,0.05);
  padding: 0.2rem 0.6rem;
  border-radius: 2rem;
}

/* PROCESS */
.process {
  padding: 7rem 6rem;
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
}

.process h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 4rem;
}

.process-steps {
  display: flex;
  align-items: center;
  gap: 0;
}

.step {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 1rem;
}

.step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.step p { color: var(--fg-muted); font-size: 0.88rem; line-height: 1.6; }

.step-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--accent), transparent);
  flex-shrink: 0;
  margin: 0 1rem;
  align-self: center;
}

/* NICHES */
.niches {
  padding: 7rem 6rem;
  background: var(--bg);
}

.niches h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 3rem;
}

.niches-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.niche-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.75rem;
  transition: border-color 0.2s;
}

.niche-card:hover { border-color: rgba(255,87,34,0.2); }

.niche-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  line-height: 1;
}

.niche-info h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.niche-info p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.niches-cta {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.niches-cta p {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
}

.niches-cta span { color: var(--fg-muted); font-size: 0.88rem; }

/* CLOSING */
.closing {
  padding: 8rem 6rem;
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  text-align: center;
}

.closing-inner { max-width: 700px; margin: 0 auto; }

.closing h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.closing h2 .accent { color: var(--accent); }

.closing p {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 3rem;
}

.closing-proof {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
}

.cp-item {
  padding: 1.5rem 2.5rem;
  text-align: center;
}

.cp-num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.cp-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cp-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

/* FOOTER */
footer {
  padding: 3rem 6rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background: var(--bg);
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.footer-meta { text-align: right; }
.footer-meta p { font-size: 0.8rem; color: var(--fg-muted); }
.footer-copy { margin-top: 0.5rem; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 6rem 2rem 4rem;
    text-align: center;
  }
  .hero-inner { max-width: 100%; }
  .hero-sub { max-width: 100%; }
  .hero-proof { justify-content: center; }
  .hero-visual { display: none; }
  .stats { padding: 4rem 2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase { padding: 5rem 2rem; }
  .showcase-grid { grid-template-columns: 1fr; }
  .show-featured, .show-wide { grid-column: span 1; grid-row: span 1; }
  .process { padding: 5rem 2rem; }
  .process-steps { flex-direction: column; gap: 1rem; }
  .step-connector { width: 2px; height: 30px; background: linear-gradient(to bottom, var(--accent), transparent); margin: 0 auto; }
  .niches { padding: 5rem 2rem; }
  .closing { padding: 5rem 2rem; }
  footer { padding: 2rem; flex-direction: column; gap: 1rem; align-items: flex-start; }
  .footer-meta { text-align: left; }
}

@media (max-width: 480px) {
  .closing-proof { flex-direction: column; }
  .cp-divider { width: 60px; height: 1px; }
}
