/* === TOKENS === */
:root {
  --bg: #161612;
  --bg-card: #1e1c19;
  --bg-card-alt: #242220;
  --fg: #f0ebe3;
  --fg-muted: #9b9690;
  --accent: #F5A623;
  --accent-dim: rgba(245, 166, 35, 0.12);
  --border: rgba(240, 235, 227, 0.08);
  --font-display: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

/* === RESET === */
*, *::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: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === NAV === */
.nav {
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--accent);
}
.nav-tagline {
  font-size: 0.875rem;
  color: var(--fg-muted);
}

/* === HERO === */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 440px;
  margin-bottom: 2rem;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--fg-muted);
}
.proof-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

/* === MOCKUP === */
.mockup-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.mockup-phone {
  position: relative;
  display: flex;
  justify-content: center;
}
.phone-frame {
  width: 200px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 12px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05) inset;
}
.phone-screen {
  border-radius: 20px;
  overflow: hidden;
  background: #0e0d0b;
}
.video-card { padding: 1rem; }
.video-thumb {
  width: 100%;
  height: 110px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.thumb-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(245,166,35,0.3) 0%, rgba(245,166,35,0.1) 100%);
}
.thumb-icon {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
}
.video-caption {
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-top: 0.625rem;
  font-weight: 500;
}
.video-meta {
  font-size: 0.7rem;
  color: var(--fg-muted);
  opacity: 0.6;
  margin-top: 0.25rem;
}
.mockup-labels {
  display: flex;
  gap: 0.75rem;
}
.label-card {
  flex: 1;
  padding: 0.875rem 1rem;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.label-before { border-color: rgba(255,255,255,0.06); }
.label-after { border-color: rgba(245,166,35,0.25); }
.label-tag {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  display: block;
  margin-bottom: 0.25rem;
}
.label-tag--accent { color: var(--accent); }
.label-desc {
  font-size: 0.8rem;
  color: var(--fg);
  font-weight: 500;
  display: block;
}

/* === SECTION COMMON === */
.section-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 3rem;
}

/* === PROBLEM === */
.problem {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 2rem;
}
.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.problem-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 2.5rem;
  color: var(--fg);
}
.problem-amp { color: var(--accent); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.problem-card {
  padding: 1.75rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.problem-stat {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  margin-bottom: 0.625rem;
}
.problem-text {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.5;
}
.problem-quote {
  padding: 1.5rem 1.75rem;
  border-left: 3px solid var(--accent);
  background: var(--bg);
  border-radius: 0 8px 8px 0;
}
.problem-quote p {
  font-size: 1rem;
  font-style: italic;
  color: var(--fg);
  margin-bottom: 0.375rem;
}
.problem-quote span {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* === PROCESS === */
.process { padding: 5rem 2rem; max-width: 1100px; margin: 0 auto; }
.process-steps {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 180px;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.step-number {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}
.step-body h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--fg);
}
.step-body p { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.5; }
.step-connector {
  padding: 0 0.5rem;
  color: var(--fg-muted);
  flex-shrink: 0;
}

/* === OFFERINGS === */
.offerings { padding: 4rem 2rem; background: var(--bg-card); border-top: 1px solid var(--border); }
.offerings-inner { max-width: 1100px; margin: 0 auto; }
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.offering-card {
  padding: 1.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.2s;
}
.offering-card:hover { border-color: rgba(245,166,35,0.3); }
.offering-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1rem;
}
.offering-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--fg);
}
.offering-card p { font-size: 0.825rem; color: var(--fg-muted); line-height: 1.5; }
.offerings-pricing-note {
  padding: 1.25rem 1.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.offerings-pricing-note p { font-size: 0.875rem; color: var(--fg-muted); }

/* === NICHES === */
.niches { padding: 5rem 2rem; max-width: 1100px; margin: 0 auto; }
.niches-list { display: flex; flex-direction: column; gap: 0; }
.niche-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.niche-item:first-child { border-top: 1px solid var(--border); }
.niche-icon {
  width: 32px;
  height: 32px;
  background: var(--accent-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.niche-item div { font-size: 0.95rem; color: var(--fg); line-height: 1.5; }
.niche-item span { color: var(--fg-muted); }

/* === CLOSING === */
.closing { padding: 5rem 2rem; background: var(--bg-card); border-top: 1px solid var(--border); }
.closing-inner { max-width: 1100px; margin: 0 auto; }
.closing-content { max-width: 640px; }
.closing-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.closing-content > p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  margin-bottom: 2.5rem;
  line-height: 1.65;
}
.closing-cta-block {
  padding: 2rem;
  background: var(--bg);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 16px;
}
.cta-price {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
}
.price-label { font-size: 0.875rem; color: var(--fg-muted); }
.price-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.04em;
}
.price-period { font-size: 1.25rem; font-weight: 400; color: var(--fg-muted); }
.cta-note { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.5; }

/* === FOOTER === */
.footer {
  border-top: 1px solid var(--border);
  padding: 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent);
  display: block;
  margin-bottom: 0.25rem;
}
.footer-desc { font-size: 0.8rem; color: var(--fg-muted); display: block; }
.footer-note { font-size: 0.75rem; color: var(--fg-muted); opacity: 0.5; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { display: none; }
  .hero-headline { font-size: 2.2rem; }
  .problem-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; }
  .step-connector { transform: rotate(90deg); padding: 0.5rem 0; }
  .offerings-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .offerings-grid { grid-template-columns: 1fr; }
  .section-headline { font-size: 1.6rem; }
}