@font-face {
  font-family: "Inter";
  src: url("/fonts/inter/inter-latin.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-display: swap;
  font-style: normal;
}
:root {
  --section-space-top: 110px;
  --bg: #faf9f7;
  --ink: #0b0b0c;
  --muted: #6b6862;
  --line: #ddd9d2;
  --acc: #d4ff3f;
  --dark: #0b0b0c;
  --mono: ui-monospace, SFMono-Regular, Menlo, monospace;
  --sans: "Inter", system-ui, sans-serif;
  /* Unequal on purpose: the solid CTA carries ~13x the fill contrast of the
     translucent bar, so 38 against 44 reads matched. Do not equalise */
  --nav-bar-h: 44px;
  --nav-cta-h: 38px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-micro: 180ms;
  --dur-ui: 260ms;
  --dur-reveal: 450ms;
  --dur-hover: 150ms;
  --ease-out: cubic-bezier(0, 0.4, 0, 1);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-padding-top: 96px;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
}
.wrap {
  max-width: var(--site-container);
  margin: 0 auto;
  padding: 0 var(--site-gutter);
}
section[id] {
  scroll-margin-top: 96px;
}
em {
  font-style: normal;
}
:where(a, button, [tabindex]):focus-visible {
  outline: 2px solid var(--acc);
  outline-offset: 2px;
  box-shadow: 0 0 0 5px rgba(11, 11, 12, 0.85);
}
.skip {
  position: absolute;
  left: 8px;
  top: -60px;
  z-index: 200;
  background: var(--brand-dark);
  color: #f7f8f8;
  padding: 12px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 15px;
  transition: top 160ms var(--ease);
}
.skip:focus {
  top: 8px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* underline draws in from the left */
.ul {
  text-decoration: none;
  background: linear-gradient(currentColor, currentColor) left bottom/0% 1px
    no-repeat;
  transition: background-size 180ms var(--ease-out);
}

/* hero: dithered ascii field, accent in trail + sparks */
.hero {
  position: sticky;
  top: 0;
  min-height: 100svh;
  background: var(--brand-dark);
  overflow: hidden;
  display: grid;
  align-content: center;
}
.hero-halftone {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-in {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--site-container);
  margin: 0 auto;
  padding: clamp(5rem, 12vh, 9rem) var(--site-gutter) clamp(3rem, 6vh, 5rem);
}
.hero-in .ln {
  display: block;
  animation: lnin 0.9s var(--ease) backwards;
  animation-delay: var(--i, 0s);
}
@keyframes lnin {
  from {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: none;
  }
}
.hero-in .sub {
  animation: lnin 0.8s var(--ease) backwards;
  animation-delay: 0.45s;
}
.hero-in .ctas {
  animation: lnin 0.8s var(--ease) backwards;
  animation-delay: 0.6s;
}
.hero h1 {
  font-weight: 500;
  letter-spacing: -0.025em;
  font-size: clamp(2rem, 1rem + 4.8vw, 4.75rem);
  line-height: 1;
  color: #f7f8f8;
  max-width: none;
}
.hero .sub {
  margin: 30px 0 0;
  font-size: clamp(1rem, 0.85rem + 0.45vw, 1.125rem);
  color: #b1b5bb;
  max-width: 46ch;
  line-height: 1.55;
}
.hero .ctas {
  margin-top: 38px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* wordmark: words grow out of each letter, looping */
.asq {
  position: relative;
  display: inline-flex;
  white-space: nowrap;
}
.aw {
  display: inline-flex;
  align-items: baseline;
}
.aw em {
  font-weight: 500;
}
.ax {
  display: inline-block;
  overflow: hidden;
  max-width: 0;
  opacity: 0;
  vertical-align: baseline;
  padding-bottom: 0.32em;
  margin-bottom: -0.32em;
  transition:
    max-width 0.34s var(--ease),
    opacity 0.1s ease;
}
.ax i {
  display: inline-block;
  font-style: normal;
  font-size: 1em;
  font-weight: 500;
  color: var(--acc);
  text-transform: none;
  white-space: nowrap;
  transform: translateX(-0.08em);
  transition: transform 0.42s var(--ease);
}
.aw.exp .ax {
  max-width: var(--w, 4em);
  opacity: 1;
  transition:
    max-width 0.52s var(--ease),
    opacity 0.26s ease;
}
.aw.exp .ax i {
  transform: none;
  transition-duration: 0.52s;
}
/* static form for reduced motion / no-js */
.asq .xw {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.34em;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(247, 248, 248, 0.5);
  text-decoration: none;
  white-space: nowrap;
  pointer-events: none;
}
.asq .xw i {
  display: inline-block;
  margin-right: 0.4em;
  font-style: normal;
}
.asq .xw b {
  color: var(--acc);
  font-weight: 400;
}
html.asq-anim .asq .xw {
  display: none;
}

/* liquid glass: blur everywhere, refraction on Chromium */
.glass {
  backdrop-filter: blur(14px) saturate(170%);
  -webkit-backdrop-filter: blur(14px) saturate(170%);
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  padding: var(--btn-cta-padding);
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  transition:
    transform var(--dur-micro) var(--ease),
    background var(--dur-micro) ease,
    border-color var(--dur-micro) ease;
}
.btn-cta svg {
  width: 15px;
  height: 15px;
  margin-left: 9px;
  transition: transform var(--dur-micro) var(--ease);
}
.hero .btn-cta {
  background: #f7f8f8;
  border-color: #f7f8f8;
  color: var(--dark);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.32);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(24, 36, 48, 0.4);
  color: var(--ink);
  border-radius: var(--radius);
  padding: var(--btn-cta-padding);
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  transition:
    transform var(--dur-micro) var(--ease),
    background var(--dur-micro) ease,
    border-color var(--dur-micro) ease;
}
.hero .btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #f7f8f8;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08),
    0 8px 28px rgba(0, 0, 0, 0.28);
}

main {
  position: relative;
  z-index: 3;
  background: var(--bg);
  padding-top: 8px;
}
section {
  padding: var(--section-space-top) 0 72px;
}
h2 {
  font-weight: 600;
  letter-spacing: -0.026em;
  font-size: var(--public-section-size);
  line-height: 1.08;
  max-width: 20em;
}

/* masked heading lines */
.lmask {
  display: block;
  overflow: hidden;
  padding-bottom: 0.14em;
  margin-bottom: -0.14em;
}
.lin {
  display: block;
  transform: translateY(105%);
  transition: transform var(--dur-reveal) var(--ease);
}
h2.in .lin {
  transform: none;
}

/* word-sweep statement */
.bigwords {
  font-weight: 600;
  letter-spacing: -0.026em;
  font-size: var(--public-section-size);
  line-height: 1.22;
  max-width: 23em;
}
.bigwords span {
  color: #8c8882;
  transition: color 0.55s ease;
}
.bigwords span.on {
  color: var(--ink);
}

/* steps: pinned rail, active step inks in */
.flow {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 90px;
  align-items: start;
}
.flowside {
  position: sticky;
  top: 150px;
}
.step {
  position: relative;
  padding: 36px 0 36px 32px;
  border-bottom: 1px solid var(--line);
  border-left: 2px solid var(--line);
  opacity: 0.72;
  transition:
    opacity 0.5s ease,
    border-color 0.5s ease;
}
.step:last-child {
  border-bottom: none;
}
.step h3 {
  margin-top: 0;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.step p {
  margin-top: 10px;
  font-size: 16px;
  color: var(--muted);
  max-width: 34em;
}
.step.on {
  opacity: 1;
  border-left-color: var(--acc);
}

/* rules: filterable table, sticky head */
.rfilters {
  margin-top: 36px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.rfilter {
  font: inherit;
  font-size: 13px;
  font-weight: 400;
  padding: 8px 16px;
  min-height: var(--control-tap-h);
  display: inline-flex;
  align-items: center;
  border-radius: var(--control-radius);
  border: 1px solid var(--line);
  background: none;
  color: var(--muted);
  cursor: pointer;
  transition: all var(--dur-micro) var(--ease);
}
.rfilter.on {
  background: var(--acc);
  border-color: var(--acc);
  color: var(--dark);
}
.rtable {
  margin-top: 28px;
  border-top: 2px solid var(--ink);
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.rtable th,
.rtable td {
  padding: 15px 24px 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  text-align: left;
  vertical-align: baseline;
}
.rtable thead th {
  position: sticky;
  top: 72px;
  z-index: 3;
  background: var(--bg);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 12px 24px 12px 0;
}
.rtable td {
  color: var(--muted);
}
.rtable td:first-child {
  color: var(--ink);
}
.rtable b {
  font-weight: 400;
}
.rtable b a {
  text-decoration: none;
  display: inline-block;
  padding: 11px 0;
  margin: -11px 0;
}
.rtable tbody tr {
  transition: background 0.12s ease;
}
.rstat {
  text-align: right;
  padding-right: 0;
}
.rchip {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
}
.rchip:is(.force, .soon) {
  min-height: 32px;
  padding: 5px 10px;
  border: 1px solid transparent;
  border-radius: var(--control-radius);
  line-height: 20px;
}
.rchip.force {
  background: var(--acc);
  color: var(--dark);
}
.rchip.soon {
  border: 1px solid rgba(11, 11, 12, 0.45);
  color: var(--ink);
}
.rrow.xtra {
  display: none;
}
#rules.expanded .rrow.xtra:not(.hide-filter),
#rules.filtering .rrow.xtra:not(.hide-filter) {
  display: table-row;
}
.rrow.hide-filter {
  display: none;
}
.rshow {
  margin-top: 24px;
  background: none;
  border: none;
  padding: 12px 0;
  margin-bottom: -12px;
  font: inherit;
  font-size: 13px;
  font-weight: 400;
  color: var(--ink);
  cursor: pointer;
}
#rules.filtering .rshow {
  display: none;
}
.rcite {
  margin-top: 26px;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 70em;
}

/* open: statement lines + credential strip */
.openline {
  font-size: var(--public-section-size);
  font-weight: 600;
  letter-spacing: -0.026em;
  line-height: 1.22;
  max-width: 22em;
}
.openline + .openline {
  margin-top: 0.55em;
}
.openline a {
  text-decoration: none;
  position: relative;
}
.openline a::after {
  content: "";
  position: absolute;
  inset: -8px -4px;
}
.ostrip {
  margin-top: 52px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 44px 0;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.odim {
  margin-right: 10px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  white-space: nowrap;
}
.ostars {
  font-weight: 600;
}
.ostars-wrap {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  color: var(--dark);
  background: var(--acc);
  border-radius: var(--radius);
  padding: 6px 14px;
}
.olinks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
  font-weight: 400;
}
.olinks a {
  width: max-content;
  padding: 12px 0;
  margin: -12px 0;
}
/* Technical metadata stays outlined without suggesting a button action. */
.obadges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.obadge {
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 12px;
  font: 400 13px/1.5 var(--sans);
  color: var(--muted);
}
.ometa {
  margin-top: 30px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
}

/* reveals: fire once */
.js-reveal .reveal {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity var(--dur-reveal) var(--ease),
    transform var(--dur-reveal) var(--ease);
}
.js-reveal .reveal.in {
  opacity: 1;
  transform: none;
}
.steps .step:nth-child(3) {
  transition-delay: 0.05s;
}
.steps .step:nth-child(4) {
  transition-delay: 0.1s;
}
.steps .step:nth-child(5),
.steps .step:nth-child(6),
.steps .step:nth-child(7) {
  transition-delay: 0.15s;
}

/* hover only where it can't stick */
@media (hover: hover) and (pointer: fine) {
  .ul:hover {
    background-size: 100% 1px;
  }
  .btn-cta:hover {
    transform: translateY(-1px);
    background: #232326;
  }
  .btn-cta:hover svg {
    transform: translate(2px, -2px);
  } /* arrow is already diagonal */
  .hero .btn-cta:hover {
    background: #fff;
  }
  .btn-ghost:hover {
    border-color: var(--ink);
    background: rgba(11, 11, 12, 0.05);
    transform: translateY(-1px);
  }
  .hero .btn-ghost:hover {
    border-color: rgba(247, 248, 248, 0.8);
    background: rgba(255, 255, 255, 0.1);
  }
  .rfilter:hover {
    border-color: var(--ink);
    color: var(--ink);
    background: var(--selection-bg);
  }
  .rtable tbody tr:hover {
    background: var(--selection-bg);
  }
  .btn-acc:hover {
    transform: translateY(-1px);
    background: #e2ff6b;
  }
  .btn-acc:hover svg {
    transform: translate(2px, -2px);
  }
  .flinks a:hover {
    color: #fff;
  }
  .fsocial a:hover {
    color: #fff;
    transform: translateY(-2px);
  }
}
/* press: instant in, eases out */
.btn-cta:active {
  background: #1a1a1d;
  transform: translateY(0);
}
.hero .btn-cta:active {
  background: #e8e6e1;
  transform: translateY(0);
}
.btn-ghost:active {
  background: rgba(11, 11, 12, 0.09);
  transform: translateY(0);
}
.hero .btn-ghost:active {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .lin {
    transform: none;
    transition: none;
  }
  .hero-in .ln,
  .hero-in .sub,
  .hero-in .ctas {
    animation: none;
    opacity: 1;
    transform: none;
    filter: none;
  }
  .step {
    opacity: 1;
    transition: none;
  }
  .bigwords span {
    color: var(--ink);
  }
  .rrow.xtra {
    transition: none;
  }
}
@media (prefers-reduced-transparency: reduce) {
  .glass,
  .glass-t2 {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  .hero .btn-cta {
    background: #f7f8f8;
    color: var(--dark);
  }
  .hero .btn-ghost {
    background: rgba(255, 255, 255, 0.14);
  }
}
@media (max-width: 860px) {
  .flow {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .flowside {
    position: static;
  }
  .ostrip {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
@media (max-width: 720px) {
  .hero h1 {
    font-size: clamp(1.5rem, 7.2vw, 2.6rem);
  }
}
@media (max-height: 520px) and (max-width: 860px) {
  /* phone landscape */
  .hero {
    align-content: start;
  }
  .hero-in {
    padding-top: 76px;
  }
  .hero h1 {
    font-size: clamp(1.35rem, 8.5vw, 2rem);
  }
}
@media (max-width: 640px) {
  :root {
    --section-space-top: 84px;
  }
  .wrap {
    padding: 0 var(--site-gutter);
  }
  .hero .ctas {
    display: flex;
    gap: 10px;
    max-width: none;
  }
  .hero .ctas a {
    justify-content: center;
    min-height: var(--control-tap-h);
    padding: 10px 18px;
    font-size: 14px;
    line-height: 1.4;
  }
  .hero-in {
    padding: 112px var(--site-gutter) 72px;
  }
  section {
    padding: var(--section-space-top) 0 64px;
  }
  .rtable,
  .rtable tbody,
  .rtable tr,
  .rtable td {
    display: block;
    width: 100%;
  }
  .rtable thead {
    display: none;
  }
  .rtable td {
    padding: 0;
    border-bottom: none;
  }
  .rtable colgroup {
    display: none;
  }
  .rtable tbody tr {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 12px;
  }
  .rtable td:first-child {
    grid-column: 1;
    grid-row: 1;
    padding: 0;
  }
  .rtable td:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }
  .rtable td:nth-child(3) {
    grid-column: 1/-1;
    grid-row: 3;
    line-height: 1.6;
  }
  .rtable td.rstat {
    grid-column: 2;
    grid-row: 1/3;
    align-self: start;
    width: auto;
    max-width: 112px;
    text-align: right;
    padding: 0;
  }
  .rtable .rchip {
    font-size: 11px;
    line-height: 1.5;
    padding: 4px 8px;
  }
  .rtable tbody .rrow.hide-filter,
  .rtable tbody .rrow.xtra {
    display: none;
  }
  .rtable tbody tr {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }
  .rstat {
    text-align: left;
    padding-top: 6px;
  }
  #rules.expanded .rrow.xtra:not(.hide-filter),
  #rules.filtering .rrow.xtra:not(.hide-filter) {
    display: grid;
  }
  .olinks a {
    width: auto;
  }
  .odim {
    display: block;
    margin: 4px 0 0;
    white-space: normal;
  }
  .ostrip > * {
    min-width: 0;
  }

  }
.gm {
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  width: 100%;
  pointer-events: none;
  visibility: hidden;
}
main,
footer {
  position: relative;
}

.hero-in {
  min-width: 0;
}
.asq {
  max-width: 100%;
}
.rtable {
  overflow-wrap: anywhere;
}
.rtable caption {
  text-align: left;
  font-size: 14px;
  color: var(--muted);
  padding: 16px 0;
}
.rtable .rchip {
  white-space: normal;
  display: inline-block;
}
@media (max-width: 640px) {
  .rtable td:nth-child(2) {
    font-size: 14px;
  }
  .rtable td:first-child {
    font-weight: 600;
    padding-bottom: 6px;
  }
  .hero h1 {
    line-height: 1.1;
  }
  .asq .xw {
    font-size: 10px;
    letter-spacing: 0;
    white-space: normal;
    max-width: 88vw;
  }
    .flinks a {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}
@media (max-height: 520px) {
  .hero {
    position: relative;
    min-height: 100svh;
  }
  .hero-in {
    padding-top: 110px;
    padding-bottom: 48px;
  }
  .hero .sub {
    margin-top: 20px;
  }
  .hero .ctas {
    margin-top: 24px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .js-reveal .reveal {
    opacity: 1;
    transform: none;
  }
  .hero {
    position: relative;
  }
  .hero-in {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (min-width: 641px) and (max-width: 900px) {
  .rtable th,
  .rtable td {
    padding-right: 12px;
    font-size: 14px;
  }
  .rtable thead th {
    font-size: 10px;
    letter-spacing: 0.08em;
  }
  .rtable col:nth-child(1) {
    width: 23% !important;
  }
  .rtable col:nth-child(2) {
    width: 18% !important;
  }
  .rtable col:nth-child(3) {
    width: 37% !important;
  }
  .rtable col:nth-child(4) {
    width: 22% !important;
  }
}
@media (max-width: 640px) {
  .rtable td:first-child {
    padding-bottom: 0;
  }
  .rtable tbody tr {
    padding: 20px 0;
  }
  .rfilters {
    gap: 8px;
  }
  .rfilter {
    padding: 8px 13px;
  }
  .hero h1 .ln:last-child {
    display: flex;
    align-items: baseline;
    gap: 0.25em;
  }
  .asq {
    font-size: clamp(21px, 6.4vw, 32px);
  }
}

@media (max-width: 640px) {
  html:not(.asq-anim) .hero h1 {
    margin-bottom: 68px;
  }
  .asq .xw {
    width: 240px;
    max-width: calc(100vw - 110px);
    line-height: 1.6;
  }
}

.rchip time {
  white-space: nowrap;
}
@media (max-width: 640px) {
  .rchip.soon {
    text-align: center;
  }
  .rchip.soon time {
    display: block;
  }
  .odim.ostars-wrap {
    display: inline-flex;
    width: max-content;
    gap: 0.3em;
    margin: 0 8px 6px 0;
  }
}

.owasp-reference {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: var(--section-space-top) 0 var(--page-end-space);
}
.owasp-reference img {
  width: 126px;
  height: auto;
  flex: none;
}
.owasp-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}
.owasp-title a {
  text-decoration-color: var(--acc);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.owasp-detail {
  font-size: 13px;
  color: var(--muted);
  margin-top: 5px;
}
@media (max-width: 640px) {
  .owasp-reference {
    padding: var(--section-space-top) 4px var(--page-end-space);
    gap: 20px;
    align-items: flex-start;
    flex-direction: column;
  }
  .owasp-reference img {
    width: 105px;
  }
  .owasp-title {
    font-size: 17px;
  }
  .owasp-detail {
    line-height: 1.6;
  }
}

.buyer-guide { padding-block: clamp(48px, 7vw, 96px); }
.buyer-guide h2 { max-width: 720px; margin-bottom: 32px; }
.buyer-guide details { border-bottom: 1px solid var(--line); padding: 20px 0; }
.buyer-guide summary { font-size: clamp(17px, 2vw, 22px); font-weight: 500; min-height: var(--control-tap-h); }
.buyer-guide details p { max-width: 780px; padding: 12px 28px 4px 0; font-size: 16px; line-height: 1.75; color: var(--muted); }
.buyer-guide a { color: var(--ink); }
.buyer-next { margin-top: 28px; line-height: 1.8; color: var(--muted); }

@media (max-width: 860px) {
  .receipt-home :is(.btn-cta,.btn-ghost) { border-radius: var(--radius); }
}
