/* Social Take — one stylesheet, no framework (SPEC §11 Step 8b; the redesign of 18 Sept 2026, docs/open-decisions.md #64; v1.5 of 19 Sept 2026).
   Sections: tokens, base, nav, buttons, hero, the device frame, the pillars and their image cards (pic tiles), stats table, tabs, cards, grid, dark, forms, the newsletter's headline cards, pricing, footer, reveal, responsive. */

/* ===== tokens ===== */
:root {
  color-scheme: light;
  --bg: #f7f7f6; --ink: #151515; --grey: #727272; --line: #e3e3df; --card: #ffffff; --soft: #ededea;
  --coral: #ff4d2e; --coral-ink: #c8351b; --coral-bg: #ffe9e3; --navy: #14123a; --navy-ink: #f4f3ff; --navy-grey: #b9b7d9; --navy-line: rgba(255, 255, 255, 0.14);
  --grid: rgba(21, 21, 21, 0.08); --shadow: 0 10px 30px rgba(21, 21, 21, 0.08);
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --head: "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --mono: "Overpass Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  --width: 1120px; --gutter: 24px; --radius: 18px;
}

/* ===== base ===== */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--ink); font: 400 17px/1.6 var(--sans); font-feature-settings: "cv11", "ss01"; }
a { color: var(--ink); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--coral-ink); }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3 { font-family: var(--head); font-weight: 700; letter-spacing: -0.025em; line-height: 1.05; margin: 0 0 16px; text-wrap: balance; }
h1 { font-size: clamp(38px, 6.2vw, 76px); }
h2 { font-size: clamp(30px, 4vw, 48px); }
h3 { font-size: 20px; font-weight: 600; letter-spacing: -0.015em; line-height: 1.2; margin: 0 0 8px; }
p { margin: 0 0 14px; }
main.wrap { display: block; }
.inner { max-width: var(--width); margin: 0 auto; padding: 0 var(--gutter); }
.inner.narrow { max-width: 720px; }
.section { padding: 80px 0; }
/* an anchor target (#how, #search, #early-access, #newsletter, a category …) lands under the 64px sticky nav without this */
[id] { scroll-margin-top: 72px; }
.eyebrow { font: 500 12px/1.4 var(--mono); text-transform: uppercase; letter-spacing: 0.14em; color: var(--grey); margin: 0 0 18px; }
.eyebrow.pill { display: inline-block; border: 1px solid var(--line); background: var(--card); border-radius: 999px; padding: 7px 14px 6px; color: var(--ink); }
.eyebrow .mono-date { color: var(--ink); }
.lede { font-size: 20px; line-height: 1.5; color: var(--grey); margin: 0 0 24px; max-width: 640px; text-wrap: pretty; }
.date { color: var(--grey); font-size: 15px; margin: 0 0 20px; }
.empty { color: var(--grey); font-size: 18px; }
.small { font-size: 14px; color: var(--grey); }
.page-head { padding: 64px 0 8px; }
.page-head .lede { margin-bottom: 8px; }
.page-head + .section { padding-top: 32px; }
.about p { font-size: 18px; }
.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; }
.count { font: 500 12px/1 var(--mono); letter-spacing: 0.06em; color: var(--grey); }

/* ===== nav ===== */
.nav { position: sticky; top: 0; z-index: 10; background: rgba(247, 247, 246, 0.86); backdrop-filter: saturate(160%) blur(10px); -webkit-backdrop-filter: saturate(160%) blur(10px); border-bottom: 1px solid var(--line); }
.nav .inner { display: flex; align-items: center; gap: 28px; height: 64px; }
.brand { display: inline-flex; align-items: center; gap: 9px; font: 600 19px/1 var(--head); letter-spacing: -0.02em; color: var(--ink); text-decoration: none; white-space: nowrap; }
.brand .mark { flex: 0 0 auto; }
.nav .links { display: flex; gap: 24px; margin-left: 12px; font-size: 15px; font-weight: 500; }
.nav .links a { color: var(--grey); text-decoration: none; padding: 6px 0; border-bottom: 2px solid transparent; white-space: nowrap; }
.nav .links a:hover, .nav .links a:focus-visible { color: var(--ink); }
.nav .links a[aria-current="page"] { color: var(--ink); border-bottom-color: var(--coral); }
.nav .btn { margin-left: auto; }

/* ===== buttons ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font: 600 16px/1 var(--sans); padding: 15px 24px; border-radius: 999px; text-decoration: none; border: 1.5px solid var(--ink); transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease; cursor: pointer; white-space: nowrap; }
.btn.primary { background: var(--ink); color: var(--bg); }
.btn.primary:hover { background: #2c2c2c; border-color: #2c2c2c; color: #fff; transform: translateY(-1px); }
.btn.secondary { background: transparent; color: var(--ink); }
.btn.secondary:hover { background: var(--ink); color: var(--bg); transform: translateY(-1px); }
/* the early-access button: the one coral button (ink on coral — white on #FF4D2E is 3.3:1) */
.btn.access { background: var(--coral); border-color: var(--coral); color: #151515; }
.btn.access:hover { background: var(--coral-ink); border-color: var(--coral-ink); color: #fff; transform: translateY(-1px); }
.btn.small { font-size: 14px; padding: 11px 18px; }
.btn:focus-visible, a:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 0; }

/* ===== hero ===== */
.hero { position: relative; overflow: hidden; padding: 96px 0 72px; border-bottom: 1px solid var(--line); }
.hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(var(--grid) 1px, transparent 1px), linear-gradient(90deg, var(--grid) 1px, transparent 1px); background-size: 56px 56px; background-position: center top; -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 30%, #000 30%, transparent 100%); mask-image: radial-gradient(ellipse 70% 80% at 50% 30%, #000 30%, transparent 100%); pointer-events: none; }
.hero .copy { position: relative; }
.hero .copy .inner { position: relative; z-index: 1; max-width: 880px; text-align: center; }
.hero h1 { margin: 0 auto 22px; max-width: 16ch; }
.hero .eyebrow.pill { margin-bottom: 34px; }
.hero .ad-line { font-size: 11px; letter-spacing: 0.1em; margin: 0 0 20px; }
.hero .lede { margin: 0 auto 32px; font-size: 20px; max-width: 680px; }
.hero .actions { justify-content: center; }
.hero > .inner { position: relative; z-index: 1; margin-top: 56px; }
.hl { position: relative; white-space: nowrap; }
.hl::after { content: ""; position: absolute; left: -0.04em; right: -0.04em; bottom: 0.06em; height: 0.32em; background: var(--coral); opacity: 0.85; z-index: -1; border-radius: 0.08em; transform: rotate(-1deg); }
/* the tiles drift around the copy only (the copy block is their box), never over the mock below it */
.tiles { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.tile { position: absolute; font: 500 13px/1 var(--mono); letter-spacing: 0.04em; background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 11px 14px; box-shadow: var(--shadow); color: var(--ink); animation: drift 9s ease-in-out infinite alternate; }
.tile.t1 { left: 5%; top: 24%; animation-duration: 10s; }
.tile.t2 { left: 12%; top: 66%; animation-duration: 12s; animation-delay: -3s; }
.tile.t3 { right: 7%; top: 20%; animation-duration: 11s; animation-delay: -5s; }
.tile.t4 { right: 14%; top: 60%; animation-duration: 13s; animation-delay: -2s; }
.tile.t5 { left: 22%; top: 12%; animation-duration: 14s; animation-delay: -7s; }
.tile.t6 { right: 22%; top: 82%; animation-duration: 12s; animation-delay: -9s; }
.tile.t7 { left: 4%; top: 86%; animation-duration: 11s; animation-delay: -4s; }
.tile.t8 { right: 5%; top: 44%; animation-duration: 13s; animation-delay: -6s; }
@keyframes drift { from { transform: translate3d(0, -10px, 0) rotate(-2deg); } to { transform: translate3d(14px, 14px, 0) rotate(2deg); } }

/* ===== the device frame around the hero's product shot (a slim browser bar) ===== */
.device { margin: 0; background: var(--card); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); overflow: hidden; max-width: 100%; }
.device .chrome { display: flex; align-items: center; gap: 12px; padding: 10px 14px; background: var(--soft); border-bottom: 1px solid var(--line); }
.device .dots { display: inline-flex; gap: 6px; }
.device .dots i { display: block; width: 10px; height: 10px; border-radius: 50%; background: var(--line); }
.device .addr { flex: 1 1 auto; font: 500 12px/1 var(--mono); letter-spacing: 0.02em; color: var(--grey); background: var(--card); border: 1px solid var(--line); border-radius: 999px; padding: 7px 12px 6px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.device .screen { padding: 18px; }
.device.browser .screen > .table-scroll { border-radius: 10px; }

/* ===== the thumbnails: a tile with the Platform's name as its mark under a coral-to-ground gradient, the post's own image painted over it; an image that never arrives (alt="") renders nothing, so the tile shows through — no script ===== */
.pic { --pic-fill: linear-gradient(135deg, var(--coral) 0%, var(--coral-bg) 58%, var(--soft) 100%); --pic-mark: 500 11px/1 var(--mono); position: relative; display: block; overflow: hidden; background: var(--pic-fill); }
.pic.wide { aspect-ratio: 16 / 9; width: 100%; }
.pic.sq { --pic-mark: 500 8px/1 var(--mono); width: 52px; height: 52px; border-radius: 10px; flex: 0 0 auto; }
.pic img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.pic .pic-mark, .pic img::after { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font: var(--pic-mark); text-transform: uppercase; letter-spacing: 0.14em; color: var(--ink); }
.pic .pic-mark { z-index: 0; }
/* Chrome and Firefox draw a broken-image glyph even on an alt="" image that never arrived — and render pseudo-elements on a broken <img> only (never on a loaded one), so the tile paints its own fill and mark over the glyph; Safari draws neither and the mark beneath shows through */
.pic img::before { content: ""; position: absolute; inset: 0; background: var(--pic-fill); }
.pic img::after { content: attr(data-mark); }

/* ===== the three pillars: copy beside one image card (or three, for Trends), alternating sides on a wide screen; one column on a phone ===== */
.pillars .inner { display: grid; gap: 80px; }
.pillar { display: grid; gap: 28px; align-items: center; }
.pillar h2 { font-size: clamp(26px, 3vw, 38px); }
.pillar .lede { margin-bottom: 20px; }
.pillar .actions { margin: 0; }
.pillar-figure { min-width: 0; }
.empty-line { margin: 0; color: var(--grey); font-size: 17px; }
/* the image cards (imgcard — never .card, a class the v1.4 email bodies carry): 16px radius, a soft shadow, the thumbnail on top */
.imgcard { display: block; background: var(--card); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); overflow: hidden; }
.imgcard .body { padding: 18px 20px 20px; min-width: 0; }
.imgcard .body p { margin: 0 0 8px; }
.imgcard .chip { font: 500 12px/1.4 var(--mono); text-transform: uppercase; letter-spacing: 0.12em; color: var(--grey); }
.imgcard .chip .mono-date { color: var(--ink); }
.imgcard .copy { font-family: var(--head); font-size: 22px; font-weight: 600; line-height: 1.25; letter-spacing: -0.015em; text-wrap: pretty; overflow-wrap: anywhere; }
.imgcard .meta { font-size: 14px; color: var(--grey); display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.imgcard .meta .handle { color: var(--ink); font-weight: 500; overflow-wrap: anywhere; }
.imgcard .number { font: 500 14px/1.5 var(--mono); letter-spacing: 0.02em; color: var(--ink); margin: 0; }
/* the big numbers, in Inter Tight */
.big { font-family: var(--head); font-size: clamp(40px, 5vw, 64px); font-weight: 700; letter-spacing: -0.03em; line-height: 1; color: var(--ink); margin: 0 0 10px; overflow-wrap: anywhere; }
.big .unit { font-size: 0.42em; font-weight: 600; letter-spacing: -0.01em; color: var(--grey); }
.pulse-card .big { margin: 6px 0 10px; }
.find-card, .pulse-card { max-width: 560px; }
/* the Trends cards: three, one per category, the count in coral over the name; the whole card is the link to the category's tab */
.trend-cards { list-style: none; padding: 0; margin: 0; display: grid; gap: 18px; grid-template-columns: 1fr; }
.trend-card a { display: block; color: var(--ink); text-decoration: none; }
.trend-card .body { display: grid; gap: 4px; padding: 16px 18px 18px; }
.trend-card .count { font: 600 13px/1 var(--mono); letter-spacing: 0.06em; color: var(--coral-ink); }
.trend-card .name { font-family: var(--head); font-size: 22px; font-weight: 600; letter-spacing: -0.015em; }
.trend-card:hover { transform: translateY(-3px); }
.trend-card { transition: transform 0.2s ease; }

/* ===== the humanised graphics (Cal, 21 Sept 2026): a translucent panel over the lower part of a tile, one SVG drawn from the printed numbers — bars, tiles, the person and the arrow — labels in mono ===== */
.pic .viz { position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 2; background: rgba(247, 247, 246, 0.88); border: 1px solid rgba(21, 21, 21, 0.08); border-radius: 12px; padding: 10px 12px 8px; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.viz svg { display: block; width: 100%; height: auto; overflow: visible; }
.viz text { font: 500 11px var(--mono); letter-spacing: 0.04em; fill: var(--ink); }
.viz .bar.usual { fill: var(--grey); }
.viz .bar.post { fill: var(--coral); }
.viz .tile { fill: rgba(21, 21, 21, 0.18); }
.viz .tile.lead { fill: var(--coral); }
.viz .person { fill: var(--ink); }
.viz .arrow { fill: none; stroke: var(--coral); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.imgcard .sentence { font-size: 16px; line-height: 1.45; color: var(--ink); margin: 0 0 8px; text-wrap: pretty; overflow-wrap: anywhere; }

/* ===== the stats table (the preview's results; SPEC §16 item 18) ===== */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--line); border-radius: 14px; background: var(--bg); }
.stats { width: 100%; border-collapse: collapse; font-size: 13px; min-width: 860px; }
.stats th, .stats td { text-align: left; padding: 10px 8px; border-bottom: 1px solid var(--line); vertical-align: middle; white-space: nowrap; }
.stats th { font: 500 11px/1.2 var(--mono); text-transform: uppercase; letter-spacing: 0.12em; color: var(--grey); background: var(--card); }
.stats tbody tr:last-child td { border-bottom: 0; }
.stats .num { text-align: right; font: 500 12px/1.3 var(--mono); letter-spacing: 0.02em; color: var(--ink); position: relative; }
.stats td.num { padding-bottom: 15px; }
.stats td.num .bar { position: absolute; left: 8px; right: 8px; bottom: 6px; height: 3px; border-radius: 2px; background: var(--line); overflow: hidden; }
.stats td.num .bar::after { content: ""; display: block; height: 100%; width: var(--share, 0%); background: var(--grey); border-radius: 2px; }
.stats td.num.best { color: var(--coral-ink); font-weight: 600; }
.stats td.num.best .bar::after { background: var(--coral); }
.stats td.num.unverified { color: var(--grey); font-weight: 400; font-size: 11px; }
/* a Reddit/Pinterest engagement sum: a real count, printed as one, never ranked against the rates (no best, no bar) */
.stats td.num.sum { color: var(--ink); }
.stats .hook { font-family: var(--head); font-weight: 600; letter-spacing: -0.01em; white-space: normal; min-width: 170px; max-width: 215px; }
.stats .hook .cell { display: flex; align-items: center; gap: 12px; }
.stats .hook .copy { min-width: 0; }
.stats .creator { color: var(--grey); }
.stats .posted { color: var(--grey); font: 500 12px/1.3 var(--mono); padding-right: 12px; }
/* the product shot's table: a viral row is tinted whole with the pill by its copy, as the App's Stats table does; the ★/▲ marks beside the best and the top 10 % */
.stats tr[data-viral] td { background: var(--coral-bg); }
.stats .viral-pill { display: inline-block; font: 500 10px/1 var(--mono); text-transform: uppercase; letter-spacing: 0.1em; color: #151515; background: var(--coral); padding: 4px 7px 3px; border-radius: 999px; margin-left: 6px; vertical-align: 1px; }
.stats td.num .mark { color: var(--coral); margin-left: 4px; }
.stats td.num.top10 { color: var(--coral-ink); }
.stats.shot { min-width: 640px; }
.stats.shot .hook { min-width: 240px; max-width: 320px; }
.stats tr.shot-empty td { color: var(--grey); text-align: center; padding: 22px 8px; }

/* ===== tabs (the category strip) ===== */
.tabs { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 32px; }
.tabs a { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: var(--ink); text-decoration: none; border: 1px solid var(--line); background: var(--card); border-radius: 999px; padding: 8px 14px; white-space: nowrap; }
.tabs a:hover { border-color: var(--ink); color: var(--ink); }
.tabs a[aria-current="true"] { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.tabs a.empty { color: var(--grey); border-style: dashed; background: transparent; }
.tabs a .count { color: var(--coral-ink); }
.tabs a[aria-current="true"] .count { color: var(--bg); }
/* the gated page's plain chips: a category's name, no count, nothing to click */
.tabs .chip { display: inline-flex; align-items: center; font-size: 14px; font-weight: 500; color: var(--grey); border: 1px dashed var(--line); border-radius: 999px; padding: 8px 14px; white-space: nowrap; }
/* the teaser: three categories, one post each, then the gate */
.category.teaser .cards.two-up { max-width: 560px; }
.gate { background: var(--card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; }
.gate .lede { margin-left: auto; margin-right: auto; }
.gate .signup { margin-left: auto; margin-right: auto; }
.gate .signup label { text-align: left; }
.gate .actions { justify-content: center; margin-top: 20px; }

/* ===== cards ===== */
.cards { display: grid; gap: 22px; grid-template-columns: 1fr; }
.post { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.post:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.post .thumb { display: block; background: var(--soft); aspect-ratio: 16 / 9; }
.post .thumb img { width: 100%; height: 100%; object-fit: cover; }
.post .thumb.empty { display: flex; align-items: center; justify-content: center; text-decoration: none; }
.post .body { min-width: 0; }
.post .hook, .post .creator, .archive .hook, .stats .hook { overflow-wrap: anywhere; }
.post .body { padding: 18px 20px 20px; }
.post p { margin: 0 0 10px; }
.post .meta { font-size: 13px; color: var(--grey); display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.rank { font: 500 12px/1 var(--mono); letter-spacing: 0.08em; color: var(--ink); }
.badge { display: inline-block; font: 500 11px/1 var(--mono); text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink); border: 1px solid var(--line); background: var(--bg); padding: 5px 9px 4px; border-radius: 999px; }
.viral { font: 500 11px/1 var(--mono); text-transform: uppercase; letter-spacing: 0.1em; color: var(--coral-ink); }
.post .hook { font-family: var(--head); font-size: 22px; font-weight: 600; line-height: 1.25; letter-spacing: -0.015em; text-wrap: pretty; }
.post .numbers { font: 500 13px/1.5 var(--mono); letter-spacing: 0.02em; color: var(--ink); }
.post .creator { font-size: 14px; color: var(--grey); }
.post .link { margin-bottom: 0; font-weight: 500; }
.category { padding: 32px 0 8px; border-top: 1px solid var(--line); }
.category h2 { font-size: clamp(26px, 3vw, 36px); }
.category.empty { padding-bottom: 24px; }
.category.empty h2 { font-size: 22px; color: var(--grey); margin-bottom: 6px; }
.category .platform { margin: 8px 0 32px; }
.category .platform h3 { display: flex; align-items: baseline; gap: 10px; font-size: 18px; margin: 0 0 14px; }
.topics { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-wrap: wrap; gap: 8px; }
.topics li { display: inline-flex; align-items: baseline; gap: 8px; background: var(--card); border: 1px solid var(--line); border-radius: 999px; padding: 8px 14px; font-size: 15px; font-weight: 500; }
.topics .count { color: var(--coral-ink); }

/* ===== grid (columns, archive) ===== */
.cols { list-style: none; padding: 0; margin: 0; display: grid; gap: 22px; }
.cols li { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px 22px; }
.cols p { color: var(--grey); margin: 0; font-size: 16px; }
.archive { list-style: none; padding: 0; margin: 0; }
.archive li { padding: 18px 0; border-bottom: 1px solid var(--line); }
.archive li a { font-family: var(--head); font-weight: 600; font-size: 20px; letter-spacing: -0.015em; text-decoration: none; }
.archive li time { font: 500 12px/1 var(--mono); letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey); margin-right: 6px; }
.archive .hook { font-size: 16px; color: var(--grey); margin: 6px 0 0; }
.issue h1 { font-size: clamp(30px, 4vw, 48px); }
.issue .pull { margin: 24px 0 0; padding: 0 0 0 20px; border-left: 4px solid var(--coral); font-family: var(--head); font-size: 24px; font-weight: 600; letter-spacing: -0.015em; line-height: 1.3; }
.issue .pull p { margin: 0; }
/* The email as it reads in an inbox: its own light surface whatever the Reader's colour scheme (the writer's inline styles assume one — the Take and the trending line set no colour of their own). The email's classes (wrap, take, card, hook, meta …) carry inline styles; every Site rule above is scoped (main.wrap, .sample .take, .post …) so none reaches in. Its own Take paragraph is hidden where the page shows it as the pull quote. */
.issue .email { margin: 32px 0 0; background: #f6f6f4; color: #1a1a1a; color-scheme: light; padding: 24px; border-radius: var(--radius); border: 1px solid var(--line); }
.issue .email img { display: inline-block; }
.issue:has(.pull) .email p.take { display: none; }

/* ===== dark (the "Built for social teams" block) ===== */
.dark { background: var(--navy); color: var(--navy-ink); }
.dark .eyebrow, .dark .lede, .dark p { color: var(--navy-grey); }
.dark h2, .dark h3 { color: #fff; }
.dark a { color: #fff; }
.dark .cols li { background: rgba(255, 255, 255, 0.05); border-color: var(--navy-line); }
.dark .cols { margin: 0 0 36px; }
.dark .cta { margin: 0; max-width: 640px; }
.dark .cta h3 { font-size: 26px; margin: 0 0 8px; }

/* ===== forms (the two calls to action) ===== */
.cta.newsletter { background: var(--card); border-top: 1px solid var(--line); }
.cta .lede { margin-bottom: 24px; }
.placeholder { border: 2px dashed var(--coral-ink); color: var(--coral-ink); background: var(--coral-bg); border-radius: 12px; padding: 16px; font-weight: 600; }
.signup { margin: 4px 0 0; max-width: 640px; }
.signup label { display: block; font: 500 12px/1.4 var(--mono); text-transform: uppercase; letter-spacing: 0.12em; color: var(--grey); margin: 0 0 8px; }
.signup .row { display: flex; flex-direction: column; gap: 10px; }
.signup input { width: 100%; min-width: 0; font: 400 17px/1.3 var(--sans); color: var(--ink); background: var(--bg); border: 1.5px solid var(--line); border-radius: 999px; padding: 14px 20px; transition: border-color 0.15s ease; }
.signup input::placeholder { color: var(--grey); }
.signup input:hover { border-color: var(--grey); }
.signup button { font: 600 16px/1 var(--sans); color: var(--bg); background: var(--ink); border: 1.5px solid var(--ink); border-radius: 999px; padding: 15px 24px; cursor: pointer; transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease; }
.signup button:hover { background: #2c2c2c; border-color: #2c2c2c; transform: translateY(-1px); }
.signup[data-form="search-early-access"] button { background: var(--coral); border-color: var(--coral); color: #151515; }
.signup[data-form="search-early-access"] button:hover { background: var(--coral-ink); border-color: var(--coral-ink); color: #fff; }
.signup input:focus-visible, .signup button:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; }
.signup .small { font-size: 13px; color: var(--grey); margin: 12px 0 0; }
.dark .signup label { color: var(--navy-grey); }
.dark .signup .small { color: var(--navy-grey); }
.dark .signup input { background: rgba(0, 0, 0, 0.25); color: #fff; border-color: var(--navy-line); }
.dark .signup input::placeholder { color: var(--navy-grey); }
.dark .signup input:focus-visible, .dark .signup button:focus-visible { outline-color: #fff; }
.dark .placeholder { background: rgba(255, 77, 46, 0.12); color: #fff; border-color: var(--coral); }

/* ===== the newsletter's headline cards (the latest Issue, from issue_items): big number first, one line each, the thumbnail on top where the row has one ===== */
.cta.newsletter .inner:not(.narrow) .lede, .cta.newsletter .inner:not(.narrow) .signup-wrap { max-width: 720px; }
.headline-date { margin: 0 0 18px; }
.headline-date .mono-date { color: var(--ink); }
.headline-cards { list-style: none; padding: 0; margin: 0 0 32px; display: grid; gap: 18px; grid-template-columns: 1fr; }
.headline .body { padding: 18px 20px 20px; }
.headline .big { font-size: clamp(34px, 3.6vw, 48px); margin: 0 0 8px; }
.headline .line { font-size: 15px; color: var(--grey); margin: 0; overflow-wrap: anywhere; }

/* ===== pricing (config.yaml plans, one line each) ===== */
.pricing h2 { margin-bottom: 28px; }
.plans { list-style: none; padding: 0; margin: 0 0 28px; border-top: 1px solid var(--line); max-width: 760px; }
.plans li { display: grid; grid-template-columns: 1fr; gap: 4px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.plans .name { font-family: var(--head); font-size: 22px; font-weight: 600; letter-spacing: -0.015em; }
.plans .line { color: var(--grey); font-size: 16px; }
.pricing .actions { margin: 0; }

/* ===== footer ===== */
.foot { border-top: 1px solid var(--line); padding: 40px 0 56px; color: var(--grey); font-size: 14px; }
.foot .inner { display: grid; gap: 14px; }
.foot .links { margin: 0; font-weight: 500; }
.foot .links a { color: var(--ink); text-decoration: none; }
.foot .links a:hover { color: var(--coral-ink); }
.foot .small { font-size: 13px; margin: 0; max-width: 720px; }
.foot .small.rank { color: var(--ink); }

/* ===== reveal (the one script adds .js to <html> and .in to each [data-reveal] as it scrolls into view) ===== */
.js [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.js [data-reveal].in { opacity: 1; transform: none; }
/* a revealed card keeps its hover lift (these outrank the .in rule above) */
.js .post.in { transition: transform 0.6s ease, box-shadow 0.2s ease, opacity 0.6s ease; }
.js .post.in:hover { transform: translateY(-3px); transition-duration: 0.2s; }
@media print {
  .js [data-reveal] { opacity: 1; transform: none; transition: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js [data-reveal] { opacity: 1; transform: none; transition: none; }
  .tile, .btn, .post, .signup button { animation: none; transition: none; }
  .post:hover, .js .post.in:hover, .btn:hover, .signup button:hover { transform: none; }
}

/* ===== responsive ===== */
@media (min-width: 480px) {
  .signup .row { flex-direction: row; }
  .signup input { flex: 1 1 auto; }
  .signup button { flex: 0 0 auto; white-space: nowrap; }
}
@media (min-width: 720px) {
  .cards.two-up, .cards.three-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cols.two-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trend-cards, .headline-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .plans li { grid-template-columns: 180px 1fr; align-items: baseline; }
  .device .screen { padding: 22px; }
}
@media (min-width: 960px) {
  .cards.three-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cols.three-cols { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .pillar { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 56px; }
  .pillar.flip .pillar-copy { order: 2; }
  .pillar[data-pillar="find"] .pillar-figure, .pillar[data-pillar="pulse"] .pillar-figure { display: flex; justify-content: center; }
  .find-card, .pulse-card { width: 100%; }
  .section { padding: 104px 0; }
  .hero { padding: 120px 0 96px; }
}
@media (max-width: 1199px) {
  .tiles { display: none; } /* below this the tiles sit on the sub-line and the buttons (measured: clear from 1200) */
}
@media (max-width: 899px) {
  .nav .links { display: none; } /* below this the four links would wrap the bar onto two rows */
}
@media (max-width: 719px) {
  :root { --gutter: 16px; }
  .section { padding: 56px 0; }
  [id] { scroll-margin-top: 68px; }
  .hero { padding: 56px 0 48px; }
  .hero > .inner { margin-top: 36px; }
  .page-head { padding: 40px 0 0; }
  .nav .inner { height: 60px; gap: 12px; }
  .lede { font-size: 18px; }
  .hero .lede { font-size: 18px; }
  .actions .btn { width: 100%; }
  .about .btn { white-space: normal; text-align: center; width: 100%; } /* a long pill would otherwise push a 320px screen sideways */
  .cols li { padding: 22px 20px 18px; }
  .issue .email { padding: 16px; }
  .device .screen { padding: 12px; }
  .pillars .inner { gap: 56px; }
  .pillar h2 { font-size: 24px; }
  .imgcard .copy { font-size: 19px; }
  .headline-cards { margin-bottom: 24px; }
  /* the shot's table on a phone: the Platform, the copy, the views (with its ★) and the outlier fit the screen — the creator, engagement and posted columns are hidden (the whole table stays on the desktop); the frame clips, the page never scrolls sideways */
  .stats.shot { min-width: 0; }
  .stats.shot .creator, .stats.shot .posted, .stats.shot th:nth-child(2), .stats.shot th:nth-child(5), .stats.shot td:nth-child(5), .stats.shot th:nth-child(7) { display: none; }
  .stats.shot .hook { min-width: 150px; max-width: 190px; font-size: 12px; }
  .stats .hook .cell { gap: 8px; }
  .pic.sq { width: 40px; height: 40px; border-radius: 8px; }
  .stats.shot th, .stats.shot td { padding: 8px 4px; }
  .stats.shot td.num { font-size: 12px; }
  .stats.shot .badge { font-size: 10px; padding: 4px 6px 3px; }
  .stats.shot .viral-pill { display: block; width: max-content; margin: 4px 0 0; }
  .plans .name { font-size: 19px; }
  .tabs { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 6px; margin-left: calc(-1 * var(--gutter)); margin-right: calc(-1 * var(--gutter)); padding-left: var(--gutter); padding-right: var(--gutter); }
}
@media (max-width: 359px) {
  .btn.small { padding: 11px 14px; font-size: 13px; } /* keeps the nav pill inside the 16px gutter at 320px */
}

/* ===== light only: the light theme is the design (Cal, 19 Sept 2026) — no dark variant, so the Site looks the same on every device and in every viewer ===== */
