﻿/* Hero must fit in viewport */
body { padding-top: 0; }
.hero.hero-split-reversed,
.hero.section.hero-split-reversed {
  min-height: calc(100vh - 64px);
  max-height: none;
  padding-block: clamp(80px, 11vh, 120px) clamp(32px, 5vh, 56px);
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
.hero.hero-split-reversed .hero-grid { width: 100%; }
.hero.hero-split-reversed h1 { font-size: clamp(36px, 4.2vw, 64px); }
.hero.hero-split-reversed .hero-intro { font-size: clamp(16px, 1.1vw, 18px); }
.hero.hero-split-reversed .ads-panel,
.hero.hero-split-reversed .product-demo-panel { max-height: 62vh; overflow: hidden; }
@media (max-width: 760px) {
  .hero.hero-split-reversed { min-height: auto; padding-block: 88px 24px; }
  .hero.hero-split-reversed .ads-panel,
  .hero.hero-split-reversed .product-demo-panel { max-height: 50vh; }
}
:root {
  --acc: #ecf86e;
  --dark: #0a0a0a;
  --dark-2: #101010;
  --dark-3: #171717;
  --line: #252525;
  --hairline: rgba(255, 255, 255, 0.1);
  --light: #ffffff;
  --light-2: #f4f3ed;
  --ink: #e8e8e8;
  --ink-dim: #a6a6a6;
  --ink-faint: #6f6f6f;
  --warm: #d8cdb7;
  --paper: #f8f7f1;
  --f-display: "Bricolage Grotesque", sans-serif;
  --f-sans: "Geist", sans-serif;
  --f-mono: "Geist Mono", monospace;
  --container: 1560px;
  --c-wide: 1560px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 84px 84px,
    var(--dark);
  color: var(--ink);
  font-family: var(--f-sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--f-display);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.96;
}

.container {
  width: 100%;
  max-width: var(--c-wide);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(76px, 9vw, 120px);
  scroll-margin-top: 96px;
}

.section-light {
  background: linear-gradient(180deg, var(--light), var(--light-2));
  color: #111;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 17px var(--gutter);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 7, 7, 0.74);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 800;
}

.brand-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--acc);
  box-shadow: 0 0 18px rgba(236, 248, 110, 0.65);
}

.nav-links {
  display: flex;
  gap: 6px;
  color: var(--ink-dim);
  font-size: 14px;
}

.nav-links a {
  border-radius: 999px;
  padding: 9px 13px;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--light);
}

.nav-cta,
.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 0 20px;
  font-weight: 700;
  text-align: center;
}

.nav-cta,
.btn-primary {
  background: var(--acc);
  color: #000;
}

.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -50%;
  width: 45%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-18deg);
  transition: left 0.55s ease;
}

.btn-primary:hover::after {
  left: 115%;
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.035);
  color: var(--ink);
}

.btn-dark {
  margin-top: 30px;
  background: var(--dark);
  color: var(--light);
}

.hero {
  position: relative;
  min-height: calc(100svh - 78px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent 52%),
    radial-gradient(circle at 80% 18%, rgba(236, 248, 110, 0.16), transparent 28%),
    radial-gradient(circle at 20% 82%, rgba(216, 205, 183, 0.12), transparent 30%),
    var(--dark);
}

.hero::before {
  content: "B2B";
  position: absolute;
  right: -0.06em;
  bottom: -0.2em;
  color: rgba(255, 255, 255, 0.035);
  font-family: var(--f-display);
  font-size: clamp(220px, 34vw, 520px);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.8;
  pointer-events: none;
}

.hero-rail {
  position: absolute;
  top: 50%;
  z-index: 1;
  color: rgba(255, 255, 255, 0.28);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-rail.left {
  left: 18px;
  transform: translateY(-50%) rotate(180deg);
}

.hero-rail.right {
  right: 18px;
  transform: translateY(-50%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.65fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-faint);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow span,
.section-label::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--acc);
}

.hero h1 {
  max-width: 980px;
  margin-top: 20px;
  font-size: clamp(50px, 8vw, 112px);
  letter-spacing: -0.06em;
}

.hero-intro {
  max-width: 690px;
  margin-top: 24px;
  color: var(--ink-dim);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  color: var(--ink-dim);
  font-size: 14px;
}

.hero-note span {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.035);
}

.campaign-panel,
.target-visual,
.measurement-panel {
  border: 1px solid var(--hairline);
  border-radius: 20px;
  background: rgba(16, 16, 16, 0.82);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

.campaign-panel {
  padding: 18px;
}

.panel-top,
.matrix-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink-faint);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.panel-top strong,
.matrix-top strong {
  color: var(--acc);
  font-weight: 500;
}

.audience-card,
.dossier-card {
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(236, 248, 110, 0.16), transparent 54%),
    rgba(255, 255, 255, 0.04);
}

.audience-card small,
.dossier-card small,
.funnel-stage small {
  color: var(--ink-faint);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.audience-card strong,
.dossier-card strong {
  display: block;
  margin-top: 10px;
  color: var(--light);
  font-family: var(--f-display);
  font-size: 28px;
  line-height: 1;
}

.audience-card p,
.dossier-card p,
.handoff-list p {
  margin-top: 12px;
  color: var(--ink-dim);
}

.dossier-card {
  display: grid;
  min-height: 168px;
  align-content: space-between;
  background:
    linear-gradient(135deg, rgba(236, 248, 110, 0.2), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    #171717;
}

.dossier-card strong {
  font-size: clamp(46px, 5vw, 66px);
}

.campaign-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 14px 0 0;
}

.campaign-metrics div {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px 12px;
  background: rgba(255, 255, 255, 0.035);
}

.campaign-metrics dt {
  color: var(--light);
  font-family: var(--f-display);
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.campaign-metrics dd {
  margin: 8px 0 0;
  color: var(--ink-faint);
  font-size: 12px;
}

.handoff-list {
  margin-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 12px;
}

.handoff-list p {
  display: flex;
  align-items: center;
  gap: 10px;
}

.handoff-list span {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--acc);
}

.committee-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.committee-map::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(236, 248, 110, 0.18);
  border-radius: 999px;
  pointer-events: none;
}

.committee-node {
  position: relative;
  z-index: 1;
  min-height: 122px;
  display: grid;
  align-content: end;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.045);
}

.committee-node.primary {
  border-color: rgba(236, 248, 110, 0.38);
  background:
    linear-gradient(135deg, rgba(236, 248, 110, 0.14), rgba(255, 255, 255, 0.035)),
    #181818;
}

.committee-node span,
.pipeline-handoff span,
.ledger-head span {
  color: var(--acc);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.committee-node strong {
  margin-top: 8px;
  color: var(--light);
  font-size: 15px;
}

.pipeline-handoff {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.pipeline-handoff div {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.035);
}

.pipeline-handoff strong {
  color: var(--light);
  font-size: 14px;
}

.pipeline-handoff em {
  color: var(--ink-faint);
  font-family: var(--f-mono);
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 1px;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background: #111;
}

.proof-strip span {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: #101010;
  color: var(--ink-dim);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.11em;
  text-align: center;
  text-transform: uppercase;
}

.targeting-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(340px, 0.72fr) minmax(320px, 0.68fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}

.section-intro h2,
.product-copy h2,
.result-grid h2,
.faq-intro h2,
.cta-split h2 {
  margin-top: 16px;
  font-size: clamp(38px, 5.5vw, 72px);
}

.section-intro p:not(.section-label),
.product-copy > p,
.result-grid p,
.cta-copy p {
  margin-top: 20px;
  color: #555;
  font-size: 18px;
}

.target-stack {
  display: grid;
  gap: 12px;
}

.target-stack article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 18px;
  background: var(--light);
}

.target-stack span,
.product-list span {
  color: #777;
  font-family: var(--f-mono);
  font-size: 12px;
}

.target-stack h3,
.content-cards h3 {
  font-size: 24px;
  letter-spacing: -0.025em;
}

.target-stack p,
.content-cards p,
.product-list p {
  margin-top: 8px;
  color: #666;
}

.product-section .product-list p {
  color: var(--ink-dim);
}

.target-visual {
  position: sticky;
  top: 110px;
  overflow: hidden;
  padding: 18px;
  color: var(--ink);
}

.matrix-row {
  display: grid;
  grid-template-columns: 1fr 54px auto;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 0;
}

.matrix-row.high {
  color: var(--light);
}

.matrix-row span {
  color: var(--ink-dim);
}

.matrix-row strong {
  color: var(--light);
  font-family: var(--f-display);
  font-size: 31px;
  text-align: right;
}

.matrix-row em,
.matrix-head span {
  color: var(--ink-faint);
  font-family: var(--f-mono);
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.matrix-row.high em {
  color: var(--acc);
}

.matrix-board {
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 4px 18px;
  background: rgba(255, 255, 255, 0.035);
}

.matrix-head {
  display: grid;
  grid-template-columns: 1fr 54px auto;
  gap: 14px;
  padding: 14px 0;
}

.matrix-note {
  margin-top: 18px;
  border-radius: 12px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(236, 248, 110, 0.95), rgba(216, 205, 183, 0.72));
  color: #111;
  font-weight: 600;
}

.product-section {
  background:
    radial-gradient(circle at 82% 18%, rgba(236, 248, 110, 0.16), transparent 28%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px) 0 0 / 84px 84px,
    #101010;
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
}

.funnel-card {
  border: 1px solid var(--hairline);
  border-radius: 20px;
  padding: 18px;
  background: var(--dark-2);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

.account-room {
  min-height: 580px;
  display: grid;
  align-items: center;
  border-radius: 22px;
  padding: clamp(22px, 4vw, 46px);
  background:
    radial-gradient(circle at 24% 18%, rgba(236, 248, 110, 0.42), transparent 24%),
    linear-gradient(135deg, #111, #252418);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.2);
}

.account-room .funnel-card {
  overflow: hidden;
  background: rgba(10, 10, 10, 0.84);
}

.account-room-grid {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.window-bar {
  display: flex;
  gap: 7px;
  padding-bottom: 16px;
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.funnel-stage {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.04);
}

.stage-wide {
  width: 100%;
}

.stage-mid {
  width: calc(100% - 34px);
  margin-left: 34px;
}

.stage-tight {
  width: calc(100% - 68px);
  margin-left: 68px;
  border-color: rgba(236, 248, 110, 0.42);
}

.funnel-stage strong {
  display: block;
  margin-top: 8px;
  color: var(--light);
  font-family: var(--f-display);
  font-size: 25px;
  line-height: 1;
}

.funnel-stage p,
.product-copy > p {
  color: var(--ink-dim);
}

.funnel-stage p {
  margin-top: 8px;
}

.product-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.product-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
}

.product-list strong {
  display: block;
  color: var(--light);
  font-family: var(--f-display);
  font-size: 24px;
  line-height: 1;
}

.content-section {
  background: var(--light);
  color: #111;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: start;
}

.compact {
  position: sticky;
  top: 110px;
}

.content-cards {
  display: grid;
  gap: 14px;
}

.content-cards article {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--light-2);
}

.result-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.8fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
}

.measurement-panel {
  padding: 18px;
  color: var(--ink);
}

.ledger-panel {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.025)),
    #101010;
}

.ledger-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2px 0 16px;
}

.ledger-head strong {
  color: var(--ink-dim);
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.measure-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0;
}

.ledger-head + .measure-row {
  padding-top: 18px;
}

.measure-row:last-child {
  border-bottom: 0;
  padding-bottom: 4px;
}

.measure-row span {
  color: var(--ink-dim);
  font-weight: 600;
}

.measure-row strong {
  color: var(--light);
  font-family: var(--f-display);
  font-size: 34px;
  line-height: 1;
}

.measure-row em {
  grid-column: 1 / -1;
  color: var(--ink-faint);
  font-family: var(--f-mono);
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.measure-row.muted {
  opacity: 0.55;
}

.measure-row.accent strong {
  color: var(--acc);
}

.faq-section {
  background:
    radial-gradient(circle at 14% 10%, rgba(236, 248, 110, 0.12), transparent 28%),
    var(--dark);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--light);
  font-weight: 700;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--acc);
  font-family: var(--f-mono);
}

details[open] summary::after {
  content: "-";
}

details p {
  padding: 0 24px 24px;
  color: var(--ink-dim);
}

.final-cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(236, 248, 110, 0.14), transparent 34%),
    var(--dark-2);
}

.final-cta::before {
  content: "BLURR";
  position: absolute;
  left: 50%;
  bottom: -0.28em;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.035);
  font-family: var(--f-display);
  font-size: clamp(120px, 24vw, 360px);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.cta-split {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-block: clamp(42px, 6vw, 76px);
}

.cta-copy p {
  color: var(--ink-dim);
}

@media (max-width: 1040px) {
  .targeting-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section-intro {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .site-nav {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    min-height: 40px;
    padding-inline: 14px;
  }

  .hero {
    min-height: auto;
  }

  .hero-rail {
    display: none;
  }

  .hero-grid,
  .targeting-grid,
  .product-grid,
  .content-grid,
  .result-grid,
  .faq-grid,
  .cta-split {
    grid-template-columns: 1fr;
  }

  .campaign-panel,
  .target-visual,
  .measurement-panel {
    width: 100%;
  }

  .target-visual {
    position: static;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip span {
    min-height: 52px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .compact {
    position: static;
  }

  .stage-mid,
  .stage-tight {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 560px) {
  .hero h1 {
    font-size: clamp(42px, 14vw, 64px);
  }

  .hero-actions,
  .hero-note {
    flex-direction: column;
  }

  .btn,
  .nav-cta {
    width: 100%;
  }

  .campaign-metrics {
    grid-template-columns: 1fr;
  }

  .committee-map,
  .pipeline-handoff div,
  .matrix-row,
  .matrix-head {
    grid-template-columns: 1fr;
  }

  .committee-map::before {
    display: none;
  }

  .committee-node {
    min-height: 104px;
  }

  .pipeline-handoff em,
  .matrix-row strong {
    text-align: left;
  }

  .target-stack article,
  .product-list li {
    grid-template-columns: 1fr;
  }

  .measure-row {
    grid-template-columns: 1fr;
  }
}

/* Component-library pass: HeroSplitReversed + FeaturesShowcase variants */
.linkedin-page .hero-split-reversed {
  min-height: auto;
  padding-block: clamp(84px, 10vw, 136px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 52%),
    radial-gradient(circle at 24% 24%, rgba(216, 205, 183, 0.13), transparent 26%),
    radial-gradient(circle at 84% 74%, rgba(236, 248, 110, 0.16), transparent 26%),
    var(--dark);
}

.linkedin-page .hero-split-reversed .hero-grid {
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1fr);
  gap: clamp(42px, 7vw, 110px);
}

.linkedin-page .hero-split-reversed .hero-copy {
  order: 2;
}

.linkedin-page .hero-split-reversed .reversed-media-panel {
  order: 1;
  position: relative;
  min-height: 560px;
  padding: clamp(18px, 3vw, 26px);
  border-radius: 26px;
  background:
    radial-gradient(circle at 76% 12%, rgba(236, 248, 110, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    #101010;
}

.linkedin-page .hero-split-reversed .reversed-media-panel::before {
  content: "";
  position: absolute;
  inset: 24px -18px -18px 24px;
  z-index: -1;
  border: 1px solid rgba(236, 248, 110, 0.28);
  border-radius: 26px;
}

.linkedin-page .hero-split-reversed h1 {
  max-width: 760px;
  font-size: clamp(48px, 7.2vw, 96px);
  color: #f2f2f2;
  text-shadow: none;
}

.linkedin-page .hero-split-reversed .audience-card {
  min-height: 250px;
  display: grid;
  align-content: end;
  background:
    radial-gradient(circle at 22% 16%, rgba(236, 248, 110, 0.24), transparent 28%),
    linear-gradient(135deg, rgba(216, 205, 183, 0.16), rgba(255, 255, 255, 0.035));
}

.linkedin-page .hero-split-reversed .audience-card strong {
  font-size: clamp(34px, 4.6vw, 54px);
}

.linkedin-page .hero-split-reversed .campaign-metrics {
  grid-template-columns: 1fr;
}

.linkedin-page .hero-split-reversed .campaign-metrics div {
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: center;
}

.linkedin-page .hero-split-reversed .campaign-metrics dd {
  margin-top: 0;
}

.linkedin-page .hero-split-reversed .handoff-list {
  display: grid;
  gap: 4px;
}

.linkedin-page .features-showcase-section {
  background:
    radial-gradient(circle at 16% 14%, rgba(236, 248, 110, 0.16), transparent 26%),
    linear-gradient(180deg, #fff, var(--light-2));
}

.linkedin-page .features-showcase-section .content-grid {
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 0.92fr);
}

.linkedin-page .features-showcase-section .compact {
  position: sticky;
  top: 110px;
}

.linkedin-page .features-showcase-section .content-cards {
  counter-reset: feature;
}

.linkedin-page .features-showcase-section .content-cards article {
  position: relative;
  min-height: 180px;
  padding-left: clamp(70px, 8vw, 96px);
  border-radius: 0;
  border-inline: 0;
  border-top: 1px solid #dedbd0;
  background: transparent;
}

.linkedin-page .features-showcase-section .content-cards article::before {
  counter-increment: feature;
  content: "0" counter(feature);
  position: absolute;
  left: 0;
  top: 30px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid #d8d5cb;
  border-radius: 50%;
  color: #111;
  font-family: var(--f-mono);
  font-size: 11px;
}

.linkedin-page .features-showcase-section .content-cards article:first-child {
  border-top-color: #111;
}

.linkedin-page .features-showcase-section .content-cards article:first-child::after {
  content: "Active message layer";
  position: absolute;
  right: 0;
  top: 30px;
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--acc);
  color: #111;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .linkedin-page .hero-split-reversed .hero-grid,
  .linkedin-page .features-showcase-section .content-grid {
    grid-template-columns: 1fr;
  }

  .linkedin-page .hero-split-reversed .hero-copy,
  .linkedin-page .hero-split-reversed .reversed-media-panel {
    order: initial;
  }

  .linkedin-page .hero-split-reversed .reversed-media-panel {
    order: -1;
    min-height: auto;
    margin-bottom: 28px;
  }

  .linkedin-page .hero-split-reversed h1 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .linkedin-page .features-showcase-section .compact {
    position: static;
  }
}

@media (max-width: 560px) {
  .linkedin-page .hero-split-reversed .reversed-media-panel {
    min-height: auto;
  }

  .linkedin-page .features-showcase-section .content-cards article {
    padding-left: 0;
    padding-top: 92px;
  }

  .linkedin-page .features-showcase-section .content-cards article::before {
    top: 22px;
  }

  .linkedin-page .features-showcase-section .content-cards article:first-child::after {
    left: 62px;
    right: auto;
  }
}
