/* ───────── Tokens ───────── */
:root {
  --accent: #2A6FDB;
  --accent-hover: #1F58B8;
  --accent-soft: #E8F0FE;
  --accent-ink: #0B2D5C;

  --ink: #0B0B0F;
  --ink-2: #1B1F26;
  --muted: #5B6373;
  --muted-2: #8A93A4;
  --hair: #E6E8EE;
  --hair-2: #EFF1F5;
  --bg: #FFFFFF;
  --bg-tint: #F7F8FA;
  --bg-tint-2: #F1F3F7;
  --warn: #C25A00;
  --warn-soft: #FFF1E0;
  --shadow-sm: 0 1px 2px rgba(15,23,42,.05);
  --shadow-md: 0 8px 28px rgba(15,23,42,.06);
  --shadow-lg: 0 24px 60px rgba(15,23,42,.10);
  --r-xs: 6px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 22px;
  --container: 1240px;
  --pad-y: 96px;
  --t: cubic-bezier(.2,.8,.2,1);
}

[data-density="compact"] { --pad-y: 64px; }

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  font-feature-settings: "ss01","cv11";
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }

/* ───────── Reveal (stronger, more variety) ───────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--t), transform .9s var(--t), filter .9s var(--t);
  filter: blur(6px);
}
[data-reveal].is-revealed { opacity: 1; transform: translateY(0); filter: blur(0); }
[data-reveal-x="left"]  { transform: translateX(-32px); }
[data-reveal-x="right"] { transform: translateX(32px); }
[data-reveal-x="left"].is-revealed,
[data-reveal-x="right"].is-revealed { transform: translateX(0); }
[data-reveal-scale] { transform: scale(.96); }
[data-reveal-scale].is-revealed { transform: scale(1); }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; filter: none; transition: none; }
}

/* ───────── Buttons / chips ───────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 600; font-size: 14.5px; letter-spacing: -0.005em;
  transition: all .2s var(--t);
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn-arrow { transition: transform .2s var(--t); display: inline-block; }
.btn:hover .btn-arrow { transform: translateX(3px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 12px 24px -8px color-mix(in oklab, var(--accent) 50%, transparent); }
.btn-ghost { color: var(--ink); border-color: var(--hair); background: #fff; }
.btn-ghost:hover { border-color: var(--ink); }
.btn-lg { padding: 14px 22px; font-size: 15px; }

.chip {
  display: inline-flex; align-items: center; padding: 5px 10px;
  border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  background: var(--accent-soft); color: var(--accent);
  text-transform: uppercase;
}
.chip-solid { background: var(--accent); color: #fff; }
.chip-sub {
  display: inline-flex; align-items: center; padding: 5px 10px;
  border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  background: var(--warn-soft); color: var(--warn);
  text-transform: uppercase;
}

.eyebrow { color: var(--accent); font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 10px; }
.dot-sep { color: var(--muted-2); }

.link-arrow { display: inline-flex; align-items: center; gap: 6px; color: var(--ink); font-weight: 600; font-size: 14px; }
.link-arrow span { transition: transform .2s var(--t); }
.link-arrow:hover span { transform: translateX(3px); }
.link-arrow:hover { color: var(--accent); }

/* ───────── Header ───────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--t), box-shadow .3s var(--t), background .3s var(--t);
}
.site-header.is-scrolled {
  border-bottom-color: var(--hair);
  box-shadow: 0 1px 0 rgba(0,0,0,.02), 0 4px 18px rgba(15,23,42,.04);
  background: rgba(255,255,255,.92);
}
.header-row { display: flex; align-items: center; gap: 36px; height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); }
.brand-mark {
  display: grid; place-items: center;
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--accent); color: #fff;
  transition: transform .25s var(--t);
}
.brand:hover .brand-mark { transform: rotate(-8deg); }
.brand-name { font-weight: 700; font-size: 17px; letter-spacing: -0.02em; }
.brand-dot { color: var(--accent); }
.brand-tag {
  font-size: 11px; color: var(--muted); padding-left: 10px; margin-left: 4px;
  border-left: 1px solid var(--hair); letter-spacing: 0.08em; text-transform: uppercase;
}
.nav { display: flex; gap: 28px; margin-left: auto; }
.nav a { font-size: 14.5px; color: var(--ink-2); font-weight: 500; padding: 6px 0; position: relative; }
.nav a:hover { color: var(--accent); }
.nav a::after { content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--t); }
.nav a:hover::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  width: 38px; height: 38px; display: grid; place-items: center; border-radius: 999px;
  color: var(--ink-2); transition: background .2s var(--t), color .2s var(--t);
}
.icon-btn:hover { background: var(--bg-tint); color: var(--accent); }

/* Scroll progress bar */
.scroll-progress {
  position: absolute; left: 0; bottom: -1px; height: 2px;
  background: var(--accent); width: 0%;
  transition: width .12s linear;
}

/* News strip */
.news-strip { background: var(--ink); color: #fff; font-size: 13.5px; }
.news-strip-row { display: flex; align-items: center; gap: 14px; padding: 10px 0; }
.strip-pill { background: #ff5f56; color: #fff; font-weight: 700; letter-spacing: 0.1em; font-size: 10.5px; padding: 3px 8px; border-radius: 4px; position: relative; }
.strip-pill::before {
  content: ""; position: absolute; inset: 0; border-radius: 4px;
  box-shadow: 0 0 0 0 rgba(255,95,86,.6);
  animation: strip-pulse 2s infinite;
}
@keyframes strip-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,95,86,.5); }
  70% { box-shadow: 0 0 0 6px rgba(255,95,86,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,95,86,0); }
}
.strip-text { color: #DDE0E7; }
.strip-text strong { color: #fff; font-weight: 600; }
.strip-link { margin-left: auto; color: #fff; font-weight: 600; display: inline-flex; gap: 6px; align-items: center; }
.strip-link span { transition: transform .2s var(--t); }
.strip-link:hover span { transform: translateX(3px); }

/* ───────── Hero ───────── */
.hero { padding: 36px 0 36px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr); gap: 28px; }
.hero-feature, .hero-side { min-width: 0; }
.hero-ticker { overflow: hidden; min-width: 0; }
.hero-feature {
  background: #fff; border: 1px solid var(--hair); border-radius: var(--r-xl);
  overflow: hidden; transition: box-shadow .35s var(--t);
}
.hero-feature:hover { box-shadow: var(--shadow-lg); }
.hero-eyebrow-bar {
  display: flex; align-items: center; justify-content: space-between;
  font-family: "Inter", sans-serif;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted-2);
  padding: 14px 22px 12px;
  border-bottom: 1px solid var(--hair-2);
}
.hero-eyebrow-bar span:first-child { color: var(--ink-2); }
.hero-image {
  position: relative;
  display: flex;
  flex-direction: column;
}
/* The actual photo area — constrained by aspect ratio */
.hero-image-photo-wrap {
  position: relative;
  aspect-ratio: 16/8.6;
  overflow: hidden;
  flex-shrink: 0;
}
.hero-img-photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: saturate(1.05) contrast(1.02);
  will-change: transform;
  transition: transform .8s var(--t);
}
.hero-feature:hover .hero-img-photo { transform: scale(1.03); }
.hero-img-tint {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, color-mix(in oklab, var(--accent) 35%, transparent) 0%, transparent 55%),
    linear-gradient(180deg, rgba(11,11,15,0) 30%, rgba(11,11,15,.62) 100%);
}
.hero-img-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 30% 80%, color-mix(in oklab, var(--accent) 18%, transparent) 0%, transparent 70%),
    linear-gradient(0deg, rgba(0,0,0,.35), transparent 50%);
}
.hero-stat {
  position: absolute; left: 28px; bottom: 28px; color: #fff;
  background: rgba(11,11,15,.5); backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.14); padding: 16px 20px; border-radius: 16px;
  max-width: 260px;
  transform: translateY(0);
  transition: transform .4s var(--t);
}
.hero-feature:hover .hero-stat { transform: translateY(-4px); }
.hero-stat-num { font-size: 38px; font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.hero-stat-lbl { font-size: 12.5px; color: rgba(255,255,255,.78); margin-top: 6px; line-height: 1.4; }
.hero-image-foot {
  position: absolute; top: 22px; left: 22px; right: 22px;
  display: flex; align-items: center; justify-content: space-between;
}
.hero-meta { color: rgba(255,255,255,.85); font-size: 12px; letter-spacing: 0.04em; background: rgba(11,11,15,.5); padding: 5px 10px; border-radius: 999px; backdrop-filter: blur(6px); }

.hero-copy { padding: 28px 32px 32px; }
.hero-tags { display: flex; gap: 8px; margin-bottom: 14px; }
.hero-title {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.06; letter-spacing: -0.025em; font-weight: 700; margin: 0 0 14px;
  text-wrap: balance;
}
.hero-title:hover { color: var(--accent); cursor: pointer; }
.hero-dek { font-size: 17px; line-height: 1.55; color: var(--muted); margin: 0 0 22px; max-width: 60ch; text-wrap: pretty; }
.hero-byline { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--muted); margin-bottom: 22px; flex-wrap: wrap; }
.avatar-stack { display: inline-flex; }
.avatar {
  width: 30px; height: 30px; border-radius: 50%; border: 2px solid #fff;
  background-size: cover; background-position: center;
  display: grid; place-items: center; font-size: 11px; font-weight: 700; color: #2C2A26;
  margin-right: -8px;
}
.avatar-lg { width: 42px; height: 42px; font-size: 13px; margin-right: 0; }
.hero-cta-row { display: flex; gap: 10px; flex-wrap: wrap; }

/* Hero side */
.hero-side {
  background: var(--bg-tint);
  border-radius: var(--r-xl);
  border: 1px solid var(--hair);
  padding: 22px 22px 18px;
  display: flex; flex-direction: column; gap: 6px;
}
.side-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 6px; }
.side-head h3 { font-size: 17px; font-weight: 700; letter-spacing: -0.015em; margin: 0; }
.side-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; }
.side-item {
  display: grid; grid-template-columns: 32px 1fr 64px; gap: 12px; padding: 14px 0;
  border-top: 1px solid var(--hair); align-items: start;
  cursor: pointer; transition: transform .2s var(--t);
}
.side-item:first-child { border-top: 0; }
.side-item:hover { transform: translateX(2px); }
.side-rank { color: var(--accent); font-weight: 700; font-size: 13px; padding-top: 2px; letter-spacing: 0.04em; font-variant-numeric: tabular-nums; }
.side-cats { display: flex; gap: 8px; align-items: center; margin-bottom: 6px; }
.cat { font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; color: var(--accent); }
.flag { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; color: #fff; background: #ff5f56; padding: 2px 6px; border-radius: 4px; }
.side-item h4 { margin: 0 0 6px; font-size: 14.5px; font-weight: 600; line-height: 1.35; letter-spacing: -0.005em; text-wrap: pretty; }
.side-item:hover h4 { color: var(--accent); }
.side-meta { font-size: 12px; color: var(--muted); }
.side-thumb {
  width: 64px; height: 48px; border-radius: 8px;
  background-size: cover; background-position: center;
  align-self: center;
}
.side-cta {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; margin-top: 8px;
  background: var(--accent); color: #fff; border-radius: 14px;
  transition: transform .2s var(--t);
  position: relative; overflow: hidden;
}
.side-cta::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.18) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .6s var(--t);
}
.side-cta:hover::after { transform: translateX(100%); }
.side-cta:hover { transform: translateY(-1px); }
.side-cta-eyebrow { font-size: 10.5px; letter-spacing: 0.12em; opacity: .8; font-weight: 600; }
.side-cta-title { font-size: 15px; font-weight: 600; margin-top: 2px; }

/* Hero ticker */
.hero-ticker {
  margin-top: 18px;
  display: flex; align-items: center; gap: 14px;
  border-top: 1px solid var(--hair);
  padding-top: 14px; font-size: 13px; color: var(--muted);
  overflow: hidden;
}
.ticker-label { font-weight: 700; color: var(--ink); letter-spacing: 0.08em; font-size: 11px; text-transform: uppercase; flex-shrink: 0; }
.ticker-track { display: flex; gap: 26px; white-space: nowrap; animation: ticker 38s linear infinite; }
.ticker-item { display: inline-flex; gap: 8px; align-items: center; }
.ticker-up { color: #0A8254; font-weight: 600; }
.ticker-down { color: #C2410C; font-weight: 600; }
.ticker-sym { font-weight: 700; color: var(--ink); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ───────── Sections ───────── */
.section { padding: var(--pad-y) 0; }
.section-tinted { background: var(--bg-tint); border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); }
.section-dark { background: var(--ink); color: #fff; }
.section-dark .eyebrow { color: color-mix(in oklab, var(--accent) 90%, white); }
.section-dark .section-sub { color: rgba(255,255,255,.7); }

.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 36px; flex-wrap: wrap; }
.section-title { font-size: clamp(28px, 2.6vw, 38px); font-weight: 700; letter-spacing: -0.025em; margin: 0; line-height: 1.08; text-wrap: balance; }
.section-sub { color: var(--muted); margin: 8px 0 0; max-width: 60ch; }

/* Filters */
.filters { display: flex; gap: 6px; background: #fff; border: 1px solid var(--hair); padding: 4px; border-radius: 999px; }
.filter { padding: 7px 14px; font-size: 13px; font-weight: 600; color: var(--muted); border-radius: 999px; transition: all .2s var(--t); }
.filter.is-active { background: var(--ink); color: #fff; }
.filter:hover:not(.is-active) { color: var(--ink); }

/* ───────── Intelligence cards ───────── */
.intel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: #fff; border: 1px solid var(--hair); border-radius: var(--r-lg);
  overflow: hidden; transition: transform .25s var(--t), box-shadow .25s var(--t), border-color .25s var(--t);
  display: flex; flex-direction: column;
  position: relative;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #DDE2EB; }
.card-thumb {
  aspect-ratio: 16/9; position: relative;
  display: grid; place-items: center;
  overflow: hidden;
  background-color: #0E0E10;
}
.card-thumb-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .6s var(--t);
}
.card:hover .card-thumb-img { transform: scale(1.06); }
.card-thumb-tint {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.45) 100%);
}
.thumb-pill { position: absolute; top: 14px; left: 14px; font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; color: #fff; background: rgba(11,11,15,.55); padding: 5px 9px; border-radius: 999px; backdrop-filter: blur(6px); }
.card-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card-meta { display: flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.meta-strong { color: var(--accent); font-weight: 700; }
.flag-sub { color: var(--warn); font-weight: 700; }
.card-title { font-size: 19px; font-weight: 600; line-height: 1.25; letter-spacing: -0.015em; margin: 0; text-wrap: balance; }
.card:hover .card-title { color: var(--accent); }
.card-dek { color: var(--muted); margin: 0; font-size: 14px; line-height: 1.5; }
.card-foot { margin-top: auto; display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--muted); padding-top: 12px; border-top: 1px solid var(--hair-2); }
.card-tag { margin-left: auto; color: var(--accent); font-weight: 600; }
.card-tag:hover { text-decoration: underline; }

/* ───────── Platform Updates ───────── */
.plat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.plat-card {
  background: #fff; border: 1px solid var(--hair); border-radius: var(--r-lg);
  padding: 22px; display: flex; flex-direction: column; gap: 12px;
  transition: transform .25s var(--t), box-shadow .25s var(--t);
  position: relative; overflow: hidden;
}
.plat-card::before {
  content: ""; position: absolute; top: 0; right: 0; width: 140px; height: 140px;
  background: radial-gradient(circle, color-mix(in oklab, var(--accent) 8%, transparent) 0%, transparent 70%);
  opacity: 0; transition: opacity .3s var(--t);
}
.plat-card:hover::before { opacity: 1; }
.plat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.plat-head { display: grid; grid-template-columns: 44px 1fr auto; gap: 12px; align-items: center; position: relative; z-index: 1; }
.plat-logo {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center; font-weight: 700; font-size: 18px; color: #fff;
}
.plat-logo-google { background: #4285F4; }
.plat-logo-meta { background: #1877F2; font-style: italic; }
.plat-logo-linkedin { background: #0A66C2; font-size: 14px; }
.plat-logo-tiktok { background: #0E0E10; }
.plat-logo-seo { background: #34A853; }
.plat-logo-ai { background: #6E3FF3; }
.plat-name { font-weight: 700; font-size: 15px; letter-spacing: -0.01em; }
.plat-sub { font-size: 12px; color: var(--muted); }
.plat-status { font-size: 10.5px; font-weight: 700; letter-spacing: 0.08em; padding: 4px 8px; border-radius: 999px; }
.status-live { background: #E2F6EC; color: #0A8254; }
.status-beta { background: var(--accent-soft); color: var(--accent); }
.status-warn { background: #FFE9D6; color: #B7480D; }
.plat-title { font-size: 16px; font-weight: 600; margin: 6px 0 0; line-height: 1.3; letter-spacing: -0.01em; position: relative; z-index: 1; }
.plat-dek { font-size: 13.5px; color: var(--muted); margin: 0; line-height: 1.5; position: relative; z-index: 1; }
.plat-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--hair-2); position: relative; z-index: 1; }
.plat-stats { display: flex; gap: 22px; }
.plat-stats div { display: flex; flex-direction: column; }
.stat-n { font-weight: 700; font-size: 16px; letter-spacing: -0.02em; color: var(--ink); font-variant-numeric: tabular-nums; }
.stat-l { font-size: 11px; color: var(--muted); }

/* ───────── Research & More Stories ───────── */
.research-grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 28px; align-items: stretch;
}
.research-feature {
  background: #fff; border: 1px solid var(--hair); border-radius: var(--r-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .25s var(--t), box-shadow .25s var(--t);
}
.research-feature:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.research-feature-img {
  position: relative; aspect-ratio: 16 / 8; background-size: cover; background-position: center;
  border-bottom: 1px solid var(--hair);
}
.research-feature-img .thumb-pill {
  position: absolute; top: 16px; left: 16px;
}
.research-feature-body { padding: 28px 30px 26px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.research-feature-title {
  font-family: "Inter Tight", sans-serif; font-weight: 700;
  font-size: 30px; line-height: 1.1; letter-spacing: -0.022em; color: var(--ink);
  margin: 0; text-wrap: balance;
}
.research-feature-dek {
  font-size: 15.5px; line-height: 1.55; color: var(--muted); margin: 0; text-wrap: pretty;
  max-width: 56ch;
}
.research-bullets {
  list-style: none; padding: 0; margin: 8px 0 0;
  display: flex; flex-direction: column; gap: 10px;
  border-top: 1px solid var(--hair-2); padding-top: 16px;
}
.research-bullets li {
  display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: baseline;
  font-size: 14.5px; line-height: 1.45; color: var(--ink); text-wrap: pretty;
}
.bullet-num {
  font-family: "Inter Tight", sans-serif; font-weight: 700; font-size: 11px;
  letter-spacing: 0.1em; color: var(--accent);
  background: var(--accent-soft); padding: 4px 8px; border-radius: 4px;
}
.research-feature-foot {
  display: flex; align-items: center; gap: 18px; margin-top: auto; padding-top: 6px;
}
.research-foot-meta { font-size: 12.5px; color: var(--muted); letter-spacing: 0.01em; }

.research-list {
  background: #fff; border: 1px solid var(--hair); border-radius: var(--r-lg);
  padding: 26px 28px; display: flex; flex-direction: column;
}
.research-list-head {
  display: flex; align-items: baseline; justify-content: space-between;
  padding-bottom: 14px; border-bottom: 1px solid var(--hair-2);
}
.eyebrow-sm { font-size: 10.5px; }
.research-list-count {
  font-family: "Inter Tight", sans-serif; font-weight: 700;
  font-size: 13px; color: var(--muted); letter-spacing: 0.04em;
}
.research-items { list-style: none; padding: 0; margin: 0; flex: 1; }
.research-item {
  padding: 18px 0; border-bottom: 1px solid var(--hair-2);
  display: flex; flex-direction: column; gap: 6px; cursor: pointer;
  transition: transform .2s var(--t);
}
.research-item:last-child { border-bottom: 0; }
.research-item:hover { transform: translateX(3px); }
.research-item:hover .research-item-title { color: var(--accent); }
.research-item-cat {
  font-family: "Inter Tight", sans-serif; font-weight: 700;
  font-size: 10.5px; letter-spacing: 0.12em; color: var(--accent);
}
.research-item-title {
  font-family: "Inter Tight", sans-serif; font-weight: 600;
  font-size: 16.5px; line-height: 1.3; letter-spacing: -0.012em;
  color: var(--ink); margin: 0; text-wrap: pretty;
  transition: color .2s var(--t);
}
.research-item-meta {
  font-size: 12.5px; color: var(--muted);
  display: flex; align-items: center; gap: 6px;
}
.research-list-cta { margin-top: 18px; align-self: flex-start; }

/* ───────── Trending + Case ───────── */
.split-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 32px; }
.trending-block, .case-block { background: #fff; border: 1px solid var(--hair); border-radius: var(--r-xl); padding: 28px; }
.trending-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.trending-item {
  display: grid; grid-template-columns: 36px 1fr 80px; gap: 14px; align-items: center;
  padding: 16px 0; border-top: 1px solid var(--hair-2);
  cursor: pointer; transition: transform .2s var(--t);
}
.trending-item:first-child { border-top: 0; }
.trending-item:hover { transform: translateX(3px); }
.trending-rank { font-weight: 700; font-size: 18px; color: var(--ink-2); letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.trending-cat { font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 4px; }
.trending-item h4 { margin: 0; font-size: 15px; font-weight: 600; line-height: 1.35; letter-spacing: -0.005em; }
.trending-item:hover h4 { color: var(--accent); }
.trending-meta { font-size: 12px; color: var(--muted); margin-top: 4px; }
.sparkline { color: var(--accent); width: 80px; height: 28px; }
.sparkline svg { width: 100%; height: 100%; }
.spark-1 { color: #0EA46B; }
.spark-2 { color: #F26B1F; }

.case-head .section-title { font-size: 26px; }
.case-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 24px 0; }
.stat-box { background: var(--bg-tint); border-radius: 12px; padding: 18px 16px; transition: background .25s var(--t); }
.stat-box:hover { background: var(--accent-soft); }
.stat-num { font-size: 28px; font-weight: 700; letter-spacing: -0.03em; color: var(--ink); font-variant-numeric: tabular-nums; }
.stat-lbl { font-size: 12px; color: var(--muted); margin-top: 4px; }
.case-callout {
  display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center;
  background: var(--ink); color: #fff; border-radius: 14px; padding: 20px 22px;
}
.case-callout-h { font-size: 16px; font-weight: 500; line-height: 1.45; max-width: 50ch; text-wrap: pretty; }
.case-callout-s { font-size: 12.5px; color: rgba(255,255,255,.6); margin-top: 8px; }
.case-callout .btn-primary { background: #fff; color: var(--ink); }
.case-callout .btn-primary:hover { background: var(--accent); color: #fff; }

/* ───────── Featured Watch ───────── */
.watch-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 22px; }
.watch-main { border-radius: var(--r-xl); overflow: hidden; cursor: pointer; }
.watch-media { position: relative; aspect-ratio: 16/9.4; }
.watch-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .8s var(--t); }
.watch-main:hover .watch-bg { transform: scale(1.04); }
.watch-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.68) 0%, transparent 50%, rgba(0,0,0,.2) 100%); }
.play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 78px; height: 78px; border-radius: 50%;
  background: rgba(255,255,255,.92); color: var(--ink);
  display: grid; place-items: center;
  transition: all .25s var(--t);
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
}
.play-btn::before {
  content: ""; position: absolute; inset: -8px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.4);
  animation: ring-pulse 2.4s ease-out infinite;
}
@keyframes ring-pulse {
  0% { transform: scale(.8); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}
.watch-main:hover .play-btn { transform: translate(-50%, -50%) scale(1.06); background: #fff; }
.play-btn-sm { width: 36px; height: 36px; }
.play-btn-sm::before { display: none; }
.watch-badge {
  position: absolute; top: 18px; right: 18px;
  background: rgba(11,11,15,.6); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  padding: 6px 10px; border-radius: 999px; backdrop-filter: blur(8px);
  display: inline-flex; gap: 6px; align-items: center;
}
.watch-badge::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: #ff5f56;
  box-shadow: 0 0 0 0 rgba(255,95,86,.8);
  animation: strip-pulse 2s infinite;
}
.watch-title-wrap { position: absolute; left: 32px; right: 32px; bottom: 26px; color: #fff; }
.watch-title { font-size: 30px; font-weight: 700; letter-spacing: -0.02em; margin: 0; line-height: 1.05; }
.watch-sub { margin: 6px 0 0; opacity: .85; font-size: 14.5px; }

.watch-side { display: grid; grid-template-rows: repeat(3, 1fr); gap: 14px; }
.watch-mini {
  display: grid; grid-template-columns: 138px 1fr; gap: 14px; align-items: center;
  background: #fff; border: 1px solid var(--hair); border-radius: 14px;
  padding: 12px; transition: transform .2s var(--t), box-shadow .2s var(--t);
  cursor: pointer;
}
.watch-mini:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.watch-mini-thumb { position: relative; aspect-ratio: 16/10; border-radius: 10px; overflow: hidden; background-size: cover; background-position: center; }
.watch-mini-thumb::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.5), transparent 60%);
}
.watch-mini-tag { font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; color: var(--muted); }
.watch-mini-title { font-size: 14.5px; font-weight: 600; line-height: 1.35; margin: 4px 0 0; letter-spacing: -0.005em; }
.watch-mini:hover .watch-mini-title { color: var(--accent); }

/* ───────── Newsletter ───────── */
.newsletter-section { padding: 28px 0 28px; }
.news-card {
  position: relative; overflow: hidden;
  background: var(--accent); color: #fff;
  border-radius: var(--r-xl);
  padding: 56px 60px;
}
.news-bg { position: absolute; inset: 0; pointer-events: none; }
.news-orb { position: absolute; border-radius: 50%; filter: blur(50px); opacity: .35; }
.news-orb.a { width: 320px; height: 320px; background: #fff; top: -100px; left: -60px; animation: float-a 14s ease-in-out infinite; }
.news-orb.b { width: 260px; height: 260px; background: #fff; bottom: -80px; right: 10%; opacity: .25; animation: float-b 18s ease-in-out infinite; }
.news-orb.c { width: 180px; height: 180px; background: var(--accent-ink); top: 20%; right: -40px; opacity: .35; animation: float-a 20s ease-in-out infinite; }
@keyframes float-a {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -20px); }
}
@keyframes float-b {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, 20px); }
}
.news-inner { position: relative; max-width: 720px; }
.news-pill { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.15); padding: 6px 14px; border-radius: 999px; font-size: 12px; letter-spacing: 0.06em; font-weight: 600; }
.news-pill-dot { width: 7px; height: 7px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.25); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 4px rgba(255,255,255,.25); } 50% { box-shadow: 0 0 0 8px rgba(255,255,255,0); } }
.news-title { font-size: clamp(28px, 3.2vw, 40px); font-weight: 700; letter-spacing: -0.025em; margin: 16px 0 12px; line-height: 1.1; text-wrap: balance; }
.news-dek { font-size: 16px; opacity: .9; margin: 0 0 24px; max-width: 60ch; }
.news-form { display: flex; gap: 8px; max-width: 540px; }
.news-input {
  flex: 1; padding: 13px 18px;
  background: rgba(255,255,255,.95); color: var(--ink);
  border-radius: 999px; border: 0; font-size: 15px;
  font-family: inherit;
}
.news-input:focus { outline: 2px solid #fff; }
.news-btn { background: var(--ink); color: #fff; }
.news-btn:hover { background: #000; }
.news-foot { font-size: 12.5px; opacity: .75; margin-top: 14px; }

/* ───────── Big CTA ───────── */
.big-cta-wrap { padding: 60px 0 100px; }
.big-cta {
  background: var(--ink); color: #fff;
  border-radius: var(--r-xl); padding: 80px 60px; text-align: center;
  position: relative; overflow: hidden;
}
.big-cta::before {
  content: ""; position: absolute; inset: -50%;
  background: radial-gradient(50% 50% at 50% 50%, color-mix(in oklab, var(--accent) 40%, transparent) 0%, transparent 70%);
  pointer-events: none;
  animation: glow-rotate 22s linear infinite;
}
@keyframes glow-rotate { from { transform: rotate(0); } to { transform: rotate(360deg); } }
.big-cta-eyebrow { color: var(--accent); position: relative; z-index: 1; font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.big-cta-title { font-size: clamp(36px, 4.4vw, 64px); font-weight: 700; letter-spacing: -0.03em; margin: 16px 0 18px; line-height: 1.05; position: relative; z-index: 1; text-wrap: balance; }
.big-cta-title em { font-style: normal; color: var(--accent); }
.big-cta-dek { color: rgba(255,255,255,.78); font-size: 17px; max-width: 64ch; margin: 0 auto 28px; line-height: 1.55; position: relative; z-index: 1; text-wrap: pretty; }
.big-cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; margin-bottom: 56px; }
.big-cta .btn-ghost { background: transparent; border-color: rgba(255,255,255,.25); color: #fff; }
.big-cta .btn-ghost:hover { border-color: #fff; }
.big-cta-logos { position: relative; z-index: 1; padding-top: 36px; border-top: 1px solid rgba(255,255,255,.1); }
.cta-foot-lbl { font-size: 11px; letter-spacing: 0.16em; color: rgba(255,255,255,.5); font-weight: 600; }
.logo-row { display: flex; justify-content: center; gap: 36px; margin-top: 16px; flex-wrap: wrap; }
.fake-logo {
  font-family: "Inter Tight", sans-serif; font-weight: 700; font-size: 19px;
  color: rgba(255,255,255,.55); letter-spacing: -0.01em;
  transition: color .2s var(--t);
}
.fake-logo:hover { color: #fff; }

/* ───────── Footer ───────── */
.footer { background: #FAFBFC; border-top: 1px solid var(--hair); }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 36px; padding: 64px 28px 48px; max-width: var(--container); margin: 0 auto; }
.footer-brand { padding-right: 24px; }
.footer-copy { font-size: 14px; color: var(--muted); margin: 16px 0 22px; max-width: 36ch; line-height: 1.55; }
.footer-cta { padding: 9px 16px; font-size: 13.5px; }
.footer-h { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); margin-bottom: 14px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--muted); transition: color .15s var(--t); }
.footer-col a:hover { color: var(--accent); }
.footer-base { border-top: 1px solid var(--hair); }
.footer-base-row { display: flex; justify-content: space-between; padding: 22px 0; font-size: 12.5px; color: var(--muted); }
.footer-base-links { display: flex; gap: 22px; }
.footer-base-links a:hover { color: var(--accent); }

/* ───────── Responsive ───────── */

/* ── Tablet wide (≤1100px) ── */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; }
  .intel-grid { grid-template-columns: repeat(2, 1fr); }
  .plat-grid { grid-template-columns: repeat(2, 1fr); }
  .split-grid { grid-template-columns: 1fr; }
  .case-stats { grid-template-columns: repeat(2, 1fr); }
  .watch-grid { grid-template-columns: 1fr; }
  .watch-side { grid-template-rows: unset; grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .research-grid { grid-template-columns: 1fr; }
}

/* ── Tablet narrow (≤900px) ── */
@media (max-width: 900px) {
  .container { padding: 0 20px; }
  .header-row { gap: 16px; }
  .nav { gap: 18px; }
  .nav a { font-size: 13.5px; }
  .brand-tag { display: none; }
  .intel-grid { grid-template-columns: repeat(2, 1fr); }
  .plat-grid { grid-template-columns: repeat(2, 1fr); }
  .watch-side { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .hero-copy { padding: 24px 26px 28px; }
  .hero-title { font-size: clamp(26px, 4vw, 38px); }
  .watch-title { font-size: 24px; }
  .research-feature-title { font-size: 24px; }
  .big-cta { padding: 60px 40px; }
  .news-card { padding: 48px 40px; }
}

/* ───────── Mobile nav ───────── */
.nav-toggle { display: none; } /* hidden on desktop, shown via media query */

.mobile-nav {
  position: fixed; top: 60px; left: 0; right: 0; z-index: 49;
  background: rgba(255,255,255,.97);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--hair);
  padding: 20px 16px 24px;
  box-shadow: 0 8px 32px rgba(15,23,42,.08);
  display: flex; flex-direction: column; gap: 4px;
}
.mobile-nav[hidden] { display: none !important; }
.mobile-nav-links { display: flex; flex-direction: column; }
.mobile-nav-links a {
  font-size: 17px; font-weight: 600; color: var(--ink-2);
  padding: 13px 4px; border-bottom: 1px solid var(--hair-2);
  transition: color .15s var(--t);
}
.mobile-nav-links a:last-child { border-bottom: 0; }
.mobile-nav-links a:hover { color: var(--accent); }
.mobile-nav-cta { margin-top: 16px; justify-content: center; }

/* ───────── Tweaks panel ───────── */
.tweaks-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 100;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(0,0,0,.2);
  transition: transform .2s var(--t);
}
.tweaks-fab:hover { transform: scale(1.06) rotate(40deg); }
.tweaks-panel[hidden] { display: none !important; }
.tweaks-panel {
  position: fixed; right: 22px; bottom: 22px; z-index: 100;
  width: 320px; max-height: calc(100vh - 44px);
  background: #fff; color: var(--ink);
  border: 1px solid var(--hair); border-radius: 16px;
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.tweaks-head { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border-bottom: 1px solid var(--hair); }
.tweaks-title { font-weight: 700; font-size: 15px; letter-spacing: -0.01em; }
.tweaks-close { width: 28px; height: 28px; border-radius: 50%; font-size: 22px; line-height: 1; color: var(--muted); }
.tweaks-close:hover { background: var(--bg-tint); color: var(--ink); }
.tweaks-body { padding: 14px 16px 18px; overflow-y: auto; display: flex; flex-direction: column; gap: 18px; }
.tweaks-section { display: flex; flex-direction: column; gap: 10px; }
.tweaks-label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.tweaks-input {
  width: 100%; padding: 10px 12px; border: 1px solid var(--hair); border-radius: 10px;
  font-family: inherit; font-size: 14px; background: var(--bg-tint);
}
.tweaks-input:focus { outline: 2px solid var(--accent); outline-offset: 1px; background: #fff; }
.palette-swatches { display: flex; gap: 8px; }
.swatch {
  width: 32px; height: 32px; border-radius: 8px; border: 2px solid transparent;
  transition: transform .15s var(--t), border-color .15s var(--t);
}
.swatch:hover { transform: scale(1.08); }
.swatch.is-active { border-color: var(--ink); box-shadow: 0 0 0 2px #fff inset; }
.palette-radios { display: flex; flex-direction: column; gap: 4px; }
.radio {
  text-align: left; padding: 8px 12px; border-radius: 8px;
  font-size: 13.5px; font-weight: 500; color: var(--ink-2);
  transition: background .15s var(--t);
}
.radio:hover { background: var(--bg-tint); }
.radio.is-active { background: var(--accent-soft); color: var(--accent); font-weight: 600; }
.seg { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; background: var(--bg-tint); padding: 4px; border-radius: 10px; }
.seg button { padding: 8px 10px; border-radius: 7px; font-size: 13px; font-weight: 600; color: var(--muted); }
.seg button.is-active { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.tweaks-toggle { display: flex; align-items: center; gap: 10px; font-size: 13.5px; cursor: pointer; }
.tweaks-toggle input { width: 16px; height: 16px; accent-color: var(--accent); }

/* ── Mobile (≤720px) ── */
@media (max-width: 720px) {
  :root { --pad-y: 60px; }
  .container { padding: 0 16px; }

  /* Header */
  .header-row { height: 60px; gap: 10px; }
  .nav { display: none; }
  .brand-tag { display: none; }
  .header-actions .btn { display: none; }

  /* Mobile menu toggle */
  .nav-toggle { display: grid; }

  /* News strip */
  .news-strip-row { gap: 10px; flex-wrap: wrap; }
  .strip-text { font-size: 12.5px; }
  .strip-link { margin-left: 0; }

  /* ── Hero — mobile magazine-cover layout ── */
  .hero { padding: 12px 0 20px; }

  /* Eyebrow bar: single compact line */
  .hero-eyebrow-bar {
    font-size: 10px; padding: 9px 14px; gap: 6px;
    letter-spacing: 0.12em;
  }
  .hero-eyebrow-bar span:last-child { display: none; }

  /* hero-image becomes the positioning context for the overlay */
  .hero-image {
    position: relative;
    display: block;
  }

  /* Photo wrap: tall portrait so the image has room to breathe */
  .hero-image-photo-wrap {
    aspect-ratio: 3/4;
  }

  /* Stronger gradients so text is legible over the photo */
  .hero-img-tint {
    background:
      linear-gradient(180deg, rgba(11,11,15,0) 20%, rgba(11,11,15,.85) 100%);
  }
  .hero-img-overlay {
    background:
      linear-gradient(0deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.15) 55%, transparent 100%);
  }

  /* Overlay the copy block onto the bottom of the image */
  .hero-copy {
    position: absolute;
    inset: auto 0 0 0;
    padding: 20px 18px 22px;
    background: none;
    z-index: 2;
  }

  /* Text colours flip to white — it's now over the dark photo */
  .hero-title {
    font-size: clamp(20px, 5.5vw, 28px);
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.15;
  }
  .hero-title:hover { color: rgba(255,255,255,.85); }
  .hero-dek {
    font-size: 13.5px;
    color: rgba(255,255,255,.8);
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .hero-tags { margin-bottom: 10px; }
  .hero-byline {
    font-size: 12px;
    color: rgba(255,255,255,.7);
    margin-bottom: 14px;
    gap: 6px;
  }
  .hero-byline .dot-sep { color: rgba(255,255,255,.4); }

  /* CTAs: side by side, compact */
  .hero-cta-row { flex-direction: row; gap: 8px; flex-wrap: nowrap; }
  .hero-cta-row .btn {
    width: auto; flex: 1;
    justify-content: center;
    padding: 10px 14px;
    font-size: 13px;
  }
  .hero-cta-row .btn-ghost {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.3);
    color: #fff;
  }

  /* Stat badge: top-right corner, smaller */
  .hero-stat {
    left: auto; right: 14px;
    bottom: auto; top: 14px;
    padding: 10px 12px;
    max-width: 160px;
    border-radius: 12px;
  }
  .hero-stat-num { font-size: 24px; }
  .hero-stat-lbl { font-size: 11px; }

  /* Chip stays top-left; hide the read-time pill — too crowded */
  .hero-image-foot { top: 14px; left: 14px; right: auto; gap: 8px; }
  .hero-meta { display: none; }

  /* Side list */
  .side-item { grid-template-columns: 32px 1fr; }
  .side-thumb { display: none; }

  /* Grids → single column */
  .intel-grid,
  .plat-grid,
  .research-grid,
  .watch-side { grid-template-columns: 1fr; }

  /* Cards */
  .card-title { font-size: 17px; }

  /* Platform cards */
  .plat-head { grid-template-columns: 40px 1fr auto; gap: 10px; }
  .plat-status { font-size: 9.5px; padding: 3px 6px; }

  /* Research */
  .research-feature-title { font-size: 22px; }
  .research-feature-body { padding: 20px 20px 20px; }
  .research-list { padding: 20px 18px; }

  /* Trending + Case */
  .split-grid { grid-template-columns: 1fr; gap: 20px; }
  .trending-item { grid-template-columns: 36px 1fr; gap: 10px; }
  .sparkline { display: none; }
  .case-stats { grid-template-columns: 1fr 1fr; gap: 8px; }
  .stat-box { padding: 14px 12px; }
  .stat-num { font-size: 22px; }
  .case-callout { grid-template-columns: 1fr; gap: 14px; }
  .case-callout .btn { width: 100%; justify-content: center; }

  /* Watch */
  .watch-title { font-size: 20px; }
  .watch-title-wrap { left: 18px; right: 18px; bottom: 18px; }
  .watch-mini { grid-template-columns: 110px 1fr; }

  /* Newsletter */
  .news-card { padding: 36px 22px; }
  .news-form { flex-direction: column; gap: 10px; }
  .news-form .btn { width: 100%; justify-content: center; }
  .news-input { width: 100%; }

  /* Big CTA */
  .big-cta-wrap { padding: 40px 0 60px; }
  .big-cta { padding: 48px 22px; }
  .big-cta-actions { flex-direction: column; align-items: stretch; }
  .big-cta-actions .btn { justify-content: center; }
  .logo-row { gap: 20px; }
  .fake-logo { font-size: 16px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding: 40px 16px 32px; }
  .footer-base-row { flex-direction: column; gap: 12px; align-items: flex-start; }
  .footer-base-links { flex-wrap: wrap; gap: 14px; }

  /* Tweaks panel */
  .tweaks-panel { right: 12px; left: 12px; width: auto; bottom: 12px; max-height: calc(100vh - 24px); }
  .tweaks-fab { right: 16px; bottom: 16px; }

  /* Section head */
  .section-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .filters { flex-wrap: wrap; border-radius: 12px; }
}

/* ── Very small (≤400px) ── */
@media (max-width: 400px) {
  .hero-title { font-size: 20px; }
  .hero-image-photo-wrap { aspect-ratio: 4/5; } /* slightly less tall on tiny screens */
  .case-stats { grid-template-columns: 1fr; }
  .watch-mini { grid-template-columns: 90px 1fr; }
  .hero-eyebrow-bar span:last-child { display: none; }
}
