/* ForgeGuard — industrial dark design system */
:root {
  --bg: oklch(0.16 0.008 50);
  --bg-elev: oklch(0.19 0.01 50);
  --bg-card: oklch(0.21 0.012 50);
  --line: oklch(0.28 0.012 50);
  --line-strong: oklch(0.38 0.014 50);
  --fg: oklch(0.96 0.006 80);
  --fg-dim: oklch(0.72 0.012 60);
  --fg-muted: oklch(0.55 0.014 60);
  --ember: oklch(0.72 0.18 45);
  --ember-deep: oklch(0.58 0.19 38);
  --ember-soft: oklch(0.72 0.18 45 / 0.12);
  --steel: oklch(0.62 0.02 230);
  --good: oklch(0.78 0.14 150);

  --serif: "Instrument Serif", "Times New Roman", serif;
  --sans: "Geist", "Inter", system-ui, -apple-system, sans-serif;
  --mono: "Geist Mono", "JetBrains Mono", ui-monospace, monospace;

  --r: 4px;
  --r-lg: 8px;
}

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

html, body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

/* ---------- utilities ---------- */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.mono { font-family: var(--mono); font-feature-settings: "ss01","zero"; }
.serif { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.eyebrow .dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--ember);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
  box-shadow: 0 0 12px var(--ember);
}

.rule {
  height: 1px;
  background: var(--line);
  width: 100%;
}

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: oklch(0.16 0.008 50 / 0.78);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.01em;
}
.logo-mark {
  width: 22px; height: 22px;
  position: relative;
  display: grid;
  place-items: center;
}
.logo-mark::before {
  content: "";
  position: absolute; inset: 0;
  border: 1.5px solid var(--fg);
  transform: rotate(45deg);
}
.logo-mark::after {
  content: "";
  width: 8px; height: 8px;
  background: var(--ember);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--ember);
  position: relative; z-index: 1;
}
.logo .amp { color: var(--fg-muted); font-style: italic; }

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 14px;
}
.nav-links a {
  color: var(--fg-dim);
  transition: color 0.15s;
  position: relative;
}
.nav-links a:hover { color: var(--fg); }
.nav-links a.active { color: var(--fg); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -22px;
  height: 1px;
  background: var(--ember);
}

.nav-cta {
  display: flex; gap: 12px; align-items: center;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 18px;
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.15s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ember);
  color: oklch(0.14 0.01 50);
  font-weight: 600;
}
.btn-primary:hover {
  background: oklch(0.78 0.18 45);
  box-shadow: 0 0 0 3px var(--ember-soft);
}
.btn-ghost {
  color: var(--fg);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--fg-dim);
  background: var(--bg-elev);
}
.btn-link {
  color: var(--fg);
  padding: 0;
  height: auto;
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  padding-bottom: 2px;
}
.btn-link:hover { border-color: var(--ember); color: var(--ember); }

.btn-arrow::after {
  content: "→";
  transition: transform 0.2s;
}
.btn-arrow:hover::after { transform: translateX(3px); }

/* ---------- hero ---------- */
.hero {
  padding: 96px 0 72px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 70% 40%, black 20%, transparent 75%);
  opacity: 0.35;
  pointer-events: none;
}
.hero-ember {
  position: absolute;
  top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--ember) 0%, transparent 65%);
  opacity: 0.15;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: end;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  font-weight: 400;
  margin-top: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--ember);
}
.hero .kicker {
  font-size: 17px;
  color: var(--fg-dim);
  max-width: 44ch;
  line-height: 1.55;
  margin-top: 28px;
}
.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 12px;
}
.hero-meta-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
}
.hero-meta-item .label {
  font-family: var(--mono);
  color: var(--fg-muted);
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.12em;
  padding-top: 3px;
}
.hero-meta-item .value { color: var(--fg-dim); line-height: 1.5; }
.hero-meta-item .value strong { color: var(--fg); font-weight: 500; }

.hero-cta {
  display: flex;
  gap: 14px;
  margin-top: 40px;
  align-items: center;
}
.hero-cta .note {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
}

/* ---------- marquee (hooks) ---------- */
.hooks {
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg-elev);
}
.hooks-track {
  display: flex;
  gap: 48px;
  padding: 18px 0;
  white-space: nowrap;
  animation: marquee 45s linear infinite;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.hooks-track span { display: inline-flex; align-items: center; gap: 10px; }
.hooks-track span::before {
  content: "";
  width: 5px; height: 5px;
  background: var(--ember);
  border-radius: 50%;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- section ---------- */
.section { padding: 96px 0; border-bottom: 1px solid var(--line); }
.section-header {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  margin-bottom: 64px;
}
.section-header h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 400;
  max-width: 16ch;
}
.section-header .lead {
  font-size: 17px;
  color: var(--fg-dim);
  line-height: 1.55;
  max-width: 56ch;
}
.section-header .side {
  display: flex; flex-direction: column; gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

/* ---------- pillars ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-elev);
}
.pillar {
  padding: 40px;
  border-right: 1px solid var(--line);
  position: relative;
  transition: background 0.2s;
  display: flex;
  flex-direction: column;
  min-height: 420px;
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: var(--bg-card); }
.pillar-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fg-muted);
  letter-spacing: 0.14em;
  margin-bottom: 40px;
}
.pillar-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 8px;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  color: var(--fg-dim);
}
.pillar-status.live { color: var(--good); border-color: oklch(0.4 0.08 150); }
.pillar-status.live::before {
  content: ""; width: 5px; height: 5px; background: var(--good); border-radius: 50%;
  box-shadow: 0 0 8px var(--good);
}
.pillar-status.soon::before {
  content: ""; width: 5px; height: 5px; background: var(--fg-muted); border-radius: 50%;
}
.pillar h3 {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.05;
  margin-top: 24px;
  letter-spacing: -0.01em;
}
.pillar p {
  color: var(--fg-dim);
  font-size: 14.5px;
  line-height: 1.6;
  margin-top: 16px;
  flex-grow: 1;
}
.pillar-products {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 24px;
  font-family: var(--mono);
  font-size: 12px;
}
.pillar-product {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px dashed var(--line);
  color: var(--fg-dim);
}
.pillar-product .name { color: var(--fg); }
.pillar-footer {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}
.pillar-footer a { color: var(--fg); border-bottom: 1px solid var(--line-strong); padding-bottom: 2px; }
.pillar-footer a:hover { border-color: var(--ember); color: var(--ember); }

/* ---------- numbers strip ---------- */
.numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.number-cell {
  background: var(--bg);
  padding: 32px;
}
.number-cell .big {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.number-cell .big em { color: var(--ember); font-style: normal; }
.number-cell .label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  margin-top: 16px;
}

/* ---------- pricing ---------- */
.pricing-tabs {
  display: flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--bg-elev);
  width: fit-content;
  margin: 0 auto 48px;
}
.pricing-tab {
  padding: 10px 20px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-dim);
  border-radius: 4px;
  transition: all 0.15s;
}
.pricing-tab.active {
  background: var(--bg-card);
  color: var(--fg);
  box-shadow: inset 0 0 0 1px var(--line-strong);
}
.pricing-tab .icon { margin-right: 8px; opacity: 0.7; }

.pricing-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  gap: 40px;
  flex-wrap: wrap;
}
.pricing-billing {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.toggle {
  position: relative;
  width: 44px; height: 24px;
  background: var(--bg-elev);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s;
}
.toggle::after {
  content: "";
  position: absolute;
  top: 2px; left: 2px;
  width: 18px; height: 18px;
  background: var(--fg-dim);
  border-radius: 50%;
  transition: all 0.2s;
}
.toggle.on { background: var(--ember-soft); border-color: var(--ember); }
.toggle.on::after { transform: translateX(20px); background: var(--ember); }

.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.plan {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  background: var(--bg-elev);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 480px;
  transition: all 0.2s;
}
.plan:hover { border-color: var(--line-strong); }
.plan.featured {
  border-color: var(--ember);
  background: linear-gradient(180deg, oklch(0.22 0.04 50) 0%, var(--bg-elev) 40%);
}
.plan.featured::before {
  content: "RECOMENDADO";
  position: absolute;
  top: -9px; left: 24px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  padding: 2px 8px;
  background: var(--ember);
  color: oklch(0.14 0.01 50);
  border-radius: 2px;
  font-weight: 600;
}
.plan-name {
  font-family: var(--serif);
  font-size: 28px;
  letter-spacing: -0.01em;
}
.plan-for {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
  min-height: 14px;
}
.plan-price {
  margin-top: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.plan-price .amount {
  font-family: var(--serif);
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.plan-price .currency {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--fg-dim);
  margin-right: 4px;
  vertical-align: top;
  position: relative;
  top: 10px;
}
.plan-price .period {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg-muted);
  margin-left: 6px;
}
.plan-price .was {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fg-muted);
  text-decoration: line-through;
  margin-top: 6px;
  display: block;
}
.plan-features {
  list-style: none;
  margin: 24px 0;
  font-size: 13.5px;
  color: var(--fg-dim);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.plan-features li {
  display: flex;
  gap: 10px;
  line-height: 1.45;
}
.plan-features li::before {
  content: "+";
  color: var(--ember);
  font-family: var(--mono);
  font-weight: 600;
  flex-shrink: 0;
}
.plan-features li strong { color: var(--fg); font-weight: 500; }
.plan-cta {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}

/* ---------- bundles ---------- */
.bundles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.bundle {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  background: var(--bg-elev);
  position: relative;
  overflow: hidden;
}
.bundle::after {
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, var(--ember) 0%, transparent 70%);
  opacity: 0.08;
}
.bundle-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}
.bundle h4 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.bundle-discount {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 4px 8px;
  background: var(--ember-soft);
  color: var(--ember);
  border-radius: 2px;
}
.bundle-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg-dim);
}
.bundle-items span::before { content: "▸ "; color: var(--ember); }
.bundle-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 24px;
  font-family: var(--serif);
}
.bundle-price .amount { font-size: 40px; letter-spacing: -0.02em; line-height: 1; }
.bundle-price .currency { font-family: var(--mono); font-size: 12px; color: var(--fg-dim); }
.bundle-price .period { font-family: var(--mono); font-size: 12px; color: var(--fg-muted); }

/* ---------- hooks grid ---------- */
.hook-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.hook-cell {
  background: var(--bg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 160px;
}
.hook-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ember);
  letter-spacing: 0.14em;
}
.hook-cell h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.hook-cell p {
  font-size: 13px;
  color: var(--fg-dim);
  line-height: 1.5;
  margin-top: auto;
}

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  cursor: pointer;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.faq-q .plus {
  font-family: var(--mono);
  font-size: 16px;
  color: var(--fg-muted);
  font-weight: 300;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-item.open .plus { transform: rotate(45deg); color: var(--ember); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin-top 0.3s ease;
  color: var(--fg-dim);
  font-size: 15px;
  line-height: 1.6;
  max-width: 70ch;
}
.faq-item.open .faq-a {
  max-height: 300px;
  margin-top: 16px;
}

/* ---------- cta band ---------- */
.cta-band {
  padding: 120px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, var(--ember) 0%, transparent 65%);
  opacity: 0.1;
}
.cta-band-inner {
  position: relative;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.cta-band h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1;
  letter-spacing: -0.025em;
  font-weight: 400;
}
.cta-band h2 em { color: var(--ember); font-style: italic; }
.cta-band p {
  color: var(--fg-dim);
  font-size: 17px;
  margin-top: 24px;
  max-width: 52ch;
  margin-left: auto; margin-right: auto;
}
.cta-band-actions { margin-top: 40px; display: flex; gap: 14px; justify-content: center; }

/* ---------- footer ---------- */
.footer {
  padding: 72px 0 32px;
  background: var(--bg);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.footer h5 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.footer-col a { color: var(--fg-dim); }
.footer-col a:hover { color: var(--ember); }
.footer-brand p {
  color: var(--fg-dim);
  font-size: 14px;
  line-height: 1.6;
  max-width: 38ch;
  margin-top: 16px;
}
.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  text-transform: uppercase;
}

/* ---------- about page ---------- */
.about-hero {
  padding: 120px 0 80px;
  border-bottom: 1px solid var(--line);
}
.about-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}
.about-hero h1 {
  font-family: var(--serif);
  font-size: clamp(56px, 8vw, 110px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-weight: 400;
}
.about-hero h1 em { font-style: italic; color: var(--ember); }
.about-hero p {
  font-size: 18px;
  color: var(--fg-dim);
  line-height: 1.55;
  max-width: 48ch;
}

.manifesto {
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
}
.manifesto-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
}
.manifesto-body { font-family: var(--serif); font-size: 28px; line-height: 1.35; max-width: 26ch; }
.manifesto-body em { color: var(--ember); font-style: italic; }
.manifesto-body p + p { margin-top: 32px; }

.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.value {
  padding: 32px;
  border-right: 1px solid var(--line);
  background: var(--bg-elev);
  min-height: 240px;
  display: flex;
  flex-direction: column;
}
.value:last-child { border-right: none; }
.value-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ember);
  letter-spacing: 0.14em;
  margin-bottom: 28px;
}
.value h4 {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.value p {
  color: var(--fg-dim);
  font-size: 13.5px;
  line-height: 1.55;
  margin-top: 16px;
}

/* ---------- page layout ---------- */
.page-hero {
  padding: 80px 0 56px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.page-hero-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: end;
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  font-weight: 400;
  margin-top: 20px;
}
.page-hero h1 em { color: var(--ember); font-style: italic; }
.page-hero .lead {
  font-size: 17px;
  color: var(--fg-dim);
  line-height: 1.55;
  max-width: 48ch;
  margin-top: 24px;
}

/* ---------- spec row ---------- */
.spec-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
}
.spec-row .k {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  padding-top: 2px;
}
.spec-row .v { color: var(--fg-dim); line-height: 1.55; }
.spec-row .v strong { color: var(--fg); font-weight: 500; }

/* responsive ---- */
@media (max-width: 980px) {
  .hero-inner, .section-header, .about-hero-inner, .page-hero-inner, .manifesto-grid { grid-template-columns: 1fr; gap: 40px; }
  .pillars, .plan-grid, .bundles, .hook-grid, .values, .numbers { grid-template-columns: 1fr 1fr; }
  .pillar, .value { border-right: none; border-bottom: 1px solid var(--line); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 640px) {
  .pillars, .plan-grid, .bundles, .hook-grid, .values, .numbers { grid-template-columns: 1fr; }
  .hero { padding: 56px 0 48px; }
  .section { padding: 56px 0; }
  .container { padding: 0 20px; }
}

/* selection */
::selection { background: var(--ember); color: oklch(0.14 0.01 50); }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--fg-muted); }
