/* Stacksmith v2 — product-marketing aesthetic
   Overrides site.css for softer cards, pill nav, stat row, split hero. */

/* Slightly softer page tone */
body { letter-spacing: -0.005em; }

/* ── Nav (v2) ───────────────────────────────────────── */

.nav-v2 .nav-inner {
  padding-top: 16px;
  padding-bottom: 16px;
}

.nav-v2 .nav-logo {
  gap: 14px;
}

.nav-v2 .nav-logo img {
  height: 26px;
  width: auto;
  display: block;
}

.nav-v2 .nav-logo .hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 22px;
  cursor: pointer;
}
.nav-v2 .nav-logo .hamburger span {
  height: 2px;
  background: var(--ss-ink);
  border-radius: 1px;
}
.nav-v2 .nav-logo .hamburger span:nth-child(3) {
  background: var(--ss-ember);
  width: 70%;
}

.nav-v2 .nav-cta {
  background: var(--ss-ink);
  color: var(--ss-bone);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
}
.nav-v2 .nav-cta:hover { background: var(--ss-charcoal); }

.nav-v2 .nav-signin {
  font-size: 14px;
  color: var(--ss-slate);
}

.nav-v2 .nav-links {
  gap: 28px;
}

.nav-v2 .nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* ── Hero v2 ─────────────────────────────────────────── */

.hero-v2 {
  padding-top: 48px;
  padding-bottom: 96px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: start;
}

@media (max-width: 980px) {
  .hero-v2 {
    grid-template-columns: 1fr;
    gap: 64px;
    padding-bottom: 64px;
  }
}

.hero-v2 .left { padding-top: 12px; }
.hero-v2 .right { padding-top: 72px; }
@media (max-width: 980px) {
  .hero-v2 .right { padding-top: 0; }
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  background: var(--ss-paper);
  border: 1px solid var(--ss-flax);
  border-radius: 999px;
  font-family: var(--ss-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ss-slate);
  margin-bottom: 32px;
}
.status-pill .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ss-ember);
  box-shadow: 0 0 0 0 rgba(200, 97, 42, 0.45);
  animation: ss-pulse 2.4s ease-out infinite;
}

@keyframes ss-pulse {
  0%   { box-shadow: 0 0 0 0   rgba(200, 97, 42, 0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(200, 97, 42, 0);    }
  100% { box-shadow: 0 0 0 0   rgba(200, 97, 42, 0);    }
}

@media (prefers-reduced-motion: reduce) {
  .status-pill .dot { animation: none; box-shadow: 0 0 0 4px rgba(200,97,42,.18); }
}

.hero-v2 .display-v2 {
  font-family: var(--ss-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(64px, 9vw, 132px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
  max-width: 11ch;
}
.hero-v2 .display-v2 .accent { color: var(--ss-ember); }

.hero-v2 .lead-v2 {
  max-width: 44ch;
  margin-bottom: 36px;
  color: var(--ss-slate);
  font-size: 17px;
  line-height: 1.55;
}

.hero-v2 .ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn-v2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: var(--ss-sans);
  font-size: 14px;
  font-weight: 500;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.18s;
  text-decoration: none;
}
.btn-v2.primary {
  background: var(--ss-ink);
  color: var(--ss-bone);
}
.btn-v2.primary:hover { background: var(--ss-charcoal); }
.btn-v2.outline {
  background: transparent;
  color: var(--ss-ink);
  border-color: var(--ss-ink);
}
.btn-v2.outline:hover { background: var(--ss-ink); color: var(--ss-bone); }
.btn-v2 .arrow { transition: transform 0.18s; }
.btn-v2:hover .arrow { transform: translateX(3px); }

/* Hero stat row */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 56px;
}
@media (max-width: 540px) {
  .hero-stats { grid-template-columns: 1fr; gap: 24px; }
}
.hero-stat .num {
  font-family: var(--ss-serif);
  font-style: italic;
  font-size: 36px;
  line-height: 1;
  color: var(--ss-ember);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.hero-stat .desc {
  font-size: 12.5px;
  color: var(--ss-slate);
  line-height: 1.4;
  max-width: 24ch;
}

/* ── Stack cards (hero right side) ──────────────────── */

.stack-cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stack-intro {
  background: var(--ss-paper);
  border: 1px solid var(--ss-flax);
  border-radius: 16px;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 4px;
}
.stack-intro .mark {
  width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stack-intro .label {
  font-family: var(--ss-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ss-ember);
  margin-bottom: 6px;
}
.stack-intro .heading {
  font-weight: 600;
  font-size: 15px;
  color: var(--ss-ink);
  letter-spacing: -0.01em;
}

.stack-card {
  background: var(--ss-paper);
  border: 1px solid var(--ss-flax);
  border-radius: 16px;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 96px 1fr 18px;
  gap: 18px;
  align-items: center;
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.stack-card:hover {
  background: var(--ss-bone-100);
  transform: translateX(2px);
}
.stack-card .layer {
  font-family: var(--ss-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ss-stone);
}
.stack-card .name {
  font-weight: 600;
  font-size: 15px;
  color: var(--ss-ink);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.stack-card .caption {
  font-size: 13px;
  color: var(--ss-slate);
  line-height: 1.4;
}
.stack-card .arrow {
  color: var(--ss-stone);
  font-size: 15px;
  transition: transform 0.2s, color 0.2s;
}
.stack-card:hover .arrow { color: var(--ss-ink); transform: translate(2px, -2px); }

.stack-card.featured {
  background: var(--ss-ember);
  border-color: var(--ss-ember);
}
.stack-card.featured .layer { color: rgba(255,255,255,.78); }
.stack-card.featured .name { color: var(--ss-bone); }
.stack-card.featured .caption { color: rgba(255,255,255,.82); }
.stack-card.featured .arrow { color: var(--ss-bone); }
.stack-card.featured:hover { background: var(--ss-ember-bright); transform: translateX(2px); }

/* ── Section head v2 (less editorial, more product) ─── */

.section-head-v2 {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
  align-items: end;
}
.section-head-v2 .eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: var(--ss-paper);
  border: 1px solid var(--ss-flax);
  border-radius: 999px;
  font-family: var(--ss-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ss-slate);
  margin-bottom: 24px;
}
.section-head-v2 .eyebrow-pill .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--ss-ember);
}
.section-head-v2 h2 {
  font-family: var(--ss-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  max-width: 18ch;
}
.section-head-v2 .right {
  padding-bottom: 14px;
  max-width: 38ch;
}
.section-head-v2 .right p {
  color: var(--ss-slate);
  font-size: 16px;
  line-height: 1.55;
}

@media (max-width: 760px) {
  .section-head-v2 { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
}

/* ── Options v2 (third-option as soft cards) ────────── */

.options-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 880px) { .options-v2 { grid-template-columns: 1fr; } }

.option-v2 {
  background: var(--ss-paper);
  border: 1px solid var(--ss-flax);
  border-radius: 18px;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}
.option-v2 .num {
  font-family: var(--ss-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ss-stone);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.option-v2 .label {
  font-family: var(--ss-serif);
  font-style: italic;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
}
.option-v2 .desc {
  color: var(--ss-slate);
  font-size: 14.5px;
  line-height: 1.55;
  margin-bottom: 24px;
}
.option-v2 .tags {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.option-v2 .tag {
  font-family: var(--ss-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ss-slate);
  padding: 5px 10px;
  background: var(--ss-bone);
  border: 1px solid var(--ss-flax);
  border-radius: 999px;
}
.option-v2.featured {
  background: var(--ss-ink);
  border-color: var(--ss-ink);
  color: var(--ss-bone);
}
.option-v2.featured .num { color: var(--ss-stone); }
.option-v2.featured .label { color: var(--ss-bone); }
.option-v2.featured .label .accent { color: var(--ss-ember); }
.option-v2.featured .desc { color: rgba(255,255,255,.74); }
.option-v2.featured .tag { background: var(--ss-charcoal); border-color: var(--ss-ink-400); color: rgba(255,255,255,.74); }

/* ── Components v2 (cards instead of rows) ──────────── */

.components-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 980px) { .components-v2 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .components-v2 { grid-template-columns: 1fr; } }

.component-v2 {
  background: var(--ss-paper);
  border: 1px solid var(--ss-flax);
  border-radius: 16px;
  padding: 24px 24px 28px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  transition: background 0.2s;
}
.component-v2:hover { background: var(--ss-bone-100); }
.component-v2 .num {
  font-family: var(--ss-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ss-ember);
  margin-bottom: 14px;
}
.component-v2 .name {
  font-family: var(--ss-serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.component-v2 .desc {
  color: var(--ss-slate);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 20px;
}
.component-v2 .stack {
  margin-top: auto;
  font-family: var(--ss-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ss-stone);
  padding-top: 14px;
  border-top: 1px solid var(--ss-flax);
}

/* ── Steps v2 (cards) ───────────────────────────────── */

.steps-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 980px) { .steps-v2 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps-v2 { grid-template-columns: 1fr; } }

.step-v2 {
  background: var(--ss-paper);
  border: 1px solid var(--ss-flax);
  border-radius: 18px;
  padding: 28px 24px 28px;
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}
.step-v2 .num-pill {
  display: inline-flex;
  align-self: flex-start;
  padding: 5px 12px;
  font-family: var(--ss-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ss-ember);
  background: rgba(200,97,42,.08);
  border-radius: 999px;
  margin-bottom: 24px;
}
.step-v2 .name {
  font-family: var(--ss-serif);
  font-style: italic;
  font-size: 36px;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.step-v2 .desc {
  color: var(--ss-slate);
  font-size: 14px;
  line-height: 1.55;
}
.step-v2 .duration {
  margin-top: auto;
  padding-top: 24px;
  font-family: var(--ss-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ss-stone);
}

/* ── Fit v2 (cards side by side) ────────────────────── */

.fit-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 760px) { .fit-v2 { grid-template-columns: 1fr; } }

.fit-card {
  background: var(--ss-paper);
  border: 1px solid var(--ss-flax);
  border-radius: 18px;
  padding: 32px 32px 28px;
}
.fit-card.best { border-color: var(--ss-ember-200); background: rgba(249,231,224,.4); }
.fit-card .head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.fit-card .head .mark {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--ss-paper);
  border: 1px solid var(--ss-flax);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ss-mono);
  font-weight: 600;
  font-size: 13px;
  color: var(--ss-slate);
}
.fit-card.best .head .mark { background: var(--ss-ember); border-color: var(--ss-ember); color: var(--ss-bone); }
.fit-card .head .label {
  font-family: var(--ss-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ss-slate);
}
.fit-card h3 {
  font-family: var(--ss-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
}
.fit-card ul { list-style: none; padding: 0; margin: 0; }
.fit-card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--ss-flax);
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ss-slate);
}
.fit-card li:first-child { border-top: none; padding-top: 4px; }
.fit-card .check {
  flex-shrink: 0;
  font-family: var(--ss-mono);
  font-size: 14px;
  width: 16px;
  color: var(--ss-ember);
  font-weight: 600;
}
.fit-card.not .check { color: var(--ss-stone); }

/* ── Pullquote v2 ───────────────────────────────────── */

.thesis-v2 {
  background: var(--ss-paper);
  border: 1px solid var(--ss-flax);
  border-radius: 20px;
  padding: clamp(48px, 7vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
}
@media (max-width: 880px) { .thesis-v2 { grid-template-columns: 1fr; gap: 32px; } }

.thesis-v2 .quote {
  font-family: var(--ss-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 14ch;
}
.thesis-v2 .body {
  color: var(--ss-slate);
  font-size: 16px;
  line-height: 1.65;
}
.thesis-v2 .body p + p { margin-top: 18px; }
.thesis-v2 .body .signature {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--ss-flax);
  font-family: var(--ss-serif);
  font-style: italic;
  color: var(--ss-ember);
  font-size: 20px;
  line-height: 1.3;
}

/* ── Founder v2 (asymmetric) ────────────────────────── */

.founder-v2 {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 880px) { .founder-v2 { grid-template-columns: 1fr; gap: 40px; } }

.founder-v2 .photo {
  aspect-ratio: 4 / 5;
  background: var(--ss-paper);
  border: 1px solid var(--ss-flax);
  border-radius: 18px;
  position: relative;
  overflow: hidden;
}
.founder-v2 .photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.founder-v2 .photo .caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: var(--ss-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ss-stone);
  background: rgba(244, 241, 235, 0.9);
  padding: 6px 10px;
  border-radius: 999px;
}
.founder-v2 .right h2 {
  font-family: var(--ss-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
  max-width: 22ch;
}
.founder-v2 .right .body { color: var(--ss-slate); font-size: 15.5px; line-height: 1.65; }
.founder-v2 .right .body p + p { margin-top: 18px; }
.founder-v2 .right .body em { color: var(--ss-ink); font-style: italic; }

.founder-v2 .meta-pills {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.founder-v2 .meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--ss-paper);
  border: 1px solid var(--ss-flax);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ss-slate);
}
.founder-v2 .meta-pill .key {
  font-family: var(--ss-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ss-stone);
}
.founder-v2 .meta-pill .val {
  color: var(--ss-ink);
  font-weight: 500;
}

.founder-v2 .read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding: 12px 22px;
  background: transparent;
  color: var(--ss-ink);
  border: 1px solid var(--ss-ink);
  border-radius: 999px;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.18s;
}
.founder-v2 .read-more:hover { background: var(--ss-ink); color: var(--ss-bone); }

/* ── Final CTA v2 ───────────────────────────────────── */

.cta-v2 {
  margin-top: 96px;
  padding: clamp(64px, 9vw, 120px) clamp(40px, 6vw, 80px);
  background: var(--ss-ink);
  color: var(--ss-bone);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
.wrap > .cta-v2 { margin-bottom: 80px; }

.cta-v2 .eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  font-family: var(--ss-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ss-bone-300);
  margin-bottom: 28px;
}
.cta-v2 .eyebrow-pill .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--ss-ember);
}
.cta-v2 h2 {
  font-family: var(--ss-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  max-width: 14ch;
  margin-bottom: 28px;
}
.cta-v2 h2 .accent { color: var(--ss-ember); }
.cta-v2 .lead {
  color: rgba(255,255,255,.74);
  font-size: 17px;
  line-height: 1.55;
  max-width: 50ch;
  margin-bottom: 44px;
}
.cta-v2 .ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.cta-v2 .btn-v2.primary {
  background: var(--ss-ember);
  color: var(--ss-bone);
}
.cta-v2 .btn-v2.primary:hover { background: var(--ss-ember-bright); }
.cta-v2 .btn-v2.outline {
  color: var(--ss-bone);
  border-color: rgba(255,255,255,.2);
}
.cta-v2 .btn-v2.outline:hover { background: var(--ss-bone); color: var(--ss-ink); border-color: var(--ss-bone); }

.cta-v2 .bottomline {
  margin-top: clamp(64px, 8vw, 96px);
  padding-top: 28px;
  border-top: 1px solid var(--ss-ember);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-v2 .bottomline .label {
  font-family: var(--ss-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.cta-v2 .bottomline .value {
  font-family: var(--ss-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ss-bone);
}
.cta-v2 .bottomline .value .accent { color: var(--ss-ember); }

/* ── Footer v2 ──────────────────────────────────────── */

.footer-v2 {
  background: var(--ss-bone);
  color: var(--ss-slate);
  border-top: 1px solid var(--ss-flax);
  padding: 56px 0 32px;
}
.footer-v2 .wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.footer-v2 .col h4 {
  font-family: var(--ss-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ss-stone);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer-v2 .col ul { list-style: none; }
.footer-v2 .col li { padding: 5px 0; }
.footer-v2 .col a {
  color: var(--ss-slate);
  font-size: 14px;
  transition: color 0.15s;
}
.footer-v2 .col a:hover { color: var(--ss-ink); }
.footer-v2 .brand .lockup {
  display: block;
  margin-bottom: 16px;
}
.footer-v2 .brand .lockup img {
  height: 28px;
  width: auto;
  display: block;
}
.footer-v2 .brand .tag {
  font-family: var(--ss-serif);
  font-style: italic;
  font-size: 17px;
  color: var(--ss-ink);
  max-width: 24ch;
}
.footer-v2 .legal {
  grid-column: 1 / -1;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--ss-flax);
  display: flex;
  justify-content: space-between;
  font-family: var(--ss-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ss-stone);
}

@media (max-width: 760px) {
  .footer-v2 .wrap { grid-template-columns: 1fr 1fr; }
}

/* ── About v2 ───────────────────────────────────────── */

.about-hero-v2 {
  padding-top: 64px;
  padding-bottom: 96px;
}
.about-hero-v2 .display-v2 {
  font-family: var(--ss-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(56px, 8vw, 116px);
  line-height: 1;
  letter-spacing: -0.025em;
  max-width: 16ch;
  margin-bottom: 32px;
}
.about-hero-v2 .display-v2 .accent { color: var(--ss-ember); }
.about-hero-v2 .lead-v2 {
  max-width: 60ch;
  color: var(--ss-slate);
  font-size: 17px;
  line-height: 1.55;
}

/* Belief cards */
.beliefs-v2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 760px) { .beliefs-v2 { grid-template-columns: 1fr; } }

.belief-card {
  background: var(--ss-paper);
  border: 1px solid var(--ss-flax);
  border-radius: 18px;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  min-height: 240px;
}
.belief-card .num {
  font-family: var(--ss-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ss-ember);
  margin-bottom: 18px;
}
.belief-card .stmt {
  font-family: var(--ss-serif);
  font-style: italic;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
}
.belief-card .gloss {
  color: var(--ss-slate);
  font-size: 14.5px;
  line-height: 1.55;
}

/* Timeline v2 */
.timeline-v2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.timeline-row {
  background: var(--ss-paper);
  border: 1px solid var(--ss-flax);
  border-radius: 18px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 180px 1fr 160px;
  gap: 32px;
  align-items: center;
  transition: background 0.18s;
}
.timeline-row.current {
  background: var(--ss-ink);
  border-color: var(--ss-ink);
}
.timeline-row .year-pill {
  display: inline-flex;
  align-self: flex-start;
  padding: 7px 14px;
  background: var(--ss-bone);
  border: 1px solid var(--ss-flax);
  border-radius: 999px;
  font-family: var(--ss-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ss-slate);
}
.timeline-row.current .year-pill { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); color: var(--ss-bone-300); }
.timeline-row .what {
  font-family: var(--ss-serif);
  font-style: italic;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.timeline-row.current .what { color: var(--ss-bone); }
.timeline-row.current .what .accent { color: var(--ss-ember); }
.timeline-row .desc { color: var(--ss-slate); font-size: 14.5px; line-height: 1.55; }
.timeline-row.current .desc { color: rgba(255,255,255,.74); }
.timeline-row .meta {
  font-family: var(--ss-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ss-stone);
  text-align: right;
}
.timeline-row.current .meta { color: rgba(255,255,255,.55); }

@media (max-width: 880px) {
  .timeline-row { grid-template-columns: 1fr; gap: 12px; }
  .timeline-row .meta { text-align: left; }
}

/* Refusal cards (re-use components-v2 grid but darker) */
.refusals-v2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width: 760px) { .refusals-v2 { grid-template-columns: 1fr; } }

.refusal-card {
  background: var(--ss-paper);
  border: 1px solid var(--ss-flax);
  border-radius: 16px;
  padding: 28px 28px 24px;
  position: relative;
}
.refusal-card .pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--ss-bone);
  border: 1px solid var(--ss-flax);
  border-radius: 999px;
  font-family: var(--ss-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ss-clay, #B0463A);
  margin-bottom: 18px;
}
.refusal-card .pill::before { content: "✕"; font-size: 11px; }
.refusal-card .name {
  font-family: var(--ss-serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.refusal-card .desc {
  color: var(--ss-slate);
  font-size: 14px;
  line-height: 1.55;
}
