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

:root {
  --bg: #0A0A0A;
  --surface: #131313;
  --surface-2: #1A1A1A;
  --fg: #F5F0E8;
  --fg-muted: rgba(245,240,232,0.45);
  --lime: #C8F817;
  --lime-dim: rgba(200,247,23,0.12);
  --border: rgba(245,240,232,0.08);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 2rem;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 56px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.nav-tagline {
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 2rem 60px;
  position: relative;
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,247,23,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,247,23,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 40%, transparent 100%);
}
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  font-weight: 500;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.hero-highlight {
  color: var(--lime);
  display: block;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 440px;
}
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* PHONE MOCKUP */
.phone-mockup {
  position: relative;
  width: 220px;
}
.phone-screen {
  background: #0F0F0F;
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 36px;
  padding: 16px 14px 20px;
  box-shadow: 0 0 0 1px rgba(200,247,23,0.06), 0 32px 80px rgba(0,0,0,0.6), 0 0 120px rgba(200,247,23,0.04);
}
.phone-notch {
  width: 60px;
  height: 22px;
  background: #0A0A0A;
  border-radius: 0 0 14px 14px;
  margin: 0 auto 12px;
}
.video-preview {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vp-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 500;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
}
.vp-bar--green { background: rgba(200,247,23,0.1); color: var(--lime); }
.vp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF3B30;
}
.vp-icon {
  margin-left: auto;
  font-size: 0.65rem;
}
.vp-content {
  background: linear-gradient(135deg, #1a1a1a, #222);
  border-radius: 12px;
  padding: 16px 12px;
  border: 1px solid rgba(200,247,23,0.08);
}
.vp-lines { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.vp-line {
  height: 8px;
  background: rgba(245,240,232,0.08);
  border-radius: 4px;
}
.vp-line--long { width: 80%; }
.vp-line--med { width: 60%; }
.vp-line--short { width: 45%; }
.vp-progress {
  height: 3px;
  background: rgba(200,247,23,0.3);
  border-radius: 2px;
  width: 38%;
  margin-bottom: 12px;
}
.vp-reactions {
  display: flex;
  gap: 12px;
  padding: 0 4px;
}
.vp-reaction {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.4);
}
.vp-reaction--liked { color: #FF3B30; }
.phone-speaker {
  width: 40px;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin: 12px auto 0;
}
.phone-home {
  width: 36px;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  margin: 8px auto 0;
}
.phone-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(200,247,23,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--fg-muted);
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 100px;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  opacity: 0.5;
}

/* STATS */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 2rem;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
  padding: 0 2rem;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--lime);
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* SERVICES */
.services {
  padding: 6rem 2rem;
}
.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 1rem;
  font-weight: 500;
}
.services-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 4rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--bg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background 0.2s;
}
.service-card:hover { background: var(--surface); }
.sc-icon {
  color: var(--lime);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lime-dim);
  border-radius: 10px;
  flex-shrink: 0;
}
.sc-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.sc-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* NICHES */
.niches {
  padding: 6rem 2rem;
  background: var(--surface);
}
.niches-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.niches-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.niches-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 3rem;
}
.niches-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.niche-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.2s, transform 0.2s;
}
.niche-card:hover { border-color: rgba(200,247,23,0.2); transform: translateY(-2px); }
.nc-visual {
  height: 56px;
  display: flex;
  align-items: center;
}
.nc-icon { color: var(--lime); }
.niche-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}
.niche-card p { font-size: 0.8rem; color: var(--fg-muted); line-height: 1.55; flex: 1; }
.nc-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 0.5rem;
}
.nc-tags span {
  font-size: 0.65rem;
  color: var(--lime);
  background: var(--lime-dim);
  padding: 3px 8px;
  border-radius: 100px;
  font-weight: 500;
}

/* PROCESS */
.process {
  padding: 6rem 2rem;
}
.process-inner {
  max-width: 900px;
  margin: 0 auto;
}
.process-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 4rem;
}
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}
.step:first-child { border-top: 1px solid var(--border); }
.step-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--lime);
  letter-spacing: -0.04em;
  line-height: 1;
  opacity: 0.6;
}
.step-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.step-body p { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.65; }
.step-connector { padding: 0 0 0 80px; }
.step-line {
  width: 1px;
  height: 16px;
  background: var(--border);
}

/* MANIFESTO */
.manifesto {
  padding: 6rem 2rem;
  background: var(--surface);
}
.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.manifesto-quote {
  border-left: 3px solid var(--lime);
  padding-left: 2rem;
}
.mq-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--lime);
  line-height: 0.5;
  margin-bottom: 1.5rem;
  opacity: 0.4;
}
.mq-text {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.mq-text--big {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fg);
}
.manifesto-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.manifesto-body {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
}
.manifesto-rule {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--lime-dim);
  border: 1px solid rgba(200,247,23,0.15);
  border-radius: 12px;
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-top: 0.5rem;
}
.manifesto-rule strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--lime);
  letter-spacing: -0.02em;
}

/* CLOSING */
.closing {
  padding: 8rem 2rem;
}
.closing-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.closing .section-label { text-align: center; margin-bottom: 1.5rem; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.closing-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 600px;
  margin: 0 auto 4rem;
}
.closing-cta {
  display: flex;
  justify-content: center;
}
.cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 2rem 4rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
}
.cta-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.cta-price {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.04em;
  line-height: 1;
}
.cta-period {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--fg-muted);
}
.cta-note {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-top: 0.25rem;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 2rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  display: block;
  margin-bottom: 0.75rem;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  max-width: 260px;
  line-height: 1.6;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  text-align: right;
}
.footer-links span {
  font-size: 0.8rem;
  color: var(--fg-muted);
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--fg-muted);
  opacity: 0.5;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; gap: 3rem; }
  .hero-right { display: none; }
  .stats-inner { flex-direction: column; gap: 2rem; }
  .stat-divider { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .niches-grid { grid-template-columns: 1fr 1fr; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { flex-direction: column; }
  .footer-links { text-align: left; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .niches-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 2.5rem; }
}