:root {
  --ink: #080808;
  --ink-2: #17110a;
  --paper: #fff6dc;
  --paper-2: #f2dfb5;
  --paper-3: #fffaf0;
  --muted: #6f614c;
  --gold: #ffc400;
  --gold-2: #ffe760;
  --gold-3: #fff0a8;
  --hot: #ff5a1f;
  --blue: #83d8ff;
  --pink: #ff8ac7;
  --green: #dff9b5;
  --purple: #ead9ff;
  --line: #080808;
  --shadow: 0.625rem 0.625rem 0 #080808;
  --shadow-small: 0.3125rem 0.3125rem 0 #080808;
  --radius: 1.375rem;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background:
    radial-gradient(circle at 11% 8%, rgba(255,196,0,.38), transparent 23rem),
    radial-gradient(circle at 87% 17%, rgba(255,90,31,.18), transparent 22rem),
    radial-gradient(circle at 55% 78%, rgba(131,216,255,.14), transparent 30rem),
    linear-gradient(180deg, var(--paper), var(--paper-3) 52%, var(--paper-2));
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button, input, textarea, select {
  font: inherit;
}
.wrap {
  width: min(73.75rem, calc(100% - 2.25rem));
  margin: 0 auto;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mb-5 {
  margin-bottom: 2.5rem;
}
.mt-5 {
  margin-top: 2.5rem;
}

.mb-10 {
  margin-bottom: 5rem;
}
.mt-10 {
  margin-top: 5rem;
}

.fs-small {
  font-size: clamp(1rem, 2.2vw, 1rem);
}

.fw-bolder {
  font-weight: 700;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 0.25rem solid var(--line);
  background: rgba(8, 8, 8, .93);
  color: #fff;
  backdrop-filter: blur(0.75rem);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.875rem;
  gap: 1.375rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 11.75rem;
}
.brand-logo {
  width: 11.125rem;
  max-width: 42vw;
  height: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.375rem;
  font-weight: 850;
  font-size: 0.875rem;
}
.nav-links a {
  opacity: .82;
}
.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
  color: var(--gold-2);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  min-height: 3.125rem;
  padding: 0 1.1875rem;
  border: 0.1875rem solid var(--ink);
  border-radius: 62.4375rem;
  background: #fff;
  box-shadow: var(--shadow-small);
  color: var(--ink);
  font-weight: 950;
  letter-spacing: -.02em;
  transition: transform .16s ease, box-shadow .16s ease;
  white-space: nowrap;
}
.button:hover {
  transform: translate(0.1875rem, 0.1875rem);
  box-shadow: 0.125rem 0.125rem 0 var(--ink);
}
.button.primary {
  background: var(--gold);
}
.button.green {
  background: var(--green);
}
.button.dark {
  background: var(--ink);
  color: #fff;
}
.button.ghost {
  background: #fff8de;
}
.topbar .button {
  min-height: 2.75rem;
  padding: 0 1rem;
  box-shadow: 0.25rem 0.25rem 0 #fff;
}
.topbar .button:hover {
  box-shadow: 0.0625rem 0.0625rem 0 #fff;
}
.hero-actions .button,
.footer-cta .button,
.plan-card .button {
  min-height: 4.25rem;
  padding: 0 2.375rem;
  font-size: 1.25rem;
}

main {
  overflow: hidden;
}
.hero {
  padding: 4.75rem 0 2.375rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  right: -5.625rem;
  top: 3.5rem;
  width: 17.5rem;
  height: 17.5rem;
  background: url('../images/managani-icon.png') center/contain no-repeat;
  opacity: .08;
  transform: rotate(-12deg);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.75rem;
  align-items: start;
  position: relative;
}
.hero h1 {
  max-width: 61.25rem;
}
.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  border: 0.1875rem solid var(--ink);
  background: #fff;
  padding: 0.5rem 0.8125rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 0.3125rem 0.3125rem 0 var(--ink);
}
.eyebrow {
  border-radius: 62.4375rem;
  margin-bottom: 1.5rem;
}
.kicker {
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  padding: 0;
  margin-bottom: 0.75rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: #6f614c;
}
.dot {
  width: 0.625rem;
  height: 0.625rem;
  background: var(--gold);
  border: 0.125rem solid var(--ink);
  border-radius: 50%;
}

h1, h2, h3, p {
  overflow-wrap: anywhere;
}
h1 {
  font-size: clamp(3.375rem, 7.2vw, 6.5rem);
  line-height: .87;
  letter-spacing: -.085em;
  margin: 0 0 1.625rem;
  max-width: 53.125rem;
  text-wrap: balance;
}
h2 {
  margin: 0;
  font-size: clamp(2.625rem, 5.2vw, 4.75rem);
  line-height: .9;
  letter-spacing: -.075em;
  text-wrap: balance;
}
h3 {
  margin: 0 0 0.75rem;
  font-size: 1.6875rem;
  line-height: .96;
  letter-spacing: -.045em;
}
.marker {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  padding: 0 .18em;
  line-height: 1.02;
  transform: rotate(-2deg);
}
.hero-copy,
.lead {
  font-size: clamp(1.1875rem, 2.2vw, 1.5625rem);
  line-height: 1.18;
  font-weight: 780;
  color: #26221c;
}
.hero-copy {
  max-width: 47.5rem;
  margin: 0 0 1.75rem;
}
.hero-pitch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.hero-pitch .hero-copy {
  margin: 0;
}
.lead {
  margin: 1.125rem 0 0;
}
.hero-actions,
.footer-actions {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-wrap: wrap;
}
.hero-actions {
  margin-bottom: 0.875rem;
}
.choice-line {
  margin: 0 0 1.4375rem;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 950;
  color: #3a3328;
}
.micro {
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
}
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 2.125rem;
  padding: 0 0.6875rem;
  border: 0.125rem solid var(--ink);
  border-radius: 62.4375rem;
  font-family: var(--font-mono);
  font-weight: 850;
  font-size: 0.75rem;
  background: #fff;
}
.pill.gold {
  background: var(--gold-2);
}
.pill.hot {
  background: #ffd2bf;
}
.pill.green {
  background: #eaffb2;
}

.product-card {
  border: 0.25rem solid var(--ink);
  border-radius: 1.875rem;
  background: #fffdf7;
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: rotate(1deg);
  position: relative;
}
.product-card::after {
  content: "";
  position: absolute;
  right: -2.875rem;
  bottom: -3.625rem;
  width: 12.5rem;
  height: 12.5rem;
  background: url('../images/managani-icon.png') center/contain no-repeat;
  opacity: .18;
  pointer-events: none;
}
.window-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.625rem;
  padding: 1rem 1.125rem;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 850;
}
.lights {
  display: flex;
  gap: 0.4375rem;
}
.light {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  border: 0.125rem solid #fff;
}
.light.one {
  background: var(--hot);
}
.light.two {
  background: var(--gold);
}
.light.three {
  background: var(--blue);
}
.dash {
  padding: 1.125rem;
  position: relative;
  z-index: 1;
}
.dash-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.875rem;
  align-items: start;
  margin-bottom: 1rem;
}
.signal-title {
  font-size: 1.75rem;
  line-height: .96;
  font-weight: 1000;
  letter-spacing: -.06em;
}
.score {
  border: 0.1875rem solid var(--ink);
  border-radius: 1.125rem;
  background: var(--gold);
  padding: 0.625rem 0.75rem;
  text-align: center;
  box-shadow: 0.25rem 0.25rem 0 var(--ink);
}
.score b {
  display: block;
  font-size: 1.75rem;
  line-height: .9;
}
.score span {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 900;
}
.lane-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.lane {
  border: 0.1875rem solid var(--ink);
  border-radius: 1.125rem;
  padding: 0.75rem;
  background: #fff;
  min-height: 7.875rem;
}

.lane:nth-child(2) {
  background: #e9f8ff;
}

.lane:nth-child(3) {
  background: #fff0f7;
}

.lane:nth-child(4) {
  background: #f3ffe0;
}

.lane:nth-child(5) {
  background: #fff4c7;
}

.lane:nth-child(6) {
  background: #efe1ff;
}
.lane-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 950;
  text-transform: uppercase;
  margin-bottom: 0.625rem;
}
.mini-item {
  border: 0.125rem solid var(--ink);
  border-radius: 0.8125rem;
  padding: 0.5625rem;
  background: #fff;
  margin-top: 0.5rem;
  font-weight: 850;
  font-size: 0.8125rem;
  line-height: 1.08;
}
.mini-muted {
  margin-top: 0.375rem;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  color: var(--muted);
}

.dash-open {
  position: relative;
}
.dash-open .dash-head {
  margin-bottom: 1.125rem;
  display: flex;
  justify-content: flex-end;
}
.dash-open .score {
  transform: rotate(2deg);
}
.dash-open .lane-grid {
  gap: 1.125rem;
  grid-template-columns: 1fr 1fr 1fr;
  transform: rotate(1.3deg);
}
.dash-open .lane {
  box-shadow: 0.25rem 0.25rem 0 var(--ink);
}
.dash-foot {
  margin-top: 1.125rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 850;
  color: #3a3328;
}

.page-hero {
  padding: 5.125rem 0 3.375rem;
  border-bottom: 0.25rem solid var(--ink);
  background:
    linear-gradient(135deg, rgba(255,196,0,.38), transparent 52%),
    rgba(255,255,255,.2);
}
.page-hero .wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.125rem;
  align-items: end;
}
.page-hero h1 {
  max-width: 58.125rem;
  margin-bottom: 0;
}
.page-hero .lead {
  max-width: 45rem;
}
.page-hero .lead a {
  text-decoration: underline;
}
.page-tag {
  width: 8.625rem;
  height: 8.625rem;
  border: 0.25rem solid var(--ink);
  border-radius: 1.75rem;
  background: var(--gold);
  box-shadow: var(--shadow-small);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 2.75rem;
  font-weight: 1000;
}

.founder {
  padding: 2rem 0 3rem;
}
.founder-note {
  display: grid;
  grid-template-columns: 10.625rem 1fr;
  gap: 1.75rem;
  align-items: center;
  border: 0.25rem solid var(--ink);
  border-radius: 1.875rem;
  background: #fffdf7;
  color: var(--ink);
  box-shadow: var(--shadow);
  padding: 1.75rem;
  transform: rotate(-1.3deg);
}
.founder-note img {
  width: 100%;
  height: auto;
  justify-self: center;
  border-radius: 1rem;
  filter: drop-shadow(0.375rem 0.375rem 0 rgba(255,196,0,.28));
}
.founder-note .label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  border: 0.125rem solid var(--gold);
  padding: 0.4375rem 0.625rem;
  margin-bottom: 1rem;
}
.founder-note p {
  margin: 0 0 1rem;
  max-width: 57.5rem;
  color: #413b33;
  font-size: clamp(1.1875rem, 2vw, 1.5625rem);
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -.025em;
}
.founder-note p:last-child {
  margin-bottom: 0;
  color: var(--ink);
}
.founder-note .badge-impact {
  font-weight: 700;
  font-size: clamp(1.1875rem, 2vw, 0.9375rem);
}
.founder-note a {
  text-decoration: underline;
}
.founder-note a:hover {
  font-weight: 700;
}

.strip {
  border-block: 0.25rem solid var(--ink);
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-weight: 950;
  letter-spacing: -.03em;
}
.strip-track {
  display: inline-flex;
  gap: 2.375rem;
  padding: 0.8125rem 0;
  animation: move 24s linear infinite;
}
.strip span {
  color: var(--gold);
}
@keyframes move {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

section {
  padding: 5rem 0;
}
.section-head {
  max-width: 53.125rem;
  margin-bottom: 2.125rem;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head.wide {
  max-width: 61.25rem;
}

.pain-grid,
.tools-grid,
.preview-grid,
.pricing-grid,
.faq-grid,
.choice-grid {
  display: grid;
  gap: 1.125rem;
}
.pain-grid {
  grid-template-columns: repeat(3, 1fr);
}
.tools-grid {
  grid-template-columns: repeat(3, 1fr);
}
.preview-grid {
  grid-template-columns: repeat(3, 1fr);
}
.pricing-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.375rem;
}
.pricing-grid.beta-single {
  grid-template-columns: minmax(0, 35rem);
  justify-content: center;
}
.choice-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1.375rem;
}

.pain-card,
.tool-card,
.preview-card,
.quote-card,
.compare-card,
.choice-card,
.plan-card,
.selfhost-card,
.faq-card,
.workflow-card,
.split-card,
.note-card {
  border: 0.25rem solid var(--ink);
  border-radius: var(--radius);
  background: #fffdf7;
  box-shadow: var(--shadow-small);
}
.pain-card,
.preview-card,
.choice-card,
.note-card {
  padding: 1.5rem;
}
.pain-card {
  min-height: 17rem;
}
.pain-grid.duo {
  grid-template-columns: 1fr 1fr;
}
.pain-card p {
  display: grid;
  grid-template-columns: 9em 1fr;
  column-gap: 0.75rem;
  align-items: start;
  font-size: 1.25rem;
  line-height: 1.4;
}
.pain-card p + p {
  margin-top: 1.125rem;
}
/* Single-paragraph pain cards (e.g. why.hbs) have no badge label,
   so they skip the two-column "label + text" grid above. */
.pain-grid:not(.duo) .pain-card p {
  display: block;
}
@media (max-width: 47.5rem) {
  .pain-card p {
    grid-template-columns: 1fr;
    row-gap: 0.375rem;
  }
}
.badge-problem {
  background: #F29F05;
  color: #000;
  font-weight: 700;
  padding: 0.15em 0.5em;
  border-radius: 0.25em;
  display: inline-block;
  line-height: 1.4;
  transform: rotate(-1.5deg);
}
.badge-impact {
  background: var(--green);
  color: #000;
  font-weight: 700;
  padding: 0.15em 0.5em;
  border-radius: 0.25em;
  display: inline-block;
  line-height: 1.4;
  transform: rotate(-1.5deg);
}
.badge-solution {
  background: #ffdf00;
  color: #000;
  font-weight: 700;
  padding: 0.15em 0.5em;
  border-radius: 0.25em;
  display: inline-block;
  line-height: 1.4;
  transform: rotate(-1.5deg);
}

.compare-card.cost li {
  justify-content: space-between;
  align-items: baseline;
}
.compare-card.cost li b {
  font-family: var(--font-mono);
  white-space: nowrap;
}
.compare-card.cost li.total {
  font-weight: 1000;
  font-size: 1.1875rem;
  letter-spacing: -.02em;
  background: #fff8de;
}
.pain-card h3 {
  font-size: 1.5625rem;
  line-height: 1.02;
}
.pain-card .fix {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 0.125rem dashed var(--ink);
  color: #2a2620;
  font-weight: 760;
  line-height: 1.32;
}
.pain-card .fix b {
  display: inline-block;
  background: var(--gold);
  border: 0.125rem solid var(--ink);
  border-radius: 0.4375rem;
  padding: 0.0625rem 0.5rem;
  margin-right: 0.4375rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: -.01em;
}

.tax-card {
  border: 0.25rem solid var(--ink);
  border-radius: var(--radius);
  background: #fffdf7;
  box-shadow: var(--shadow-small);
  padding: 1.5rem 1.625rem;
  max-width: 43.75rem;
}
.tax-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.tax-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.875rem 0.125rem;
  border-bottom: 0.125rem dashed #d6c193;
  font-weight: 750;
  font-size: 1.0625rem;
}
.tax-list li b {
  font-family: var(--font-mono);
  white-space: nowrap;
}
.tax-total {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0.125rem;
  border-bottom: 0.25rem solid var(--ink);
  font-weight: 1000;
  font-size: 1.3125rem;
  letter-spacing: -.03em;
}
.tax-total b {
  font-family: var(--font-mono);
}
.tax-managani {
  margin-top: 1.125rem;
  background: var(--gold);
  border: 0.1875rem solid var(--ink);
  border-radius: 1rem;
  box-shadow: 0.3125rem 0.3125rem 0 var(--ink);
  padding: 0.9375rem 1.125rem;
  font-weight: 850;
  font-size: 1.1875rem;
  letter-spacing: -.02em;
}
.tax-managani strong {
  font-weight: 1000;
}
.pain-card .num,
.choice-card .num,
.workflow-card .num {
  display: inline-grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 0.1875rem solid var(--ink);
  background: var(--hot);
  color: #fff;
  font-family: var(--font-mono);
  font-weight: 950;
  margin-bottom: 1.375rem;
}
.pain-card .num {
  border-radius: 50%;
}
.choice-card .num,
.workflow-card .num {
  border-radius: 0.875rem;
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0.25rem 0.25rem 0 var(--ink);
}
.pain-card p,
.tool-card p,
.preview-card p,
.choice-card p,
.note-card p,
.workflow-card p {
  margin: 0;
  color: #413b33;
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 650;
}

.tool-card {
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
  min-height: 14.5rem;
}
.tool-card::before {
  content: attr(data-tag);
  position: absolute;
  top: 1rem;
  right: -1.75rem;
  transform: rotate(13deg);
  border: 0.1875rem solid var(--ink);
  background: var(--gold);
  padding: 0.3125rem 2.375rem;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 950;
}
.tool-icon {
  width: 3.5rem;
  height: 3.5rem;
  border: 0.1875rem solid var(--ink);
  border-radius: 1.0625rem;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0.25rem 0.25rem 0 var(--ink);
  margin-bottom: 1.625rem;
  font-size: 1.625rem;
  font-weight: 1000;
}
.tool-card:nth-child(2) .tool-icon {
  background: var(--blue);
}
.tool-card:nth-child(3) .tool-icon {
  background: var(--green);
}
.tool-card:nth-child(4) .tool-icon {
  background: #ffd2bf;
}
.tool-card:nth-child(5) .tool-icon {
  background: var(--pink);
}
.tool-card:nth-child(6) .tool-icon {
  background: var(--purple);
}
.stack-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4375rem;
  margin: 0 0 0.875rem;
}
.stack-tools span {
  display: inline-flex;
  align-items: center;
  border: 0.125rem solid var(--ink);
  border-radius: 62.4375rem;
  padding: 0.1875rem 0.625rem;
  background: #fff;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 850;
  letter-spacing: -.01em;
}

.preview-card {
  min-height: 14.875rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.preview-card h3 {
  font-size: 2rem;
}
.preview-card .linkish {
  margin-top: 1.375rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 950;
}
.preview-card.gold {
  background: var(--gold-3);
}
.preview-card.green {
  background: #f1ffd3;
}
.preview-card.blue {
  background: #e9f8ff;
}

.open-source-band {
  border: 0.25rem solid var(--ink);
  border-radius: 2.125rem;
  background: #fffdf7;
  color: var(--ink);
  box-shadow: var(--shadow);
  padding: 2.125rem;
  position: relative;
  overflow: hidden;
}
.open-source-band::after {
  content: "{ }";
  position: absolute;
  right: 1.875rem;
  bottom: -0.625rem;
  font-family: var(--font-mono);
  font-size: 8.5rem;
  line-height: 1;
  color: rgba(8,8,8,.07);
  font-weight: 1000;
}
.open-source-band h2 {
  color: var(--ink);
  max-width: 61.25rem;
  position: relative;
  z-index: 1;
}
.open-source-band p {
  max-width: 51.875rem;
  color: #413b33;
  position: relative;
  z-index: 1;
}
.open-source-band .kicker {
  color: #6f614c;
  position: relative;
  z-index: 1;
}
.choice-card {
  min-height: 14.875rem;
}
.choice-card:nth-child(2) {
  background: #e9f8ff;
}
.choice-card:nth-child(3) {
  background: #f1ffd3;
}

.showcase,
.split-feature {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 1.75rem;
  align-items: stretch;
}
.quote-card,
.split-card.dark {
  padding: 1.75rem;
  background: var(--ink);
  color: #fff;
}
.quote-card h2,
.split-card.dark h2 {
  color: #fff;
}
.quote-card p,
.split-card.dark p {
  color: #f7e9d2;
}
.quote-card .kicker,
.split-card.dark .kicker {
  color: var(--gold-2);
}
.steps {
  display: grid;
  gap: 0.875rem;
}
.step,
.workflow-card {
  border: 0.25rem solid var(--ink);
  border-radius: 1.375rem;
  background: #fff;
  box-shadow: var(--shadow-small);
  padding: 1.25rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}
.step b {
  width: 2.625rem;
  height: 2.625rem;
  border: 0.1875rem solid var(--ink);
  background: var(--gold);
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: var(--font-mono);
}
.step h3,
.workflow-card h3 {
  margin: 0 0 0.375rem;
  font-size: 1.5rem;
  letter-spacing: -.05em;
  line-height: 1;
}
.step p {
  margin: 0;
  font-weight: 650;
  color: #413b33;
  line-height: 1.32;
}
.workflow-grid {
  display: grid;
  gap: 0.875rem;
}
.workflow-card {
  min-height: auto;
}
.workflow-card .num {
  margin-bottom: 0;
}

.compare-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.375rem;
}
.compare-card {
  overflow: hidden;
}
.compare-title {
  padding: 1.125rem 1.25rem;
  border-bottom: 0.25rem solid var(--ink);
  background: #fff;
  font-weight: 1000;
  font-size: 1.625rem;
  letter-spacing: -.05em;
}
.compare-title.bad {
  background: #ffd2bf;
}
.compare-title.good {
  background: var(--gold);
}
.compare-card ul,
.plan-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.compare-card li,
.plan-card li {
  display: flex;
  gap: 0.75rem;
  padding: 1.0625rem 1.25rem;
  border-bottom: 0.1875rem solid var(--ink);
  font-weight: 800;
  line-height: 1.22;
}
.compare-card li:last-child,
.plan-card li:last-child {
  border-bottom: 0;
}
.x, .check {
  font-family: var(--font-mono);
  font-weight: 1000;
}
.x {
  color: #a32800;
}
.check {
  color: #245f00;
}

/* Compare hub cards */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.125rem;
}
.compare-link {
  border: 0.25rem solid var(--ink);
  border-radius: var(--radius);
  background: #fffdf7;
  box-shadow: var(--shadow-small);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform .12s ease, box-shadow .12s ease;
}
.compare-link:hover {
  transform: translate(-3px, -3px);
  box-shadow: 0.625rem 0.625rem 0 var(--ink);
}
.compare-link h3 {
  margin-bottom: 0.5rem;
}
.compare-link p {
  margin: 0 0 1.25rem;
  color: #413b33;
  font-weight: 650;
  line-height: 1.35;
}
.compare-link .compare-go {
  margin-top: auto;
  font-family: var(--font-mono);
  font-weight: 950;
  letter-spacing: -.01em;
}
/* "More comparisons" inline links on spoke pages */
.compare-more {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.compare-more a {
  border: 0.1875rem solid var(--ink);
  border-radius: 62rem;
  background: #fff;
  padding: 0.5rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 900;
  text-decoration: none;
  color: var(--ink);
  box-shadow: 0.25rem 0.25rem 0 var(--ink);
}
.compare-more a:hover {
  background: var(--gold);
}
@media (max-width: 60rem) {
  .compare-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-head {
  border: 0.25rem solid var(--ink);
  border-radius: 2.125rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-2) 56%, #fff 56%);
  box-shadow: var(--shadow);
  padding: 2.125rem;
  margin-bottom: 7rem;
  position: relative;
  overflow: hidden;
}
.pricing-head h1,
.pricing-head h2 {
  max-width: 56.25rem;
}
.all-features-badge {
  position: absolute;
  right: 1.75rem;
  top: 1.75rem;
  width: 10.5rem;
  height: 10.5rem;
  display: grid;
  place-items: center;
  text-align: center;
  border: 0.25rem solid var(--ink);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0.375rem 0.375rem 0 var(--ink);
  font-family: var(--font-mono);
  font-weight: 1000;
  font-size: 0.8125rem;
  transform: rotate(9deg);
}
.plan-card {
  overflow: hidden;
  background: #fff;
}
.plan-card.featured {
  /* transform: rotate(1deg); */
  box-shadow: var(--shadow);
}
.plan-head {
  padding: 1.5rem;
  border-bottom: 0.25rem solid var(--ink);
  background: #fffdf7;
}
.plan-card.featured .plan-head {
  background: var(--ink);
  color: #fff;
}
.plan-name {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
  border: 0.125rem solid currentColor;
  padding: 0.375rem 0.5625rem;
  margin-bottom: 1rem;
}
.price-row {
  display: flex;
  align-items: end;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.price {
  font-size: clamp(4.625rem, 9vw, 7.25rem);
  line-height: .83;
  font-weight: 1000;
  letter-spacing: -.085em;
}
.per {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 950;
  margin-bottom: 0.75rem;
}
.domain-line {
  font-size: 1.75rem;
  font-weight: 1000;
  letter-spacing: -.055em;
  line-height: .95;
  margin: 0;
}
.plan-card .button {
  margin: 1.25rem;
}
.waitlist-card {
  max-width: 42rem;
  margin: 2.5rem auto 0;
  padding: 2rem;
  background: #fff;
  border: 0.25rem solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: rotate(-0.5deg);
}
.waitlist-note {
  margin: 0.5rem 0 1.25rem;
  font-weight: 700;
  color: var(--muted);
}
.waitlist-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.waitlist-row input[type="email"] {
  flex: 1 1 14rem;
  padding: 0.875rem 1.25rem;
  border: 0.1875rem solid var(--ink);
  border-radius: 999px;
  background: var(--paper-3);
  font-weight: 700;
  color: var(--ink);
}
.waitlist-row input[type="email"]:focus {
  outline: none;
  background: #fff;
  box-shadow: var(--shadow-small);
}
.hp-field {
  position: absolute;
  left: -9999px;
  width: 0;
  height: 0;
  opacity: 0;
}
.waitlist-error {
  margin: 0.75rem 0 0;
  font-weight: 800;
  color: var(--hot);
}
.waitlist-success {
  padding: 1rem 1.25rem;
  background: var(--green);
  border: 0.1875rem solid var(--ink);
  border-radius: 0.875rem;
  box-shadow: var(--shadow-small);
  font-weight: 700;
}
.selfhost-card {
  margin-top: 1.5rem;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  background: var(--gold-3);
}
.selfhost-card h3 {
  font-size: 2.125rem;
}
.selfhost-card p {
  margin: 0;
  max-width: 48.75rem;
  font-weight: 720;
  color: #413b33;
  line-height: 1.32;
}

.faq-grid {
  grid-template-columns: 1fr 1fr;
}
.faq-card {
  padding: 0;
  overflow: hidden;
}
.faq-card details {
  display: block;
}
.faq-card summary {
  cursor: pointer;
  list-style: none;
  padding: 1.25rem 1.375rem;
  font-size: 1.375rem;
  font-weight: 1000;
  line-height: 1;
  letter-spacing: -.045em;
  background: #fff;
  border-bottom: 0.25rem solid var(--ink);
}
.faq-card summary::-webkit-details-marker {
  display: none;
}
.faq-card summary::after {
  content: "+";
  float: right;
  font-family: var(--font-mono);
  font-weight: 1000;
}
.faq-card details[open] summary::after {
  content: "–";
}
.faq-card p {
  margin: 0;
  padding: 1.125rem 1.375rem 1.375rem;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.35;
  color: #413b33;
  background: #fffdf7;
}

.footer-cta {
  background: var(--ink);
  color: #fff;
  padding: 4.625rem 0;
  border-top: 0.25rem solid var(--ink);
}
.footer-cta .wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.75rem;
  align-items: center;
}
.footer-cta h2 {
  color: #fff;
  max-width: 55rem;
}
.footer-cta p {
  color: #f7e9d2;
  max-width: 45rem;
}
.footer-cta .button {
  box-shadow: 0.3125rem 0.3125rem 0 #fff;
}
.footer-cta .button:hover {
  box-shadow: 0.125rem 0.125rem 0 #fff;
}
.footer-actions {
  justify-content: flex-end;
}
.footer-choice {
  font-family: var(--font-mono);
  font-weight: 950;
  color: var(--gold-2);
  margin-top: 1rem;
}

.fineprint {
  border-top: 0.1875rem solid #2a2a2a;
  background: var(--ink);
  color: #cfc7bb;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 2.5rem 0;
}
.fineprint .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: end;
}
.fineprint p {
  margin: 0;
}
.fineprint a {
  color: #f7e9d2;
}
.fineprint a:hover {
  color: var(--gold-2);
}
.fineprint .footer-copy {
  max-width: 44rem;
}
.fineprint .footer-tagline {
  color: #f7e9d2;
  font-weight: 950;
}
.fineprint .footer-family {
  margin-top: 1.25rem;
  line-height: 1.7;
}
.fineprint .footer-marker {
  color: var(--gold-2);
  font-size: 0.65rem;
  line-height: 1;
}
.fineprint .footer-end {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.5rem;
  text-align: right;
  white-space: nowrap;
}

.fineprint .footer-links {
  display: flex;
  align-items: center;
  gap: 1.125rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.fineprint .footer-links a {
  color: #cfc7bb;
  transition: color .15s ease;
}
.fineprint .footer-links a:hover {
  color: var(--gold-2);
}

/* ── Mobile nav: hamburger + overlay (Streamient concept, Managani style) ── */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
  padding: 0.375rem 0.5rem;
  cursor: pointer;
}
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(8, 8, 8, .97);
  -webkit-backdrop-filter: blur(0.625rem);
  backdrop-filter: blur(0.625rem);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.875rem;
}
.nav-overlay.active {
  display: flex;
}
.nav-overlay-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.625rem;
}
.nav-overlay-menu a {
  color: #fff;
  font-size: 2rem;
  font-weight: 950;
  letter-spacing: -.05em;
}
.nav-overlay-menu a:hover {
  color: var(--gold-2);
}
.nav-overlay-menu .button {
  margin-top: 0.75rem;
  color: var(--ink);
  font-size: 1.25rem;
}
.nav-overlay-logo {
  position: absolute;
  top: 1.125rem;
  left: 1.125rem;
  display: inline-flex;
  align-items: center;
}
.nav-overlay-logo img {
  width: 10rem;
  height: auto;
  display: block;
}
.nav-overlay-close {
  position: absolute;
  top: 0.75rem;
  right: 1.125rem;
  background: none;
  border: 0;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 68.75rem) {
  .nav-links {
    gap: 0.875rem;
  }
  .nav-cta .button.ghost {
    display: none;
  }
  .all-features-badge {
    position: static;
    margin-top: 1.375rem;
  }
}

@media (max-width: 58.75rem) {
  .hero-grid,
  .page-hero .wrap,
  .showcase,
  .split-feature,
  .compare-wrap,
  .footer-cta .wrap,
  .selfhost-card {
    grid-template-columns: 1fr;
  }
  .pain-grid,
  .tools-grid,
  .preview-grid,
  .choice-grid,
  .pricing-grid,
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-actions {
    justify-content: flex-start;
  }
  .dash-open .lane-grid {
    transform: none;
    grid-template-columns: 1fr 1fr;
  }
  .plan-card.featured {
    transform: none;
  }
}

@media (max-width: 47.5rem) {
  .nav {
    flex-direction: row;
    align-items: center;
    padding: 0;
  }
  .nav-links {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .brand-logo {
    width: 10.625rem;
  }
  .hero {
    padding-top: 3.25rem;
  }
  h1 {
    font-size: clamp(3.25rem, 15vw, 4.625rem);
  }
  h2 {
    font-size: clamp(2.5rem, 12vw, 3.625rem);
  }
  .founder-note {
    grid-template-columns: 1fr;
  }
  .founder-note img {
    width: 11.25rem;
    height: auto;
  }
  .pain-grid,
  .tools-grid,
  .preview-grid,
  .choice-grid,
  .pricing-grid,
  .faq-grid,
  .lane-grid {
    grid-template-columns: 1fr;
  }
  .dash-open .lane-grid {
    grid-template-columns: 1fr;
  }
  .pain-card,
  .tool-card,
  .choice-card {
    min-height: auto;
  }
  .pricing-head {
    padding: 1.5rem;
  }
  .open-source-band {
    padding: 1.625rem;
  }
  .footer-cta {
    padding: 3.625rem 0;
  }
  .fineprint .wrap {
    grid-template-columns: 1fr;
  }
  .fineprint .footer-end {
    align-items: flex-start;
    text-align: left;
    white-space: normal;
  }
  .fineprint .footer-links {
    justify-content: flex-start;
  }
}

/* ============================================================
   Ghost standard templates — blog, post, page, author, legal.
   Authored in the Managani look (no equivalent in the static v3).
   ============================================================ */

/* Shared single-column reading width */
.page-full,
.legal-page,
.blog-post,
.gh-content,
.breadcrumb,
.blog-post-header,
.author-header {
  width: min(47.5rem, calc(100% - 2.25rem));
  margin-left: auto;
  margin-right: auto;
}

.page-full {
  padding: 4rem 0;
}
.legal-page {
  padding: 4rem 0;
}

.page-full > h1,
.legal-header h1,
.blog-post-header h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: .92;
  letter-spacing: -.06em;
  margin: 0 0 1.5rem;
}

.post-feature-image,
.blog-post-image {
  margin: 0 0 2rem;
}
.post-feature-image img,
.blog-post-image img {
  width: 100%;
  height: auto;
  border: 0.25rem solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
}
.blog-post-image figcaption {
  margin-top: 0.625rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
}

.legal-updated {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--muted);
  margin: 0;
}
.legal-header {
  margin-bottom: 1rem;
}

/* Error page */
.error-page {
  text-align: center;
}
.error-page h1 {
  font-size: clamp(5rem, 18vw, 10rem);
  margin: 0 0 0.5rem;
}
.error-page p {
  font-size: 1.25rem;
  font-weight: 760;
  color: #413b33;
  margin: 0 0 1.25rem;
}

/* Ghost prose content */
.gh-content {
  padding: 0.5rem 0 1.5rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #26221c;
  font-weight: 500;
}
.gh-content > * + * {
  margin-top: 1.25em;
}
.gh-content h2 {
  font-size: clamp(1.875rem, 4vw, 2.625rem);
  line-height: 1;
  letter-spacing: -.05em;
  margin-top: 1.6em;
}
.gh-content h3 {
  font-size: 1.625rem;
  letter-spacing: -.04em;
  margin-top: 1.4em;
}
.gh-content a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 0.125rem;
  text-underline-offset: 0.125rem;
}
.gh-content a:hover {
  background: var(--gold);
}
.gh-content img {
  width: 100%;
  height: auto;
  border: 0.1875rem solid var(--ink);
  border-radius: 1rem;
  box-shadow: var(--shadow-small);
}
.gh-content blockquote {
  border-left: 0.375rem solid var(--gold);
  padding-left: 1.125rem;
  font-weight: 760;
}
.gh-content code {
  font-family: var(--font-mono);
  background: #fff;
  border: 0.125rem solid var(--ink);
  border-radius: 0.375rem;
  padding: 0.0625rem 0.375rem;
  font-size: .9em;
}
.gh-content pre {
  background: var(--ink);
  color: #fff;
  border: 0.1875rem solid var(--ink);
  border-radius: 1rem;
  padding: 1.125rem;
  overflow: auto;
  box-shadow: var(--shadow-small);
}
.gh-content pre code {
  background: none;
  border: 0;
  color: inherit;
  padding: 0;
}
.gh-content ul,
.gh-content ol {
  padding-left: 1.3em;
}
.gh-content li + li {
  margin-top: .4em;
}

.gh-content table {
  border-spacing: 0;
}

.gh-content table tr,
.gh-content table th,
.gh-content table td {
  border: 1px solid var(--gold);
  border-collapse: collapse;
  font-size: 0.95rem;
  padding: 0.65rem;
  line-height: initial;
  text-align: left;
}

.kg-width-wide {
  width: min(67.5rem, calc(100% - 2.25rem));
  max-width: none;
  margin-inline: auto;
}
.kg-width-full {
  width: 100%;
  max-width: none;
}

/* Blog index + tag archive */
.blog-search-row {
  width: min(73.75rem, calc(100% - 2.25rem));
  margin: 0 auto;
  padding: 3rem 0 2rem;
  display: flex;
  justify-content: center;
}
.blog-header {
  width: min(73.75rem, calc(100% - 2.25rem));
  padding: 4rem 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.125rem;
  flex-wrap: wrap;
}
.blog-header h1 {
  font-size: clamp(2.75rem, 7vw, 4.75rem);
  line-height: .9;
  letter-spacing: -.07em;
  margin: 0;
}
.blog-search-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  border: 0.1875rem solid var(--ink);
  border-radius: 62.4375rem;
  background: #fff;
  box-shadow: var(--shadow-small);
  padding: 0 1rem;
  min-height: 2.75rem;
  font-weight: 950;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: transform .16s ease, box-shadow .16s ease;
}
.blog-search-btn:hover {
  transform: translate(0.1875rem, 0.1875rem);
  box-shadow: 0.125rem 0.125rem 0 var(--ink);
}
.blog-search-btn svg {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
  fill: none;
}

.blog-feed,
.post-feed {
  width: min(73.75rem, calc(100% - 2.25rem));
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.375rem;
  align-items: start;
}
.blog-card,
.post-card {
  border: 0.25rem solid var(--ink);
  border-radius: var(--radius);
  background: #fffdf7;
  box-shadow: var(--shadow-small);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .16s ease, box-shadow .16s ease;
}
.blog-card:hover,
.post-card:hover {
  transform: translate(-0.1875rem, -0.1875rem);
  box-shadow: 0.5rem 0.5rem 0 var(--ink);
}
.blog-card-image img,
.post-card-image {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-bottom: 0.25rem solid var(--ink);
  display: block;
}
.blog-card-content,
.post-card-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.blog-card-tag {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: var(--gold);
  border: 0.125rem solid var(--ink);
  padding: 0.1875rem 0.5625rem;
}
.blog-card-title,
.post-card-title {
  font-size: 1.5rem;
  line-height: 1.02;
  letter-spacing: -.04em;
  margin: 0;
}
.blog-card-title a {
  color: var(--ink);
}
.blog-card-title a:hover {
  color: var(--hot);
}
.blog-card-excerpt,
.post-card-excerpt {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.4;
  color: #413b33;
  font-weight: 600;
}
.blog-card-meta,
.post-card-meta {
  display: flex;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--muted);
  margin-top: auto;
}

.blog-pagination {
  width: min(73.75rem, calc(100% - 2.25rem));
  margin: 0 auto 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.125rem;
  flex-wrap: wrap;
}
.blog-pagination-info {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 850;
  color: var(--muted);
}

/* Blog index TLDR / answer block */
.answer-block {
  width: min(58rem, calc(100% - 2.25rem));
  margin: 0 auto 2.5rem;
}
.answer-block-inner {
  border: 0.25rem solid var(--ink);
  border-radius: var(--radius);
  background: #fffdf7;
  box-shadow: var(--shadow-small);
  padding: clamp(1.125rem, 2.5vw, 1.75rem);
}
.answer-kicker {
  display: inline;
  margin-right: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: var(--gold);
  border: 0.125rem solid var(--ink);
  padding: 0.0625rem 0.4375rem;
}
.answer-block h1 {
  margin: 0.875rem 0 0.875rem;
  max-width: 42rem;
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: .95;
  letter-spacing: 0;
}
.answer-block h2 {
  position: absolute;
  width: 0.0625rem;
  height: 0.0625rem;
  padding: 0;
  margin: -0.0625rem;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.answer-block p {
  display: block;
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: #26221c;
  font-weight: 500;
}
.answer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-top: 1rem;
}
.answer-links a {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 0.125rem;
  text-underline-offset: 0.125rem;
}
.answer-links a:hover {
  background: var(--gold);
}

/* Related articles (single post) */
.related-posts {
  width: min(73.75rem, calc(100% - 2.25rem));
  margin: 3.5rem auto 4rem;
  padding-top: 0;
}
.related-posts-title {
  width: min(47.5rem, calc(100% - 2.25rem));
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1;
  letter-spacing: -.05em;
  margin: 0 auto 1.75rem;
}
.related-posts-feed {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 18rem), 23rem));
  justify-content: center;
}

/* Single post */
.blog-post {
  padding-top: 0.5rem;
}
.breadcrumb {
  margin-top: 2.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumb li + li::before {
  content: "/";
  margin-right: 0.5rem;
  color: var(--muted);
}
.breadcrumb a {
  color: var(--muted);
}
.breadcrumb a:hover {
  color: var(--ink);
}
.breadcrumb [aria-current="page"] {
  color: var(--ink);
}
.blog-post-header {
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.blog-post-header .blog-card-tag {
  display: inline-block;
  margin-bottom: 0.875rem;
}
.blog-post-meta {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.75rem;
}
.blog-post-footer {
  width: min(47.5rem, calc(100% - 2.25rem));
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 0.1875rem solid var(--ink);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
}
.author-card {
  display: flex;
  gap: 1rem;
  align-items: center;
  max-width: 40rem;
}
.author-avatar {
  width: 4rem;
  height: 4rem;
  flex: 0 0 4rem;
  border-radius: 50%;
  object-fit: cover;
  border: 0.1875rem solid var(--ink);
}
.author-card h4 {
  margin: 0 0 0.25rem;
  font-size: 1.125rem;
  letter-spacing: -.03em;
}
.author-card p {
  margin: 0;
  font-size: 0.875rem;
  color: #413b33;
  font-weight: 600;
  line-height: 1.4;
}

/* Author archive header */
.author-header {
  margin-top: 4rem;
  margin-bottom: 2rem;
  text-align: center;
}
.author-avatar-large {
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  object-fit: cover;
  border: 0.25rem solid var(--ink);
  box-shadow: var(--shadow-small);
  margin: 0 auto 1.125rem;
}
.author-header h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: -.06em;
  line-height: .92;
  margin: 0 0 0.75rem;
}
.author-header p {
  max-width: 37.5rem;
  margin: 0 auto;
  font-weight: 680;
  color: #413b33;
}

@media (max-width: 58.75rem) {
  .blog-feed,
  .post-feed {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 47.5rem) {
  .blog-feed,
  .post-feed {
    grid-template-columns: 1fr;
  }
  .blog-post-footer {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }
  .blog-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ─── Scroll reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(2.5rem);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}
