@font-face {
  font-family: "Inter";
  src: url("../fonts/InterVariable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --teal: #17a38f;
  --teal-deep: #12856f;
  --teal-ink: #0f6b5a;
  --teal-tint: #eaf7f4;
  --mint: #5ed3be;
  --navy: #1c2b3a;
  --navy-deep: #14202c;
  --ink: #1c2b3a;
  --ink-2: #4f5f6f;
  --ink-3: #7b8994;
  --line: #dfe5e9;
  --paper: #fffdf6;
  --paper-line: #ece7d6;
  --yellow: #f6c244;
  --yellow-ink: #8a6512;
  --coral: #e2604d;
  --white: #fff;
  --radius: 14px;
  --radius-sm: 8px;
  --max: 1120px;
  --gutter: clamp(20px, 5vw, 48px);
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  font-family: var(--font);
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-size: 1.0625rem;
  line-height: 1.6;
  font-feature-settings: "cv11", "ss01";
}

img,
svg { display: block; max-width: 100%; }

a { color: var(--teal-ink); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--teal-deep); }

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: -0.025em;
  font-weight: 800;
  text-wrap: balance;
}

h1 { font-size: clamp(2.35rem, 5.6vw, 4rem); letter-spacing: -0.035em; }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.25rem; letter-spacing: -0.015em; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.lede { font-size: clamp(1.125rem, 1.6vw, 1.3rem); color: var(--ink-2); max-width: 36em; }

.num { font-variant-numeric: tabular-nums; }

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  padding: 10px 14px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-sm);
  z-index: 100;
}
.skip-link:focus { top: 12px; }

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.wrap {
  width: min(var(--max), 100% - 2 * var(--gutter));
  margin-inline: auto;
}

.section { padding-block: clamp(64px, 9vw, 120px); }
.section-tint { background: var(--teal-tint); }
.section-head { max-width: 40em; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head p { margin-top: 14px; color: var(--ink-2); font-size: 1.125rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}
.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: var(--teal-deep); color: var(--white); }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-secondary:hover { border-color: var(--ink); color: var(--ink); }
.btn-dark { background: var(--yellow); color: var(--navy); }
.btn-dark:hover { background: #fbd061; color: var(--navy); }
.btn-lg { padding: 18px 28px; font-size: 1.0625rem; }
.btn svg { width: 18px; height: 18px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 72px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--navy);
  font-weight: 800;
  font-size: 1.375rem;
  letter-spacing: -0.03em;
}
.brand svg { width: 34px; height: 34px; }
.brand em { font-style: normal; color: var(--teal); }

.site-nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ink-2);
  font-weight: 500;
  text-decoration: none;
}
.site-nav a:hover { color: var(--ink); background: var(--teal-tint); }
.site-nav a[aria-current="page"] { color: var(--teal-ink); }
.site-nav .btn { margin-left: 8px; padding: 11px 18px; color: var(--white); }
.site-nav .btn:hover { background: var(--teal-deep); }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 12px var(--gutter) 18px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 32px rgba(28, 43, 58, .08);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px 14px; font-size: 1.0625rem; }
  .site-nav .btn { margin: 10px 0 0; justify-content: center; }
}

/* Hero */
.hero { padding-block: clamp(48px, 8vw, 104px) clamp(56px, 8vw, 112px); overflow: hidden; }
.hero .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}
.hero-copy { padding-top: clamp(8px, 4vw, 56px); }
.hero-copy .lede { margin-top: 22px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-note { margin-top: 20px; color: var(--ink-3); font-size: .9375rem; }
.hero-note strong { color: var(--ink-2); font-weight: 600; }

@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-visual { max-width: 480px; }
}

/* Receipt object */
.receipt-scene { position: relative; padding: 36px 12px 32px; }
.receipt {
  position: relative;
  margin-inline: auto;
  max-width: 420px;
  background: var(--paper);
  color: var(--navy);
  padding: 28px 26px 30px;
  border-radius: 4px 4px 0 0;
  box-shadow: 0 30px 60px -24px rgba(28, 43, 58, .35), 0 2px 6px rgba(28, 43, 58, .08);
  font-size: .9375rem;
  line-height: 1.45;
}
.receipt::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -16px;
  height: 16px;
  background: linear-gradient(45deg, transparent 50%, var(--paper) 50%) 0 0 / 16px 16px,
              linear-gradient(135deg, var(--paper) 50%, transparent 50%) 0 0 / 16px 16px;
}
.receipt-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--paper-line);
}
.receipt-top strong { font-size: 1.0625rem; letter-spacing: -0.01em; }
.receipt-top span { color: var(--ink-3); font-size: .8125rem; }
.receipt-items { list-style: none; margin: 0; padding: 12px 0 0; }
.receipt-items li {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 12px;
  align-items: start;
  padding: 9px 0;
  border-bottom: 1px dashed var(--paper-line);
}
.receipt-items li:last-child { border-bottom: 0; }
.receipt-items .item { font-weight: 600; letter-spacing: -0.005em; }
.receipt-items .price { text-align: right; font-weight: 600; }
.receipt-items .fee {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  color: var(--ink-3);
  font-size: .8125rem;
  margin-top: 2px;
}
.claims { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 10px 4px 4px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: .8125rem;
  font-weight: 500;
  color: var(--ink-2);
}
.chip .num { color: var(--ink); font-weight: 600; }
.avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-size: .6875rem;
  font-weight: 700;
  color: var(--white);
}
.avatar-a { background: var(--teal); }
.avatar-m { background: #e88a5a; }
.avatar-r { background: #5b6ee1; }
.chip-unclaimed {
  border-style: dashed;
  border-color: #e7b23d;
  background: #fff8e2;
  color: var(--yellow-ink);
  padding-left: 10px;
}
.receipt-totals { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--paper-line); }
.receipt-totals div { display: flex; justify-content: space-between; padding: 3px 0; color: var(--ink-2); }
.receipt-totals .grand { color: var(--navy); font-weight: 800; font-size: 1.125rem; padding-top: 8px; }
.receipt-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--teal-tint);
  color: var(--teal-ink);
  font-weight: 600;
  font-size: .875rem;
}
.receipt-check svg { width: 20px; height: 20px; flex: none; }

.receipt-people {
  margin: 30px auto 0;
  max-width: 420px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.person {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 6px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: .875rem;
  white-space: nowrap;
}
.person .avatar { width: 26px; height: 26px; font-size: .75rem; }
.person span { color: var(--ink-2); }
.person strong { font-weight: 700; }

.qr-badge {
  position: absolute;
  z-index: 2;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 10px 10px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--white);
  font-size: .8125rem;
  font-weight: 600;
  box-shadow: 0 18px 36px -18px rgba(28, 43, 58, .6);
}
.qr-badge svg { width: 34px; height: 34px; }
.qr-badge span { display: block; color: var(--mint); font-weight: 500; font-size: .75rem; }

@media (max-width: 480px) {
  .receipt { padding: 22px 18px 24px; }
}

@media (prefers-reduced-motion: no-preference) {
  .receipt .chip:not(.chip-unclaimed),
  .receipt-check,
  .receipt-people .person {
    animation: claim-in .45s cubic-bezier(.2, .8, .2, 1) both;
  }
  .receipt .chip:nth-of-type(1) { animation-delay: .35s; }
  .receipt .chip:nth-of-type(2) { animation-delay: .5s; }
  .receipt .chip:nth-of-type(3) { animation-delay: .65s; }
  .receipt li:nth-child(2) .chip { animation-delay: .8s; }
  .receipt li:nth-child(3) .chip { animation-delay: .95s; }
  .receipt li:nth-child(4) .chip { animation-delay: 1.1s; }
  .receipt-check { animation-delay: 1.3s; }
  .receipt-people .person:nth-child(1) { animation-delay: 1.45s; }
  .receipt-people .person:nth-child(2) { animation-delay: 1.55s; }
  .receipt-people .person:nth-child(3) { animation-delay: 1.65s; }
}
@keyframes claim-in {
  from { opacity: 0; transform: translateY(6px) scale(.96); }
  to { opacity: 1; transform: none; }
}

/* Steps */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 40px);
  counter-reset: step;
}
.steps li { counter-increment: step; }
.step-mark {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.step-mark::before {
  content: counter(step);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: .9375rem;
  flex: none;
}
.step-mark svg { width: 28px; height: 28px; color: var(--teal); }
.steps h3 { margin-bottom: 8px; }
.steps p { color: var(--ink-2); font-size: 1rem; }

@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* Two modes */
.modes { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 56px); }
.mode {
  padding: clamp(24px, 3vw, 36px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
}
.mode h3 { font-size: 1.5rem; margin-bottom: 6px; }
.mode .when { color: var(--teal-ink); font-weight: 600; font-size: .9375rem; margin-bottom: 16px; }
.mode ul { margin: 18px 0 0; padding-left: 0; list-style: none; display: grid; gap: 8px; }
.mode li { display: flex; gap: 10px; color: var(--ink-2); }
.mode li::before {
  content: "";
  flex: none;
  width: 8px;
  height: 8px;
  margin-top: 11px;
  border-radius: 50%;
  background: var(--teal);
}
@media (max-width: 760px) { .modes { grid-template-columns: 1fr; } }

/* Feature list */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 48px) clamp(24px, 4vw, 48px);
  margin: 0;
}
.features > div { border-top: 2px solid var(--navy); padding-top: 18px; }
.features dt { font-weight: 700; font-size: 1.0625rem; margin-bottom: 6px; letter-spacing: -0.01em; }
.features dd { margin: 0; color: var(--ink-2); font-size: 1rem; }
@media (max-width: 900px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features { grid-template-columns: 1fr; } }

/* Comparison table */
.compare { width: 100%; border-collapse: collapse; font-size: 1rem; }
.compare th, .compare td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
.compare thead th { font-size: .9375rem; color: var(--ink-2); font-weight: 600; border-bottom: 2px solid var(--navy); }
.compare thead th:first-child { width: 40%; }
.compare td:first-child { font-weight: 600; }
.compare .yes { color: var(--teal-ink); font-weight: 600; }
.compare .yes::before { content: "✓ "; }
.compare .no { color: var(--ink-3); }
.compare-note { margin-top: 14px; font-size: .9375rem; color: var(--ink-3); }
@media (max-width: 640px) {
  .compare { font-size: .9375rem; }
  .compare th, .compare td { padding: 12px 10px; }
}

/* Pricing */
.plans { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 32px); }
.plan {
  padding: clamp(24px, 3vw, 36px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
}
.plan-free { border-color: var(--teal); border-width: 2px; }
.plan h3 { font-size: 1.5rem; }
.plan .price { font-size: 2.5rem; font-weight: 800; letter-spacing: -0.03em; margin: 12px 0 4px; }
.plan .price small { font-size: 1rem; font-weight: 500; color: var(--ink-3); letter-spacing: 0; }
.plan .plan-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--teal-tint);
  color: var(--teal-ink);
  font-size: .8125rem;
  font-weight: 600;
}
.plan-plus .plan-tag { background: #fff3cf; color: var(--yellow-ink); }
.plan p { color: var(--ink-2); }
.plan ul { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 10px; }
.plan li { display: flex; gap: 10px; align-items: flex-start; }
.plan li svg { width: 20px; height: 20px; flex: none; margin-top: 3px; color: var(--teal); }
.plan .btn { margin-top: 26px; }
@media (max-width: 720px) { .plans { grid-template-columns: 1fr; } }

/* FAQ */
.faq { max-width: 760px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-child { border-top: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  font-weight: 600;
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  flex: none;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--ink-2);
  border-bottom: 2px solid var(--ink-2);
  transform: rotate(45deg);
  transition: transform .2s ease;
  margin-right: 4px;
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq details > div { padding: 0 0 20px; color: var(--ink-2); max-width: 64ch; }
.faq details > div p + p { margin-top: .6em; }

/* CTA band */
.cta-band { background: var(--navy); color: var(--white); }
.cta-band .wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255, 255, 255, .72); margin-top: 12px; max-width: 34em; }
.cta-band .btn-secondary { color: var(--white); border-color: rgba(255, 255, 255, .35); }
.cta-band .btn-secondary:hover { border-color: var(--white); color: var(--white); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 760px) { .cta-band .wrap { grid-template-columns: 1fr; } }

/* Footer */
.site-footer { background: var(--navy-deep); color: rgba(255, 255, 255, .72); padding: 56px 0 32px; font-size: .9375rem; }
.site-footer .wrap { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.site-footer .brand { color: var(--white); }
.site-footer .brand em { color: var(--mint); }
.site-footer .tagline { margin-top: 12px; max-width: 30em; }
.site-footer h4 { color: var(--white); font-size: .9375rem; margin-bottom: 12px; letter-spacing: 0; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.site-footer a { color: rgba(255, 255, 255, .8); text-decoration: none; }
.site-footer a:hover { color: var(--white); text-decoration: underline; }
.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .875rem;
  color: rgba(255, 255, 255, .5);
}
@media (max-width: 820px) { .site-footer .wrap { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .site-footer .wrap { grid-template-columns: 1fr; } }

/* Inner pages */
.page-head { padding: clamp(48px, 7vw, 88px) 0 clamp(32px, 5vw, 56px); }
.page-head .lede { margin-top: 18px; }
.breadcrumb { list-style: none; margin: 0 0 20px; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; font-size: .9375rem; color: var(--ink-3); }
.breadcrumb li + li::before { content: "/"; margin-right: 6px; color: var(--line); }
.breadcrumb a { color: var(--ink-2); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

.prose { max-width: 70ch; }
.prose h2 { font-size: 1.625rem; margin: 2.2em 0 .6em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 1.6em 0 .5em; }
.prose ul, .prose ol { padding-left: 1.3em; color: var(--ink-2); }
.prose li { margin: .35em 0; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.2em 0; font-size: 1rem; }
.prose th, .prose td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose th { font-weight: 600; color: var(--ink-2); font-size: .9375rem; }
.prose pre {
  background: var(--paper);
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  overflow: auto;
  font-size: .9375rem;
  line-height: 1.5;
}
.prose .callout {
  padding: 18px 20px;
  border-left: 4px solid var(--teal);
  background: var(--teal-tint);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--ink);
  margin: 1.5em 0;
}
.prose .summary-box {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin: 0 0 2em;
  color: var(--ink-2);
}
.prose .summary-box strong { color: var(--ink); }

.howto { list-style: none; padding: 0; margin: 0; display: grid; gap: clamp(32px, 5vw, 56px); counter-reset: hstep; max-width: 860px; }
.howto > li { counter-increment: hstep; display: grid; grid-template-columns: 56px 1fr; gap: 20px; }
.howto > li::before {
  content: counter(hstep);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  font-size: 1.125rem;
}
.howto h2 { font-size: 1.5rem; margin-bottom: 8px; }
.howto p { color: var(--ink-2); }
.howto ul { color: var(--ink-2); padding-left: 1.2em; margin: 10px 0 0; }
.howto .example {
  margin-top: 14px;
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-sm);
  font-size: .9375rem;
  color: var(--ink);
  white-space: pre-line;
}
@media (max-width: 520px) { .howto > li { grid-template-columns: 1fr; } }

.feature-groups { display: grid; gap: clamp(40px, 6vw, 72px); }
.feature-group { display: grid; grid-template-columns: minmax(200px, .8fr) 2fr; gap: clamp(20px, 4vw, 56px); padding-top: 28px; border-top: 2px solid var(--navy); }
.feature-group h2 { font-size: 1.5rem; }
.feature-group .intro { color: var(--ink-2); margin-top: 10px; font-size: 1rem; }
.feature-group dl { margin: 0; display: grid; gap: 20px; }
.feature-group dt { font-weight: 700; margin-bottom: 4px; }
.feature-group dd { margin: 0; color: var(--ink-2); max-width: 60ch; }
@media (max-width: 720px) { .feature-group { grid-template-columns: 1fr; gap: 20px; } }

.notfound { text-align: center; padding: clamp(64px, 12vw, 140px) 0; }
.notfound h1 { font-size: clamp(2rem, 6vw, 3.5rem); }
.notfound p { margin: 18px auto 28px; color: var(--ink-2); max-width: 36em; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

@media print {
  .site-header, .site-footer, .cta-band, .nav-toggle { display: none; }
  body { font-size: 11pt; }
}

.compare-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare-wide { min-width: 860px; }
.compare-wide thead th:first-child { width: 26%; }
.compare-wide tbody th { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--line); vertical-align: top; font-weight: 600; }
.compare-wide td:first-child { font-weight: 400; }
.compare-wide td:nth-child(2) { background: rgba(23,163,143,0.06); }
.compare .mid { color: var(--ink-2); }
.compare .mid::before { content: "◐ "; color: var(--ink-3); }
.modes-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 960px) { .modes-3 { grid-template-columns: 1fr; } }

.site-nav a { white-space: nowrap; }
@media (min-width: 861px) and (max-width: 1180px) {
  .site-nav { gap: 0; }
  .site-nav a { font-size: .9375rem; padding: 10px 9px; }
  .site-nav .btn { margin-left: 4px; padding: 10px 14px; }
}
