:root {
  --bg: #0D0D0D;
  --bg-alt: #141414;
  --fg: #F5F5F0;
  --fg-muted: #888880;
  --lime: #BFFF00;
  --lime-dim: rgba(191, 255, 0, 0.12);
  --card-bg: #1A1A1A;
  --border: #2A2A2A;
  --font-head: 'Archivo Black', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

/* NAV */
.nav {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--lime);
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  text-transform: lowercase;
  letter-spacing: 1px;
}

/* HERO */
.hero {
  padding: 80px 0 100px;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--lime);
  margin-bottom: 20px;
  font-weight: 600;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 24px;
}
.lime { color: var(--lime); }
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 440px;
  line-height: 1.7;
}

/* DEVICE STACK */
.device-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.device-phone {
  background: #1A1A1A;
  border: 1px solid #2A2A2A;
  border-radius: 24px;
  padding: 16px;
  width: 220px;
}
.phone-screen { background: #0D0D0D; border-radius: 16px; overflow: hidden; padding-bottom: 12px; }
.phone-header { display: flex; align-items: center; gap: 10px; padding: 12px 12px 8px; }
.phone-avatar { width: 28px; height: 28px; border-radius: 50%; background: var(--lime); }
.phone-meta { flex: 1; }
.phone-name { font-size: 11px; font-weight: 600; color: var(--fg); }
.phone-loc { font-size: 10px; color: var(--fg-muted); }
.phone-video-area { padding: 12px; background: #111; margin: 0 8px; border-radius: 8px; text-align: center; }
.play-icon { font-size: 28px; color: var(--lime); margin-bottom: 6px; }
.phone-caption { font-size: 10px; color: var(--fg-muted); line-height: 1.4; margin-bottom: 8px; }
.phone-stats { display: flex; gap: 12px; justify-content: center; }
.phone-stats span { font-size: 9px; color: var(--lime); font-weight: 500; }

.device-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  width: 220px;
}
.card-header { background: var(--lime); color: #000; font-size: 11px; font-weight: 700; padding: 6px 12px; font-family: var(--font-head); }
.card-body { padding: 12px; }
.menu-item { display: flex; justify-content: space-between; font-size: 11px; padding: 4px 0; border-bottom: 1px solid #222; color: var(--fg); }
.menu-item:last-child { border-bottom: none; }
.menu-tag { font-size: 9px; color: var(--lime); letter-spacing: 2px; margin-top: 8px; font-weight: 600; }

.device-ad {
  background: linear-gradient(135deg, #1C1C00, #2A3500);
  border: 1px solid var(--lime);
  border-radius: 12px;
  padding: 20px;
  width: 220px;
  text-align: center;
}
.ad-badge { display: inline-block; font-size: 9px; font-weight: 700; background: var(--lime); color: #000; padding: 2px 8px; border-radius: 4px; margin-bottom: 12px; }
.ad-headline { font-family: var(--font-head); font-size: 20px; color: var(--lime); line-height: 1.1; margin-bottom: 14px; }
.ad-cta { display: inline-block; background: var(--lime); color: #000; font-size: 11px; font-weight: 700; padding: 6px 16px; border-radius: 20px; }

/* SECTION SHARED */
.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--lime);
  margin-bottom: 16px;
  font-weight: 600;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.15;
  margin-bottom: 48px;
}

/* WHAT WE MAKE */
.what-we-make {
  padding: 100px 0;
  background: var(--bg-alt);
}
.what-we-make .section-label,
.what-we-make .section-title { max-width: 1200px; margin-left: auto; margin-right: auto; padding: 0 32px; }
.what-we-make .section-label { padding-left: 32px; padding-right: 32px; }
.what-we-make .section-title { padding-left: 32px; padding-right: 32px; }
.make-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.make-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}
.make-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--lime-dim);
  border: 1px solid rgba(191, 255, 0, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 18px;
  color: var(--lime);
}
.make-content h3 {
  font-family: var(--font-head);
  font-size: 17px;
  margin-bottom: 8px;
}
.make-content p { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

/* NICHES */
.niches {
  padding: 100px 0;
}
.niches-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.niches-title {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.2;
  margin-bottom: 20px;
}
.niches-body { font-size: 15px; color: var(--fg-muted); line-height: 1.7; }
.niche-row { display: flex; align-items: center; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.niche-row:last-child { border-bottom: none; }
.niche-dot { width: 8px; height: 8px; min-width: 8px; background: var(--lime); border-radius: 50%; }
.niche-row span { font-size: 16px; font-weight: 500; }

/* HOW IT WORKS */
.how-it-works {
  padding: 100px 0;
  background: var(--bg-alt);
}
.how-it-works .section-label,
.how-it-works .section-title { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.steps-row {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 64px;
}
.step { flex: 1; }
.step-num { font-family: var(--font-head); font-size: 48px; color: var(--lime); margin-bottom: 16px; }
.step h3 { font-family: var(--font-head); font-size: 18px; margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }
.step-connector { flex: 0 0 60px; height: 2px; background: linear-gradient(to right, var(--lime), transparent); margin-top: 24px; }

/* CLOSING */
.closing {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 80px;
}
.closing-quote {
  flex: 1;
  border-left: 3px solid var(--lime);
  padding-left: 32px;
}
.closing-quote p {
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.4;
  font-style: italic;
  color: var(--fg);
}
.closing-cta { flex: 1; }
.closing-tagline {
  font-family: var(--font-head);
  font-size: 22px;
  color: var(--lime);
  margin-bottom: 12px;
}
.closing-sub { font-size: 15px; color: var(--fg-muted); line-height: 1.7; }

/* FOOTER */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--lime);
}
.footer-links { font-size: 13px; color: var(--fg-muted); }
.footer-copy { font-size: 12px; color: var(--fg-muted); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-inner, .niches-inner, .closing-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding: 60px 0 80px; }
  .device-stack { display: none; }
  .make-grid { grid-template-columns: 1fr; }
  .steps-row { flex-direction: column; gap: 40px; }
  .step-connector { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 32px; }
  .section-title { font-size: 26px; }
  .closing { padding: 60px 0; }
  .closing-quote p { font-size: 18px; }
}