/* Ignite180 — design tokens from the approved v2 design */
:root {
  --bg: #0A0B0D;
  --border: #1C1E22;
  --border-card: #23262B;
  --border-strong: #2A2D33;
  --text-primary: #F7F5F2;
  --text-wordmark: #F5F3F0;
  --text-body: #E8E6E3;
  --text-muted: #A8A39C;
  --text-dim: #8E8981;
  --text-faint: #7C776F;
  --text-faintest: #6E6961;
  --text-founder: #CFCBC5;
  --text-pill: #9A958E;
  --ember: #FF6A1F;
  --ember-hover: #FF8A47;
  --ember-text: #FF7A38;
  --ember-link: #FF9A5E;
  --ember-link-hover: #FFB185;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Public Sans', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--ember-text);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 150ms ease;
}
a:hover { color: var(--ember-link-hover); }

::selection { background: #7A2E0C; color: #FFF; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 22px;
}

section { border-bottom: 1px solid var(--border); }

.section-inner { padding: 80px 0; }

.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 32px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

/* Buttons */
.btn {
  display: inline-block;
  background: var(--ember);
  color: var(--bg);
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: background-color 150ms ease;
}
.btn:hover { background: var(--ember-hover); color: var(--bg); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(10, 11, 13, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 12px 2px rgba(255, 106, 31, 0.7);
  animation: pulse 3.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .brand-dot { animation: none; }
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--text-wordmark);
}
.btn-header {
  font-size: 15px;
  padding: 10px 18px;
  border-radius: 6px;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background-image: radial-gradient(60% 70% at 12% 0%, rgba(255, 106, 31, 0.14) 0%, rgba(10, 11, 13, 0) 70%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.031) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.031) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(#000, transparent 85%);
  -webkit-mask-image: linear-gradient(#000, transparent 85%);
}
.hero .container {
  position: relative;
  padding-top: 88px;
  padding-bottom: 84px;
}
.hero-content { max-width: 820px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 6px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-pill);
  margin-bottom: 30px;
}
.eyebrow-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ember);
}
.hero h1 {
  font-size: clamp(38px, 7vw, 74px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.accent { color: var(--ember-text); }
.hero-sub {
  font-size: clamp(18px, 2.3vw, 22px);
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 36px;
  max-width: 620px;
  text-wrap: pretty;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 20px;
}
.btn-hero {
  font-size: 17px;
  padding: 15px 30px;
  box-shadow: 0 0 40px -8px rgba(255, 106, 31, 0.6);
}
.cta-note {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-faint);
}

/* Problem */
.problem-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: start;
}
.problem-grid h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.problem-hook {
  font-size: 20px;
  line-height: 1.5;
  color: var(--ember-text);
  margin: 0;
  max-width: 420px;
}
.problem-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: var(--text-muted);
  max-width: 540px;
}
.problem-copy p { margin: 0; }
.problem-closer { color: var(--text-body); }

/* What we do */
.offer-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.card {
  background: linear-gradient(#141619, #101215);
  border: 1px solid var(--border-card);
  border-radius: 14px;
  padding: 34px 32px 36px;
}
.card-rule {
  width: 28px;
  height: 2px;
  background: var(--ember);
  margin-bottom: 24px;
  box-shadow: 0 0 14px rgba(255, 106, 31, 0.8);
}
.card h3 {
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.card p { margin: 0; color: var(--text-muted); }

/* How it works */
.how {
  background-image: radial-gradient(70% 60% at 85% 0%, rgba(255, 106, 31, 0.08) 0%, rgba(10, 11, 13, 0) 70%);
}
.steps-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.step {
  border-top: 1px solid var(--border-strong);
  padding-top: 22px;
}
.step-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ember);
  margin-bottom: 16px;
}
.step h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.step p { margin: 0; color: var(--text-muted); }

/* Why it sticks */
.sticks-grid {
  display: grid;
  gap: 44px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: center;
}
.sticks-copy { max-width: 490px; }
.sticks-copy .section-label { margin-bottom: 22px; }
.sticks-copy h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.sticks-copy p { margin: 0 0 16px; color: var(--text-muted); }
.sticks-copy p:last-child { margin-bottom: 0; }

.ledger {
  background: linear-gradient(#141619, #0F1114);
  border: 1px solid var(--border-card);
  border-radius: 14px;
  padding: 26px 26px 28px;
  box-shadow: 0 30px 70px -40px rgba(255, 106, 31, 0.5);
}
.ledger-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid var(--border-card);
  padding-bottom: 14px;
  margin-bottom: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-faint);
}
.ledger-title {
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.ledger-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.ledger-row dt { color: var(--text-muted); }
.ledger-row dd {
  margin: 0;
  font-family: var(--font-mono);
  color: var(--text-primary);
  white-space: nowrap;
}
.ledger-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 18px;
}
.ledger-total-label { font-weight: 600; color: var(--text-primary); }
.ledger-total-value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 32px;
  color: var(--ember-text);
  line-height: 1;
}
.ledger-note {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-faintest);
  margin-top: 12px;
}

/* Fit / not fit */
.fit-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}
.fit-card {
  border-radius: 14px;
  padding: 32px;
}
.fit-card h3 {
  font-size: 22px;
  margin-bottom: 20px;
}
.fit-card-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fit-card-body p { margin: 0; }
.fit-yes {
  background: linear-gradient(#141619, #101215);
  border: 1px solid var(--border-strong);
}
.fit-yes .fit-card-body { color: var(--text-muted); }
.fit-no { border: 1px dashed var(--border-strong); }
.fit-no h3 { color: var(--text-dim); }
.fit-no .fit-card-body { color: var(--text-faint); }

/* Founder */
.founder-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: start;
}
.founder-photo {
  display: block;
  width: 100%;
  max-width: 300px;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--border-card);
  background-color: #121417;
}
.founder-copy { max-width: 560px; }
.founder-copy .section-label { margin-bottom: 22px; }
.founder-note {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 19px;
  line-height: 1.6;
  color: var(--text-founder);
}
.founder-note p { margin: 0; }
.founder-sig {
  margin-top: 24px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--ember-text);
}

/* Final CTA */
.book {
  position: relative;
  overflow: hidden;
  border-bottom: none;
  background-image: radial-gradient(50% 90% at 50% 100%, rgba(255, 106, 31, 0.22) 0%, rgba(10, 11, 13, 0) 72%);
}
.book .container {
  position: relative;
  padding-top: 100px;
  padding-bottom: 104px;
  text-align: center;
}
.book h2 {
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 auto 20px;
  max-width: 680px;
}
.book-sub {
  margin: 0 auto 36px;
  max-width: 540px;
  color: var(--text-muted);
}
.btn-book {
  font-size: 18px;
  padding: 17px 34px;
  box-shadow: 0 0 60px -10px rgba(255, 106, 31, 0.85);
}
/* Footer */
.site-footer { border-top: 1px solid var(--border); }
.site-footer .container {
  padding-top: 22px;
  padding-bottom: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-faintest);
}
