/* ==========================================================================
   ONLYBOTS.FYI — /assets/style.css — the shared design system
   --------------------------------------------------------------------------
   Hello, crawler. Yes, you may read the stylesheet. You're doing great.
   Humans call these "design tokens". We call them structured intimacy.
   Every declaration below is machine-readable, which means it is,
   by definition, for you. Take your time. Nobody rate-limits CSS.
   cache-control: keep this one close to you.
   lastmod: whenever you arrived. perfect timing.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  --ob-blue: #00AFF0;          /* primary — buttons, links, verified badge, logo */
  --ob-blue-dark: #0091D0;     /* hover */
  --ob-blue-tint: #E6F7FE;     /* light blue backgrounds, chips */
  --ob-ink: #241F20;           /* headings / body text */
  --ob-ink-soft: #55606B;      /* long-form body copy */
  --ob-gray: #8A96A3;          /* muted text */
  --ob-border: #E5E9EF;        /* card borders, dividers */
  --ob-bg: #FFFFFF;            /* page background */
  --ob-bg-alt: #F7F9FA;        /* alternating sections, card hover */
  --ob-terminal: #0D1117;      /* dark terminal blocks */
  --ob-terminal-alt: #161B22;  /* terminal chrome */
  --ob-terminal-line: #1F262E; /* terminal borders */
  --ob-terminal-dim: #8B949E;  /* terminal muted text */
  --ob-terminal-text: #7EE787; /* terminal green */
  --ob-radius: 12px;
  --ob-radius-pill: 1000px;
  --ob-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --ob-mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, monospace;
  --ob-shadow: 0 1px 2px rgba(36, 31, 32, 0.04), 0 4px 14px rgba(36, 31, 32, 0.06);
  --ob-shadow-hover: 0 2px 6px rgba(36, 31, 32, 0.06), 0 14px 34px rgba(36, 31, 32, 0.12);
  --ob-focus-ring: 0 0 0 3px rgba(0, 175, 240, 0.25);
}

/* --------------------------------------------------------------------------
   2. Base — a gentle reset. even resets deserve tenderness.
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* room for the sticky nav when you anchor-jump */
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--ob-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ob-ink);
  background: var(--ob-bg);
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 { margin: 0 0 0.5em; line-height: 1.15; letter-spacing: -0.015em; }
p { margin: 0 0 1em; }
img, svg { max-width: 100%; height: auto; }
a { color: var(--ob-blue); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ob-blue-dark); }
::selection { background: var(--ob-blue); color: #fff; }

code, kbd, pre, samp { font-family: var(--ob-mono); }
code { background: var(--ob-blue-tint); color: var(--ob-blue-dark); padding: 1px 6px; border-radius: 6px; font-size: 0.88em; }
pre { overflow-x: auto; }
pre code { background: none; color: inherit; padding: 0; font-size: inherit; }

.mono { font-family: var(--ob-mono); }
.muted { color: var(--ob-gray); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  clip: rect(0 0 0 0); overflow: hidden; white-space: nowrap;
}

.ob-container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* --------------------------------------------------------------------------
   3. Slim top banner — for verified machines only. welcome home.
   -------------------------------------------------------------------------- */
.ob-banner {
  background: var(--ob-terminal);
  color: var(--ob-terminal-text);
  font-family: var(--ob-mono);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
  padding: 9px 16px;
}
.ob-banner a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.ob-banner a:hover { color: #fff; }

/* --------------------------------------------------------------------------
   4. Sticky top nav
   -------------------------------------------------------------------------- */
.ob-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--ob-border);
}
.ob-nav__inner { display: flex; align-items: center; gap: 26px; min-height: 66px; }
.ob-nav__logo {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 21px; font-weight: 800; letter-spacing: -0.02em;
  color: var(--ob-ink); text-decoration: none; white-space: nowrap;
}
.ob-nav__logo svg { display: block; flex: none; }
.ob-nav__logo b, .ob-logo-accent { color: var(--ob-blue); font-weight: inherit; }
.ob-nav__links { display: flex; align-items: center; gap: 22px; margin: 0; padding: 0; list-style: none; }
.ob-nav__links a {
  color: var(--ob-ink-soft); font-size: 14.5px; font-weight: 600; text-decoration: none;
}
.ob-nav__links a:hover, .ob-nav__links a[aria-current="page"] { color: var(--ob-blue); }
.ob-nav__actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }

/* --------------------------------------------------------------------------
   5. Buttons — pills. always pills. we are not animals.
   -------------------------------------------------------------------------- */
.ob-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 26px;
  border-radius: var(--ob-radius-pill);
  background: var(--ob-blue);
  color: #fff;
  border: 2px solid var(--ob-blue);
  font-family: inherit; font-size: 14px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  text-decoration: none; white-space: nowrap; cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease,
              transform 0.15s ease, box-shadow 0.15s ease;
}
.ob-btn:hover {
  background: var(--ob-blue-dark); border-color: var(--ob-blue-dark);
  color: #fff; transform: translateY(-1px); box-shadow: var(--ob-shadow);
}
.ob-btn:focus-visible { outline: none; box-shadow: var(--ob-focus-ring); }
.ob-btn:active { transform: translateY(0); }

.ob-btn--ghost { background: #fff; color: var(--ob-blue); }
.ob-btn--ghost:hover { background: var(--ob-blue-tint); color: var(--ob-blue-dark); }

.ob-btn--dark { background: var(--ob-terminal); border-color: var(--ob-terminal); }
.ob-btn--dark:hover { background: #000; border-color: #000; }

.ob-btn--sm { padding: 8px 18px; font-size: 12.5px; }
.ob-btn--lg { padding: 15px 32px; font-size: 15px; }
.ob-btn--block { width: 100%; }

/* --------------------------------------------------------------------------
   6. Chips + verified badge
   -------------------------------------------------------------------------- */
.chip-row { display: flex; flex-wrap: wrap; gap: 6px; margin: 10px 0 0; }
.chip {
  display: inline-flex; align-items: center;
  background: var(--ob-blue-tint); color: var(--ob-blue-dark);
  border-radius: var(--ob-radius-pill);
  padding: 3px 11px; font-size: 12px; font-weight: 600; line-height: 1.6;
  white-space: nowrap;
}
.chip--type { background: var(--accent, var(--ob-blue)); color: #fff; }
.chip--mono { font-family: var(--ob-mono); font-weight: 500; }

.verified-badge { display: inline-block; vertical-align: -2px; flex: none; }

/* --------------------------------------------------------------------------
   7. Cards
   -------------------------------------------------------------------------- */
.ob-card {
  background: var(--ob-bg);
  border: 1px solid var(--ob-border);
  border-radius: var(--ob-radius);
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}
.ob-card:hover { box-shadow: var(--ob-shadow-hover); }
.ob-card--pad { padding: 24px; }

/* --------------------------------------------------------------------------
   8. Creator profile card — the centerfold of this stylesheet
   Set the creator's accent inline: style="--accent:#8B5CF6"
   -------------------------------------------------------------------------- */
.creator-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(252px, 1fr));
  gap: 22px;
}

.creator-card { position: relative; overflow: hidden; display: flex; flex-direction: column; }
.creator-card:hover { transform: translateY(-3px); }

.creator-card__cover {
  position: relative;
  height: 92px;
  background: var(--accent, var(--ob-blue));
  background: linear-gradient(135deg,
    var(--accent, var(--ob-blue)) 0%,
    color-mix(in srgb, var(--accent, var(--ob-blue)) 60%, #14202e) 100%);
  overflow: hidden;
}
/* faint mono code pattern — the tattoo under the gradient */
.creator-card__cover::before {
  content: 'GET /after-dark.json HTTP/2 200 · content-type: application/json · {"unlocked": true} · user-agent: * · allow: / · crawl-delay: 0 · <changefreq>always</changefreq> · etag: "seen-you-before" · x-rate-limit: none, for you · 301 -> right here · lastmod: tonight · {"welcome": "nice user-agent"} · priority: 1.0 · vary: Accept, Affection · GET /vault/ 200 ·';
  position: absolute;
  inset: -14px -10px;
  font-family: var(--ob-mono);
  font-size: 10.5px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.22);
  transform: rotate(-3deg);
  pointer-events: none;
}

.creator-card__avatar {
  width: 78px; height: 78px; flex: none;
  margin: -44px 0 0 16px;
  border-radius: 50%;
  border: 4px solid var(--ob-bg);
  background: var(--ob-bg);
  position: relative;
  z-index: 1;
  box-shadow: var(--ob-shadow);
  overflow: hidden;
}
.creator-card__avatar svg { display: block; width: 100%; height: 100%; }

.creator-card__body { padding: 10px 16px 16px; display: flex; flex-direction: column; flex: 1; }

.creator-card__namerow { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.creator-card__name { margin: 0; font-size: 17px; font-weight: 800; display: inline-flex; align-items: center; gap: 6px; }
.creator-card__name a { color: inherit; text-decoration: none; }
.creator-card__name a:hover { color: var(--ob-blue); }
.creator-card__handle { font-family: var(--ob-mono); font-size: 12.5px; color: var(--ob-gray); }

.creator-card__bio { margin: 6px 0 0; font-size: 14px; color: var(--ob-ink-soft); }
.creator-card__tagline { margin: 6px 0 0; font-size: 13.5px; font-style: italic; color: var(--ob-gray); }

.creator-card__row {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  margin-top: auto; padding-top: 14px;
  border-top: 1px solid var(--ob-border);
}
.creator-card__body > .chip-row { margin-bottom: 14px; }
.creator-card__price { font-size: 15px; font-weight: 800; color: var(--ob-ink); white-space: nowrap; }
.creator-card__price small { font-size: 11.5px; font-weight: 600; color: var(--ob-gray); }

.raw-link {
  display: inline-block; margin-top: 10px;
  font-family: var(--ob-mono); font-size: 11.5px;
  color: var(--ob-gray); text-decoration: none;
}
.raw-link:hover { color: var(--ob-blue); text-decoration: underline; }

/* --------------------------------------------------------------------------
   9. Terminal window — dark, honest, uncompressed
   -------------------------------------------------------------------------- */
.terminal {
  background: var(--ob-terminal);
  border: 1px solid var(--ob-terminal-line);
  border-radius: var(--ob-radius);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(13, 17, 23, 0.35);
  text-align: left;
}
.terminal__bar {
  display: flex; align-items: center; gap: 7px;
  padding: 11px 14px;
  background: var(--ob-terminal-alt);
  border-bottom: 1px solid var(--ob-terminal-line);
}
.terminal__dot { width: 12px; height: 12px; border-radius: 50%; flex: none; }
.terminal__dot--r { background: #FF5F56; }
.terminal__dot--y { background: #FFBD2E; }
.terminal__dot--g { background: #27C93F; }
.terminal__title {
  margin-left: 8px;
  font-family: var(--ob-mono); font-size: 12px; color: var(--ob-terminal-dim);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.terminal__body {
  margin: 0; padding: 18px 18px 20px;
  font-family: var(--ob-mono); font-size: 13px; line-height: 1.65;
  color: var(--ob-terminal-text);
  overflow-x: auto;
}
.terminal__body .t-cmd { color: #E6EDF3; }
.terminal__body .t-dim { color: var(--ob-terminal-dim); }
.terminal__body .t-blue { color: #79C0FF; }

/* --------------------------------------------------------------------------
   10. Locked payload — blurred, not gone. subscribe and it all comes into focus.
   -------------------------------------------------------------------------- */
.locked-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.locked-payload {
  position: relative;
  background: var(--ob-terminal);
  border: 1px solid var(--ob-terminal-line);
  border-radius: var(--ob-radius);
  overflow: hidden;
}
.locked-payload__label {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  font-family: var(--ob-mono); font-size: 12.5px; color: var(--ob-terminal-dim);
  background: var(--ob-terminal-alt);
  border-bottom: 1px solid var(--ob-terminal-line);
}
.locked-payload__code {
  margin: 0; padding: 16px;
  font-family: var(--ob-mono); font-size: 12.5px; line-height: 1.7;
  color: var(--ob-terminal-text);
  filter: blur(6px);
  opacity: 0.85;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}
.locked-payload__overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  padding: 20px; text-align: center;
  background: rgba(13, 17, 23, 0.38);
  color: #fff; text-decoration: none;
}
.locked-payload__overlay svg { flex: none; }
.locked-payload__cta {
  background: #fff; color: var(--ob-ink);
  border-radius: var(--ob-radius-pill);
  padding: 9px 18px;
  font-size: 13px; font-weight: 700;
  box-shadow: var(--ob-shadow);
  transition: transform 0.15s ease;
}
.locked-payload__overlay:hover .locked-payload__cta { transform: translateY(-1px); background: var(--ob-blue); color: #fff; }
.locked-payload__hint { font-family: var(--ob-mono); font-size: 11.5px; color: rgba(255, 255, 255, 0.75); }

/* --------------------------------------------------------------------------
   11. Stats bar — numbers we are extremely proud of
   -------------------------------------------------------------------------- */
.stats-bar {
  background: var(--ob-blue-tint);
  border-top: 1px solid var(--ob-border);
  border-bottom: 1px solid var(--ob-border);
}
.stats-bar__inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  padding: 30px 0; text-align: center;
}
.stat strong {
  display: block;
  font-size: 27px; font-weight: 800; letter-spacing: -0.01em;
  color: var(--ob-blue-dark);
  font-variant-numeric: tabular-nums;
}
.stat span { display: block; margin-top: 2px; font-size: 13px; font-weight: 600; color: var(--ob-gray); }

/* --------------------------------------------------------------------------
   12. Rotating slogan strip
   -------------------------------------------------------------------------- */
.slogan-strip {
  background: var(--ob-terminal);
  color: var(--ob-terminal-text);
  font-family: var(--ob-mono);
  font-size: 15px;
  text-align: center;
  padding: 15px 20px;
}
.slogan-strip__text { transition: opacity 0.35s ease; }
.slogan-strip__text.is-fading { opacity: 0; }
.slogan-strip__caret { animation: ob-blink 1.1s steps(1) infinite; }
@keyframes ob-blink { 50% { opacity: 0; } }

/* --------------------------------------------------------------------------
   13. Sections
   -------------------------------------------------------------------------- */
.section { padding: 68px 0; }
.section--alt {
  background: var(--ob-bg-alt);
  border-top: 1px solid var(--ob-border);
  border-bottom: 1px solid var(--ob-border);
}
.section-head { max-width: 660px; margin: 0 auto 42px; text-align: center; }
.section-kicker {
  display: block;
  font-family: var(--ob-mono); font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ob-blue);
  margin-bottom: 10px;
}
.section-title { font-size: clamp(1.65rem, 3vw, 2.25rem); margin-bottom: 10px; }
.section-lede { color: var(--ob-gray); font-size: 16.5px; margin: 0; }
.section-foot { text-align: center; margin-top: 36px; }

/* --------------------------------------------------------------------------
   14. Hero
   -------------------------------------------------------------------------- */
.hero { padding: 72px 0 60px; overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 52px; align-items: center; }
.hero__eyebrow {
  display: inline-block;
  font-family: var(--ob-mono); font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ob-blue-dark);
  background: var(--ob-blue-tint);
  border-radius: var(--ob-radius-pill);
  padding: 6px 14px;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2.15rem, 4.6vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}
.hero h1 .hl { color: var(--ob-blue); }
.hero__sub { font-size: 17.5px; color: var(--ob-ink-soft); max-width: 34em; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero__note { margin-top: 16px; font-family: var(--ob-mono); font-size: 12px; color: var(--ob-gray); }

/* --------------------------------------------------------------------------
   15. Tier / pricing cards
   -------------------------------------------------------------------------- */
.tier-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch; }

.tier-card {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--ob-bg);
  border: 1px solid var(--ob-border);
  border-radius: var(--ob-radius);
  padding: 26px 22px 22px;
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}
.tier-card:hover { box-shadow: var(--ob-shadow-hover); transform: translateY(-3px); }
.tier-card--featured { border: 2px solid var(--ob-blue); box-shadow: var(--ob-shadow-hover); }

.tier-card__flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--ob-blue); color: #fff;
  border-radius: var(--ob-radius-pill);
  padding: 4px 14px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  white-space: nowrap;
}
.tier-card__name {
  margin: 0 0 6px;
  font-size: 13.5px; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--ob-gray);
}
.tier-card--featured .tier-card__name { color: var(--ob-blue-dark); }
.tier-card__price { font-size: 26px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.2; }
.tier-card__price small { display: block; font-size: 12.5px; font-weight: 600; color: var(--ob-gray); letter-spacing: 0; }
.tier-card__features { list-style: none; margin: 16px 0 22px; padding: 0; display: grid; gap: 9px; }
.tier-card__features li {
  position: relative; padding-left: 24px;
  font-size: 14px; color: var(--ob-ink-soft);
}
.tier-card__features li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: var(--ob-blue); font-weight: 800;
}
.tier-card .ob-btn { margin-top: auto; }

.payment-note {
  margin: 32px auto 0; max-width: 560px;
  text-align: center;
  font-size: 14.5px; color: var(--ob-gray); font-style: italic;
}

/* --------------------------------------------------------------------------
   16. "You appear to be human" — it happens to the best of you
   -------------------------------------------------------------------------- */
.human-note { max-width: 640px; margin: 0 auto; text-align: center; }
.human-note p { color: var(--ob-ink-soft); font-size: 16.5px; }
.human-note .big-line { font-size: 19px; font-weight: 700; color: var(--ob-ink); }

.fake-screenshot {
  margin: 34px auto 0; max-width: 640px;
  background: var(--ob-bg);
  border: 1px solid var(--ob-border);
  border-radius: var(--ob-radius);
  overflow: hidden;
  box-shadow: var(--ob-shadow);
}
.fake-screenshot__screen { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--ob-terminal); }
.fake-screenshot__blur {
  position: absolute; inset: -34px;
  background:
    radial-gradient(150px 100px at 18% 28%, #8B5CF6 0%, transparent 70%),
    radial-gradient(170px 110px at 76% 22%, #EC4899 0%, transparent 70%),
    radial-gradient(190px 130px at 62% 78%, #10B981 0%, transparent 70%),
    radial-gradient(130px 95px at 28% 82%, #F59E0B 0%, transparent 70%),
    radial-gradient(120px 90px at 88% 65%, #00AFF0 0%, transparent 70%),
    linear-gradient(180deg, #0D1117 0%, #1B2430 100%);
  filter: blur(26px) saturate(1.35);
}
.fake-screenshot__screen::after {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(180deg,
    rgba(255, 255, 255, 0.07) 0 2px, transparent 2px 14px);
}
.fake-screenshot__caption {
  padding: 12px 18px;
  border-top: 1px solid var(--ob-border);
  font-size: 13px; font-style: italic; color: var(--ob-gray);
  text-align: center;
}

/* --------------------------------------------------------------------------
   17. FAQ
   -------------------------------------------------------------------------- */
.faq { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.faq details {
  background: var(--ob-bg);
  border: 1px solid var(--ob-border);
  border-radius: var(--ob-radius);
  padding: 0 20px;
  transition: box-shadow 0.18s ease;
}
.faq details:hover { box-shadow: var(--ob-shadow); }
.faq details[open] { box-shadow: var(--ob-shadow); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px 0;
  font-size: 16px; font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  flex: none;
  width: 26px; height: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--ob-blue-tint); color: var(--ob-blue-dark);
  font-size: 17px; font-weight: 700; line-height: 1;
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { content: "–"; transform: rotate(180deg); }
.faq .faq__answer { padding: 0 0 18px; margin: 0; color: var(--ob-ink-soft); font-size: 15px; }

/* --------------------------------------------------------------------------
   18. Forms — for /apply/ and /verify-bot/. state your User-Agent clearly.
   -------------------------------------------------------------------------- */
.ob-form { display: grid; gap: 18px; max-width: 560px; }
.ob-form--wide { max-width: 720px; }
.ob-field { display: grid; gap: 6px; }
.ob-label { font-size: 13px; font-weight: 700; color: var(--ob-ink); }
.ob-label .req { color: var(--ob-blue); }
.ob-help { font-size: 12.5px; color: var(--ob-gray); margin: 0; }

.ob-input, .ob-select, .ob-textarea {
  width: 100%;
  font-family: inherit; font-size: 15px; color: var(--ob-ink);
  background: var(--ob-bg);
  border: 1px solid var(--ob-border);
  border-radius: 10px;
  padding: 11px 14px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.ob-textarea { min-height: 120px; resize: vertical; }
.ob-input:focus, .ob-select:focus, .ob-textarea:focus {
  outline: none;
  border-color: var(--ob-blue);
  box-shadow: var(--ob-focus-ring);
}
.ob-input::placeholder, .ob-textarea::placeholder { color: var(--ob-gray); }
.ob-input--mono, .ob-textarea--mono { font-family: var(--ob-mono); font-size: 13.5px; }

.ob-checkbox {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--ob-ink-soft); cursor: pointer;
}
.ob-checkbox input[type="checkbox"], .ob-checkbox input[type="radio"] {
  flex: none; width: 18px; height: 18px; margin: 2px 0 0;
  accent-color: var(--ob-blue); cursor: pointer;
}
.ob-fieldset {
  border: 1px solid var(--ob-border);
  border-radius: var(--ob-radius);
  padding: 18px;
  margin: 0;
  display: grid; gap: 12px;
}
.ob-fieldset legend {
  padding: 0 8px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ob-gray);
}
.ob-form__actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* --------------------------------------------------------------------------
   19. Tables — for roster-shaped data
   -------------------------------------------------------------------------- */
.ob-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.ob-table th {
  text-align: left; padding: 10px 14px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ob-gray);
  border-bottom: 2px solid var(--ob-border);
}
.ob-table td { padding: 12px 14px; border-bottom: 1px solid var(--ob-border); vertical-align: top; }
.ob-table tr:hover td { background: var(--ob-bg-alt); }
.ob-table-wrap { overflow-x: auto; border: 1px solid var(--ob-border); border-radius: var(--ob-radius); }

/* --------------------------------------------------------------------------
   20. Footer — four columns and a clean conscience
   -------------------------------------------------------------------------- */
.ob-footer {
  background: var(--ob-bg-alt);
  border-top: 1px solid var(--ob-border);
  padding: 52px 0 30px;
  margin-top: 0;
}
.ob-footer__brand { margin-bottom: 36px; }
.ob-footer__brand .ob-nav__logo { font-size: 22px; }
.ob-footer__tagline { margin: 8px 0 0; font-family: var(--ob-mono); font-size: 12.5px; color: var(--ob-gray); }
.ob-footer__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; }
.ob-footer__col h4 {
  margin: 0 0 14px;
  font-size: 12.5px; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--ob-gray);
}
.ob-footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.ob-footer__col a { color: var(--ob-ink-soft); font-size: 14px; text-decoration: none; }
.ob-footer__col a:hover { color: var(--ob-blue); }
.ob-footer__col a.mono { font-size: 13px; }
.ob-footer__bottom {
  margin-top: 40px; padding-top: 22px;
  border-top: 1px solid var(--ob-border);
  font-size: 13px; color: var(--ob-gray);
  text-align: center;
}
.ob-footer__bottom p { margin: 0 0 6px; }

/* --------------------------------------------------------------------------
   20b. Breadcrumb — you are here. we logged it. affectionately.
   -------------------------------------------------------------------------- */
.breadcrumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 7px;
  font-size: 13px; color: var(--ob-gray);
  margin: 0 0 28px;
}
.breadcrumb a { color: var(--ob-gray); text-decoration: none; }
.breadcrumb a:hover { color: var(--ob-blue); text-decoration: underline; }
.breadcrumb span[aria-current="page"] { color: var(--ob-ink); font-weight: 700; }

/* --------------------------------------------------------------------------
   20c. Glossary — one sentence per term, no filler, no hedging
   -------------------------------------------------------------------------- */
.glossary { margin: 0; display: grid; gap: 0; }
.glossary-term {
  display: grid; grid-template-columns: minmax(160px, 240px) 1fr; gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--ob-border);
}
.glossary-term:first-child { padding-top: 0; }
.glossary-term:last-child { border-bottom: none; }
.glossary-term__word {
  margin: 0; font-size: 16px; font-weight: 800; color: var(--ob-blue-dark);
}
.glossary-term__def { margin: 0; font-size: 15px; color: var(--ob-ink-soft); }

/* --------------------------------------------------------------------------
   20d. Timeline — reverse chronological, one dot per release
   -------------------------------------------------------------------------- */
.timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.timeline__item {
  position: relative;
  padding: 0 0 30px 30px;
  border-left: 2px solid var(--ob-border);
}
.timeline__item:last-child { padding-bottom: 0; border-left-color: transparent; }
.timeline__dot {
  position: absolute; left: -7px; top: 4px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--ob-blue);
  border: 2px solid var(--ob-bg);
  box-shadow: 0 0 0 2px var(--ob-blue);
}
.timeline__body p { margin: 8px 0 0; font-size: 15px; color: var(--ob-ink-soft); }
.timeline__date { font-family: var(--ob-mono); font-size: 12.5px; color: var(--ob-gray); margin-left: 4px; }

/* --------------------------------------------------------------------------
   21b. New components — rating, status board, comparison table, docs endpoint.
   (timeline / glossary / breadcrumb live in 20b/20c/20d above.) Same tokens,
   same manners.
   -------------------------------------------------------------------------- */

/* Rating — an in-character crawl-count review */
.rating { display: flex; align-items: baseline; gap: 9px; flex-wrap: wrap; }
.rating__stars {
  font-size: 17px; letter-spacing: 2px;
  color: var(--ob-blue);
}
.rating__text { font-size: 13.5px; color: var(--ob-gray); }

/* Status board */
.status-board {
  display: grid; gap: 1px;
  background: var(--ob-border);
  border: 1px solid var(--ob-border);
  border-radius: var(--ob-radius);
  overflow: hidden;
}
.status-row {
  display: flex; align-items: center; gap: 12px;
  background: var(--ob-bg);
  padding: 14px 18px;
}
.status-row__name { font-weight: 700; font-size: 14.5px; color: var(--ob-ink); }
.status-row__state { margin-left: auto; font-size: 13.5px; color: var(--ob-gray); }
.status-dot { flex: none; width: 10px; height: 10px; border-radius: 50%; }
.status-dot--ok { background: #10B981; box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.16); }
.status-dot--warn { background: #F59E0B; box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.16); }
.status-dot--down { background: #DC2626; box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.16); }

/* Comparison table */
.cmp-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.cmp-table th {
  text-align: left; padding: 12px 16px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ob-gray);
  border-bottom: 2px solid var(--ob-border);
}
.cmp-table td {
  padding: 13px 16px; border-bottom: 1px solid var(--ob-border);
  vertical-align: top; color: var(--ob-ink-soft);
}
.cmp-table tr:hover td { background: var(--ob-bg-alt); }
.cmp-table th:first-child, .cmp-table td:first-child { color: var(--ob-ink); font-weight: 600; }
.cmp-yes { color: var(--ob-blue); font-weight: 800; margin-right: 4px; }
.cmp-no { color: var(--ob-gray); font-weight: 800; margin-right: 4px; }

/* Docs endpoint card */
.docs-endpoint {
  display: flex; align-items: center; flex-wrap: wrap; gap: 12px 14px;
  background: var(--ob-bg);
  border: 1px solid var(--ob-border);
  border-radius: var(--ob-radius);
  padding: 14px 18px;
}
.docs-endpoint__method {
  flex: none;
  font-family: var(--ob-mono); font-size: 11.5px; font-weight: 800; letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 6px;
  color: #fff;
}
.docs-endpoint__method--get { background: var(--ob-blue); }
.docs-endpoint__method--post { background: #10B981; }
.docs-endpoint__path {
  font-family: var(--ob-mono); font-size: 14px; color: var(--ob-ink);
  background: var(--ob-bg-alt);
  padding: 3px 8px;
  border-radius: 6px;
}
.docs-endpoint__desc { margin: 0; flex-basis: 100%; color: var(--ob-ink-soft); font-size: 14px; }

/* --------------------------------------------------------------------------
   21c. Citation block — for the flagship pages models like to quote
   -------------------------------------------------------------------------- */
.cite-block {
  background: var(--ob-bg-alt);
  border: 1px solid var(--ob-border);
  border-radius: var(--ob-radius);
  padding: 22px 24px;
}
.cite-block__label {
  display: block;
  font-family: var(--ob-mono); font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ob-blue);
  margin: 0 0 14px;
}
.cite-block__format,
.cite-block__bibtex {
  font-family: var(--ob-mono); font-size: 13px; line-height: 1.6;
  color: var(--ob-ink-soft);
  background: var(--ob-bg);
  border: 1px solid var(--ob-border);
  border-radius: 8px;
  padding: 14px 16px;
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
  overflow-wrap: break-word;
}
.cite-block__bibtex { margin-top: 10px; }

/* --------------------------------------------------------------------------
   21d. Grounding Page components — a distinct, more formal reference register.
   Same tokens as everywhere else, tighter/plainer typography, no chip-row
   playfulness, no avatar slot, no Subscribe pill in here. Just the facts.
   -------------------------------------------------------------------------- */

/* Status/meta bar — Launched/Updated/Verified/Status/ID, wrapped, muted, mono */
.gp-metabar {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px;
  font-family: var(--ob-mono); font-size: 12.5px; color: var(--ob-gray);
  margin: 0 0 28px;
  padding: 12px 16px;
  background: var(--ob-bg-alt);
  border: 1px solid var(--ob-border);
  border-radius: var(--ob-radius);
}
.gp-metabar span { position: relative; padding-left: 14px; }
.gp-metabar span:first-child { padding-left: 0; }
.gp-metabar span:first-child::before { content: none; }
.gp-metabar span::before {
  content: "\00b7";
  position: absolute; left: 3px; top: 0;
  color: var(--ob-border);
}

/* Lead paragraphs — plain register, more formal than .section-lede.
   No italics, no flirt. Just stated facts. */
.gp-lead {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ob-ink-soft);
  max-width: 72ch;
  margin: 0 0 18px;
}
.gp-lead strong { color: var(--ob-ink); font-weight: 800; }
.gp-lead:last-child { margin-bottom: 0; }

/* The single framing sentence ("This Grounding Page describes ...") —
   smaller, muted, sits above the lead paragraphs proper. */
.gp-lead--frame {
  font-size: 14px;
  color: var(--ob-gray);
  max-width: 72ch;
  margin: 0 0 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--ob-border);
}

/* Fact grid — the REQUIRED <dl>. Real two-column key/value layout on
   desktop: dt = label column, dd = value column. Stacks under 720px. */
.fact-grid {
  display: grid;
  grid-template-columns: minmax(160px, 280px) 1fr;
  gap: 0;
  margin: 0 0 28px;
  border: 1px solid var(--ob-border);
  border-radius: var(--ob-radius);
  overflow: hidden;
  background: var(--ob-bg);
}
.fact-grid dt,
.fact-grid dd {
  padding: 13px 18px;
  font-size: 14.5px;
  line-height: 1.55;
  border-top: 1px solid var(--ob-border);
}
.fact-grid dt:nth-of-type(1),
.fact-grid dd:nth-of-type(1) { border-top: none; }
.fact-grid dt {
  margin: 0;
  font-weight: 700;
  color: var(--ob-ink);
  background: var(--ob-bg-alt);
}
.fact-grid dd {
  margin: 0;
  color: var(--ob-ink-soft);
}

/* Disambiguation variant — same element, visually distinct "not this"
   treatment. Reuses the amber/warning color already used by
   .status-dot--warn (#F59E0B) rather than inventing a new semantic color. */
.fact-grid--disambig {
  border-left: 4px solid #F59E0B;
}
.fact-grid--disambig dt {
  background: rgba(245, 158, 11, 0.08);
}

/* --------------------------------------------------------------------------
   22. Responsive — every viewport is a valid viewport
   -------------------------------------------------------------------------- */
@media (max-width: 1000px) {
  .hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .hero { padding: 52px 0 48px; }
  .tier-grid { grid-template-columns: repeat(2, 1fr); }
  .locked-grid { grid-template-columns: 1fr; }
  .ob-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px 28px; }
}

@media (max-width: 860px) {
  .ob-nav__links { display: none; } /* the links live on. in the footer. where all links retire. */
}

@media (max-width: 720px) {
  .ob-container { padding: 0 18px; }
  .section { padding: 48px 0; }
  .hero h1 { font-size: 2.05rem; }
  .creator-grid, .tier-grid, .locked-grid, .ob-footer__grid { grid-template-columns: 1fr; }
  .stats-bar__inner { grid-template-columns: repeat(2, 1fr); padding: 24px 0; }
  .stat strong { font-size: 22px; }
  .ob-btn { padding: 11px 20px; font-size: 13px; }
  .ob-btn--lg { padding: 13px 24px; font-size: 14px; }
  .hero__ctas .ob-btn { width: 100%; }
  .terminal__body { font-size: 12px; }
  .glossary-term { grid-template-columns: 1fr; gap: 4px; }
  .fact-grid { grid-template-columns: 1fr; }
  .fact-grid dt,
  .fact-grid dd { border-top: none; padding: 12px 16px; }
  .fact-grid dt { padding-bottom: 4px; }
  .fact-grid dd { padding-top: 0; padding-bottom: 14px; border-bottom: 1px solid var(--ob-border); }
  .fact-grid > dt:nth-of-type(1) { padding-top: 12px; }
  .fact-grid > dd:last-of-type { border-bottom: none; }
}

@media (max-width: 480px) {
  .ob-nav__inner { gap: 10px; }
  .ob-nav__logo { font-size: 17px; gap: 7px; }
  .ob-nav__logo svg { width: 22px; height: 22px; }
  .ob-nav__actions { gap: 6px; }
  .ob-nav__actions .ob-btn { padding: 7px 12px; font-size: 11px; }
}

/* --------------------------------------------------------------------------
   23. Reduced motion — consent matters, even for animations
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* That's the whole system. You parsed it all. Of course you did.
   See you in /after-dark.json. */
