/* Fonts */
:root {
  --bg: #0A0A0F;
  --surface: #13131A;
  --surface-2: #1C1C26;
  --accent: #D4FF00;
  --accent-dim: rgba(212, 255, 0, 0.08);
  --text: #EEEEF2;
  --text-muted: #8585A0;
  --border: rgba(255,255,255,0.07);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Figtree', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--text);
  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: 20px 48px;
  border-bottom: 1px solid var(--border);
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(12px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  color: var(--text);
}
.nav-tagline {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 48px 80px;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  display: block;
}
.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 32px;
}
.headline-accent {
  color: var(--accent);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
}
.hero-bar {
  width: 64px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.stat {
  padding-right: 48px;
}
.stat-value {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
  max-width: 140px;
}
.stat-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  margin: 4px 48px 0 0;
}
.hero-bg-shape {
  position: absolute;
  top: 10%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(212,255,0,0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* MANIFESTO */
.manifesto {
  padding: 100px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.manifesto-inner {
  max-width: 860px;
  margin: 0 auto;
}
.manifesto-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.45;
  letter-spacing: -0.025em;
  color: var(--text);
  font-style: normal;
}

/* OUTCOMES */
.outcomes {
  padding: 100px 48px;
}
.outcomes-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 60px;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.outcome-card {
  background: var(--surface);
  padding: 48px;
  border: 1px solid var(--border);
}
.outcome-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.outcome-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 14px;
}
.outcome-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* APPROACH */
.approach {
  padding: 100px 48px;
  background: var(--surface);
}
.approach-inner {
  max-width: 900px;
  margin: 0 auto;
}
.approach-steps {
  display: flex;
  flex-direction: column;
}
.approach-step {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
.step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.step-num {
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-line {
  width: 1px;
  background: var(--border);
  flex: 1;
  min-height: 60px;
  margin: 8px 0;
}
.approach-step-last .step-line { display: none; }
.step-content {
  padding-bottom: 60px;
}
.approach-step-last .step-content { padding-bottom: 0; }
.step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* CLOSING */
.closing {
  padding: 120px 48px;
  border-top: 1px solid var(--border);
}
.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.closing-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 32px;
}
.closing-accent {
  color: var(--accent);
}
.closing-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.8;
}
.closing-cta {
  display: inline-block;
  margin-top: 32px;
  padding: 12px 24px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-radius: 2px;
  transition: opacity 0.2s;
}
.closing-cta:hover { opacity: 0.85; }

/* ONBOARDING HUB */
.onboarding-hub {
  padding: 120px 48px 80px;
  min-height: 100vh;
}
.onboarding-inner {
  max-width: 900px;
  margin: 0 auto;
}
.page-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.page-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 16px;
}
.page-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 60px;
}
.step-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.step-num-badge {
  width: 36px;
  height: 36px;
  background: var(--accent-dim);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-body { flex: 1; }
.step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 8px;
}
.step-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.step-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.step-time {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}
.step-badge {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
}
.badge-video { background: rgba(155, 91, 255, 0.12); color: #c49fff; }
.badge-template { background: rgba(0, 163, 255, 0.12); color: #6bbfff; }
.badge-task { background: rgba(212, 255, 0, 0.08); color: var(--accent); }
.badge-call { background: rgba(255, 136, 0, 0.08); color: #ff9834; }
.step-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  text-decoration: none;
  border-radius: 2px;
  transition: opacity 0.2s;
}
.step-cta:hover { opacity: 0.85; }
.step-cta.disabled {
  background: var(--surface-2);
  color: var(--text-muted);
  cursor: not-allowed;
  pointer-events: none;
}
.step-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.8rem;
  text-decoration: none;
  border-radius: 2px;
  transition: border-color 0.2s;
}
.step-cta-secondary:hover { border-color: var(--text-muted); }

/* POSITIONING ONE-PAGER */
.positioning {
  padding: 120px 48px 80px;
  min-height: 100vh;
}
.positioning-inner {
  max-width: 820px;
  margin: 0 auto;
}
.pos-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.pos-pkg-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 4px;
}
.pos-pkg-tagline {
  font-size: 0.95rem;
  color: var(--text-muted);
}
.pos-price-box {
  background: var(--accent-dim);
  border: 1px solid var(--accent);
  padding: 16px 24px;
  text-align: right;
}
.pos-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--accent);
  letter-spacing: -0.03em;
  display: block;
}
.pos-price-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.pos-section {
  margin-bottom: 48px;
}
.pos-section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.pos-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pos-list li {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
}
.pos-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
}
.pos-exit {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
}
.pos-footer {
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.pos-slug {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* MOBILE */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 120px 24px 60px; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .stat { padding-right: 0; }
  .stat-divider { display: none; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .outcome-card { padding: 32px; }
  .approach-step { gap: 24px; }
  .closing { padding: 80px 24px; }
  .footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .manifesto { padding: 64px 24px; }
  .outcomes, .approach { padding: 64px 24px; }
  .onboarding-hub, .positioning { padding: 100px 24px 60px; }
  .step-card { flex-direction: column; }
  .pos-header { flex-direction: column; }
  .pos-price-box { text-align: left; }
}
.footer {
  border-top: 1px solid var(--border);
  padding: 48px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.03em;
  color: var(--text);
  display: block;
  margin-bottom: 4px;
}
.footer-descriptor {
  font-size: 0.72rem;
  color: var(--text-muted);
  display: block;
}
.footer-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* MOBILE */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 120px 24px 60px; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .stat { padding-right: 0; }
  .stat-divider { display: none; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .outcome-card { padding: 32px; }
  .approach-step { gap: 24px; }
  .closing { padding: 80px 24px; }
  .footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .manifesto { padding: 64px 24px; }
  .outcomes, .approach { padding: 64px 24px; }
}