/*
 * Cooman marketing site.
 *
 * The palette, the type faces and the radius scale are the product's own design
 * tokens (packages/tokens/src). They are restated here as plain custom
 * properties rather than imported, because this site has no build step and must
 * stay deployable from a clean checkout with nothing installed. When a brand
 * value changes in the tokens package, it changes here too.
 */

:root {
  /* ---- ink and surface ---- */
  --ink-900: #0f1520;
  --ink-850: #1b2534;
  --ink-800: #1a1f2b;
  --ink-700: #3a4353;
  --ink-650: #5b6472;
  --ink-600: #626b79;
  --ink-450: #9aa4b2;

  --surface: #ffffff;
  --surface-subtle: #f7f9fb;
  --surface-muted: #f2f4f7;

  --border: #e3e6ea;
  --border-subtle: #eef1f4;
  --border-inverse: #2b3648;

  /* ---- brand ---- */
  --blue-300: #a9c8e6;
  --blue-400: #2d7dc4;
  --blue-500: #2d6fb0;
  --blue-600: #1d5fa0;
  --blue-700: #14456f;
  --blue-800: #0e3253;

  --ok: #1c8a5b;
  --warn: #b57e00;
  --danger: #c1362f;
  --violet: #6f55d0;

  /* ---- type ---- */
  --font-ui: 'Inter', 'Inter var', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  /* ---- geometry ---- */
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --shell: 1140px;
  --gutter: 24px;

  --shadow-card: 0 1px 2px rgba(15, 21, 32, 0.04), 0 8px 24px rgba(15, 21, 32, 0.05);
  --shadow-lift: 0 2px 4px rgba(15, 21, 32, 0.06), 0 16px 40px rgba(15, 21, 32, 0.09);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-700);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink-800);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

p {
  margin: 0;
}

a {
  color: var(--blue-600);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

:focus-visible {
  outline: 2px solid var(--blue-400);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ------------------------------------------------------------------ layout */

.shell {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.shell--narrow {
  max-width: 800px;
}

.section {
  padding: 88px 0;
}

.section--tight {
  padding: 64px 0;
}

.section--subtle {
  background: var(--surface-subtle);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.section--ink {
  background: var(--ink-900);
  color: #c3ccd8;
}

.section--ink h2,
.section--ink h3 {
  color: #edf1f6;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--ink-900);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
  left: 0;
}

/* --------------------------------------------------------------- type bits */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin: 0 0 16px;
}

.eyebrow--onink {
  color: var(--blue-300);
}

.eyebrow::before {
  content: '';
  width: 18px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.section-head {
  max-width: 680px;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: clamp(26px, 3.2vw, 36px);
}

.section-head p {
  margin-top: 16px;
  font-size: 17px;
  color: var(--ink-650);
}

.lede {
  font-size: 17px;
  color: var(--ink-650);
}

.mono {
  font-family: var(--font-mono);
  font-size: 0.92em;
}

/* --------------------------------------------------------------- controls */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 46px;
  padding: 0 22px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition:
    background-color 140ms ease,
    border-color 140ms ease,
    transform 140ms ease;
}

.btn:hover {
  text-decoration: none;
}

.btn--primary {
  background: var(--blue-600);
  color: #fff;
}

.btn--primary:hover {
  background: var(--blue-700);
}

.btn--ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--ink-700);
}

.btn--ghost:hover {
  border-color: #c7cdd6;
  background: var(--surface-subtle);
}

.btn--onink {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
  color: #edf1f6;
}

.btn--onink:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.textlink {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
}

.textlink svg {
  transition: transform 140ms ease;
}

.textlink:hover svg {
  transform: translateX(2px);
}

/* -------------------------------------------------------------- site head */

.masthead {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}

.masthead__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-800);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.brand:hover {
  text-decoration: none;
}

.brand__mark {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue-400), var(--blue-700));
  display: grid;
  place-items: center;
  flex: none;
}

.brand__mark svg {
  width: 18px;
  height: 18px;
  color: #fff;
}

.brand__sub {
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-600);
  letter-spacing: 0;
  padding-left: 10px;
  margin-left: 2px;
  border-left: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav a {
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-700);
}

.nav a:hover {
  background: var(--surface-muted);
  text-decoration: none;
}

.nav a[aria-current='page'] {
  color: var(--blue-600);
}

/*
 * `.nav a` sets a colour and outranks `.btn--primary` on specificity, which
 * left the sign-in label dark navy on blue. The button rules have to be stated
 * at nav strength to win it back.
 */
.nav a.btn {
  height: 38px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 600;
  margin-left: 8px;
}

.nav a.btn--primary {
  color: #fff;
  background: var(--blue-600);
}

.nav a.btn--primary:hover {
  background: var(--blue-700);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink-700);
  cursor: pointer;
  place-items: center;
}

@media (max-width: 860px) {
  .brand__sub {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }

  .nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 12px var(--gutter) 20px;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-card);
  }

  .nav[hidden] {
    display: none;
  }

  .nav a {
    padding: 12px;
    font-size: 16px;
  }

  .nav .btn {
    height: 46px;
    margin: 8px 0 0;
  }
}

/* ------------------------------------------------------------------- hero */

.hero {
  position: relative;
  background: var(--ink-900);
  color: #b9c3d1;
  overflow: hidden;
  border-bottom: 1px solid var(--ink-850);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 480px at 78% -10%, rgba(45, 125, 196, 0.28), transparent 65%),
    radial-gradient(700px 420px at 8% 108%, rgba(20, 69, 111, 0.42), transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 78%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding: 96px 0 104px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 64px;
  align-items: center;
}

.hero h1 {
  color: #f2f6fa;
  font-size: clamp(34px, 5vw, 54px);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.hero__lede {
  margin-top: 22px;
  font-size: 18px;
  line-height: 1.65;
  color: #a8b4c4;
  max-width: 34em;
}

.hero .btn-row {
  margin-top: 34px;
}

.hero__note {
  margin-top: 22px;
  font-size: 13px;
  color: #7c8798;
}

@media (max-width: 940px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 64px 0 72px;
  }
}

@media (max-width: 560px) {
  /* At 390 px the 18 px lede runs to eleven lines. 16.5 px reads as a paragraph
     rather than as a second headline. */
  .hero__lede {
    font-size: 16.5px;
  }

  .btn-row .btn {
    width: 100%;
  }
}

/* ------------------------------------------------------- the spine diagram */

.spine {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.spine__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: #8c98aa;
}

.spine__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 4px rgba(28, 138, 91, 0.18);
}

.spine__source {
  background: rgba(45, 125, 196, 0.14);
  border: 1px solid rgba(45, 125, 196, 0.4);
  border-radius: var(--radius);
  padding: 14px 16px;
}

.spine__source strong {
  display: block;
  color: #eaf1f8;
  font-size: 14.5px;
  font-weight: 600;
}

.spine__source span {
  display: block;
  margin-top: 3px;
  font-size: 12.5px;
  color: #93a1b4;
}

.spine__fan {
  display: grid;
  gap: 8px;
  margin-top: 8px;
  padding-left: 18px;
  border-left: 1px dashed rgba(255, 255, 255, 0.16);
  margin-left: 16px;
  padding-top: 8px;
}

.spine__leg {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  color: #cbd4e0;
}

.spine__leg svg {
  width: 16px;
  height: 16px;
  flex: none;
  color: var(--blue-300);
}

.spine__leg em {
  margin-left: auto;
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: #8c98aa;
}

.spine__foot {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12.5px;
  color: #8c98aa;
}

/* ------------------------------------------------------------ proof strip */

.proof {
  border-bottom: 1px solid var(--border-subtle);
  background: var(--surface);
}

.proof__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-subtle);
  border-left: 1px solid var(--border-subtle);
  border-right: 1px solid var(--border-subtle);
}

.proof__cell {
  background: var(--surface);
  padding: 32px 24px;
}

.proof__cell dt {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-600);
}

.proof__cell dd {
  margin: 8px 0 0;
  font-size: 15px;
  color: var(--ink-700);
}

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

@media (max-width: 520px) {
  .proof__grid {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------------------------------------ module cards */

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.cards--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .cards,
  .cards--three {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.card--linked:hover {
  border-color: var(--blue-300);
  box-shadow: var(--shadow-lift);
  transform: translateY(-2px);
}

.card__icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: #e9f0f8;
  color: var(--blue-600);
}

.card__icon svg {
  width: 21px;
  height: 21px;
}

.card__icon--violet {
  background: #f0ebf8;
  color: var(--violet);
}

.card__icon--green {
  background: #e7f4ee;
  color: var(--ok);
}

.card__icon--amber {
  background: #fbf2e0;
  color: var(--warn);
}

.card h3 {
  font-size: 19px;
}

.card__role {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-600);
}

.card p {
  margin-top: 12px;
  font-size: 15px;
  color: var(--ink-650);
}

.ticklist {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 9px;
}

.ticklist li {
  position: relative;
  padding-left: 26px;
  font-size: 14.5px;
  color: var(--ink-700);
}

.ticklist li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-400);
}

.ticklist--onink li {
  color: #b9c3d1;
}

/* ------------------------------------------------------------- split block */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.split h2 {
  font-size: clamp(26px, 3.2vw, 34px);
}

.split p {
  margin-top: 18px;
  font-size: 17px;
  color: var(--ink-650);
}

.section--ink .split p {
  color: #a8b4c4;
}

/* ----------------------------------------------------------- gate examples */

.gate {
  display: grid;
  gap: 12px;
}

.gate__row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.gate__badge {
  flex: none;
  margin-top: 1px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
}

.gate__badge--stop {
  background: rgba(193, 54, 47, 0.18);
  border: 1px solid rgba(193, 54, 47, 0.5);
  color: #f0a8a2;
}

.gate__badge--hold {
  background: rgba(181, 126, 0, 0.18);
  border: 1px solid rgba(181, 126, 0, 0.5);
  color: #ecc677;
}

.gate__badge--go {
  background: rgba(28, 138, 91, 0.18);
  border: 1px solid rgba(28, 138, 91, 0.5);
  color: #86d3ac;
}

.gate__text {
  font-size: 14.5px;
  color: #c3ccd8;
}

.gate__text strong {
  color: #eaf1f8;
  font-weight: 600;
}

/* ----------------------------------------------------------------- app row */

.appcta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: center;
  padding: 40px 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

@media (max-width: 860px) {
  .appcta {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 24px;
  }
}

.store {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  height: 54px;
  padding: 0 20px;
  border-radius: var(--radius-sm);
  background: var(--ink-900);
  color: #fff;
  border: 1px solid var(--ink-900);
  transition: background-color 140ms ease;
}

.store:hover {
  background: var(--ink-800);
  text-decoration: none;
}

.store svg {
  width: 22px;
  height: 22px;
  flex: none;
}

.store__text {
  display: grid;
  line-height: 1.25;
}

.store__text small {
  font-size: 10.5px;
  letter-spacing: 0.04em;
  color: #a2abb8;
}

.store__text span {
  font-size: 15px;
  font-weight: 600;
}

/* ------------------------------------------------------------- closing cta */

.closer {
  text-align: center;
  padding: 96px 0;
}

.closer h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  color: #f2f6fa;
}

.closer p {
  margin: 18px auto 0;
  max-width: 46em;
  font-size: 17px;
  color: #a8b4c4;
}

.closer .btn-row {
  margin-top: 32px;
  justify-content: center;
}

/* ----------------------------------------------------------------- footer */

.footer {
  background: var(--ink-900);
  color: #8c98aa;
  border-top: 1px solid var(--border-inverse);
  padding: 64px 0 40px;
  font-size: 14px;
}

.footer a {
  color: #b9c3d1;
}

.footer a:hover {
  color: #fff;
}

.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-inverse);
}

@media (max-width: 900px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 560px) {
  .footer__top {
    grid-template-columns: 1fr;
  }
}

.footer__brand .brand {
  color: #f2f6fa;
}

.footer__blurb {
  margin-top: 14px;
  max-width: 34em;
  line-height: 1.6;
}

.footer h4 {
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6e7a8c;
  margin-bottom: 14px;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer__stores {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.footer .store {
  height: 46px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.16);
  color: #edf1f6;
}

.footer .store:hover {
  background: rgba(255, 255, 255, 0.1);
}

.footer .store__text small {
  color: #8c98aa;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  align-items: center;
  padding-top: 28px;
  font-size: 13px;
}

.footer__bottom p {
  margin: 0;
}

.footer__legal {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* -------------------------------------------------------------- legal page */

.legal-hero {
  background: var(--ink-900);
  color: #a8b4c4;
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--ink-850);
}

.legal-hero h1 {
  color: #f2f6fa;
  font-size: clamp(30px, 4vw, 42px);
}

.legal-hero p {
  margin-top: 16px;
  max-width: 46em;
  font-size: 16.5px;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  color: #8c98aa;
}

.legal-meta strong {
  color: #cbd4e0;
  font-weight: 600;
}

.legal {
  padding: 56px 0 88px;
}

.legal__body {
  font-size: 16px;
  line-height: 1.72;
}

.legal__body h2 {
  font-size: 22px;
  margin: 48px 0 14px;
  scroll-margin-top: 88px;
}

.legal__body h2:first-child {
  margin-top: 0;
}

.legal__body h3 {
  font-size: 17px;
  margin: 28px 0 10px;
}

.legal__body p + p {
  margin-top: 14px;
}

.legal__body ul,
.legal__body ol {
  margin: 14px 0 0;
  padding-left: 22px;
  display: grid;
  gap: 9px;
}

.legal__body li {
  padding-left: 4px;
}

.legal__body strong {
  color: var(--ink-800);
  font-weight: 600;
}

.legal__body a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.toc {
  background: var(--surface-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-bottom: 40px;
}

.toc h2 {
  font-size: 12px !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-600);
  margin: 0 0 14px !important;
}

.toc ol {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
  font-size: 14.5px;
}

.callout {
  margin-top: 20px;
  padding: 18px 22px;
  border-left: 3px solid var(--blue-400);
  background: var(--surface-subtle);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 15px;
  color: var(--ink-700);
}

.callout--warn {
  border-left-color: var(--warn);
}

.table-wrap {
  margin-top: 18px;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  min-width: 560px;
}

thead th {
  text-align: left;
  background: var(--surface-subtle);
  color: var(--ink-800);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}

tbody td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--border-subtle);
  vertical-align: top;
}

tbody tr:last-child td {
  border-bottom: 0;
}

/* ---------------------------------------------------------- features page */

.feature-block {
  padding: 72px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.feature-block:last-of-type {
  border-bottom: 0;
}

.feature-block__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.feature-block__head h2 {
  font-size: clamp(24px, 3vw, 32px);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 32px;
  margin-top: 40px;
}

@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.feature {
  border-top: 2px solid var(--border);
  padding-top: 18px;
}

.feature h3 {
  font-size: 16px;
}

.feature p {
  margin-top: 8px;
  font-size: 14.5px;
  color: var(--ink-650);
}
