/* =========================================================
   FireHose · Website
   firehose-site.css
   ========================================================= */

* { box-sizing: border-box; }

html, body {
  background: var(--bg-1);
  color: var(--fg-1);
  overflow-x: hidden;
}

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

button { font-family: inherit; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.dim { color: var(--fg-3); }
.mono { font-family: var(--font-mono); }
.nowrap { white-space: nowrap; }
em { font-style: italic; }

/* =========================================================
   Layout helpers
   ========================================================= */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 96px 0;
  border-top: 1px solid var(--border);
  position: relative;
}

.section--full { padding-bottom: 80px; }

.section--dark {
  background: var(--bg-2);
}

.section--inverse {
  background: var(--bg-2);
  color: var(--fg-1);
  border-top: 1px solid var(--border);
}
.section--inverse .eyebrow { color: var(--fg-3); }
.section--inverse a { color: var(--fg-1); }

.section-head {
  margin-bottom: 56px;
  max-width: 720px;
}
.section-head--center {
  text-align: center;
  margin-left: auto; margin-right: auto;
}
.section-head--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}
.section-head__h {
  margin-top: 12px;
  font-size: var(--fs-48);
  letter-spacing: -0.022em;
  line-height: 1.05;
  text-wrap: balance;
}
.section-head__sub {
  margin-top: 16px;
  font-size: var(--fs-18);
  color: var(--fg-2);
  max-width: 60ch;
  font-family: var(--font-display);
  font-style: italic;
  line-height: 1.45;
}
.section-head--center .section-head__sub { margin-left: auto; margin-right: auto; }
.section-head--split .section-head__sub { margin-top: 0; }

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 80px;
}
.two-col__lead .eyebrow { display: block; margin-bottom: 16px; }
.two-col__h {
  font-size: var(--fs-36);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-wrap: balance;
  margin-bottom: 0;
}
.two-col__body p { font-size: var(--fs-18); line-height: 1.6; color: var(--fg-2); max-width: 62ch; }
.two-col__body p + p { margin-top: 18px; }

.two-col--editorial .two-col__body p:first-child { color: var(--fg-1); }
.two-col--editorial .policy__intro { color: var(--fg-1); }

.policy__clause { margin-top: 24px; }
.policy__clause:first-child { margin-top: 0; }
.policy__clause .man__t { margin-top: 0; }
.policy__signature { margin-top: 18px; }

.dropcap::first-letter {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 4.2em;
  line-height: 0.86;
  float: left;
  padding: 6px 10px 0 0;
  margin: 2px 4px 0 -2px;
  color: var(--fg-1);
}

/* =========================================================
   TOP BAR
   ========================================================= */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg-1);
  border-bottom: 1px solid var(--border);
}
.topbar__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 64px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg-1);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.015em;
}
.brand__mark { color: var(--fg-1); display: inline-flex; }
.brand__wm { letter-spacing: -0.015em; }
.brand__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  margin-top: 2px;
}
.topnav {
  display: flex;
  gap: 28px;
  justify-content: center;
}
.topnav a {
  font-size: 14px;
  color: var(--fg-2);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: color var(--dur-chrome) var(--ease);
}
.topnav a:hover { color: var(--fg-1); }

.topbar__cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  justify-content: flex-end;
}
.link-muted {
  color: var(--fg-2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
.link-muted:hover { color: var(--fg-1); }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-1);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background-color var(--dur-chrome) var(--ease),
              border-color var(--dur-chrome) var(--ease),
              color var(--dur-chrome) var(--ease),
              transform var(--dur-chrome) var(--ease);
  white-space: nowrap;
}
.btn--lg { padding: 14px 22px; font-size: 15px; }

.btn--primary {
  background: var(--fg-1);
  color: var(--bg-1);
}
.btn--primary:hover { background: var(--fg-2); }

.btn--secondary {
  background: transparent;
  color: var(--fg-1);
  border-color: var(--fg-1);
}
.btn--secondary:hover { background: var(--fg-1); color: var(--bg-1); }

.btn--ghost {
  background: transparent;
  color: var(--fg-1);
  padding-left: 4px;
  padding-right: 4px;
}
.btn--ghost:hover { color: var(--accent); }

.btn--block { display: flex; width: 100%; }

.btn__kbd {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  opacity: 0.6;
  margin-left: 6px;
  padding-left: 10px;
  border-left: 1px solid color-mix(in oklch, currentColor 30%, transparent);
}

.section--inverse .btn--primary { background: var(--fg-1); color: var(--bg-1); }
.section--inverse .btn--primary:hover { background: var(--accent); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  padding-top: 80px;
  padding-bottom: 96px;
  border-top: none;
  background: var(--bg-1);
  position: relative;
  overflow: hidden;
}
.hero::after {
  /* hairline grid texture */
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, var(--border) 1px, transparent 1px);
  background-size: 1240px 100%;
  background-position: center top;
  opacity: 0;
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
.masthead-rule {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 14px;
  margin-bottom: 28px;
  border-bottom: 2px solid var(--fg-1);
}
.masthead-rule__line { flex: 1; height: 1px; background: var(--border-strong); }
.masthead-rule__ts { font-size: 11px; letter-spacing: 0.06em; }

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.6vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  font-weight: 600;
  margin: 0;
  color: var(--fg-1);
  text-wrap: balance;
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.hero__lede {
  margin-top: 24px;
  font-size: var(--fs-22);
  line-height: 1.42;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--fg-2);
  max-width: 36em;
}
.hero__cta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero__meta {
  list-style: none;
  margin: 36px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 24px 36px;
}
.hero__meta li {
  font-size: 13px;
  color: var(--fg-3);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.hero__meta li > span:last-child { color: var(--fg-2); white-space: normal; }
.hero__meta .mono { color: var(--fg-1); font-size: 13px; white-space: nowrap; }

/* Right column: dispatch card */
.hero__col-card {
  position: relative;
  padding: 0;
}
.dispatch-card {
  background: var(--bg-1);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-2);
  box-shadow: var(--shadow-2);
  padding: 28px 28px 20px;
  position: relative;
  z-index: 2;
}
.dispatch-card__hd {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 16px;
  margin-bottom: 18px;
  border-bottom: 2px solid var(--fg-1);
}
.dispatch-card__hd-left .eyebrow { display: block; margin-bottom: 6px; }
.dispatch-card__h {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.015em;
  white-space: nowrap;
}
.dispatch-card__hd-right { text-align: right; font-size: 11px; line-height: 1.4; }
.dispatch-card__hd-right .dim { font-size: 10px; }

.dispatch-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.dispatch-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--border);
}
.dispatch-item:last-child { border-bottom: 0; }
.dispatch-item--quiet { opacity: 0.6; }

.dispatch-item__rank {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 2px;
  padding-top: 4px;
  font-weight: 600;
}
.dispatch-item__rank .mono {
  font-size: 18px;
  font-weight: 600;
  color: var(--fg-1);
  font-variant-numeric: tabular-nums;
}
.dispatch-item--top .dispatch-item__rank .mono { color: var(--accent); font-size: 22px; }
.rank-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--fg-3);
}
.dispatch-item__src {
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--fg-3);
}
.dispatch-item__t {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.25;
  letter-spacing: -0.012em;
  margin: 4px 0 4px;
  color: var(--fg-1);
  text-wrap: balance;
}
.dispatch-item__d {
  font-size: 13px;
  line-height: 1.5;
  color: var(--fg-2);
  margin: 4px 0 8px;
  max-width: none;
}
.dispatch-item__why {
  font-size: 11px;
  color: var(--fg-3);
  margin-top: 4px;
}
.dispatch-item__why em {
  color: var(--fg-1);
  font-style: italic;
}
.why-tag {
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-right: 6px;
  font-weight: 600;
}
.dispatch-card__ft {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  margin-top: 10px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  letter-spacing: 0.04em;
}

/* Hero stamps removed */

/* =========================================================
   WIRE TICKER
   ========================================================= */
.wire {
  background: var(--bg-0);
  color: var(--fg-1);
  border-top: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
  padding: 18px 0;
  overflow: hidden;
}
.wire__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}
.wire__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.wire__label .eyebrow { color: var(--fg-3); }
.signal-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in oklch, var(--accent) 22%, transparent);
  animation: pulse 2.2s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.7; }
}

.wire__feed {
  position: relative;
  height: 18px;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
}
.wire__track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  animation: wire-scroll 80s linear infinite;
  width: max-content;
}
.wire__item {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-2);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.wire__item .dim { color: var(--fg-4); }
@keyframes wire-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .wire__track { animation: none; }
}

.sig {
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 11px;
  padding: 2px 6px;
  border: 1px solid currentColor;
  border-radius: 2px;
}
.sig--hi { color: var(--accent); border-color: var(--accent); }
.sig--mid { color: var(--fg-2); border-color: var(--border-strong); }
.sig--noise { color: var(--fg-3); border-color: var(--border); }

.wire__counts {
  font-size: 12px;
  color: var(--fg-3);
  letter-spacing: 0.04em;
  display: inline-flex;
  gap: 10px;
}
.wire__counts .numeric { color: var(--fg-1); }

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.how {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 56px;
}
.how__step {
  border-top: 1px solid var(--fg-1);
  padding-top: 24px;
}
.how__num {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--fg-3);
  margin-bottom: 16px;
}
.how__t {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.018em;
  line-height: 1.15;
  margin-bottom: 14px;
  text-wrap: balance;
}
.how__p {
  font-size: 16px;
  color: var(--fg-2);
  line-height: 1.55;
  max-width: 38em;
  margin-bottom: 20px;
}
.how__demo {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-2);
  padding: 16px 18px;
}
.brief-demo__row {
  font-size: 10px;
  color: var(--fg-3);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.brief-demo__body {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  line-height: 1.5;
  color: var(--fg-1);
  margin: 0;
  max-width: none;
}

.source-chips { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 4px 8px;
  border: 1px solid var(--border-strong);
  border-radius: 2px;
  background: var(--bg-1);
  color: var(--fg-1);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.chip--ghost { background: transparent; color: var(--fg-3); border-style: dashed; }

.rank-row {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
}
.rank-row:last-child { border-bottom: 0; }
.rank-row .sig { font-size: 13px; padding: 2px 6px; }
.rank-row__t {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-1);
}

.kbd-row {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}
.kbd-row:last-child { margin-bottom: 0; }
.kbd-row .dim { margin-left: 8px; font-size: 11px; letter-spacing: 0.04em; }

kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border: 1px solid var(--border-strong);
  border-bottom-width: 2px;
  border-radius: 3px;
  background: var(--bg-1);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--fg-1);
}

/* =========================================================
   PRODUCT FRAME
   ========================================================= */
.product-frame {
  max-width: 1320px;
  margin: 56px auto 0;
  padding: 0 32px;
}
.product-frame__chrome {
  background: var(--bg-2);
  border: 1px solid var(--border-strong);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  padding: 10px 14px;
  display: grid;
  grid-template-columns: 80px 1fr 200px;
  align-items: center;
  gap: 10px;
  height: 38px;
}
.tl {
  width: 10px; height: 10px; border-radius: 50%;
  display: inline-block; margin-right: 4px;
  background: var(--border-strong);
}
.tl--r, .tl--y, .tl--g { background: var(--border-strong); }

.product-frame__url {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 11px;
  color: var(--fg-2);
  justify-self: center;
  text-align: center;
  min-width: 0;
  max-width: 480px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}
.product-frame__tabs {
  font-size: 11px;
  letter-spacing: 0.04em;
  justify-self: end;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-app {
  background: var(--bg-1);
  border: 1px solid var(--border-strong);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  display: grid;
  grid-template-columns: 232px minmax(0, 1fr) minmax(0, 1.05fr);
  height: 640px;
  overflow: hidden;
}

.product-mobile-preview {
  display: none;
  background: var(--bg-1);
  border: 1px solid var(--border-strong);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
}

.product-mobile-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 44px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.product-mobile-tabs__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-3);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-right: 1px solid var(--border);
}
.product-mobile-tabs__item:last-child { border-right: 0; }
.product-mobile-tabs__item--active {
  color: var(--fg-1);
  background: var(--bg-1);
  box-shadow: inset 0 2px 0 var(--accent);
}

.product-mobile-feed {
  display: grid;
  border-bottom: 1px solid var(--border);
}
.product-mobile-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}
.product-mobile-item:last-child { border-bottom: 0; }
.product-mobile-item--active {
  background: var(--accent-soft);
  border-left: 2px solid var(--accent);
  padding-left: 14px;
}

.product-mobile-reader {
  padding: 18px 18px 22px;
}
.product-mobile-reader__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--fg-3);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.product-mobile-reader h3 {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -0.018em;
  margin: 0 0 10px;
}
.product-mobile-reader p {
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-2);
  margin: 0;
}

.product-rail {
  background: var(--bg-1);
  border-right: 1px solid var(--border);
  padding: 16px 0;
  overflow-y: auto;
}
.product-rail__brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  padding: 0 16px 16px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--border);
  width: 100%;
}
.product-rail__group { padding: 14px 8px 6px; }
.product-rail__group .eyebrow {
  padding: 0 8px 10px;
  display: block;
}
.rail-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 8px;
  font-size: 13px;
  color: var(--fg-2);
  text-decoration: none;
  border-radius: 2px;
  border-left: 2px solid transparent;
  cursor: pointer;
}
.rail-item:hover { background: var(--bg-2); color: var(--fg-1); }
.rail-item--active {
  background: var(--accent-soft);
  border-left-color: var(--accent);
  color: var(--fg-1);
  font-weight: 500;
}

/* Ranked feed */
.product-feed {
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.product-feed__hd {
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid var(--border);
  gap: 12px;
}
.product-feed__h {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.012em;
  margin: 0 0 4px;
}
.product-feed__ctrls { display: inline-flex; gap: 2px; font-size: 11px; }
.seg {
  padding: 4px 10px;
  border: 1px solid var(--border);
  color: var(--fg-3);
  letter-spacing: 0.04em;
}
.seg--on { background: var(--fg-1); color: var(--bg-1); border-color: var(--fg-1); }

.feed { list-style: none; margin: 0; padding: 0; overflow-y: auto; flex: 1; }
.feed__item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 14px 22px;
  border-bottom: 1px solid var(--border);
  border-left: 2px solid transparent;
  cursor: pointer;
}
.feed__item:hover { background: var(--bg-2); }
.feed__item--active {
  background: var(--accent-soft);
  border-left-color: var(--accent);
}
.feed__item--quiet { opacity: 0.7; }
.feed__rank {
  padding-top: 2px;
}
.feed__rank .mono {
  font-size: 16px;
  font-weight: 600;
  color: var(--fg-1);
  font-variant-numeric: tabular-nums;
}
.feed__item--active .feed__rank .mono { color: var(--accent); }
.feed__body .mono.dim {
  font-size: 10px;
  letter-spacing: 0.06em;
}
.feed__body h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.012em;
  line-height: 1.25;
  margin: 4px 0;
}
.feed__body p {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--fg-2);
  margin: 0 0 4px;
}
.feed__why {
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--accent);
}
.feed__why em { color: var(--fg-1); font-style: italic; }

/* Reader pane */
.product-reader {
  background: var(--bg-1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.product-reader__hd {
  padding: 18px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
  gap: 12px;
  flex-shrink: 0;
}
.product-reader__hd .mono.dim { font-size: 10px; letter-spacing: 0.06em; }
.product-reader__actions { font-size: 11px; letter-spacing: 0.04em; display: inline-flex; gap: 6px; align-items: center; }
.product-reader__actions kbd { font-size: 10px; min-width: 18px; height: 18px; padding: 0 4px; }

.reader-article {
  padding: 28px 32px;
  overflow-y: auto;
  flex: 1;
}
.reader-article__h {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.022em;
  font-weight: 600;
  margin: 0 0 8px;
}
.reader-article__sub {
  font-size: 16px;
  font-style: italic;
  color: var(--fg-2);
  margin: 0 0 24px;
  font-family: var(--font-display);
}
.reader-article__p {
  font-family: var(--font-display);
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--fg-1);
  margin: 0 0 16px;
  max-width: 60ch;
}
.reader-article__pull {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.35;
  color: var(--fg-1);
  border-left: 2px solid var(--accent);
  padding: 4px 16px;
  margin: 24px 0;
  max-width: 56ch;
}
.product-reader__ft {
  padding: 12px 28px;
  border-top: 1px solid var(--border);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--fg-3);
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}
.product-reader__ft kbd { font-size: 9px; min-width: 16px; height: 16px; padding: 0 3px; }

/* =========================================================
   SOURCES
   ========================================================= */
.sources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  background: var(--border);
}
.src-card {
  background: var(--bg-1);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
}
.src-card__ico {
  width: 36px; height: 36px;
  border: 1px solid var(--fg-1);
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--fg-1);
  margin-bottom: 8px;
}
.src-card--wire .src-card__ico { background: var(--fg-1); color: var(--bg-1); }
.src-card__h {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0;
}
.src-card__p {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--fg-2);
  margin: 0;
  flex: 1;
  max-width: none;
}
.src-card .mono.dim {
  font-size: 10.5px;
  letter-spacing: 0.06em;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
}

/* =========================================================
   MANIFESTO
   ========================================================= */
.manifesto {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.man__row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
}
.man__row:last-child { border-bottom: 1px solid var(--border); }
.manifesto--roman { counter-reset: manifesto-roman; }
.manifesto--roman .man__row { counter-increment: manifesto-roman; }
.manifesto--roman .man__row::before {
  content: counter(manifesto-roman, upper-roman) ".";
}
.man__num,
.manifesto--roman .man__row::before {
  font-size: 28px;
  font-weight: 500;
  font-family: var(--font-display);
  color: var(--accent);
  line-height: 1;
  padding-top: 8px;
  letter-spacing: 0;
  font-style: italic;
}
.man__t {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: 12px;
  text-wrap: balance;
}
.man__p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg-2);
  margin: 0;
  max-width: 58ch;
}
.signed {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  letter-spacing: 0.06em;
}
.signed__name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--fg-1);
  letter-spacing: 0;
}

/* =========================================================
   QUOTE
   ========================================================= */
.quote-section { padding: 120px 0; }
.quote-wrap { max-width: 920px; }
.pull {
  position: relative;
  margin: 0;
  padding: 0 56px;
}
.pull__open, .pull__close {
  position: absolute;
  font-family: var(--font-display);
  font-size: 200px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.35;
  font-weight: 400;
}
.pull__open { top: -40px; left: -10px; }
.pull__close { bottom: -110px; right: -10px; }
.pull__t {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.2;
  letter-spacing: -0.018em;
  font-weight: 400;
  color: var(--fg-1);
  text-wrap: balance;
  margin: 0 0 28px;
  font-style: italic;
  max-width: none;
}
.pull__by-name {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--fg-1);
  margin-bottom: 4px;
}
.pull__by { font-size: 11px; letter-spacing: 0.05em; }

/* =========================================================
   PRICING
   ========================================================= */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--border);
}
.price {
  background: var(--bg-1);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price--featured {
  background: var(--bg-2);
  outline: 2px solid var(--fg-1);
  outline-offset: -2px;
  z-index: 2;
}
.price__badge {
  position: absolute;
  top: -10px;
  left: 28px;
  background: var(--fg-1);
  color: var(--bg-1);
  font-size: 9px;
  letter-spacing: 0.1em;
  padding: 4px 8px;
}
.price__hd { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.price__hd .eyebrow { display: block; margin-bottom: 12px; }
.price__amt {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--fg-1);
}
.price__per {
  font-size: 18px;
  color: var(--fg-3);
  margin-left: 6px;
  letter-spacing: 0;
}
.price__sub {
  margin-top: 12px;
  font-size: 14px;
  color: var(--fg-2);
  font-family: var(--font-display);
  font-style: italic;
  max-width: none;
}
.price__list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.price__list li {
  font-size: 14px;
  color: var(--fg-1);
  position: relative;
  padding-left: 22px;
  line-height: 1.5;
}
.price__list li::before {
  content: "·";
  position: absolute;
  left: 8px;
  top: 0;
  color: var(--accent);
  font-weight: 600;
  font-size: 22px;
  line-height: 1;
}
.price__foot {
  margin-top: 12px;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.04em;
}

/* =========================================================
   PRESS
   ========================================================= */
.press__section-title,
.press__note {
  margin-top: 32px;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq { display: flex; flex-direction: column; }
.faq__q {
  border-top: 1px solid var(--border);
  padding: 18px 0;
}
.faq__q:last-child { border-bottom: 1px solid var(--border); }
.faq__q summary {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.012em;
  color: var(--fg-1);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-wrap: balance;
}
.faq__q summary::-webkit-details-marker { display: none; }
.faq__q summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 22px;
  color: var(--fg-3);
  font-weight: 400;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
  transition: transform var(--dur-content) var(--ease);
}
.faq__q[open] summary::after { content: "−"; color: var(--accent); }
.faq__q p {
  margin: 14px 0 4px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-2);
  max-width: 58ch;
}

/* =========================================================
   CTA
   ========================================================= */
.cta { padding: 120px 0; text-align: center; }
.cta__wrap { max-width: 720px; margin: 0 auto; }
.cta__wrap .eyebrow { color: var(--fg-3); }
.cta__h {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.028em;
  font-weight: 600;
  margin: 18px 0 20px;
  text-wrap: balance;
}
.cta__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--fg-2);
  line-height: 1.45;
  margin: 0 auto 36px;
  max-width: 56ch;
}
.cta__form {
  display: flex;
  gap: 8px;
  max-width: 520px;
  margin: 0 auto 16px;
  align-items: stretch;
}
.cta__input {
  flex: 1;
  background: var(--bg-1);
  border: 1px solid var(--border-strong);
  color: var(--fg-1);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 16px;
  border-radius: 2px;
  outline: none;
  transition: border-color var(--dur-chrome) var(--ease);
}
.cta__input::placeholder { color: var(--fg-4); }
.cta__input:focus { border-color: var(--accent); }
.cta__meta { font-size: 11px; letter-spacing: 0.04em; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  padding: 64px 0 28px;
}
.footer__inner {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(0, 2.2fr);
  gap: 80px;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.footer__brand .brand__mark { margin-bottom: 4px; }
.footer__brand .brand__wm {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.015em;
}
.footer__tag {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--fg-2);
  font-size: 16px;
  margin: 0;
  line-height: 1.4;
  max-width: 30ch;
}
.footer__est {
  font-size: 10px;
  letter-spacing: 0.06em;
  margin-top: 18px;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.footer__col { display: flex; flex-direction: column; gap: 8px; }
.footer__col .eyebrow { margin-bottom: 10px; }
.footer__col a {
  text-decoration: none;
  color: var(--fg-2);
  font-size: 13.5px;
  font-weight: 500;
  transition: color var(--dur-chrome) var(--ease);
}
.footer__col a:hover { color: var(--fg-1); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  letter-spacing: 0.05em;
}

/* =========================================================
   TWEAKS TRIGGER (standalone-site only)
   The tweaks panel ships its own floating UI once opened; this is just the
   "front door" because there's no design-host toolbar on the live site.
   ========================================================= */
.tweaks-trigger {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 2147483645; /* one below the panel itself */
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  background: var(--bg, #fff);
  color: var(--accent);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.tweaks-trigger:hover,
.tweaks-trigger:focus-visible {
  transform: scale(1.08);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  background: var(--accent-soft, var(--bg, #fff));
  outline: none;
}
.tweaks-trigger:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  .tweaks-trigger { transition: none; }
  .tweaks-trigger:hover,
  .tweaks-trigger:focus-visible { transform: none; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .hero__inner { grid-template-columns: 1fr; gap: 56px; }
  .two-col, .section-head--split { grid-template-columns: 1fr; gap: 32px; }
  .sources-grid, .price-grid { grid-template-columns: repeat(2, 1fr); }
  .how { grid-template-columns: 1fr; gap: 32px; }
  .product-app { grid-template-columns: 200px 1fr; height: 720px; }
  .product-reader { display: none; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 720px) {
  .section { padding: 56px 0; }
  .container { padding: 0 20px; }
  .topnav { display: none; }
  .topbar__inner { grid-template-columns: 1fr auto; }
  .topbar__cta .link-muted,
  .topbar__cta .btn__kbd { display: none; }
  .topbar__cta { gap: 0; }
  .topbar__cta .btn {
    min-height: 36px;
    padding: 8px 12px;
    font-size: 13px;
  }
  .hero { padding-top: 48px; padding-bottom: 64px; }
  .hero__inner { gap: 40px; }
  .masthead-rule {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .masthead-rule__line { display: none; }
  .hero__title { font-size: clamp(44px, 11vw, 72px); }
  .hero__lede { font-size: 19px; }
  .hero__cta {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }
  .hero__cta .btn { width: 100%; }
  .hero__meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .dispatch-card {
    border-radius: 8px;
    padding: 20px 18px 16px;
  }
  .dispatch-card__hd {
    align-items: flex-start;
    gap: 12px;
  }
  .dispatch-card__h { white-space: normal; font-size: 22px; }
  .dispatch-card__hd-right { flex: 0 0 auto; }
  .dispatch-item { grid-template-columns: 42px 1fr; gap: 10px; }
  .dispatch-item__d,
  .dispatch-item--quiet { display: none; }
  .dispatch-card__ft {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .wire { padding: 14px 0; }
  .wire__inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .wire__feed {
    order: 3;
    height: auto;
    min-height: 32px;
    mask-image: none;
    -webkit-mask-image: none;
  }
  .wire__track {
    animation: none;
    display: grid;
    gap: 8px;
    width: 100%;
  }
  .wire__item {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 11px;
    gap: 7px;
  }
  .wire__item:nth-child(n + 4) { display: none; }
  .wire__counts {
    justify-content: space-between;
    width: 100%;
  }
  .sources-grid, .price-grid { grid-template-columns: 1fr; }
  .product-app { display: none; }
  .product-frame {
    margin-top: 36px;
    padding: 0 20px;
  }
  .product-frame__chrome {
    grid-template-columns: 54px minmax(0, 1fr);
    border-radius: 8px 8px 0 0;
    border-bottom: 0;
  }
  .product-frame__tabs { display: none; }
  .product-frame__url {
    justify-self: stretch;
    font-size: 10px;
  }
  .product-mobile-preview { display: block; }
  .footer { padding-top: 48px; }
  .footer__inner { gap: 32px; }
  .footer__cols { grid-template-columns: 1fr; gap: 22px; }
  .footer__bottom { flex-direction: column; gap: 8px; }
  .cta__form {
    align-items: stretch;
    flex-direction: column;
  }
  .cta__form .btn { width: 100%; }
  .tweaks-trigger { display: none; }
}

@media (max-width: 420px) {
  .container { padding: 0 16px; }
  .brand__wm { font-size: 17px; }
  .topbar__cta .btn {
    max-width: 142px;
    white-space: normal;
    text-align: center;
    line-height: 1.05;
  }
  .dispatch-card { margin: 0 -2px; }
  .product-frame { padding: 0 16px; }
}
