:root {
  --bg: #FAF7F2;
  --fg: #1A1A1A;
  --accent: #E8A838;
  --accent-dark: #C48A1A;
  --secondary: #6B6560;
  --muted: #9E9890;
  --surface: #F0EBE3;
  --border: #E0D9CF;
  --phone-bg: #111111;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* — NAV — */
nav {
  padding: 20px 48px;
  display: flex;
  align-items: center;
}
.nav-inner {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.wordmark {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

/* — HERO — */
.hero {
  padding: 64px 48px 80px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--secondary);
  line-height: 1.7;
  max-width: 440px;
}

/* — HERO VISUAL: PHONE MOCKUP — */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-frame {
  width: 240px;
  background: var(--phone-bg);
  border-radius: 32px;
  padding: 12px;
  box-shadow: 0 32px 64px rgba(0,0,0,0.15), 0 0 0 1px rgba(255,255,255,0.08);
}
.phone-screen {
  background: #1C1C1E;
  border-radius: 24px;
  overflow: hidden;
  padding-bottom: 12px;
}
.video-thumbnail {
  width: 100%;
  aspect-ratio: 9/16;
  background: linear-gradient(135deg, #2C2C2E 0%, #3A3A3C 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image:
    radial-gradient(circle at 30% 40%, rgba(232,168,56,0.15) 0%, transparent 60%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 20px,
      rgba(255,255,255,0.02) 20px,
      rgba(255,255,255,0.02) 21px
    );
}
.vt-play {
  font-size: 2.5rem;
  color: white;
  opacity: 0.7;
}
.vt-overlay {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.vt-lang {
  background: var(--accent);
  color: #111;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}
.vt-views {
  color: rgba(255,255,255,0.6);
  font-size: 0.65rem;
  font-weight: 500;
}
.caption-preview {
  padding: 10px 12px 6px;
}
.cp-line {
  color: rgba(255,255,255,0.85);
  font-size: 0.72rem;
  line-height: 1.5;
  font-family: 'DM Sans', sans-serif;
}
.account-preview {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 0;
}
.ap-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: #111;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ap-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.ap-name {
  color: rgba(255,255,255,0.9);
  font-size: 0.65rem;
  font-weight: 600;
}
.ap-followers {
  color: rgba(255,255,255,0.4);
  font-size: 0.6rem;
}

.hero-tags {
  display: flex;
  gap: 12px;
  margin-top: 48px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
}
.hero-tags span {
  background: var(--surface);
  color: var(--secondary);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

/* — SHOWCASE — */
.showcase {
  padding: 80px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.showcase-inner { max-width: 1200px; margin: 0 auto; }
.showcase-label {
  margin-bottom: 36px;
}
.showcase-label span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.sc-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.2s ease;
}
.sc-card:hover { transform: translateY(-2px); }
.sc-icon {
  width: 44px;
  height: 44px;
  background: var(--surface);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}
.sc-icon svg { width: 22px; height: 22px; }
.sc-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--fg);
}
.sc-card p {
  font-size: 0.9rem;
  color: var(--secondary);
  line-height: 1.6;
}

/* — HOW IT WORKS — */
.hiw { padding: 80px 48px; }
.hiw-inner { max-width: 1200px; margin: 0 auto; }
.section-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 48px;
}
.hiw-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hiw-step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}
.hiw-step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  min-width: 72px;
}
.step-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}
.step-body p {
  font-size: 0.95rem;
  color: var(--secondary);
  line-height: 1.7;
  max-width: 580px;
}

/* — THE GAP — */
.thegap {
  padding: 80px 48px;
  background: var(--fg);
  color: white;
}
.thegap-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
  display: block;
  font-weight: 500;
}
.thegap-divider {
  width: 1px;
  height: 120px;
  background: rgba(255,255,255,0.1);
}
.thegap-text h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}
.thegap-text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 12px;
}
.thegap-text p:last-child { margin-bottom: 0; }

/* — MANIFESTO — */
.manifesto {
  padding: 100px 48px;
  background: var(--accent);
}
.manifesto-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.manifesto blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 400;
  font-style: italic;
  color: #1A1A1A;
  line-height: 1.55;
  margin-bottom: 24px;
}
.manifesto-attr {
  font-size: 0.85rem;
  color: rgba(26,26,26,0.5);
  font-weight: 500;
}

/* — FOOTER — */
footer {
  padding: 48px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.footer-wordmark {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fg);
  display: block;
  margin-bottom: 6px;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--muted);
}
.footer-meta p {
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 400px;
  text-align: right;
  line-height: 1.6;
}

/* — MOBILE — */
@media (max-width: 768px) {
  nav, .hero, .showcase, .hiw, .thegap, .manifesto, footer { padding-left: 24px; padding-right: 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .phone-frame { width: 180px; }
  .hero-headline { font-size: 2.2rem; }
  .hero-sub { font-size: 1rem; }
  .showcase-grid { grid-template-columns: 1fr; }
  .thegap-inner { flex-direction: column; gap: 40px; }
  .thegap-divider { display: none; }
  .stat-num { font-size: 3.5rem; }
  .footer-inner { flex-direction: column; }
  .footer-meta p { text-align: left; }
  .hiw-step { gap: 20px; }
  .step-num { font-size: 2.5rem; min-width: 48px; }
  .manifesto { padding: 64px 24px; }
}