:root {
  --bg: #0c0c0c;
  --surface: #161616;
  --surface-2: #1e1e1e;
  --fg: #f5f0e8;
  --accent: #f5c842;
  --accent-dark: #c9a030;
  --muted: #888;
  --border: #2a2a2a;
}

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

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__logo-mark {
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: #0c0c0c;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.nav__logo-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.3px;
}
.nav__tag {
  font-size: 13px;
  color: var(--muted);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: #aaa;
  text-decoration: none;
  transition: color 0.15s;
}
.nav__link:hover { color: var(--fg); }

/* HERO */
.hero {
  min-height: calc(100vh - 73px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 40px;
}
.hero__inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.hero__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
}
.hero__headline {
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.05;
}
.hero__sub {
  font-size: 18px;
  color: #bbb;
  max-width: 480px;
  line-height: 1.65;
}
.hero__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 8px;
}
.hero__price-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--accent);
}
.hero__price-period {
  font-size: 18px;
  color: var(--muted);
}
.hero__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.phone-mockup {
  width: 220px;
  background: #1a1a1a;
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px #333;
}
.phone-screen {
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 9/16;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
  position: relative;
}
.video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 8px, rgba(255,255,255,0.02) 8px, rgba(255,255,255,0.02) 9px);
}
.play-icon {
  width: 48px;
  height: 48px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-icon::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 14px solid var(--accent);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  margin-left: 4px;
}
.video-label {
  font-size: 12px;
  color: var(--muted);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
}
.platform-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.badge {
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: #aaa;
  letter-spacing: 0.5px;
}

/* MANIFESTO */
.manifesto {
  padding: 100px 40px;
  border-top: 1px solid var(--border);
}
.manifesto__inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.manifesto__headline {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.2;
  color: var(--fg);
}
.manifesto__body {
  font-size: 17px;
  color: #aaa;
  line-height: 1.7;
}

/* WHAT YOU GET */
.what-you-get {
  padding: 100px 40px;
  border-top: 1px solid var(--border);
}
.section-header {
  max-width: 1100px;
  margin: 0 auto 56px;
}
.section-title {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  letter-spacing: -1px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto;
}
.feature-card {
  background: var(--surface);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feature-card__number {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
}
.feature-card__title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.feature-card__desc {
  font-size: 15px;
  color: #999;
  line-height: 1.65;
}

/* WHO FOR */
.who-for {
  padding: 100px 40px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.who-for__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.who-for__title {
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 20px;
}
.who-for__text p {
  font-size: 16px;
  color: #aaa;
  line-height: 1.7;
}
.niche-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.niche-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #ccc;
}
.niche-icon {
  width: 28px;
  height: 28px;
  background: var(--accent);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.niche-icon svg {
  width: 16px;
  height: 16px;
  color: #0c0c0c;
}
.restaurant-icon {
  background: #ff6b6b;
}

/* CLOSING */
.closing {
  padding: 100px 40px;
  border-top: 1px solid var(--border);
}
.closing__inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.closing__headline {
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--fg);
}
.closing__sub {
  font-size: 17px;
  color: #aaa;
  line-height: 1.7;
}
.closing__closing {
  font-size: 16px;
  color: var(--muted);
  font-style: italic;
  border-left: 3px solid var(--accent);
  padding-left: 20px;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer__logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 16px;
}
.footer__tagline {
  font-size: 13px;
  color: var(--muted);
}
.footer__note {
  font-size: 14px;
  color: var(--muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 16px 20px; }
  .nav__tag { display: none; }
  .hero {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 48px 20px;
    min-height: auto;
  }
  .hero__headline { font-size: 40px; letter-spacing: -1px; }
  .features-grid { grid-template-columns: 1fr; }
  .who-for__inner { grid-template-columns: 1fr; gap: 40px; }
  .niche-list { grid-template-columns: 1fr; }
  .manifesto, .what-you-get, .who-for, .closing { padding: 60px 20px; }
  .footer { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
  .hero__price-amount { font-size: 40px; }
  .hero__visual { display: none; }
}