/* Hallmark · macrostructure: Editorial Split · Soft Structuralism
 * fonts: Syne + DM Sans · paper: light · accent: ink/teal
 * pre-emit: P5 H5 E5 S4 R5 V5
 */
:root {
  --paper: #fafaf9;
  --paper-2: #f3f2ef;
  --ink: #121212;
  --ink-2: #3a3a3a;
  --mute: #6f6f6f;
  --line: rgba(18, 18, 18, 0.08);
  --line-2: rgba(18, 18, 18, 0.14);
  --accent: #0c7c69;
  --accent-soft: #e6f5f1;
  --warn: #8a6a1a;
  --warn-bg: #fbf6e9;
  --warn-line: #ead9a6;
  --white: #ffffff;
  --max: 1180px;
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --font: "DM Sans", system-ui, sans-serif;
  --display: "Syne", system-ui, sans-serif;
  --radius: 1.75rem;
  --radius-in: 1.35rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 100;
}
.skip:focus { left: 1rem; top: 1rem; }

.shell {
  width: min(calc(100% - 2.5rem), var(--max));
  margin-inline: auto;
}

/* Floating island nav */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 1rem 0 0;
  background: linear-gradient(180deg, var(--paper) 60%, transparent);
}
.nav {
  width: min(calc(100% - 1.5rem), var(--max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0.55rem 0.55rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 40px rgba(18, 18, 18, 0.05);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.03em;
}
.mark {
  width: 2rem;
  height: 2rem;
  border-radius: 0.65rem;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.15rem;
}
.nav-links a {
  color: var(--mute);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.35s var(--ease);
}
.nav-links a:hover { color: var(--ink); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.75rem;
  padding: 0.55rem 0.55rem 0.55rem 1.15rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--ink);
  color: #fff !important;
}
.btn-primary:hover { background: #2a2a2a; color: #fff !important; }
.btn-secondary {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line-2);
  padding-right: 1.15rem;
}
.btn-secondary:hover { background: var(--paper-2); }
.btn .ico {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.95rem;
  transition: transform 0.45s var(--ease);
}
.btn-primary:hover .ico { transform: translate(2px, -1px) scale(1.05); }
.btn-secondary .ico { background: var(--paper-2); }

/* Hero editorial split */
.hero {
  padding: 4.5rem 0 5rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: end;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--mute);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.kicker i {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}
.hero h1 {
  margin: 0 0 1.25rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.8rem, 6.5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  max-width: 9.5ch;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.lede {
  margin: 0;
  max-width: 34rem;
  color: var(--ink-2);
  font-size: 1.08rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}
.fine {
  margin: 1rem 0 0;
  color: var(--mute);
  font-size: 0.88rem;
}

/* Double-bezel media */
.bezel {
  padding: 0.45rem;
  border-radius: var(--radius);
  background: rgba(18, 18, 18, 0.03);
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(18, 18, 18, 0.07);
}
.bezel-in {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-in);
  background: var(--white);
  aspect-ratio: 4 / 3;
}
.bezel-in img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.chip {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-2);
  backdrop-filter: blur(10px);
}

/* Disclosure */
.note {
  margin: 0 0 1rem;
  padding: 1rem 1.15rem;
  border-radius: 1rem;
  background: var(--warn-bg);
  border: 1px solid var(--warn-line);
  color: var(--warn);
  font-size: 0.92rem;
  line-height: 1.55;
}
.note strong { color: #5f4810; }
.note a {
  color: #5f4810;
  font-weight: 650;
  border-bottom: 1px solid rgba(95, 72, 16, 0.35);
}

/* Sections */
.sec {
  padding: 6.5rem 0;
}
.sec-soft { background: var(--paper-2); }
.sec-head {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.5rem;
}
.sec-head h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  max-width: 14ch;
}
.sec-head p {
  margin: 0;
  color: var(--mute);
  font-size: 1.02rem;
  max-width: 28rem;
}

/* Takeaways strip */
.strip {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset;
}
.strip h2 {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-size: 1.4rem;
  letter-spacing: -0.03em;
}
.strip ol {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--ink-2);
}
.strip li { margin: 0.4rem 0; }
.strip li strong { color: var(--ink); }
.strip a {
  color: var(--accent);
  font-weight: 650;
  border-bottom: 1px solid rgba(12, 124, 105, 0.3);
}
.cite {
  margin: 1rem 0 0;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
  color: var(--mute);
  font-size: 0.86rem;
}

/* Asymmetric bento picks */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}
.tile {
  grid-column: span 3;
  padding: 0.4rem;
  border-radius: 1.5rem;
  background: rgba(18, 18, 18, 0.025);
  border: 1px solid var(--line);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(18, 18, 18, 0.06);
}
.tile-in {
  height: 100%;
  min-height: 11rem;
  padding: 1.35rem;
  border-radius: 1.2rem;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.tile.wide { grid-column: span 6; }
.tile.wide .tile-in { min-height: 14rem; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 1rem; align-items: center; }
.tile .lab {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.tile h3 {
  margin: 0.55rem 0 0.4rem;
  font-family: var(--display);
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}
.tile p {
  margin: 0;
  color: var(--mute);
  font-size: 0.95rem;
  line-height: 1.5;
}
.tile img {
  width: 100%;
  height: 100%;
  min-height: 10rem;
  object-fit: cover;
  border-radius: 1rem;
}

/* Media band */
.band {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}
.band .copy h2 {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  max-width: 14ch;
}
.band .copy p {
  margin: 0 0 0.9rem;
  color: var(--ink-2);
  max-width: 36rem;
}
.checks {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
}
.checks li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.6rem;
  color: var(--ink-2);
}
.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
}

/* Finder */
.finder {
  padding: 0.45rem;
  border-radius: var(--radius);
  background: rgba(18, 18, 18, 0.03);
  border: 1px solid var(--line);
}
.finder-in {
  padding: 1.75rem;
  border-radius: var(--radius-in);
  background: var(--white);
}
.finder h2 {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  letter-spacing: -0.035em;
}
.finder > .finder-in > p,
.finder-in > p {
  margin: 0;
  color: var(--mute);
  max-width: 36rem;
}
.opts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.35rem 0;
}
.opt {
  min-height: 2.5rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: var(--paper);
  color: var(--ink-2);
  font-weight: 550;
  font-size: 0.88rem;
  transition: all 0.35s var(--ease);
}
.opt:hover { border-color: var(--ink); color: var(--ink); }
.opt[aria-pressed="true"] {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.result {
  min-height: 5.5rem;
  padding: 1.1rem 1.2rem;
  border-radius: 1rem;
  background: var(--paper-2);
  border-left: 3px solid var(--accent);
}
.result strong {
  display: block;
  font-family: var(--display);
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
}
.result p { margin: 0; color: var(--mute); }
.result a {
  color: var(--accent);
  font-weight: 650;
  border-bottom: 1px solid rgba(12, 124, 105, 0.35);
}

/* Table */
.table-wrap {
  overflow-x: auto;
  border-radius: 1.25rem;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(18, 18, 18, 0.04);
}
table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
}
th, td {
  padding: 1rem 1.05rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}
th {
  background: var(--paper-2);
  color: var(--mute);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}
td { color: var(--ink-2); }
td:first-child {
  color: var(--ink);
  font-weight: 650;
  font-family: var(--display);
  letter-spacing: -0.02em;
}
tbody tr:last-child td { border-bottom: 0; }
tbody tr:hover { background: #fcfcfb; }
.table-note {
  margin: 0.85rem 0 0;
  color: var(--mute);
  font-size: 0.86rem;
}
.badge {
  display: inline-flex;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 650;
  border: 1px solid transparent;
}
.b-g { color: #0c5c4e; background: var(--accent-soft); border-color: #cfe9e2; }
.b-b { color: #1e3a8a; background: #eef2ff; border-color: #dbe3ff; }
.b-m { color: #444; background: var(--paper-2); border-color: var(--line); }
.b-a { color: #7a5610; background: var(--warn-bg); border-color: var(--warn-line); }

/* Tool cards - 2 col clean */
.tools {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.tool {
  padding: 0.4rem;
  border-radius: 1.5rem;
  background: rgba(18, 18, 18, 0.025);
  border: 1px solid var(--line);
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.tool.is-on {
  border-color: rgba(12, 124, 105, 0.45);
  box-shadow: 0 0 0 1px rgba(12, 124, 105, 0.12);
}
.tool-in {
  height: 100%;
  padding: 1.35rem;
  border-radius: 1.2rem;
  background: var(--white);
}
.tool-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}
.tool-id {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.tool-ico {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.8rem;
  display: grid;
  place-items: center;
  background: var(--paper-2);
  border: 1px solid var(--line);
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.72rem;
}
.tool h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}
.tool h3 a { border-bottom: none; color: var(--ink); }
.tool h3 a:hover { color: var(--accent); }
.tool .sub {
  margin: 0.1rem 0 0;
  color: var(--mute);
  font-size: 0.86rem;
}
.tool .sum {
  margin: 0.9rem 0 0;
  color: var(--ink-2);
  font-size: 0.95rem;
}
.cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.1rem;
}
.cols h4 {
  margin: 0 0 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
}
.cols ul {
  margin: 0;
  padding-left: 1rem;
  color: var(--mute);
  font-size: 0.9rem;
}
.cols li + li { margin-top: 0.25rem; }
.tool-foot {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.15rem;
  padding-top: 0.95rem;
  border-top: 1px solid var(--line);
  align-items: center;
}
.tool-foot span { color: var(--mute); font-size: 0.86rem; }
.tool-foot a {
  color: var(--accent);
  font-weight: 650;
  border-bottom: 1px solid rgba(12, 124, 105, 0.3);
}

/* Guides row */
.guides {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gcard {
  display: block;
  padding: 0.4rem;
  border-radius: 1.5rem;
  background: rgba(18, 18, 18, 0.025);
  border: 1px solid var(--line);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.gcard:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(18, 18, 18, 0.06);
}
.gcard-in {
  overflow: hidden;
  border-radius: 1.2rem;
  background: var(--white);
  height: 100%;
}
.gcard img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.gcard .body { padding: 1.15rem 1.2rem 1.3rem; }
.gcard .lab {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.gcard h3 {
  margin: 0.45rem 0 0.35rem;
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}
.gcard p {
  margin: 0;
  color: var(--mute);
  font-size: 0.92rem;
}

/* FAQ */
.faq { display: grid; gap: 0.65rem; }
details {
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
}
summary {
  padding: 1.05rem 1.2rem;
  cursor: pointer;
  font-weight: 650;
  list-style: none;
  font-family: var(--display);
  letter-spacing: -0.02em;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  float: right;
  color: var(--mute);
  font-weight: 500;
}
details[open] summary::after { content: "–"; }
details p {
  margin: 0;
  padding: 0 1.2rem 1.1rem;
  color: var(--mute);
}

/* CTA */
.cta {
  padding: 0.45rem;
  border-radius: calc(var(--radius) + 0.2rem);
  background: var(--ink);
  color: #fff;
}
.cta-in {
  padding: 3rem 1.75rem;
  border-radius: var(--radius);
  text-align: center;
  background:
    radial-gradient(circle at 20% 0%, rgba(12, 124, 105, 0.28), transparent 42%),
    radial-gradient(circle at 90% 100%, rgba(255, 255, 255, 0.06), transparent 40%);
}
.cta h2 {
  margin: 0 auto 0.75rem;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  letter-spacing: -0.04em;
  max-width: 14ch;
  line-height: 1.05;
}
.cta p {
  margin: 0 auto 1.4rem;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.72);
}
.cta .btn-primary {
  background: #fff;
  color: var(--ink) !important;
}
.cta .btn-primary .ico { background: rgba(18, 18, 18, 0.08); color: var(--ink); }
.cta .btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}

/* Footer */
.foot {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--line);
  color: var(--mute);
  font-size: 0.9rem;
}
.foot-grid {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.foot a { color: var(--ink-2); }
.foot a:hover { color: var(--ink); }
.foot a[href*="flow-chart.io"] {
  color: var(--accent);
  font-weight: 650;
}

/* Method */
.methods {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.85rem;
}
.method {
  padding: 1.15rem;
  border-radius: 1.15rem;
  background: var(--white);
  border: 1px solid var(--line);
}
.method strong {
  display: block;
  font-family: var(--display);
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}
.method span { color: var(--mute); font-size: 0.9rem; }

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.on {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .hero-grid,
  .sec-head,
  .strip,
  .band,
  .tile.wide .tile-in { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr 1fr; }
  .tile, .tile.wide { grid-column: span 1; }
  .methods { grid-template-columns: 1fr 1fr; }
  .guides { grid-template-columns: 1fr; }
  .hero h1 { max-width: none; }
}
@media (max-width: 760px) {
  .nav-links a:not(.btn) { display: none; }
  .nav { padding-left: 0.75rem; }
  .tools { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .methods { grid-template-columns: 1fr; }
  .cols { grid-template-columns: 1fr; }
  .sec { padding: 4rem 0; }
  .hero { padding-top: 2.5rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}

/* Compatibility layer for older guide markup */
.site-header { position: sticky; top: 0; z-index: 40; padding: 1rem 0 0; background: linear-gradient(180deg, var(--paper) 60%, transparent); }
.site-header .wrap.nav, .site-header .nav {
  width: min(calc(100% - 1.5rem), var(--max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0.55rem 0.55rem 1.1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--line);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 40px rgba(18,18,18,0.05);
}
.brand-mark { width: 2rem; height: 2rem; border-radius: 0.65rem; display: grid; place-items: center; background: var(--ink); color: #fff; font-size: 0.62rem; font-weight: 700; }
.nav-cta, .button-primary { display: inline-flex; align-items: center; gap: 0.55rem; min-height: 2.75rem; padding: 0.55rem 1.15rem; border-radius: 999px; font-weight: 600; font-size: 0.9rem; background: var(--ink); color: #fff !important; }
.button-secondary { display: inline-flex; align-items: center; min-height: 2.75rem; padding: 0.55rem 1.15rem; border-radius: 999px; font-weight: 600; border: 1px solid var(--line-2); background: #fff; color: var(--ink); }
.wrap { width: min(calc(100% - 2.5rem), var(--max)); margin-inline: auto; }
.wrap-narrow { width: min(calc(100% - 2.5rem), 720px); margin-inline: auto; }
.hero-article { padding: 3.5rem 0 1.5rem; }
.hero-article h1, .prose h1 { font-family: var(--display); font-weight: 700; letter-spacing: -0.04em; font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1.02; margin: 0 0 1rem; max-width: 14ch; }
.eyebrow { color: var(--accent); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.85rem; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 0.35rem; color: var(--mute); font-size: 0.86rem; margin-bottom: 1rem; }
.breadcrumbs a { color: var(--accent); }
.prose { padding-bottom: 3rem; }
.prose p, .prose li { color: var(--ink-2); }
.prose a { color: var(--accent); font-weight: 650; border-bottom: 1px solid rgba(12,124,105,0.3); }
.prose h2 { font-family: var(--display); letter-spacing: -0.03em; font-size: clamp(1.35rem, 2.5vw, 1.7rem); margin: 2.2rem 0 0.75rem; }
.answer-box, .disclosure, .related-card, .guide-card, .cta-band, .table-shell, details { border-radius: 1.15rem; border: 1px solid var(--line); background: #fff; }
.answer-box { padding: 1.25rem 1.35rem; margin: 1.35rem 0; background: var(--paper-2); }
.answer-box h2 { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin: 0 0 0.65rem; font-family: var(--font); }
.disclosure { padding: 1rem 1.15rem; background: var(--warn-bg); border-color: var(--warn-line); color: var(--warn); margin: 1.25rem 0; }
.cta-band { padding: 2rem 1.5rem; text-align: center; margin: 2rem 0; }
.cta-band h2 { font-family: var(--display); letter-spacing: -0.03em; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.65rem; justify-content: center; margin-top: 1rem; }
.guides-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 1.5rem 0 2rem; }
@media (max-width: 900px) { .guides-grid { grid-template-columns: 1fr; } }
.guide-card { overflow: hidden; display: block; color: inherit; transition: transform 0.45s var(--ease); }
.guide-card:hover { transform: translateY(-3px); }
.guide-card .thumb { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.guide-card .body { padding: 1.15rem; }
.guide-card .label { color: var(--accent); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.guide-card h3 { font-family: var(--display); letter-spacing: -0.03em; margin: 0.4rem 0; }
.site-footer, footer { padding: 2rem 0 2.75rem; border-top: 1px solid var(--line); color: var(--mute); font-size: 0.9rem; background: var(--paper-2); margin-top: 2rem; }
.footer-grid { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; width: min(calc(100% - 2.5rem), var(--max)); margin: 0 auto; }
.table-shell { overflow-x: auto; margin: 1.2rem 0; }
.table-shell table { width: 100%; border-collapse: collapse; min-width: 560px; }
.table-shell th, .table-shell td { padding: 0.85rem 1rem; border-bottom: 1px solid var(--line); text-align: left; font-size: 0.92rem; }
.table-shell th { background: var(--paper-2); color: var(--mute); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; }
.related { display: grid; gap: 0.65rem; margin: 1rem 0; }
.related-card { padding: 1rem 1.1rem; display: block; }
.related-card strong { display: block; font-family: var(--display); margin-bottom: 0.2rem; }
.related-card span { color: var(--mute); font-size: 0.9rem; }
.faq details, details { margin-bottom: 0.6rem; }
.meta-row { color: var(--mute); font-size: 0.88rem; margin-top: 0.85rem; }
.article-body { background: var(--paper); }
.prose .lede, .lede { color: var(--ink-2); font-size: 1.08rem; max-width: 36rem; }

/* Capability matrix */
.matrix-wrap {
  overflow-x: auto;
  border-radius: 1.25rem;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 12px 40px rgba(18, 18, 18, 0.04);
  -webkit-overflow-scrolling: touch;
}
table.matrix {
  width: 100%;
  min-width: 920px;
  border-collapse: separate;
  border-spacing: 0;
}
table.matrix th,
table.matrix td {
  padding: 0.85rem 0.75rem;
  text-align: center;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
  vertical-align: middle;
}
table.matrix thead th {
  background: var(--paper-2);
  color: var(--ink);
  font-family: var(--display);
  font-size: 0.82rem;
  letter-spacing: -0.02em;
  font-weight: 700;
  text-transform: none;
  position: sticky;
  top: 0;
  z-index: 2;
}
table.matrix thead th a {
  color: var(--accent);
  border-bottom: none;
}
table.matrix .sticky-col {
  text-align: left;
  position: sticky;
  left: 0;
  z-index: 3;
  background: var(--white);
  font-weight: 650;
  min-width: 11rem;
  box-shadow: 4px 0 12px rgba(18, 18, 18, 0.03);
}
table.matrix thead .sticky-col {
  background: var(--paper-2);
  z-index: 4;
}
table.matrix tbody th.sticky-col {
  font-family: var(--font);
  font-weight: 600;
  color: var(--ink-2);
  font-size: 0.9rem;
}
table.matrix tbody tr:hover td,
table.matrix tbody tr:hover th.sticky-col {
  background: #fcfcfb;
}
table.matrix .price-row td,
table.matrix .price-row th {
  font-size: 0.78rem;
  color: var(--mute);
  background: var(--paper-2);
}
.mx {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  font-size: 0.95rem;
  line-height: 1;
}
.mx.yes { color: #0c7c69; background: var(--accent-soft); }
.mx.mid { color: #8a6a1a; background: #fbf6e9; }
.mx.no { color: #9a9a9a; background: var(--paper-2); }

/* Lead capture */
.capture {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: stretch;
  padding: 0.4rem;
  border-radius: var(--radius);
  background: rgba(18, 18, 18, 0.03);
  border: 1px solid var(--line);
}
.capture-copy,
.capture-form {
  padding: 1.75rem;
  border-radius: var(--radius-in);
  background: var(--white);
}
.capture-copy h2 {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
}
.capture-copy p { margin: 0; color: var(--ink-2); }
.capture-form {
  display: grid;
  gap: 0.85rem;
  align-content: start;
}
.capture-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink-2);
}
.capture-form input[type="email"],
.capture-form select {
  width: 100%;
  min-height: 2.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: 0.85rem;
  border: 1px solid var(--line-2);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}
.capture-form input:focus,
.capture-form select:focus {
  outline: 2px solid rgba(12, 124, 105, 0.35);
  outline-offset: 1px;
}
.checkline {
  display: flex !important;
  align-items: flex-start;
  gap: 0.55rem;
  font-weight: 500 !important;
  grid-template-columns: none;
}
.checkline input { margin-top: 0.2rem; }
.checkline span { font-weight: 500; color: var(--mute); font-size: 0.88rem; }

/* Consent bar */
.consent-bar {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  max-width: 42rem;
  margin: 0 auto;
  padding: 0.35rem;
  border-radius: 1.25rem;
  background: rgba(18, 18, 18, 0.06);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 50px rgba(18, 18, 18, 0.12);
}
.consent-inner {
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: var(--white);
}
.consent-inner p {
  margin: 0 0 0.85rem;
  color: var(--ink-2);
  font-size: 0.9rem;
  line-height: 1.5;
}
.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
@media (max-width: 900px) {
  .capture { grid-template-columns: 1fr; }
}


/* Legal fine print — intentionally low-emphasis */
.legal-fine,
.legal-copy {
  margin: 1.25rem auto 0;
  max-width: var(--max);
  padding: 0 1.25rem;
  font-size: 0.72rem;
  line-height: 1.5;
  color: #9a9a9a;
  letter-spacing: 0.01em;
}
.foot .legal-fine {
  margin-top: 1.5rem;
  padding-bottom: 0.25rem;
}
