/* Chrome for News pages (listing, static articles, CMS-rendered articles).
   Pages without a large inline style block load this before site.css. */

:root {
  --bg: #FFFFFF;
  --bg-elevated: #FFFFFF;
  --bg-raised: #F6F6F6;
  --ink: #0A0A0A;
  --ink-soft: #5A5C60;
  --ink-faint: #6B6D71;
  --accent: #0A0A0A;
  --accent-ink: #FFFFFF;
  --accent-soft: #F0F0F0;
  --accent-soft-ink: #0A0A0A;
  --line: #E6E6E6;
  --line-strong: #D2D2D2;
  --shadow: 0 1px 2px rgba(0,0,0,0.04), 0 12px 32px -16px rgba(0,0,0,0.16);
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --font-display: 'Iowan Old Style', 'Palatino Linotype', Palatino, 'URW Palladio L', Georgia, 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-mono: ui-monospace, 'SF Mono', 'Cascadia Code', 'JetBrains Mono', Menlo, Consolas, monospace;
}

:root[data-theme="dark"] {
  --bg: #0A0A0A;
  --bg-elevated: #131313;
  --bg-raised: #1A1A1A;
  --ink: #F5F5F5;
  --ink-soft: #A5A6AA;
  --ink-faint: #9A9B9F;
  --accent: #F5F5F5;
  --accent-ink: #0A0A0A;
  --accent-soft: #1E1E1E;
  --accent-soft-ink: #F5F5F5;
  --line: #242424;
  --line-strong: #333333;
  --shadow: 0 1px 2px rgba(0,0,0,0.3), 0 20px 40px -20px rgba(0,0,0,0.6);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, h4 { margin: 0; text-wrap: balance; font-weight: 500; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) {
  .wrap { padding: 0 20px; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  flex: none;
}

header.site {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
}
header.site.scrolled { border-bottom-color: var(--line); }
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--ink);
}
.logo-lockup { height: 30px; width: auto; display: block; }

nav.links {
  display: flex;
  gap: 28px;
  font-size: 15px;
  color: var(--ink-soft);
}
nav.links a { text-decoration: none; }
nav.links a:hover { color: var(--ink); }
nav.links a.current { color: var(--ink); }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { opacity: 0.82; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-sm { padding: 9px 16px; font-size: 13.5px; }
.btn-block { width: 100%; }

.nav-toggle, .theme-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex: none;
}
.theme-toggle { display: inline-flex; color: var(--ink); }
.theme-toggle:hover { border-color: var(--ink); }
.theme-toggle svg { width: 17px; height: 17px; }
.theme-toggle .icon-moon { display: none; }
:root[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
:root[data-theme="dark"] .theme-toggle .icon-moon { display: block; }

.hero {
  position: relative;
  padding: 72px 0 48px;
  text-align: center;
  overflow: hidden;
}
.hero-inner { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 16px 7px 12px;
  border-radius: 999px;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  margin-bottom: 30px;
}
h1.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.015em;
  max-width: 16ch;
  margin: 0 auto;
}
h1.hero-title em {
  font-style: italic;
  font-weight: 400;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 8px;
  text-decoration-color: var(--line-strong);
}
.hero-sub {
  max-width: 48ch;
  margin: 26px auto 0;
  font-size: 18px;
  color: var(--ink-soft);
}
.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}

section { padding: 96px 0; }
@media (max-width: 720px) { section { padding: 64px 0; } }

.section-head { max-width: 640px; margin: 0 0 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 16px; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  letter-spacing: -0.01em;
  line-height: 1.12;
}
.section-head h2 em {
  font-style: italic;
  font-weight: 400;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 6px;
  text-decoration-color: var(--line-strong);
}
.section-head p { margin-top: 16px; color: var(--ink-soft); font-size: 16.5px; }
.band-line { border-top: 1px solid var(--line); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}
@media (max-width: 980px) { .pricing-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .pricing-grid { grid-template-columns: 1fr; } }

.plan {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.plan.featured {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}
.plan-code {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.09em;
  color: var(--ink-faint);
}
.plan-badge {
  position: absolute;
  top: 26px;
  right: 24px;
  background: var(--accent-soft);
  color: var(--accent-soft-ink);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 5px 10px;
  border-radius: 999px;
}
.plan h3 {
  font-family: var(--font-display);
  font-size: 25px;
  margin-top: 8px;
}
.plan-desc {
  color: var(--ink-soft);
  font-size: 14px;
  margin-top: 8px;
  min-height: 40px;
}
.founding-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 18px;
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  margin: 0 0 28px;
}
.founding-banner p {
  margin: 0;
  font-size: 15px;
  color: var(--ink);
}
.plan-price {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  font-variant-numeric: tabular-nums;
}
.plan-price .was {
  font-size: 14px;
  color: var(--ink-faint);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}
.plan-price .amt-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.plan-price .amt {
  font-family: var(--font-display);
  font-size: 40px;
  letter-spacing: -0.01em;
}
.plan-price .per { color: var(--ink-faint); font-size: 13.5px; }
.plan-cta { margin-top: 22px; }
.plan-divider { border-top: 1px solid var(--line); margin: 24px 0 18px; }
.plan-includes-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 14px;
}
.plan-features { display: flex; flex-direction: column; gap: 11px; flex: 1; }
.plan-features li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: var(--ink);
  align-items: flex-start;
}
.plan-features svg { flex: none; margin-top: 3px; color: var(--accent); }
.pricing-note {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: var(--ink-faint);
}

.compare-wrap {
  overflow-x: auto;
  margin: 28px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
}
table.compare { width: 100%; border-collapse: collapse; min-width: 640px; }
table.compare th, table.compare td {
  text-align: left;
  padding: 16px 20px;
  font-size: 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
table.compare thead th {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 500;
  background: var(--bg-raised);
}
table.compare tbody th { font-weight: 600; color: var(--ink-soft); white-space: nowrap; }
table.compare tbody tr:last-child td,
table.compare tbody tr:last-child th { border-bottom: none; }
table.compare td.hl { color: var(--accent); font-weight: 600; }

.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 4px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 18.5px;
  cursor: pointer;
}
.faq-q .plus {
  flex: none;
  width: 22px; height: 22px;
  position: relative;
}
.faq-q .plus::before, .faq-q .plus::after {
  content: "";
  position: absolute;
  background: var(--ink-soft);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.faq-q .plus::before { top: 50%; left: 0; width: 100%; height: 1.5px; transform: translateY(-50%); }
.faq-q .plus::after { left: 50%; top: 0; height: 100%; width: 1.5px; transform: translateX(-50%); }
.faq-item.open .plus::after { opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.faq-item.open .faq-a { max-height: 640px; }
.faq-a-inner { padding: 0 4px 24px; color: var(--ink-soft); font-size: 15px; max-width: 62ch; }

.cta-band {
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--radius-lg);
  padding: 72px 40px;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  letter-spacing: -0.01em;
  max-width: 560px;
  margin: 0 auto;
}
.cta-band h2 em {
  font-style: italic;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 6px;
  text-decoration-color: color-mix(in srgb, var(--bg) 45%, transparent);
}
.cta-band p { margin-top: 16px; color: color-mix(in srgb, var(--bg) 65%, transparent); }
.cta-band .hero-ctas { margin-top: 32px; }
.cta-band .btn-primary { background: var(--bg); color: var(--ink); }
.cta-band .btn-ghost { border-color: color-mix(in srgb, var(--bg) 30%, transparent); color: var(--bg); }

footer {
  border-top: 1px solid var(--line);
  padding: 64px 0 40px;
}
.foot-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.foot-brand { max-width: 280px; }
.foot-brand p { margin-top: 14px; color: var(--ink-soft); font-size: 14px; }
.foot-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.foot-col h3,
.foot-col h5 {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 16px;
  font-weight: 500;
}
.foot-col ul { display: flex; flex-direction: column; gap: 10px; }
.foot-col a { text-decoration: none; color: var(--ink-soft); font-size: 14.5px; }
.foot-col a:hover { color: var(--ink); }
.foot-bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--ink-faint);
}
.foot-status { display: flex; align-items: center; gap: 8px; }
.foot-status .dot { width: 7px; height: 7px; border-radius: 50%; background: #3FA66C; }
.foot-legal {
  margin: 16px 0 0;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink-faint);
  max-width: 72ch;
}

@media (max-width: 720px) {
  nav.links, .nav-actions .btn-ghost { display: none; }
  .nav-toggle { display: flex; }
}
