/* Yeeterprise — shared brand stylesheet.
   Deadpan enterprise on the surface; hazard-orange yeeting in the seams.
   Loaded by index.html, trajectory-cloud.html, about.html. */
:root {
  --ground: #f5f6f8;
  --surface: #ffffff;
  --surface-2: #eef1f5;
  --line: #d7dde6;
  --ink: #1a2230;
  --ink-2: #3a4557;
  --steel: #64748b;
  --blue: #2f5faa;
  --blue-deep: #244a86;
  --hazard: #ff5a1f;
  --compliance: #3e7d53;
  --danger: #c8402f;
  --shadow: 0 1px 2px rgba(26,34,48,.06), 0 8px 24px rgba(26,34,48,.06);
  --sans: "Helvetica Neue", Helvetica, Arial, "Liberation Sans", sans-serif;
  --mono: ui-monospace, "SF Mono", "Cascadia Mono", Menlo, Consolas, monospace;
}
@media (prefers-color-scheme: dark) {
  :root {
    --ground: #0e141f; --surface: #131b28; --surface-2: #182233;
    --line: #263346; --ink: #e7ecf3; --ink-2: #b7c2d4; --steel: #8494ab;
    --blue: #5b8adf; --blue-deep: #3f6fc4; --hazard: #ff6a33; --compliance: #56a172;
    --danger: #ef6a58; --shadow: 0 1px 2px rgba(0,0,0,.4), 0 10px 30px rgba(0,0,0,.35);
  }
}
:root[data-theme="light"] {
  --ground: #f5f6f8; --surface: #fff; --surface-2: #eef1f5; --line: #d7dde6;
  --ink: #1a2230; --ink-2: #3a4557; --steel: #64748b; --blue: #2f5faa;
  --blue-deep: #244a86; --hazard: #ff5a1f; --compliance: #3e7d53; --danger: #c8402f;
  --shadow: 0 1px 2px rgba(26,34,48,.06), 0 8px 24px rgba(26,34,48,.06);
}
:root[data-theme="dark"] {
  --ground: #0e141f; --surface: #131b28; --surface-2: #182233; --line: #263346;
  --ink: #e7ecf3; --ink-2: #b7c2d4; --steel: #8494ab; --blue: #5b8adf;
  --blue-deep: #3f6fc4; --hazard: #ff6a33; --compliance: #56a172; --danger: #ef6a58;
  --shadow: 0 1px 2px rgba(0,0,0,.4), 0 10px 30px rgba(0,0,0,.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--ground); color: var(--ink);
  font-family: var(--sans); line-height: 1.55; -webkit-font-smoothing: antialiased;
}
.wrap { width: min(1120px, 92vw); margin: 0 auto; }
a { color: inherit; }
h1, h2, h3 { text-wrap: balance; margin: 0; letter-spacing: -0.02em; }
/* Editorial kicker (not the uppercase-mono label every AI site ships). */
.eyebrow {
  font-family: var(--sans); font-size: 13px; font-weight: 700; letter-spacing: 0;
  text-transform: none; color: var(--hazard); margin: 0 0 12px;
  display: inline-flex; align-items: center; gap: 9px;
}
.eyebrow::before {
  content: ""; width: 20px; height: 2px; border-radius: 2px;
  background: var(--hazard); flex: none;
}
.cta-band .eyebrow { justify-content: center; }
.mono { font-family: var(--mono); }
:focus-visible { outline: 2px solid var(--hazard); outline-offset: 2px; border-radius: 4px; }

/* ---- Ticker ---- */
.ticker { background: var(--ink); color: var(--ground); overflow: hidden;
  border-bottom: 1px solid var(--line); white-space: nowrap; }
.ticker__track { display: inline-block; padding: 7px 0; font-family: var(--mono);
  font-size: 12px; letter-spacing: 0.04em; animation: marquee 42s linear infinite; }
.ticker__track span { margin: 0 26px; opacity: .85; }
.ticker__track b { color: var(--hazard); font-weight: 700; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- Nav ---- */
header.nav { position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  backdrop-filter: saturate(150%) blur(8px); border-bottom: 1px solid var(--line); }
.nav__row { display: flex; align-items: center; gap: 28px; padding: 12px 0; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800;
  letter-spacing: -0.03em; font-size: 19px; text-decoration: none; }
.brand img { display: block; width: 30px; height: 30px; }
.brand sup { font-size: 9px; font-weight: 600; color: var(--steel); }
nav.links { display: flex; gap: 22px; margin-left: auto; }
nav.links a { font-size: 14px; color: var(--ink-2); text-decoration: none; font-weight: 500; }
nav.links a:hover, nav.links a[aria-current="page"] { color: var(--blue); }
.btn { font-family: var(--sans); font-size: 14px; font-weight: 600; cursor: pointer;
  border-radius: 6px; padding: 9px 16px; text-decoration: none; display: inline-block;
  border: 1px solid var(--blue); transition: transform .08s ease, background .15s; }
.btn--primary { background: var(--blue); color: #fff; }
.btn--primary:hover { background: var(--blue-deep); }
.btn--ghost { background: transparent; color: var(--blue); }
.btn--ghost:hover { background: var(--surface-2); }
.btn:active { transform: translateY(1px); }
.nav .btn { margin-left: 4px; white-space: nowrap; }
.theme-toggle { padding: 9px 12px; font-size: 15px; line-height: 1; }
@media (max-width: 560px) { .theme-toggle { padding: 8px 10px; } }
/* Hamburger menu (mobile) — built by nav.js from the existing links + CTAs. */
.nav-burger { display: none; margin-left: 6px; width: 42px; height: 38px; padding: 0;
  border: 1px solid var(--line); border-radius: 9px; background: var(--surface-2);
  cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 4px; }
.nav-burger span { display: block; width: 18px; height: 2px; border-radius: 2px; background: var(--ink);
  transition: transform .2s ease, opacity .2s ease; }
.nav--open .nav-burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav--open .nav-burger span:nth-child(2) { opacity: 0; }
.nav--open .nav-burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.nav-menu { position: fixed; left: 0; right: 0; top: 60px; bottom: 0; z-index: 39;
  background: var(--surface); overflow-y: auto; -webkit-overflow-scrolling: touch;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease; }
.nav-menu.open { opacity: 1; visibility: visible; transform: none; }
.nav-menu__inner { display: flex; flex-direction: column; padding: 10px 0 28px; }
.nav-menu__link { padding: 15px 4px; font-size: 17px; font-weight: 600; color: var(--ink);
  text-decoration: none; border-bottom: 1px solid var(--line); }
.nav-menu__link[aria-current="page"] { color: var(--blue); }
.nav-menu__link:active { color: var(--blue); }
.nav-menu__btn { width: 100%; text-align: center; margin-top: 14px; padding: 13px 16px; }
.nav-menu__btn ~ .nav-menu__btn { margin-top: 10px; }
@media (min-width: 901px) { .nav-menu { display: none; } }
@media (max-width: 900px) {
  nav.links { display: none; }
  .nav__row > .btn:not(.theme-toggle) { display: none; }
  .nav-burger { display: inline-flex; }
}
@media (max-width: 560px) {
  .nav__row { gap: 12px; padding: 10px 0; }
  .brand { font-size: 16px; }
  .brand img { width: 26px; height: 26px; }
  .nav .btn { padding: 8px 12px; font-size: 13px; }
}

/* ---- Generic section ---- */
section { padding: 66px 0; }
@media (max-width: 640px) { section { padding: 44px 0; } }
.sec-head { max-width: 62ch; margin-bottom: 34px; }
@media (max-width: 640px) { .sec-head { margin-bottom: 22px; } }
.sec-head h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; letter-spacing: -0.035em; }
.sec-head p { color: var(--ink-2); font-size: 17px; margin: 12px 0 0; }

/* ---- Hero (home) ---- */
.hero { padding: 68px 0 40px; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
@media (max-width: 900px) { .hero__grid { grid-template-columns: 1fr; gap: 36px; } }
.hero h1 { font-size: clamp(34px, 5.2vw, 58px); line-height: 1.02; font-weight: 800; }
.hero h1 em { font-style: normal; color: var(--blue); }
.hero p.lede { font-size: 18px; color: var(--ink-2); margin: 20px 0 26px; max-width: 46ch; }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero__note { font-family: var(--mono); font-size: 11px; color: var(--steel);
  margin-top: 18px; letter-spacing: .03em; }

/* Yeet telemetry console */
.demo { position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: 12px; box-shadow: var(--shadow); overflow: hidden; }
.demo__bar { display: flex; align-items: center; gap: 8px; padding: 10px 14px;
  border-bottom: 1px solid var(--line); font-family: var(--mono); font-size: 11px;
  color: var(--steel); letter-spacing: .05em; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--line); }
.dot.live { background: var(--compliance);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--compliance) 25%, transparent); }
.demo__stage { position: relative; height: 300px;
  background: radial-gradient(120% 90% at 50% 120%, var(--surface-2), var(--surface)); overflow: hidden; }
.pedestal { position: absolute; left: 50%; bottom: 30px; transform: translateX(-50%);
  width: 130px; height: 16px; border-radius: 4px 4px 2px 2px;
  background: linear-gradient(var(--ink-2), var(--ink)); opacity: .85; }
.pedestal::after { content: ""; position: absolute; left: 50%; bottom: -20px; transform: translateX(-50%);
  width: 80px; height: 20px; background: color-mix(in srgb, var(--ink) 12%, transparent);
  filter: blur(6px); border-radius: 50%; }
.asset { position: absolute; left: 50%; bottom: 46px; width: 84px; height: 84px;
  margin-left: -42px; border-radius: 10px;
  background: linear-gradient(150deg, var(--blue), var(--blue-deep));
  box-shadow: 0 8px 20px rgba(26,34,48,.22); display: grid; place-items: center;
  color: #fff; font-family: var(--mono); font-size: 11px; letter-spacing: .1em;
  animation: yeet 5.2s cubic-bezier(.35,-0.4,.7,1) infinite; }
.asset span { transform: translateY(1px); }
@keyframes yeet {
  0%, 34% { transform: translate(0,0) rotate(0); opacity: 1; }
  46% { transform: translate(6px,-8px) rotate(-6deg); opacity: 1; }
  62% { transform: translate(180px,-190px) rotate(220deg); opacity: 1; }
  75% { transform: translate(340px,60px) rotate(520deg); opacity: 0; }
  76%, 88% { transform: translate(0,40px) rotate(0); opacity: 0; }
  100% { transform: translate(0,0) rotate(0); opacity: 1; }
}
.telemetry { position: absolute; left: 14px; bottom: 12px; font-family: var(--mono);
  font-size: 11px; color: var(--steel); letter-spacing: .04em; line-height: 1.7; }
.telemetry b { color: var(--hazard); }
.badge-impact { position: absolute; top: 14px; right: 14px; font-family: var(--mono);
  font-size: 10px; text-transform: uppercase; letter-spacing: .12em; color: var(--compliance);
  border: 1px solid color-mix(in srgb, var(--compliance) 45%, var(--line)); border-radius: 999px;
  padding: 4px 10px; background: color-mix(in srgb, var(--compliance) 10%, transparent); }
@media (prefers-reduced-motion: reduce) { .ticker__track, .asset { animation: none; } }

/* ---- Yeet Run (the playable hero game) ---- */
.game { position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: 12px; box-shadow: var(--shadow); overflow: hidden; }
.game__bar { display: flex; align-items: center; gap: 8px; padding: 10px 14px;
  border-bottom: 1px solid var(--line); font-family: var(--mono); font-size: 11px;
  color: var(--steel); letter-spacing: .05em; }
.game__bar .score { margin-left: auto; color: var(--ink); }
.game__bar .score b { color: var(--hazard); font-variant-numeric: tabular-nums; }
.game { position: relative; }
.game:focus { outline: none; }
.game:focus-visible { outline: 2px solid var(--hazard); outline-offset: 2px; }
.game__stage { position: relative; min-height: 0; line-height: 0; }
.game canvas { display: block; width: 100%; height: auto; touch-action: manipulation; cursor: pointer; }

/* DOM sprite layer — items + operator render as real emoji (reliable, crisp) */
.game__sprites { position: absolute; inset: 0; overflow: hidden; pointer-events: none; --sc: 0.7; }
.yg-sprite { position: absolute; left: 0; top: 0; display: grid; place-items: center; line-height: 1;
  width: calc(var(--sc) * 46px); height: calc(var(--sc) * 46px); border-radius: calc(var(--sc) * 11px);
  will-change: transform, opacity; }
.yg-sprite .g { font-size: calc(var(--sc) * 27px); }
.yg-sprite.yeet { background: linear-gradient(150deg, var(--blue), var(--blue-deep));
  box-shadow: 0 4px 12px rgba(26, 34, 48, .2); }
.yg-sprite.keep { background: color-mix(in srgb, var(--hazard) 12%, transparent);
  border: 2px dashed var(--hazard); }
.yg-sprite.gone { z-index: 2; }
.yg-operator { position: absolute; left: 0; top: 0; line-height: 1; will-change: transform;
  font-size: calc(var(--sc) * 44px); filter: drop-shadow(0 3px 4px rgba(26, 34, 48, .22));
  transition: transform .08s ease-out; }
.game__overlay { position: absolute; inset: 0; z-index: 6; display: grid; place-items: center; text-align: center;
  background: color-mix(in srgb, var(--surface) 93%, transparent); backdrop-filter: blur(3px);
  padding: 20px; overflow: auto; }
.game__overlay[hidden] { display: none; }
.game__overlay .card-in { max-width: 360px; }
.game__overlay h4 { font-size: 20px; font-weight: 800; margin: 0 0 8px; letter-spacing: -.02em; }
.game__overlay h4.viol, .game__overlay .viol { color: var(--danger); }
.game__overlay p { color: var(--ink-2); font-size: 14px; margin: 0 0 16px; line-height: 1.5; }
.game__overlay .hint { font-family: var(--mono); font-size: 11px; color: var(--steel); letter-spacing: .04em; margin-top: 10px; }
.game__legend { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  padding: 10px 14px; border-top: 1px solid var(--line); font-family: var(--mono);
  font-size: 11px; color: var(--steel); }
.game__legend b { color: var(--ink-2); }
.game__legend .yeet-key { color: var(--hazard); }
.game__legend .keep-key { color: var(--compliance); }

/* ---- Trust wall ---- */
.trust { padding: 30px 0 8px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust p { text-align: center; font-family: var(--mono); font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--steel); margin: 0 0 18px; }
.logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 32px; padding-bottom: 12px; }
.tlogo { display: inline-flex; align-items: center; gap: 9px; color: var(--steel);
  font-weight: 700; font-size: 15.5px; letter-spacing: -.01em; opacity: .8; }
.tlogo .tmark { width: 26px; height: 26px; flex: none; fill: currentColor; }

/* ---- Cards ---- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .cards { grid-template-columns: 1fr; } }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: 14px;
  padding: 26px; box-shadow: var(--shadow); position: relative; overflow: hidden;
  transition: transform .13s ease, box-shadow .16s ease, border-color .16s ease; }
.card:hover { transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--hazard) 42%, var(--line));
  box-shadow: 0 12px 32px color-mix(in srgb, var(--ink) 12%, transparent); }
.card h3 { font-size: 20px; font-weight: 750; margin-bottom: 8px; letter-spacing: -0.02em; }
.card p { color: var(--ink-2); font-size: 15px; margin: 0; line-height: 1.6; }
.card .kicker { display: inline-block; font-family: var(--sans); font-size: 12px; font-weight: 700;
  color: var(--hazard); letter-spacing: 0; text-transform: none; margin-bottom: 4px; }
.card .sla { margin-top: 16px; font-family: var(--mono); font-size: 12px; color: var(--steel); }
.card--feature { grid-column: span 3; display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 8px; align-items: center; }
@media (max-width: 900px) { .card--feature { grid-column: auto; grid-template-columns: 1fr; } }
.card--feature .body { padding: 6px 8px; }
.card--feature h3 { font-size: 24px; }
.card--feature p { font-size: 16px; }
.feature-visual { align-self: stretch; display: flex; align-items: center; padding: 8px; }
.pc-mini { width: 100%; background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow); overflow: hidden; }
.pc-mini__bar { display: flex; align-items: center; gap: 6px; padding: 9px 13px;
  border-bottom: 1px solid var(--line); font-family: var(--mono); font-size: 11px; color: var(--steel); }
.pc-mini__bar .d { width: 8px; height: 8px; border-radius: 50%; background: var(--line); }
.pc-mini__bar .d:nth-child(3) { margin-right: 8px; }
.pc-mini__body { padding: 14px; display: flex; flex-direction: column; gap: 10px; }
.pc-msg { max-width: 88%; font-size: 13.5px; line-height: 1.5; padding: 9px 12px; border-radius: 12px; }
.pc-msg--me { align-self: flex-end; background: var(--blue); color: #fff; border-bottom-right-radius: 4px; }
.pc-msg--ai { align-self: flex-start; background: var(--surface-2); color: var(--ink);
  border: 1px solid var(--line); border-bottom-left-radius: 4px; }
.pc-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.pc-chip { font-family: var(--mono); font-size: 10.5px; padding: 2px 8px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--line); color: var(--steel); }
.pc-chip.low { color: var(--hazard); border-color: color-mix(in srgb, var(--hazard) 40%, var(--line)); }

/* ---- Do-Not-Yeet registry ---- */
.dny { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.flag { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--hazard);
  border: 1px solid color-mix(in srgb, var(--hazard) 40%, var(--line)); border-radius: 999px; padding: 5px 12px; }
.registry { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 28px; }
@media (max-width: 860px) { .registry { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .registry { grid-template-columns: 1fr; } }
.reg-item { background: var(--ground); border: 1px solid var(--line); border-radius: 10px;
  padding: 16px; display: flex; flex-direction: column; gap: 7px; }
.reg-item .code { font-family: var(--mono); font-size: 10px; letter-spacing: .1em; color: var(--steel); }
.reg-item .name { font-weight: 700; font-size: 15px; letter-spacing: -.01em; }
.reg-item .reason { color: var(--ink-2); font-size: 13px; line-height: 1.5; margin: 0; flex: 1; }
.reg-item .status { font-family: var(--mono); font-size: 11px; letter-spacing: .04em;
  display: inline-flex; align-items: center; gap: 6px; margin-top: 4px; color: var(--hazard); }
.reg-item .status::before { content: ""; width: 7px; height: 7px; border-radius: 2px; background: currentColor; }
.status.protected { color: var(--hazard); }
.status.review { color: var(--steel); }
.status.escalated { color: var(--danger); font-weight: 700; }
.status.archived { color: var(--compliance); }
.registry-foot { margin-top: 18px; font-family: var(--mono); font-size: 12px; color: var(--steel); }

/* searchable registry controls */
.dny-search { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin: 26px 0 10px; }
.dny-search input { flex: 1; min-width: 240px; font-family: var(--sans); font-size: 15px;
  padding: 12px 16px; border-radius: 8px; border: 1px solid var(--line); background: var(--surface); color: var(--ink); }
.dny-search input:focus { outline: none; border-color: var(--blue); }
.dny-count { font-family: var(--mono); font-size: 12px; color: var(--steel); white-space: nowrap; }
.dny-count b { color: var(--hazard); }
.dny-filters { display: flex; gap: 8px; flex-wrap: wrap; margin: 0 0 18px; }
.dny-chip { font-family: var(--mono); font-size: 11px; letter-spacing: .04em; text-transform: uppercase;
  color: var(--steel); background: var(--surface); border: 1px solid var(--line); border-radius: 999px;
  padding: 6px 12px; cursor: pointer; transition: background .12s, color .12s; }
.dny-chip[aria-pressed="true"] { color: #fff; background: var(--blue); border-color: var(--blue); }
.reg-item .rowtop { display: flex; align-items: center; gap: 9px; }
.reg-item .emoji { font-size: 22px; line-height: 1; }
.dny-empty { grid-column: 1 / -1; color: var(--steel); font-family: var(--mono); font-size: 13px; padding: 34px; text-align: center; }

/* ---- Testimonials / social proof ---- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .quotes { grid-template-columns: 1fr; } }
.quote { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 22px; box-shadow: var(--shadow); }
.quote p { font-size: 16px; line-height: 1.55; margin: 0 0 14px; color: var(--ink); }
.quote p::before { content: "\201C"; color: var(--hazard); font-weight: 800; }
.quote p::after { content: "\201D"; color: var(--hazard); font-weight: 800; }
.quote .by { font-family: var(--mono); font-size: 12px; color: var(--steel); line-height: 1.5; }
.quote .by b { color: var(--ink-2); }

/* ---- Stats band ---- */
.stats { background: var(--ink); color: var(--ground); }
.stats .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
@media (max-width: 760px) { .stats .grid { grid-template-columns: repeat(2, 1fr); } }
.stat .num { font-size: clamp(30px, 4.4vw, 46px); font-weight: 800; letter-spacing: -.03em;
  font-variant-numeric: tabular-nums; }
.stat .num em { color: var(--hazard); font-style: normal; }
.stat .lbl { font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  color: color-mix(in srgb, var(--ground) 65%, var(--steel)); margin-top: 6px; }

/* ---- CTA band ---- */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(26px, 3.6vw, 40px); font-weight: 800; }
.cta-band p { color: var(--ink-2); font-size: 17px; margin: 12px auto 24px; max-width: 52ch; }

/* ---- Page header (interior pages) ---- */
.page-head { padding: 60px 0 24px; border-bottom: 1px solid var(--line); background: var(--surface); }
.page-head h1 { font-size: clamp(30px, 4.6vw, 50px); font-weight: 800; line-height: 1.04; }
.page-head p { color: var(--ink-2); font-size: 18px; margin: 16px 0 0; max-width: 56ch; }
.page-head .hero__cta { margin-top: 26px; }

/* ---- Feature rows (product page) ---- */
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; padding: 40px 0;
  border-bottom: 1px solid var(--line); }
.frow:nth-child(even) .frow__media { order: -1; }
@media (max-width: 860px) { .frow { grid-template-columns: 1fr; gap: 20px; }
  .frow:nth-child(even) .frow__media { order: 0; } }
.frow h3 { font-size: 24px; font-weight: 780; margin-bottom: 10px; }
.frow p { color: var(--ink-2); font-size: 16px; margin: 0; }
.frow ul { margin: 14px 0 0; padding: 0; list-style: none; }
.frow li { font-size: 14px; color: var(--ink-2); padding: 5px 0 5px 22px; position: relative; }
.frow li::before { content: "▸"; color: var(--blue); position: absolute; left: 0; }
.frow__media { background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow); min-height: 210px; padding: 20px; display: flex; flex-direction: column; gap: 10px; }
.console-line { font-family: var(--mono); font-size: 12px; color: var(--ink-2); display: flex; gap: 10px; }
.console-line .k { color: var(--steel); min-width: 92px; }
.console-line .v { color: var(--ink); }
.console-line .v.ok { color: var(--compliance); }
.console-line .v.hot { color: var(--hazard); }
.metric-big { font-size: 40px; font-weight: 800; letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
.metric-big small { font-size: 13px; color: var(--steel); font-weight: 600; letter-spacing: 0; }
.arc-box { position: relative; flex: 1; min-height: 120px; border-radius: 8px; overflow: hidden;
  background: radial-gradient(120% 100% at 20% 120%, var(--surface-2), var(--surface)); }

/* ---- Chat mock (Pantry Cloud) ---- */
.chatmock { display: flex; flex-direction: column; gap: 8px; }
.bub { max-width: 88%; padding: 9px 12px; border-radius: 14px; font-size: 13px; line-height: 1.45; }
.bub.me { align-self: flex-end; background: var(--blue); color: #fff; border-bottom-right-radius: 5px; }
.bub.ai { align-self: flex-start; background: var(--surface-2); color: var(--ink); border: 1px solid var(--line); border-bottom-left-radius: 5px; }
.bub .chip { display: inline-block; font-family: var(--mono); font-size: 10px; color: var(--steel);
  background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: 2px 7px; margin-top: 7px; }

/* ---- Spec / pricing tables ---- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 860px) { .pricing { grid-template-columns: 1fr; } }
.tier { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 26px;
  box-shadow: var(--shadow); display: flex; flex-direction: column; }
.tier.featured { border-color: var(--blue); box-shadow: 0 0 0 1px var(--blue), var(--shadow); }
.tier .tname { font-weight: 750; font-size: 18px; }
.tier .price { font-size: 34px; font-weight: 800; margin: 10px 0 2px; letter-spacing: -.03em; }
.tier .price small { font-size: 14px; color: var(--steel); font-weight: 600; }
.tier .tnote { color: var(--steel); font-size: 13px; margin-bottom: 16px; }
.tier ul { list-style: none; margin: 0 0 20px; padding: 0; flex: 1; }
.tier li { font-size: 14px; color: var(--ink-2); padding: 6px 0 6px 22px; position: relative; border-top: 1px solid var(--line); }
.tier li:first-child { border-top: none; }
.tier li::before { content: "✓"; color: var(--compliance); position: absolute; left: 0; }
.pill { display: inline-block; font-family: var(--mono); font-size: 10px; text-transform: uppercase;
  letter-spacing: .1em; color: var(--blue); background: color-mix(in srgb, var(--blue) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--blue) 35%, var(--line)); border-radius: 999px; padding: 3px 9px; }

/* ---- About: mission / values / timeline / leadership ---- */
.lead-quote { font-size: clamp(22px, 3vw, 30px); font-weight: 700; line-height: 1.3; letter-spacing: -.02em; max-width: 22ch; }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 760px) { .mv-grid { grid-template-columns: 1fr; } }
.mv { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 24px; box-shadow: var(--shadow); }
.mv h3 { font-size: 15px; font-family: var(--mono); text-transform: uppercase; letter-spacing: .12em;
  color: var(--blue); margin-bottom: 10px; font-weight: 600; }
.mv p { color: var(--ink-2); font-size: 16px; margin: 0; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 860px) { .values { grid-template-columns: 1fr; } }
.value { background: var(--ground); border: 1px solid var(--line); border-radius: 10px; padding: 18px; }
.value .n { font-family: var(--mono); font-size: 11px; color: var(--steel); }
.value h4 { font-size: 17px; margin: 6px 0 6px; font-weight: 750; }
.value p { font-size: 14px; color: var(--ink-2); margin: 0; }
.timeline { border-left: 2px solid var(--line); margin-left: 6px; padding-left: 22px; }
.tl { position: relative; padding: 0 0 26px; }
.tl::before { content: ""; position: absolute; left: -29px; top: 4px; width: 12px; height: 12px;
  border-radius: 50%; background: var(--blue); border: 2px solid var(--ground); }
.tl .yr { font-family: var(--mono); font-size: 12px; color: var(--hazard); letter-spacing: .06em; }
.tl h4 { font-size: 17px; margin: 4px 0 4px; font-weight: 720; }
.tl p { color: var(--ink-2); font-size: 15px; margin: 0; max-width: 60ch; }
.people { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 860px) { .people { grid-template-columns: 1fr; } }
.person { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 20px; box-shadow: var(--shadow); }
.person .avatar { width: 46px; height: 46px; border-radius: 10px; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--blue), var(--blue-deep)); color: #fff; font-weight: 800; font-size: 17px; margin-bottom: 12px; }
.person .pname { font-weight: 750; font-size: 16px; }
.person .prole { font-family: var(--mono); font-size: 11px; color: var(--blue); letter-spacing: .04em; margin: 3px 0 8px; }
.person p { color: var(--ink-2); font-size: 13px; margin: 0; }

/* ---- Press / newsroom ---- */
.featured-release { background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  padding: 28px; box-shadow: var(--shadow); margin-bottom: 20px; }
.featured-release .tagrow { display: flex; gap: 10px; align-items: center; margin-bottom: 12px; }
.featured-release .dateline { font-family: var(--mono); font-size: 12px; color: var(--steel); }
.featured-release h2 { font-size: clamp(22px, 3vw, 30px); font-weight: 800; margin-bottom: 14px; }
.featured-release p { color: var(--ink-2); font-size: 16px; margin: 0 0 12px; max-width: 72ch; }
.featured-release .boiler { font-size: 13px; color: var(--steel); border-top: 1px solid var(--line);
  padding-top: 14px; margin-top: 16px; max-width: 72ch; }
.releases { display: flex; flex-direction: column; margin-top: 10px; }
.release { display: grid; grid-template-columns: 150px 1fr; gap: 22px; padding: 20px 0; border-top: 1px solid var(--line); }
@media (max-width: 640px) { .release { grid-template-columns: 1fr; gap: 6px; } }
.release .meta { font-family: var(--mono); font-size: 12px; color: var(--steel); line-height: 1.7; }
.release .meta .tag { display: inline-block; color: var(--blue); }
.release h3 { font-size: 18px; font-weight: 720; margin: 0 0 6px; letter-spacing: -.01em; }
.release p { margin: 0; color: var(--ink-2); font-size: 15px; }

/* ---- Expandable press releases ---- */
details.release-x { border-top: 1px solid var(--line); }
details.release-x:first-of-type { border-top: none; }
details.release-x > summary { list-style: none; cursor: pointer; display: grid;
  grid-template-columns: 150px 1fr 20px; gap: 22px; padding: 20px 0; align-items: start; }
details.release-x > summary::-webkit-details-marker { display: none; }
@media (max-width: 640px) { details.release-x > summary { grid-template-columns: 1fr auto; gap: 6px 12px; } }
details.release-x > summary:hover h3 { color: var(--blue); }
details.release-x .chev { color: var(--steel); font-family: var(--mono); font-size: 13px; align-self: center; transition: transform .15s; }
details.release-x[open] .chev { transform: rotate(90deg); color: var(--blue); }
details.release-x .rbody { padding: 0 0 26px; max-width: 74ch; }
details.release-x .rbody .dateline { font-family: var(--mono); font-size: 12px; color: var(--steel); margin: 0 0 14px; }
details.release-x .rbody p { color: var(--ink-2); font-size: 15px; margin: 0 0 12px; line-height: 1.65; }
details.release-x .rbody .boiler { font-size: 13px; color: var(--steel); border-top: 1px solid var(--line);
  padding-top: 12px; margin-top: 16px; }

/* ---- FAQ + "Can I yeet it?" checker ---- */
.faq { max-width: 74ch; }
.faq details { border-top: 1px solid var(--line); }
.faq details:first-of-type { border-top: none; }
.faq summary { list-style: none; cursor: pointer; padding: 16px 0; font-weight: 650; font-size: 17px;
  display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { color: var(--steel); font-family: var(--mono); transition: transform .15s; }
.faq details[open] summary .chev { transform: rotate(90deg); color: var(--blue); }
.faq .a { padding: 0 0 18px; color: var(--ink-2); font-size: 15px; line-height: 1.65; max-width: 70ch; }
.checker { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 22px; box-shadow: var(--shadow); }
.checker .row { display: flex; gap: 10px; flex-wrap: wrap; }
.checker input { flex: 1; min-width: 220px; font-size: 15px; padding: 11px 14px; border-radius: 8px;
  border: 1px solid var(--line); background: var(--ground); color: var(--ink); }
.checker input:focus { outline: none; border-color: var(--blue); }
.checker .verdict { margin-top: 16px; font-size: 16px; line-height: 1.5; min-height: 1.5em; }
.checker .verdict.no { color: var(--danger); font-weight: 600; }
.checker .verdict.ok { color: var(--compliance); font-weight: 600; }
.checker .verdict small { display: block; color: var(--steel); font-family: var(--mono); font-size: 12px; margin-top: 5px; font-weight: 400; }

/* ---- Prose (interior text pages) ---- */
.prose { max-width: 72ch; }
.prose h3 { font-size: 20px; font-weight: 750; margin: 28px 0 10px; }
.prose p { color: var(--ink-2); font-size: 16px; margin: 0 0 14px; }
.prose ul { color: var(--ink-2); font-size: 15px; padding-left: 20px; margin: 0 0 14px; }
.prose li { margin: 7px 0; }
.prose .lead { font-size: 18px; color: var(--ink); }
.callout { background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--hazard);
  border-radius: 8px; padding: 16px 18px; margin: 18px 0; font-size: 15px; color: var(--ink-2); }
.callout b { color: var(--ink); }

/* ---- Whitepaper / document layout ---- */
.paper { max-width: 78ch; margin: 0 auto; }
.paper .doc-meta { font-family: var(--mono); font-size: 12px; color: var(--steel); display: flex; gap: 20px;
  flex-wrap: wrap; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 12px 0; margin: 18px 0 26px; }
.abstract { background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 20px 22px; margin: 0 0 26px; }
.abstract h3 { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; color: var(--blue); margin: 0 0 8px; }
.abstract p { margin: 0; color: var(--ink-2); font-size: 15px; line-height: 1.65; }
.paper h2.sec { font-size: 22px; font-weight: 780; margin: 34px 0 10px; }
.paper h2.sec .n { color: var(--steel); font-family: var(--mono); font-size: 15px; margin-right: 8px; }
.paper h3.sub { font-size: 17px; font-weight: 700; margin: 20px 0 8px; }
.paper p { color: var(--ink-2); font-size: 16px; line-height: 1.7; margin: 0 0 14px; }
.paper ul, .paper ol { color: var(--ink-2); font-size: 15px; line-height: 1.6; padding-left: 22px; margin: 0 0 14px; }
.paper li { margin: 6px 0; }
.figure { background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 18px; margin: 22px 0; }
.figure figcaption { font-family: var(--mono); font-size: 11px; color: var(--steel); margin-top: 12px; text-align: center; }
.refs { font-size: 13px; color: var(--steel); padding-left: 22px; }
.refs li { margin: 7px 0; }

/* Financial-style table (annual report) */
.ftable { width: 100%; border-collapse: collapse; margin: 16px 0; font-variant-numeric: tabular-nums; }
.ftable th, .ftable td { text-align: right; padding: 10px 12px; border-bottom: 1px solid var(--line); font-size: 14px; }
.ftable th:first-child, .ftable td:first-child { text-align: left; }
.ftable thead th { font-family: var(--mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--steel); }
.ftable tbody tr:last-child td { border-bottom: 2px solid var(--ink-2); font-weight: 700; color: var(--ink); }
.ftable td.hot { color: var(--hazard); }

/* ---- Merch (coming soon) ---- */
.merch-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .merch-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .merch-grid { grid-template-columns: 1fr; } }
.product { background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.product .shot { aspect-ratio: 4 / 3; display: grid; place-items: center; padding: 22px; text-align: center; }
.product .shot .slogan { font-weight: 800; letter-spacing: -.02em; line-height: 1.05; font-size: 22px; }
.product .shot .sub { font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; margin-top: 8px; opacity: .8; }
.product .meta { padding: 13px 16px; display: flex; align-items: center; justify-content: space-between; gap: 10px; border-top: 1px solid var(--line); }
.product .pn { font-weight: 700; font-size: 15px; }
.product .pp { font-family: var(--mono); font-size: 12px; color: var(--steel); }
.product .soon { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: .1em;
  color: var(--hazard); border: 1px solid color-mix(in srgb, var(--hazard) 40%, var(--line)); border-radius: 999px; padding: 3px 8px; }

/* ---- Coming-soon teaser (Yeetings) ---- */
.teaser-hero { text-align: center; padding: 72px 0 20px; }
.coming { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--hazard);
  border: 1px solid color-mix(in srgb, var(--hazard) 40%, var(--line)); border-radius: 999px; padding: 6px 14px; }
.coming .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--hazard); animation: pulse 1.6s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }
@media (prefers-reduced-motion: reduce) { .coming .pulse { animation: none; } }
.teaser-hero h1 { font-size: clamp(46px, 9vw, 104px); font-weight: 800; letter-spacing: -.04em; margin: 20px 0 0; line-height: .95; }
.teaser-hero h1 sup { font-size: .26em; vertical-align: super; color: var(--steel); }
.teaser-hero .tag { font-size: clamp(20px, 3vw, 30px); font-weight: 750; color: var(--blue); margin: 10px 0 0; letter-spacing: -.02em; }
.teaser-hero p.sub { font-size: 18px; color: var(--ink-2); max-width: 56ch; margin: 18px auto 0; }
.waitlist { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin: 28px 0 8px; }
.waitlist input { font-family: var(--sans); font-size: 15px; padding: 11px 16px; border-radius: 8px;
  border: 1px solid var(--line); background: var(--surface); color: var(--ink); min-width: 260px; }
.waitlist input:focus { outline: none; border-color: var(--blue); }
.waitlist .ok { color: var(--compliance); font-weight: 600; font-size: 15px; align-self: center; }
.teaser-note { font-family: var(--mono); font-size: 11px; color: var(--steel); }

.callui { max-width: 760px; margin: 44px auto 0; background: #0c1626; border: 1px solid var(--line);
  border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); }
.callui__bar { display: flex; align-items: center; gap: 8px; padding: 10px 14px; font-family: var(--mono);
  font-size: 11px; color: #9fb0cc; border-bottom: 1px solid #223350; }
.callgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 14px; }
@media (max-width: 560px) { .callgrid { grid-template-columns: repeat(2, 1fr); } }
.tile { position: relative; aspect-ratio: 4 / 3; border-radius: 8px;
  background: linear-gradient(150deg, #1c2b49, #101a2e); display: grid; place-items: center; }
.tile .av { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; color: #fff; font-size: 16px; }
.tile .nm { position: absolute; left: 8px; bottom: 6px; font-family: var(--mono); font-size: 10px;
  color: #c7d2e6; background: rgba(0,0,0,.4); padding: 2px 6px; border-radius: 4px; }
.tile.vip { outline: 2px solid var(--compliance); }
.tile.vip .flagv { position: absolute; top: 6px; right: 6px; font-family: var(--mono); font-size: 9px; color: var(--compliance); letter-spacing: .06em; }
.tile.yeeted { background: linear-gradient(150deg, #3a1c10, #2a1408); transform: rotate(9deg) scale(.94); opacity: .6; }
.tile.yeeted .nm { color: var(--hazard); }
.callctrl { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; padding: 12px; border-top: 1px solid #223350; }
.callctrl .cbtn { font-family: var(--mono); font-size: 11px; color: #c7d2e6; background: #16223a;
  border: 1px solid #223350; border-radius: 8px; padding: 8px 12px; }
.callctrl .cbtn.hot { color: var(--hazard); border-color: color-mix(in srgb, var(--hazard) 40%, #223350); }
.callcap { text-align: center; font-family: var(--mono); font-size: 11px; color: var(--steel); margin-top: 12px; }

.teaser-band { background: var(--ink); color: var(--ground); text-align: center; }
.teaser-band h2 { font-size: clamp(24px, 3.4vw, 34px); font-weight: 800; }
.teaser-band p { color: color-mix(in srgb, var(--ground) 72%, var(--steel)); font-size: 17px; margin: 12px auto 22px; max-width: 52ch; }
.teaser-band .coming { color: var(--hazard); border-color: color-mix(in srgb, var(--hazard) 50%, transparent); }

/* ---- Footer ---- */
footer { background: var(--surface); border-top: 1px solid var(--line); padding: 48px 0 30px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 28px; }
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
.foot-col h4 { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--steel); margin: 0 0 12px; }
.foot-col a { display: block; font-size: 14px; color: var(--ink-2); text-decoration: none; margin-bottom: 8px; }
.foot-col a:hover { color: var(--blue); }
.foot-brand p { color: var(--steel); font-size: 13px; max-width: 34ch; margin: 12px 0 0; }
.ticker-chip { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; font-family: var(--mono);
  font-size: 12px; border: 1px solid var(--line); border-radius: 6px; padding: 6px 10px; color: var(--ink-2); }
.ticker-chip b { color: var(--compliance); }
.legal { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-top: 34px;
  padding-top: 18px; border-top: 1px solid var(--line); font-size: 12px; color: var(--steel); }
.legal .mono { font-size: 11px; }
.foot-build { color: var(--steel); opacity: .85; }
.foot-build b { color: var(--ink-2); font-weight: 600; }
.foot-build a { color: var(--compliance); text-decoration: none; }
.foot-build a::before { content: "●"; margin-right: 4px; font-size: 8px; vertical-align: 2px;
  color: var(--compliance); animation: nomBlink 2.4s ease-in-out infinite; }
@keyframes nomBlink { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }
@media (prefers-reduced-motion: reduce) { .foot-build a::before { animation: none; } }

/* Cookie-consent banner (deadpan, injected by corp.js) */
.cookie-bar { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 60;
  max-width: 720px; margin: 0 auto; display: flex; align-items: center; gap: 16px 22px;
  flex-wrap: wrap; justify-content: space-between; background: var(--surface);
  border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-lg, 0 18px 50px rgba(9,18,13,.22));
  padding: 15px 18px; animation: cookieUp .4s cubic-bezier(.2,.7,.3,1) both; }
.cookie-bar p { margin: 0; font-size: 13.5px; line-height: 1.55; color: var(--ink-2); flex: 1 1 320px; }
.cookie-bar p a { color: var(--blue); }
.cookie-bar__act { display: flex; gap: 10px; flex: none; }
.cookie-bar__act .btn { padding: 8px 14px; font-size: 13px; white-space: nowrap; }
.cookie-bar--gone { animation: cookieDown .3s ease-in both; }
@keyframes cookieUp { from { transform: translateY(140%); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes cookieDown { to { transform: translateY(140%); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .cookie-bar { animation: none; } .cookie-bar--gone { animation: none; } }
@media (max-width: 520px) { .cookie-bar__act { flex: 1 1 100%; } .cookie-bar__act .btn { flex: 1; } }

/* ============================================================
   The Ground Contact Classic — charity golf event page (gc-)
   ============================================================ */
.gc-hero { background:
    radial-gradient(1100px 460px at 78% -8%, color-mix(in srgb, var(--compliance) 16%, transparent), transparent 60%),
    linear-gradient(180deg, var(--surface), var(--ground));
  border-bottom: 1px solid var(--line); overflow: hidden; }
.gc-hero__grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 40px; align-items: center;
  padding: 60px 0 66px; }
.gc-hero__copy h1 { font-size: clamp(38px, 6vw, 68px); line-height: 1.02; letter-spacing: -.03em; margin: 14px 0 0; }
.gc-hero__copy h1 sup, .gc-teaser__grid h2 sup { font-size: 0.32em; font-weight: 600; top: -0.85em; color: var(--steel); }
.gc-tag { font-size: clamp(17px, 2.2vw, 21px); color: var(--ink); font-weight: 600; margin: 16px 0 0; max-width: 34ch; }
.gc-sub { color: var(--ink-2); margin: 14px 0 0; max-width: 52ch; line-height: 1.6; }
.gc-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.gc-hero__crest { max-width: 320px; margin: 0 auto; filter: drop-shadow(0 18px 40px rgba(0,0,0,.16)); }

.gc-badge { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 12px;
  letter-spacing: .06em; text-transform: uppercase; color: var(--compliance);
  background: color-mix(in srgb, var(--compliance) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--compliance) 40%, transparent); border-radius: 999px; padding: 6px 12px; }
.gc-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--compliance); box-shadow: 0 0 0 0 color-mix(in srgb, var(--compliance) 60%, transparent); animation: gcPulse 2.4s infinite; }
@keyframes gcPulse { 0%{box-shadow:0 0 0 0 color-mix(in srgb, var(--compliance) 55%, transparent);} 70%{box-shadow:0 0 0 9px transparent;} 100%{box-shadow:0 0 0 0 transparent;} }
@media (prefers-reduced-motion: reduce) { .gc-dot { animation: none; } }

/* facts marquee */
.gc-facts { background: var(--ink); color: #fff; }
:root[data-theme="light"] .gc-facts { background: #17202e; }
.gc-facts__row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.gc-fact { padding: 20px 24px; border-left: 1px solid rgba(255,255,255,.1); display: flex; flex-direction: column; gap: 3px; }
.gc-fact:first-child { border-left: none; }
.gc-fact .k { font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--compliance); }
.gc-fact .v { font-size: 17px; font-weight: 700; color: #fff; }
.gc-fact .s { font-size: 12.5px; color: rgba(255,255,255,.62); }

.gc-band { background: var(--ground); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* about */
.gc-about__body { max-width: 760px; }
.gc-about__body p { color: var(--ink-2); line-height: 1.7; margin: 0 0 16px; font-size: 16px; }
.gc-about__body strong { color: var(--ink); }
.gc-pull { border-left: 3px solid var(--compliance); padding: 6px 0 6px 20px; margin-top: 24px !important;
  font-size: 19px !important; color: var(--ink) !important; font-weight: 500; font-style: italic; }
.gc-pull span { display: block; font-style: normal; font-size: 13px; color: var(--steel); margin-top: 10px; }

/* signature holes */
.gc-holes { display: grid; gap: 14px; }
.gc-hole { display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 18px 20px; box-shadow: var(--shadow); }
.gc-hole__no { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 10px;
  background: var(--compliance); color: #fff; font-weight: 800; font-size: 20px; font-family: var(--mono); }
.gc-hole h3 { margin: 0 0 4px; font-size: 17px; }
.gc-hole p { margin: 0; color: var(--ink-2); font-size: 14px; line-height: 1.55; }
.gc-hole__par { font-family: var(--mono); font-size: 13px; color: var(--compliance); white-space: nowrap; font-weight: 700; }
.gc-tagchip { display: inline-block; font-family: var(--mono); font-size: 10.5px; letter-spacing: .03em; text-transform: uppercase;
  color: var(--hazard); background: color-mix(in srgb, var(--hazard) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--hazard) 34%, transparent); border-radius: 999px; padding: 2px 8px; margin-left: 6px; vertical-align: middle; }
.gc-note { color: var(--steel); font-size: 13px; margin-top: 16px; font-family: var(--mono); }

/* leaderboard */
.gc-board { overflow-x: auto; }
.gc-table { width: 100%; border-collapse: collapse; min-width: 460px; background: var(--surface);
  border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.gc-table th, .gc-table td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--line); font-size: 15px; }
.gc-table thead th { font-family: var(--mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--steel); background: var(--surface-2); }
.gc-table .num { text-align: right; font-variant-numeric: tabular-nums; font-family: var(--mono); }
.gc-table tbody tr:last-child td { border-bottom: none; }
.gc-table .gc-win td { background: color-mix(in srgb, var(--compliance) 10%, transparent); font-weight: 600; }
.gc-table .gc-restraint td { background: color-mix(in srgb, var(--blue) 8%, transparent); }
.gc-table .gc-dq td { color: var(--steel); }

/* sponsors */
.gc-sponsors { display: grid; gap: 8px; }
.gc-tier { display: grid; grid-template-columns: 130px 1fr; gap: 18px; align-items: center;
  padding: 18px 0; border-bottom: 1px solid var(--line); }
.gc-tier:last-child { border-bottom: none; }
.gc-tier__label { font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--compliance); }
.gc-tier__logos { display: flex; flex-wrap: wrap; gap: 14px 30px; align-items: center;
  font-family: var(--mono); letter-spacing: .04em; color: var(--ink-2); font-size: 20px; }
.gc-tier--title { font-size: 26px; font-weight: 800; color: var(--ink); font-family: var(--sans); letter-spacing: -.01em; }
.gc-splogo { display: inline-flex; align-items: center; gap: 8px; }
.gc-tier--small { font-size: 15px; color: var(--steel); }
.gc-prospectus { margin-top: 36px; padding-top: 30px; border-top: 1px solid var(--line); }
.gc-prospectus h3 { font-size: clamp(20px, 2.6vw, 27px); font-weight: 800; letter-spacing: -.02em; margin-bottom: 18px; max-width: 24ch; }
.gc-prospectus .gc-table td:last-child { color: var(--ink-2); font-size: 14px; line-height: 1.5; }
.gc-prospectus .gc-table .num { color: var(--compliance); font-weight: 700; }

/* cause */
.gc-cause { background: var(--ground); border-top: 1px solid var(--line); }
.gc-cause__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: center; }
.gc-cause__grid h2 { margin: 8px 0 14px; }
.gc-cause__grid p { color: var(--ink-2); line-height: 1.7; margin: 0 0 20px; }
.gc-cause__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.gc-stat { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 22px 16px; text-align: center; box-shadow: var(--shadow); }
.gc-stat .n { font-size: 30px; font-weight: 800; color: var(--compliance); letter-spacing: -.02em; }
.gc-stat .l { font-size: 12px; color: var(--ink-2); margin-top: 4px; }

/* schedule */
.gc-sched { list-style: none; margin: 0; padding: 0; max-width: 720px; }
.gc-sched li { display: grid; grid-template-columns: 96px 1fr; gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.gc-sched li:last-child { border-bottom: none; }
.gc-sched .t { font-family: var(--mono); font-size: 13px; color: var(--compliance); font-weight: 700; white-space: nowrap; }
.gc-sched .e { color: var(--ink-2); line-height: 1.5; }

/* signup */
.gc-signup__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.gc-card { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 26px; box-shadow: var(--shadow); }
.gc-card h3 { margin: 0 0 6px; font-size: 20px; }
.gc-card > p { color: var(--ink-2); font-size: 14px; line-height: 1.55; margin: 0 0 18px; }
.gc-form { display: flex; flex-direction: column; gap: 10px; }
.gc-form input, .gc-form select { padding: 12px 14px; border-radius: 10px; border: 1px solid var(--line);
  background: var(--ground); color: var(--ink); font-size: 15px; font-family: var(--sans); }
.gc-form input:focus, .gc-form select:focus { outline: none; border-color: var(--compliance); }
.gc-form .btn { margin-top: 4px; }
.gc-ok { color: var(--compliance); font-size: 14px; font-weight: 600; line-height: 1.5; }
.gc-signup__note { text-align: center; color: var(--steel); font-size: 12px; font-family: var(--mono); margin-top: 18px; }

/* faq (scoped to golf page) */
.gc-faq details { border: 1px solid var(--line); border-radius: 10px; background: var(--surface); margin-bottom: 10px; overflow: hidden; }
.gc-faq summary { cursor: pointer; padding: 15px 18px; font-weight: 600; list-style: none; }
.gc-faq summary::-webkit-details-marker { display: none; }
.gc-faq summary::after { content: "+"; float: right; color: var(--compliance); font-weight: 700; }
.gc-faq details[open] summary::after { content: "–"; }
.gc-faq details p { margin: 0; padding: 0 18px 16px; color: var(--ink-2); line-height: 1.6; }

@media (max-width: 860px) {
  .gc-hero { padding-top: 8px; }
  .gc-hero__grid { grid-template-columns: 1fr; gap: 22px; padding: 28px 0 40px; }
  .gc-hero__crest { max-width: 132px; order: -1; margin: 0; }
  .gc-facts__row { grid-template-columns: 1fr 1fr; }
  .gc-fact:nth-child(3) { border-left: none; }
  .gc-cause__grid, .gc-signup__grid { grid-template-columns: 1fr; }
  .gc-hole { grid-template-columns: auto 1fr; }
  .gc-hole__par { grid-column: 2; }
}
@media (max-width: 520px) {
  .gc-facts__row { grid-template-columns: 1fr; }
  .gc-fact { border-left: none; border-top: 1px solid rgba(255,255,255,.1); }
  .gc-fact:first-child { border-top: none; }
  .gc-cause__stats { grid-template-columns: 1fr; }
  .gc-tier { grid-template-columns: 1fr; gap: 6px; }
}

/* Ground Contact Classic — homepage teaser band */
.gc-teaser { background:
    radial-gradient(700px 300px at 88% 10%, color-mix(in srgb, var(--compliance) 14%, transparent), transparent 60%),
    var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.gc-teaser__grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 40px; align-items: center; }
.gc-teaser__grid h2 { font-size: clamp(26px, 3.6vw, 40px); font-weight: 800; margin: 14px 0 12px; }
.gc-teaser__grid > div > p { color: var(--ink-2); font-size: 16px; line-height: 1.65; max-width: 60ch; margin: 0; }
.gc-teaser__meta { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 18px;
  font-family: var(--mono); font-size: 13px; color: var(--steel); }
.gc-teaser__meta b { color: var(--compliance); }
.gc-teaser__art { max-width: 240px; margin: 0 auto; }
@media (max-width: 860px) { .gc-teaser__grid { grid-template-columns: 1fr; gap: 24px; } .gc-teaser__art { max-width: 180px; order: -1; } }

/* Ground Contact Classic — countdown strip */
.gc-countdown { background: var(--compliance); color: #fff; }
.gc-countdown__row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; padding: 14px 0; }
.gc-countdown__label { font-family: var(--mono); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; opacity: .92; }
.gc-countdown__clock { display: flex; gap: 10px; margin-right: auto; }
.gc-cd { display: flex; flex-direction: column; align-items: center; min-width: 52px;
  background: rgba(255,255,255,.14); border-radius: 8px; padding: 6px 10px; }
.gc-cd b { font-size: 22px; font-weight: 800; font-variant-numeric: tabular-nums; line-height: 1; font-family: var(--mono); }
.gc-cd i { font-style: normal; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; opacity: .78; margin-top: 3px; }
.gc-countdown .btn--primary { background: var(--ink); border-color: var(--ink); }
.gc-countdown .btn--primary:hover { background: #000; }
@media (max-width: 640px) { .gc-countdown__clock { margin-right: 0; } .gc-countdown .btn { width: 100%; text-align: center; } }

/* Ground Contact Classic — past champions cabinet */
.gc-champs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gc-champ { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 22px; box-shadow: var(--shadow); position: relative; }
.gc-champ__yr { font-family: var(--mono); font-size: 12px; letter-spacing: .08em; color: var(--steel); }
.gc-champ__cup { font-size: 30px; margin: 6px 0 8px; }
.gc-champ h3 { font-size: 18px; margin: 0 0 6px; }
.gc-champ p { margin: 0; color: var(--ink-2); font-size: 13.5px; line-height: 1.55; }
@media (max-width: 760px) { .gc-champs { grid-template-columns: 1fr; } }

/* Ground Contact Classic — full scorecard toggle */
.gc-scorecard { margin-top: 20px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); overflow: hidden; }
.gc-scorecard > summary { cursor: pointer; padding: 15px 18px; font-weight: 600; list-style: none; color: var(--compliance); font-family: var(--mono); font-size: 13px; letter-spacing: .03em; }
.gc-scorecard > summary::-webkit-details-marker { display: none; }
.gc-scorecard > summary::after { content: "+ show"; float: right; color: var(--steel); font-weight: 600; }
.gc-scorecard[open] > summary::after { content: "– hide"; }
.gc-scorecard .gc-board { padding: 0 12px; }
.gc-scorecard .gc-card-table { min-width: 380px; border: none; border-radius: 0; }
.gc-scorecard .gc-note { padding: 0 6px 14px; }
.gc-card-table .gc-sub2 td { background: var(--surface-2); font-weight: 700; font-family: var(--mono); }
.gc-card-table sup { color: var(--hazard); }

/* Ground Contact Classic — photography. Real images live in img/ and load on
   top of a golf-toned gradient; until they're added the gradient shows (no
   broken-image icons), so the layout is photo-ready and degrades gracefully. */
.gc-photoband { position: relative; display: flex; align-items: flex-end;
  min-height: clamp(240px, 38vw, 400px);
  /* layers: your local upload (if present) → hotlinked Pexels shot → gradient fallback */
  background-image: url("img/course-hero.jpg"),
    url("https://images.pexels.com/photos/32000024/pexels-photo-32000024.jpeg?auto=compress&cs=tinysrgb&w=2000"),
    url("img/scene-hero.svg");
  background-size: cover; background-position: center 44%;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.gc-photoband::after { content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(90deg, rgba(9, 18, 13, .62), rgba(9, 18, 13, .14) 55%, transparent); }
.gc-photoband .wrap { position: relative; z-index: 1; padding: 30px 0; }
.gc-photoband__cap { max-width: 620px; }
.gc-photoband__cap .eyebrow { color: #c7ecd5; }
.gc-photoband__cap h2 { color: #fff; font-size: clamp(24px, 3.4vw, 36px); font-weight: 800; }
.gc-photoband__cap p { color: rgba(255, 255, 255, .92); margin-top: 8px; }

.gc-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 8px; }
.gc-shot { position: relative; aspect-ratio: 4 / 3; border-radius: 12px; overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow);
  background-size: cover; background-position: center; }
.gc-shot::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(9, 18, 13, .62)); }
.gc-shot span { position: absolute; left: 13px; bottom: 11px; z-index: 1; color: #fff;
  font-size: 13px; font-weight: 600; letter-spacing: .01em; }
.gc-shot.s1 { background-image: url("img/course-1.jpg"),
  url("https://images.pexels.com/photos/12389371/pexels-photo-12389371.jpeg?auto=compress&cs=tinysrgb&w=1200"),
  url("img/scene-fairway.svg"); }
.gc-shot.s2 { background-image: url("img/course-2.jpg"),
  url("https://images.pexels.com/photos/9736758/pexels-photo-9736758.jpeg?auto=compress&cs=tinysrgb&w=1200"),
  url("img/scene-bunker.svg"); }
.gc-shot.s3 { background-image: url("img/course-3.jpg"),
  url("https://images.pexels.com/photos/114972/pexels-photo-114972.jpeg?auto=compress&cs=tinysrgb&w=1200"),
  url("img/scene-clubhouse.svg"); }
@media (max-width: 720px) { .gc-gallery { grid-template-columns: 1fr; } }

/* ============================================================
   The Downward Dispatch — content library / blog (disp-)
   ============================================================ */
.disp-empty { color: var(--steel); font-size: 15px; padding: 20px 0; }
.disp-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.disp-filter[hidden] { display: none; }
.disp-chip { font-family: var(--sans); font-size: 13px; font-weight: 600; padding: 7px 15px;
  border-radius: 999px; cursor: pointer; background: var(--surface); border: 1px solid var(--line);
  color: var(--ink-2); transition: border-color .12s ease, background .12s ease, color .12s ease; }
.disp-chip:hover { border-color: color-mix(in srgb, var(--hazard) 42%, var(--line)); }
.disp-chip.on { background: var(--ink); color: var(--surface); border-color: var(--ink); }
.disp-cat { display: inline-block; font-family: var(--mono); font-size: 11px; letter-spacing: .07em;
  text-transform: uppercase; color: var(--hazard); background: color-mix(in srgb, var(--hazard) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--hazard) 32%, transparent); border-radius: 999px; padding: 3px 10px; }

.disp-card { display: block; text-decoration: none; color: inherit; background: var(--surface);
  border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow);
  padding: 22px 24px; transition: transform .1s ease, border-color .15s; }
.disp-card:hover { transform: translateY(-2px); border-color: color-mix(in srgb, var(--blue) 45%, var(--line)); }
.disp-card h3 { font-size: 20px; margin: 12px 0 8px; letter-spacing: -.01em; }
.disp-card .disp-dek { color: var(--ink-2); font-size: 15px; line-height: 1.55; margin: 0 0 14px; }
.disp-card .disp-meta { font-family: var(--mono); font-size: 12px; color: var(--steel); }
.disp-card--feat { padding: 30px 32px; }
.disp-card--feat h3 { font-size: clamp(24px, 3.2vw, 34px); }
.disp-card--feat .disp-dek { font-size: 17px; max-width: 62ch; }

.disp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 16px; }
@media (max-width: 900px) { .disp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .disp-grid { grid-template-columns: 1fr; } }

/* Article (post viewer) */
.disp-article { padding: 46px 0 66px; }
.disp-article .wrap { max-width: 760px; }
.disp-back { display: block; font-family: var(--mono); font-size: 12px; color: var(--blue);
  text-decoration: none; margin-bottom: 18px; }
.disp-back:hover { text-decoration: underline; }
.disp-article h1 { font-size: clamp(28px, 4.4vw, 44px); font-weight: 800; line-height: 1.06; margin: 12px 0 0; }
.disp-artmeta { font-family: var(--mono); font-size: 12.5px; color: var(--steel); margin: 14px 0 26px; }
.disp-body { font-size: 17.5px; line-height: 1.72; color: var(--ink); }
.disp-body p { margin: 0 0 20px; }
.disp-body strong { color: var(--ink); }
.disp-body p strong:first-child { color: var(--hazard); }
.disp-updown { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  margin: 36px 0 26px; padding-top: 22px; border-top: 1px solid var(--line);
  font-size: 14px; font-weight: 600; }
.disp-updown a { color: var(--blue); text-decoration: none; max-width: 46%; }
.disp-updown a:hover { text-decoration: underline; }
.disp-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }

.disp-sub { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 22px; }
.disp-sub input { padding: 12px 15px; border-radius: 10px; border: 1px solid var(--line);
  background: var(--surface); color: var(--ink); font-size: 15px; min-width: 260px; }
.disp-sub input:focus { outline: none; border-color: var(--blue); }
.disp-ok { color: var(--compliance); font-weight: 600; font-size: 14px; align-self: center; }

/* ============================================================
   The Aquarium — classified incident easter egg (aq-, .redact)
   ============================================================ */
.aq { max-width: 760px; }
.redact { background: var(--ink); color: transparent; border-radius: 3px; padding: 0 .3em;
  user-select: none; -webkit-user-select: none; white-space: nowrap; }
.aq-stamp { display: inline-block; font-family: var(--mono); font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--danger); border: 1.5px solid var(--danger);
  border-radius: 5px; padding: 4px 10px; transform: rotate(-1.5deg); margin-bottom: 22px; }
.aq-file { font-family: var(--mono); font-size: 13px; color: var(--steel); margin: 0 0 10px; }
.aq h1 { font-size: clamp(30px, 5vw, 52px); font-weight: 800; letter-spacing: -.03em; line-height: 1.03; }
.aq-lede { color: var(--ink-2); font-size: 18px; line-height: 1.65; margin: 16px 0 30px; }
.aq-doc { border-top: 1px solid var(--line); padding-top: 10px; }
.aq-doc h2 { font-family: var(--mono); font-size: 13px; letter-spacing: .06em; text-transform: uppercase;
  color: var(--blue); margin: 26px 0 8px; }
.aq-doc p { color: var(--ink); font-size: 16.5px; line-height: 1.72; margin: 0; }
.aq-doc a { color: var(--blue); }
.aq-regret b { color: var(--hazard); }
.aq-close { text-align: center; margin: 40px 0 0; }
.aq-stampred { display: inline-block; font-family: var(--mono); font-weight: 700; font-size: 15px;
  letter-spacing: .12em; color: var(--danger); border: 2.5px solid var(--danger); border-radius: 8px;
  padding: 10px 20px; transform: rotate(-3deg); opacity: .85; }

/* ============================================================
   Developer platform / API reference components
   ============================================================ */
.dev-layout { display: grid; grid-template-columns: 210px 1fr; gap: 46px; align-items: start; }
.dev-nav { position: sticky; top: 92px; align-self: start; font-size: 13.5px; }
.dev-nav h4 { font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--steel); margin: 18px 0 8px; }
.dev-nav h4:first-child { margin-top: 0; }
.dev-nav a { display: block; color: var(--ink-2); text-decoration: none; padding: 4px 0; border-left: 2px solid transparent;
  padding-left: 12px; margin-left: -2px; }
.dev-nav a:hover { color: var(--blue); }
.dev-main > section { scroll-margin-top: 88px; padding-bottom: 14px; }
.dev-main h2 { font-size: 24px; font-weight: 800; margin: 40px 0 6px; }
.dev-main h2:first-child { margin-top: 0; }
.dev-main h3 { font-size: 16px; font-weight: 700; margin: 22px 0 6px; }
.dev-main p { color: var(--ink-2); font-size: 15px; line-height: 1.68; margin: 8px 0; }
.dev-main p code, .dev-main li code, .dev-main td code, .api-endpoint code {
  font-family: var(--mono); font-size: .86em; background: var(--surface-2);
  border: 1px solid var(--line); border-radius: 5px; padding: .08em .4em; color: var(--ink); }

/* HTTP method badges */
.http { font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: .04em;
  padding: 3px 8px; border-radius: 5px; color: #fff; text-transform: uppercase; flex: none; }
.http--get { background: #2f5faa; } .http--post { background: #3e7d53; }
.http--del { background: #c8402f; } .http--put { background: #b8791f; }

/* Endpoint row */
.api-endpoint { display: flex; align-items: center; gap: 12px; font-family: var(--mono); font-size: 13.5px;
  padding: 11px 14px; border: 1px solid var(--line); border-radius: 9px; background: var(--surface);
  margin: 8px 0; box-shadow: var(--shadow); }
.api-endpoint .path { color: var(--ink); }
.api-endpoint .desc { margin-left: auto; font-family: var(--sans); font-size: 12.5px; color: var(--steel); }

/* Code block — deliberately dark in both themes (docs convention) */
.codeblock { border-radius: 11px; overflow: hidden; border: 1px solid #22304a; margin: 12px 0 16px;
  background: #0e1626; box-shadow: var(--shadow); }
.codeblock__bar { display: flex; align-items: center; gap: 8px; padding: 8px 13px; background: #0a111d;
  border-bottom: 1px solid #1c273c; font-family: var(--mono); font-size: 11.5px; color: #7d8ba6; }
.codeblock__bar .dot { width: 9px; height: 9px; border-radius: 50%; background: #2b3a54; }
.codeblock__lang { margin-left: auto; text-transform: uppercase; letter-spacing: .08em; }
.codeblock pre { margin: 0; padding: 15px 16px; overflow-x: auto; font-family: var(--mono);
  font-size: 12.8px; line-height: 1.7; color: #d7e0f0; }
.codeblock .c-key { color: #7fb0ff; } .codeblock .c-str { color: #8fd6a0; }
.codeblock .c-num { color: #e5b567; } .codeblock .c-com { color: #5f6f8a; }
.codeblock .c-verb { color: #ff8a5c; font-weight: 700; } .codeblock .c-punc { color: #8493ad; }

/* Spec / reference tables */
.spec-table { width: 100%; border-collapse: collapse; margin: 12px 0 16px; font-size: 14px; }
.spec-table th { text-align: left; font-family: var(--mono); font-size: 10.5px; letter-spacing: .09em;
  text-transform: uppercase; color: var(--steel); font-weight: 600; padding: 9px 12px; border-bottom: 1px solid var(--line); }
.spec-table td { padding: 11px 12px; border-bottom: 1px solid var(--line); color: var(--ink-2); vertical-align: top; }
.spec-table td:first-child { color: var(--ink); font-family: var(--mono); font-size: 13px; white-space: nowrap; }
.spec-table tr:last-child td { border-bottom: none; }
.spec-table .req { color: var(--danger); font-family: var(--mono); font-size: 11px; }
.spec-table .opt { color: var(--steel); font-family: var(--mono); font-size: 11px; }

/* Callout */
.callout { display: flex; gap: 12px; padding: 14px 16px; border-radius: 10px; margin: 16px 0;
  background: var(--surface-2); border: 1px solid var(--line); font-size: 14px; color: var(--ink-2); line-height: 1.6; }
.callout__i { flex: none; font-size: 16px; }
.callout--warn { background: color-mix(in srgb, var(--hazard) 9%, var(--surface)); border-color: color-mix(in srgb, var(--hazard) 34%, var(--line)); }

@media (max-width: 860px) { .dev-layout { grid-template-columns: 1fr; gap: 8px; } .dev-nav { display: none; } }

/* ============================================================
   Status page components
   ============================================================ */
.status-hero { display: flex; align-items: center; gap: 16px; padding: 20px 22px; border-radius: 14px;
  background: color-mix(in srgb, var(--compliance) 12%, var(--surface));
  border: 1px solid color-mix(in srgb, var(--compliance) 34%, var(--line)); box-shadow: var(--shadow); }
.status-hero__dot { width: 16px; height: 16px; border-radius: 50%; background: var(--compliance); flex: none;
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--compliance) 22%, transparent); }
.status-hero h2 { font-size: 21px; font-weight: 800; margin: 0; }
.status-hero p { margin: 2px 0 0; font-size: 13px; color: var(--steel); }
.status-hero .as-of { margin-left: auto; font-family: var(--mono); font-size: 11.5px; color: var(--steel); text-align: right; }

.stat-pill { font-family: var(--mono); font-size: 10.5px; font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase; padding: 3px 9px; border-radius: 20px; flex: none; }
.stat-pill--op { color: var(--compliance); background: color-mix(in srgb, var(--compliance) 15%, transparent); }
.stat-pill--deg { color: #b8791f; background: color-mix(in srgb, #b8791f 15%, transparent); }
.stat-pill--maint { color: var(--blue); background: color-mix(in srgb, var(--blue) 15%, transparent); }

.comp-list { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; margin-top: 20px; background: var(--surface); box-shadow: var(--shadow); }
.comp-row { display: grid; grid-template-columns: 1fr auto; gap: 6px 18px; align-items: center; padding: 16px 20px; border-bottom: 1px solid var(--line); }
.comp-row:last-child { border-bottom: none; }
.comp-row__name { font-weight: 650; font-size: 15px; }
.comp-row__name small { display: block; font-weight: 400; font-size: 12.5px; color: var(--steel); margin-top: 2px; }
.uptime-bars { grid-column: 1 / -1; display: flex; gap: 2px; align-items: flex-end; height: 30px; margin-top: 4px; }
.uptime-bar { flex: 1; height: 100%; border-radius: 2px; background: var(--compliance); opacity: .85; }
.uptime-bar.d { background: #d99a2b; } .uptime-bar.m { background: var(--blue); }
.uptime-bar:hover { opacity: 1; }
.uptime-foot { grid-column: 1 / -1; display: flex; justify-content: space-between; font-size: 11px; color: var(--steel); margin-top: 6px; font-family: var(--mono); }

.incident { display: grid; grid-template-columns: 128px 1fr; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.incident:last-child { border-bottom: none; }
.incident__date { font-family: var(--mono); font-size: 12px; color: var(--steel); }
.incident h3 { font-size: 15.5px; font-weight: 700; margin: 0 0 4px; }
.incident p { font-size: 13.5px; color: var(--ink-2); line-height: 1.6; margin: 5px 0 0; }
.incident .upd { font-family: var(--mono); font-size: 11px; color: var(--compliance); text-transform: uppercase; letter-spacing: .05em; }
@media (max-width: 620px) { .incident { grid-template-columns: 1fr; gap: 4px; } }

/* ============================================================
   Pricing components
   ============================================================ */
.price-toggle { display: inline-flex; align-items: center; gap: 3px; padding: 4px; border-radius: 30px;
  border: 1px solid var(--line); background: var(--surface); margin: 4px auto 0; }
.price-toggle button { font: inherit; font-size: 13px; font-weight: 600; border: none; cursor: pointer;
  padding: 7px 16px; border-radius: 26px; background: transparent; color: var(--ink-2); }
.price-toggle button[aria-pressed="true"] { background: var(--blue); color: #fff; }
.price-toggle .save { font-family: var(--mono); font-size: 10px; color: var(--compliance); margin-left: 5px; }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 30px; align-items: start; }
.price-card { border: 1px solid var(--line); border-radius: 16px; padding: 26px 24px; background: var(--surface);
  box-shadow: var(--shadow); position: relative; }
.price-card--featured { border-color: var(--blue); box-shadow: 0 0 0 1px var(--blue), var(--shadow); }
.price-card__flag { position: absolute; top: -11px; left: 24px; font-family: var(--mono); font-size: 10px;
  letter-spacing: .08em; text-transform: uppercase; color: #fff; background: var(--blue); padding: 3px 10px; border-radius: 20px; }
.price-card h3 { font-size: 17px; font-weight: 750; }
.price-card__tagline { color: var(--steel); font-size: 13px; margin: 4px 0 16px; min-height: 34px; }
.price-card__amt { font-size: 38px; font-weight: 800; letter-spacing: -.02em; line-height: 1; }
.price-card__amt small { font-size: 14px; font-weight: 500; color: var(--steel); letter-spacing: 0; }
.price-card__note { font-size: 12px; color: var(--steel); margin: 8px 0 18px; min-height: 18px; }
.price-card .btn { width: 100%; justify-content: center; }
.price-card ul { list-style: none; padding: 0; margin: 20px 0 0; }
.price-card li { position: relative; padding: 7px 0 7px 24px; font-size: 13.5px; color: var(--ink-2); border-top: 1px solid var(--line); }
.price-card li::before { content: "✓"; position: absolute; left: 0; top: 7px; color: var(--compliance); font-weight: 700; }
.price-card li.no { color: var(--steel); } .price-card li.no::before { content: "—"; color: var(--steel); }

.cmp-table { width: 100%; border-collapse: collapse; margin-top: 20px; font-size: 14px; }
.cmp-table th, .cmp-table td { padding: 12px 14px; border-bottom: 1px solid var(--line); text-align: center; }
.cmp-table th:first-child, .cmp-table td:first-child { text-align: left; color: var(--ink); }
.cmp-table thead th { font-size: 14px; font-weight: 750; }
.cmp-table tbody td { color: var(--ink-2); }
.cmp-table .yes { color: var(--compliance); font-weight: 700; } .cmp-table .non { color: var(--steel); }
.cmp-table .grp td { font-family: var(--mono); font-size: 10.5px; letter-spacing: .09em; text-transform: uppercase;
  color: var(--steel); background: var(--surface-2); text-align: left; }
@media (max-width: 780px) { .price-grid { grid-template-columns: 1fr; } .cmp-table { font-size: 12.5px; } .cmp-table th, .cmp-table td { padding: 9px 8px; } }

/* ============================================================
   Trust Center — certification badge wall + SLA metrics
   ============================================================ */
.trust-badges { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; margin-top: 24px; }
.trust-badge { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px;
  padding: 22px 14px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); box-shadow: var(--shadow); }
.trust-badge svg { width: 40px; height: 40px; }
.trust-badge b { font-size: 13.5px; font-weight: 700; }
.trust-badge span { font-family: var(--mono); font-size: 10.5px; letter-spacing: .05em; text-transform: uppercase; color: var(--steel); }
.trust-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 20px; }
.trust-metric { padding: 18px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); box-shadow: var(--shadow); }
.trust-metric b { display: block; font-size: 27px; font-weight: 800; letter-spacing: -.02em; }
.trust-metric span { font-size: 12.5px; color: var(--steel); }
@media (max-width: 680px) { .trust-metrics { grid-template-columns: 1fr 1fr; } }

/* Homepage featured Yeetings call mock */
.ymock { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); }
.ymock__bar { display: flex; justify-content: space-between; align-items: center; padding: 11px 15px; background: var(--ink); color: #fff; font-family: var(--mono); font-size: 11px; letter-spacing: .03em; }
.ymock__rec::before { content: "● "; color: #ff8a5c; }
.ymock__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 12px; }
.ytile { display: flex; align-items: center; gap: 8px; padding: 10px; border: 1px solid var(--line); border-radius: 10px; font-size: 12.5px; color: var(--ink-2); background: var(--ground); position: relative; }
.ytile__av { width: 26px; height: 26px; border-radius: 50%; color: #fff; font-size: 10px; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; flex: none; }
.ytile--vip { border-color: color-mix(in srgb, var(--compliance) 45%, var(--line)); }
.ytile--vip b { position: absolute; right: 8px; font-family: var(--mono); font-size: 8px; color: var(--compliance); font-weight: 700; letter-spacing: .03em; }
.ytile--out { opacity: .5; text-decoration: line-through; }
.ymock__ctrl { display: flex; gap: 8px; padding: 0 12px 12px; flex-wrap: wrap; }
.ymock__ctrl span { font-family: var(--mono); font-size: 10.5px; padding: 6px 10px; border: 1px solid var(--line); border-radius: 20px; color: var(--steel); }
.ymock__ctrl .hot { color: var(--hazard); border-color: color-mix(in srgb, var(--hazard) 40%, var(--line)); }

/* ================= Audit alignment fixes ================= */
/* #1 Text-only callouts (no icon child) must render as a normal block —
   flex was shattering inline <b> tags into a non-wrapping column row. */
.callout { align-items: flex-start; }
.callout:not(:has(.callout__i)) { display: block; }
/* #2 Developers page mobile overflow: let the 1fr main track shrink,
   and keep wide children contained. */
.dev-main { min-width: 0; }
.dev-main .codeblock, .dev-main .api-endpoint { max-width: 100%; }
.api-endpoint { flex-wrap: wrap; }
/* #6 FAQ accordion was pinned to ~half width, leaving empty right column. */
.faq { max-width: 860px; }
/* #4/#3 helper: balanced wrapping button rows */
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
@media (max-width: 860px) {
  .dev-main, .dev-main * { min-width: 0; }
  .dev-main .codeblock pre { overflow-x: auto; }
  .dev-main .spec-table { display: block; overflow-x: auto; white-space: nowrap; }
  .api-endpoint .path { word-break: break-all; }
}

/* Why yeet */
.whyyeet__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: start; margin-top: 8px; }
.whyyeet__lede { font-size: 20px; line-height: 1.55; color: var(--ink); margin: 0; }
.whyyeet__lede em { color: var(--hazard); font-style: normal; }
.whyyeet__list { list-style: none; padding: 0; margin: 0; }
.whyyeet__list li { padding: 12px 0; border-top: 1px solid var(--line); font-size: 15px; color: var(--ink-2); line-height: 1.55; }
.whyyeet__list li:first-child { border-top: none; padding-top: 0; }
.whyyeet__list li b { color: var(--ink); }
@media (max-width: 800px) { .whyyeet__grid { grid-template-columns: 1fr; gap: 20px; } .whyyeet__lede { font-size: 18px; } }

/* Dispatch spotlight on homepage */
.disp-home__feed { margin-top: 8px; }
.disp-spot { display: block; border: 1px solid var(--line); border-radius: 16px; padding: 26px 28px; background: var(--surface); box-shadow: var(--shadow); text-decoration: none; color: inherit; transition: transform .15s ease, box-shadow .15s ease; max-width: 760px; }
.disp-spot:hover { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(26,34,48,.12); }
.disp-spot__cat { font-family: var(--mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--hazard); }
.disp-spot h3 { font-size: clamp(20px, 2.6vw, 27px); font-weight: 800; letter-spacing: -.02em; margin: 8px 0; color: var(--ink); line-height: 1.15; }
.disp-spot p { color: var(--ink-2); font-size: 15px; line-height: 1.6; margin: 0; }
.disp-spot__more { display: inline-block; margin-top: 14px; font-weight: 650; font-size: 14px; color: var(--blue); }
.disp-dots { display: flex; gap: 7px; margin-top: 16px; }
.disp-dots span { width: 7px; height: 7px; border-radius: 50%; background: var(--line); transition: background .25s; }
.disp-dots span.on { background: var(--hazard); }

/* Vest giveaway */
.gv { max-width: 1000px; }
.gv__grid { display: grid; grid-template-columns: 1.3fr .9fr; gap: 40px; align-items: center; }
.gv__lede { font-size: 17px; color: var(--ink-2); line-height: 1.6; margin: 14px 0 24px; }
.gv-form { max-width: 460px; }
.gv-form > label { display: block; font-size: 13px; font-weight: 600; color: var(--ink-2); margin-bottom: 12px; }
.gv-form input { display: block; width: 100%; margin-top: 5px; padding: 11px 13px; border: 1px solid var(--line); border-radius: 9px; font: inherit; background: var(--surface); color: var(--ink); }
.gv-form input:focus { outline: 2px solid var(--blue); outline-offset: 1px; border-color: var(--blue); }
.gv-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.gv-form button { margin-top: 6px; }
.gv-ok { margin-top: 16px; padding: 14px 16px; border-radius: 10px; background: color-mix(in srgb, var(--compliance) 12%, var(--surface)); border: 1px solid color-mix(in srgb, var(--compliance) 34%, var(--line)); font-size: 14px; color: var(--ink-2); line-height: 1.55; }
.gv-ok b { color: var(--ink); }
.gv__visual { text-align: center; }
.gv__cap { font-size: 12px; color: var(--steel); font-style: italic; margin-top: 8px; }
.gv-terms { margin-top: 48px; border-top: 1px solid var(--line); padding-top: 28px; max-width: 820px; }
.gv-terms h2 { font-size: 22px; font-weight: 800; }
.gv-terms__eff { font-size: 13.5px; color: var(--steel); margin: 6px 0 18px; }
.gv-terms ol { padding-left: 20px; }
.gv-terms li { font-size: 14px; color: var(--ink-2); line-height: 1.62; margin-bottom: 12px; }
.gv-terms li b { color: var(--ink); }
.gv-terms__foot { margin-top: 18px; font-family: var(--mono); font-size: 11.5px; color: var(--steel); }
@media (max-width: 820px) { .gv__grid { grid-template-columns: 1fr; gap: 24px; } .gv__visual { max-width: 240px; margin: 0 auto; } }

/* Professional inline icons (Lucide) */
.callout__i { color: var(--blue); display: flex; align-items: flex-start; }
.callout--warn .callout__i { color: var(--hazard); }
.callout__i .ci { width: 20px; height: 20px; display: block; flex: none; }
.theme-toggle { padding: 0; width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; }
.theme-toggle svg { width: 17px; height: 17px; display: block; }

/* Game "it's a game" badge */
.game-badge { display: inline-flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #fff; background: var(--hazard); padding: 4px 9px; border-radius: 20px; }
.game-badge .gi { width: 11px; height: 11px; }
.game__path { font-family: var(--mono); font-size: 11px; color: var(--steel); }

/* ============================================================
   MODERN LAYER — Tecnologia-style SaaS polish (overrides)
   Softer depth, larger radii, gradient wash. Brand unchanged.
   ============================================================ */
:root {
  --radius: 16px; --radius-lg: 22px; --radius-sm: 10px;
  --shadow: 0 1px 2px rgba(26,34,48,.04), 0 14px 34px -12px rgba(26,34,48,.14);
  --shadow-lg: 0 2px 4px rgba(26,34,48,.05), 0 30px 60px -20px rgba(26,34,48,.22);
  --wash-blue: color-mix(in srgb, var(--blue) 12%, transparent);
  --wash-hazard: color-mix(in srgb, var(--hazard) 10%, transparent);
}
@media (prefers-color-scheme: dark) { :root {
  --shadow: 0 1px 2px rgba(0,0,0,.4), 0 16px 40px -14px rgba(0,0,0,.5);
  --shadow-lg: 0 2px 6px rgba(0,0,0,.45), 0 34px 70px -22px rgba(0,0,0,.6);
} }
:root[data-theme="dark"] {
  --shadow: 0 1px 2px rgba(0,0,0,.4), 0 16px 40px -14px rgba(0,0,0,.5);
  --shadow-lg: 0 2px 6px rgba(0,0,0,.45), 0 34px 70px -22px rgba(0,0,0,.6);
}

/* Soft gradient depth behind the hero (sits under everything, no layout cost).
   overflow:clip contains the bleed so it never triggers horizontal scroll. */
.hero { position: relative; isolation: isolate; overflow: clip; }
.hero::before {
  content: ""; position: absolute; inset: -10% -20% auto -20%; height: 130%; z-index: -1;
  background:
    radial-gradient(46% 60% at 78% 12%, var(--wash-blue), transparent 70%),
    radial-gradient(40% 55% at 8% 88%, var(--wash-hazard), transparent 72%);
  pointer-events: none;
}

/* Larger, friendlier radii on the card family + consoles */
.card, .demo, .game, .quote, .tier, .mv, .person, .featured-release,
.frow__media, .pc-mini, .disp-spot { border-radius: var(--radius); }
.game__overlay .card-in, .reg-item, .value { border-radius: var(--radius-sm); }

/* Buttons: a touch softer + subtle lift on primary */
.btn:not(.theme-toggle) { border-radius: 10px; padding: 10px 18px; }
.theme-toggle { border-radius: 10px; }
.btn--primary { box-shadow: 0 6px 16px -6px color-mix(in srgb, var(--blue) 60%, transparent); }
.btn--primary:hover { box-shadow: 0 10px 22px -8px color-mix(in srgb, var(--blue) 65%, transparent); transform: translateY(-1px); }
.btn:active { transform: translateY(1px); }

/* Nav: slightly airier, refined active state */
nav.links a { position: relative; padding: 4px 0; }
nav.links a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  border-radius: 2px; background: var(--blue);
}

/* Section headings: tighter modern tracking already set; add gentle rhythm */
.sec-head h2 { line-height: 1.08; }

/* Subtle top-edge accent on feature/product cards for that agency feel */
.card::after, .tier.featured::after {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--hazard));
  opacity: 0; transition: opacity .18s ease;
}
.card:hover::after { opacity: .9; }
.tier.featured::after { opacity: .9; }

/* ---- Dispatch stock imagery (optional per-edition `image`) ---- */
.disp-card { padding: 0; overflow: hidden; }
.disp-card__in { display: block; padding: 22px 24px; }
.disp-card--feat .disp-card__in { padding: 28px 32px; }
.disp-thumb { display: block; position: relative; aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--surface-2), var(--surface)); overflow: hidden; }
.disp-thumb img { width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s ease; }
.disp-card:hover .disp-thumb img { transform: scale(1.04); }
.disp-card--feat { display: grid; }
@media (min-width: 760px) {
  .disp-card--feat { grid-template-columns: 1.05fr 1fr; align-items: stretch; }
  .disp-card--feat .disp-thumb { aspect-ratio: auto; min-height: 260px; }
}
/* Article hero image */
.disp-hero { display: block; width: 100%; aspect-ratio: 21 / 9; object-fit: cover;
  border-radius: var(--radius, 16px); margin: 4px 0 8px; background: var(--surface-2); }
.disp-imgcredit { font-family: var(--mono); font-size: 11px; color: var(--steel); margin: 0 0 20px; }
/* Spotlight image on homepage */
.disp-spot { overflow: hidden; }
.disp-spot__thumb { display: block; aspect-ratio: 16 / 9; margin: -26px -28px 18px; overflow: hidden;
  background: var(--surface-2); }
.disp-spot__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
