:root {
  --bg: #0e0e1a;
  --surface: #16162a;
  --surface2: #1e1e35;
  --accent: #f59e0b;
  --accent-dim: rgba(245, 158, 11, 0.12);
  --text: #f0ede8;
  --text-muted: #8a8a9a;
  --border: rgba(240, 237, 232, 0.08);
  --radius: 12px;
  --max-w: 1100px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  padding: 1.5rem var(--max-w);
  margin: 0 auto;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem var(--max-w) 4rem;
  min-height: 88vh;
}
.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.hero__headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.hero__sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 44ch;
  line-height: 1.7;
}

/* Hero Visual */
.hero__visual {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 2rem;
}
.clip-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: 320px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.clip-card__bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1rem;
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
}
.clip-card__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}
.clip-card__label {
  margin-left: auto;
  font-size: 0.7rem;
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
}
.clip-card__player {
  position: relative;
  aspect-ratio: 9/16;
  background: linear-gradient(135deg, #1a1a2e 0%, #252545 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.15);
  border: 1.5px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.clip-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem;
}
.overlay-line {
  height: 2px;
  width: 80%;
  background: var(--border);
  border-radius: 1px;
}
.overlay-line.short { width: 60%; }
.overlay-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: var(--accent);
  color: #0e0e1a;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
}
.clip-card__meta {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}
.stack-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--accent);
  color: #0e0e1a;
  border-radius: 16px;
  padding: 0.75rem 1.1rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(245,158,11,0.3);
}
.stack-badge span {
  display: block;
  font-family: 'DM Sans', sans-serif;
}
.stack-badge span:first-child {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}
.stack-badge span:nth-child(2) { font-size: 0.7rem; font-weight: 500; margin-top: 0.2rem; }
.stack-badge span:last-child { font-size: 0.65rem; opacity: 0.7; }

/* Features */
.features {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem var(--max-w);
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.feature { padding: 0.5rem 0; }
.feature__icon {
  width: 48px;
  height: 48px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.feature__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--text);
}
.feature__body { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; }

/* Stats */
.stats {
  padding: 5rem var(--max-w);
}
.stats__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.stat__value {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.stat__label { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }

/* Local Biz */
.localbiz {
  padding: 5rem var(--max-w);
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
}
.localbiz__inner { max-width: 700px; }
.localbiz__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.localbiz__headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--text);
}
.localbiz__body { font-size: 1rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 2.5rem; }
.biz-types {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.biz-type {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.biz-type__icon { color: var(--accent); }

/* Process */
.process {
  padding: 5rem var(--max-w);
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.process__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2.5rem;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.step__num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-dim);
  margin-bottom: 0.75rem;
  line-height: 1;
}
.step__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--text);
}
.step__body { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

/* Closing */
.closing {
  padding: 7rem var(--max-w);
  background: var(--bg);
}
.closing__inner { max-width: 640px; }
.closing__headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--text);
}
.closing__sub { font-size: 1rem; color: var(--text-muted); line-height: 1.7; }

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem var(--max-w);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
}
.footer__copy { font-size: 0.82rem; color: var(--text-muted); }

/* Responsive */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 3rem var(--max-w) 4rem;
    min-height: auto;
    gap: 3rem;
  }
  .hero__visual { display: none; }
  .features__grid { grid-template-columns: 1fr; }
  .stats__row { grid-template-columns: repeat(2, 1fr); }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .nav, .hero, .features, .stats, .localbiz, .process, .closing, .footer {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .stats__row { grid-template-columns: 1fr 1fr; padding: 1.5rem; }
  .process__steps { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; gap: 0.75rem; }
}