:root {
  --paper: #f3efe7;
  --paper-bright: #fffdf8;
  --ink: #0b0b0b;
  --ink-soft: #171717;
  --orange: #ff5a36;
  --orange-deep: #e84321;
  --muted: #68645e;
  --line: rgba(11, 11, 11, 0.18);
  --white-line: rgba(255, 253, 248, 0.2);
  --display: Arial, "Helvetica Neue", Helvetica, sans-serif;
  --mono: "DejaVu Sans Mono", "SFMono-Regular", Consolas, monospace;
  --shell: 1440px;
  --radius: 22px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--ink);
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--display);
  font-size: 16px;
  line-height: 1.45;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

::selection {
  color: var(--paper-bright);
  background: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: var(--paper-bright);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(calc(100% - 64px), var(--shell));
  margin-inline: auto;
}

.scene {
  position: relative;
  isolation: isolate;
  width: 100%;
  overflow: hidden;
}

.scene--paper {
  color: var(--ink);
  background: var(--paper);
}

.scene--ink {
  color: var(--paper-bright);
  background: var(--ink);
}

.scene--orange {
  color: var(--ink);
  background: var(--orange);
}

.system-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.08em;
}

.system-label--orange {
  color: var(--orange);
}

.status-dot,
.status-beacon,
.ready-state i,
.running-state i,
.automated-state i {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 90, 54, 0.15);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 58px;
  padding: 0 24px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button--primary {
  color: var(--paper-bright);
  background: var(--orange);
  box-shadow: 5px 5px 0 var(--ink);
}

.button--primary:hover {
  box-shadow: 8px 8px 0 var(--ink);
}

.button--dark {
  color: var(--paper-bright);
  background: var(--ink);
  box-shadow: 6px 6px 0 var(--orange);
}

.button--mini {
  min-height: 46px;
  padding: 0 20px;
  color: var(--paper-bright);
  background: var(--ink);
  border-width: 1px;
  font-size: 13px;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 14px;
  left: 50%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - 32px), 1440px);
  min-height: 66px;
  padding: 9px 10px 9px 20px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid rgba(11, 11, 11, 0.16);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(11, 11, 11, 0.08);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: min-height 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  min-height: 58px;
  background: rgba(255, 253, 248, 0.94);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.signal-mark {
  display: grid;
  grid-template-columns: repeat(3, 4px);
  align-items: end;
  gap: 3px;
  width: 18px;
  height: 18px;
}

.signal-mark i {
  display: block;
  background: var(--orange);
}

.signal-mark i:nth-child(1) { height: 7px; }
.signal-mark i:nth-child(2) { height: 17px; }
.signal-mark i:nth-child(3) { height: 11px; }

.site-nav {
  display: flex;
  gap: 34px;
  font-size: 13px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.site-header > .button {
  justify-self: end;
}

.pixel-field {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: min(38vw, 620px);
  height: 52%;
  opacity: 0.17;
  background-image:
    linear-gradient(90deg, var(--ink) 1px, transparent 1px),
    linear-gradient(var(--ink) 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: linear-gradient(125deg, transparent 10%, #000 50%, transparent 92%);
}

.pixel-field--dark {
  left: 0;
  right: auto;
  opacity: 0.12;
  background-image:
    linear-gradient(90deg, var(--orange) 1px, transparent 1px),
    linear-gradient(var(--orange) 1px, transparent 1px);
}

.hero {
  min-height: 960px;
  padding: 142px 0 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
}

.hero__title {
  max-width: 1320px;
  margin: 34px 0 58px;
  font-size: clamp(76px, 9.2vw, 152px);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -0.075em;
}

.hero__title span {
  display: block;
}

.hero__title em,
.scene-heading em,
.compare-scene__title em,
.agency-copy h2 em,
.early-access h2 em {
  color: var(--orange);
  font-style: normal;
}

.hero__shift {
  padding-left: 11.5vw;
}

.hero__lower {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(560px, 1.25fr);
  gap: clamp(44px, 8vw, 130px);
  align-items: end;
}

.hero__copy {
  padding-bottom: 28px;
}

.hero__copy > p:first-child {
  max-width: 560px;
  margin: 0 0 28px;
  color: #35322f;
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.access-form {
  display: flex;
  width: min(100%, 560px);
}

.access-form input {
  min-width: 0;
  flex: 1;
  height: 62px;
  padding: 0 22px;
  color: var(--ink);
  background: var(--paper-bright);
  border: 2px solid var(--ink);
  border-right: 0;
  border-radius: 999px 0 0 999px;
  outline: none;
}

.access-form input::placeholder {
  color: #817d75;
}

.access-form input:focus {
  box-shadow: inset 0 0 0 2px var(--orange);
}

.access-form input.is-invalid {
  background: #ffe1d9;
}

.access-form .button {
  min-height: 62px;
  margin-left: -2px;
  border-radius: 0 999px 999px 0;
  box-shadow: none;
  white-space: nowrap;
}

.access-form .button:hover {
  box-shadow: inset 0 -5px 0 var(--orange-deep);
}

.form-message {
  min-height: 20px;
  margin: 12px 0 0;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.form-message.is-success { color: #176d45; }
.form-message.is-error { color: #9a2716; }

.campaign-entry {
  position: relative;
  padding: 28px;
  background: var(--paper-bright);
  border: 3px solid var(--ink);
  border-radius: 26px;
  box-shadow: 14px 14px 0 var(--orange);
  transform: rotate(-1.2deg);
  transition: transform 320ms cubic-bezier(.2,.8,.2,1), box-shadow 320ms ease;
}

.campaign-entry:hover,
.campaign-entry.is-connected {
  box-shadow: 19px 19px 0 var(--orange);
  transform: rotate(0deg) translateY(-5px);
}

.tape {
  position: absolute;
  z-index: 2;
  top: -17px;
  left: 50%;
  width: 138px;
  height: 34px;
  background: rgba(255, 90, 54, 0.82);
  transform: translateX(-50%) rotate(-3deg);
}

.tape--dark {
  background: rgba(11, 11, 11, 0.88);
}

.campaign-entry__head,
.system-console__top,
.official-template__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.ready-state,
.running-state {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.campaign-entry__url {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 26px 0 22px;
  padding: 19px 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-family: var(--mono);
  font-size: 13px;
}

.campaign-entry__url span { color: var(--muted); }

.campaign-entry__scan {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
}

.campaign-entry__scan div {
  display: grid;
  gap: 6px;
  padding: 17px 14px;
  border-right: 1px solid var(--line);
}

.campaign-entry__scan div:first-child { padding-left: 0; }
.campaign-entry__scan div:last-child { border-right: 0; }
.campaign-entry__scan span { color: var(--muted); font-size: 11px; }
.campaign-entry__scan strong { font-size: 14px; }

.campaign-run {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 64px;
  margin-top: 22px;
  padding: 0 22px;
  color: var(--paper-bright);
  background: var(--ink);
  border: 0;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}

.campaign-run:hover { background: var(--orange); }

.hero__handoff {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 54px;
  padding: 0 32px;
  color: var(--paper-bright);
  background: var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.hero__handoff i {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.25);
}

.system-scene {
  padding: 132px 0 126px;
}

.scene-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px 48px;
  align-items: end;
  margin-bottom: 58px;
}

.scene-heading > .system-label {
  grid-column: 1 / -1;
}

.scene-heading h2 {
  margin: 0;
  font-size: clamp(62px, 7vw, 108px);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: -0.07em;
}

.scene-heading > p:last-child {
  max-width: 390px;
  margin: 0 0 8px;
  color: #aaa59d;
  font-size: 18px;
}

.system-console {
  overflow: hidden;
  color: var(--ink);
  background: var(--paper-bright);
  border: 2px solid #3a3936;
  border-radius: 24px;
  box-shadow: 14px 14px 0 var(--orange);
}

.system-console__top {
  min-height: 56px;
  padding: 0 22px;
  border-bottom: 1px solid var(--line);
}

.system-console__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px minmax(0, 1.05fr);
  min-height: 510px;
}

.brief-pane,
.distribution-pane {
  padding: 28px;
}

.brief-pane { border-right: 1px solid var(--line); }
.distribution-pane { border-left: 1px solid var(--line); }

.pane-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.pane-label span {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  color: var(--paper-bright);
  background: var(--ink);
  border-radius: 6px;
}

.whop-source {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: var(--ink);
  border-radius: 15px;
  color: var(--paper-bright);
}

.whop-source__mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  color: var(--ink);
  background: var(--orange);
  border-radius: 12px;
  font-weight: 900;
  transform: rotate(-4deg);
}

.whop-source div:last-child { display: grid; gap: 2px; }
.whop-source small { color: #aaa59d; font-family: var(--mono); font-size: 9px; }
.whop-source strong { font-size: 20px; }

.asset-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.asset-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 0 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 13px;
}

.asset-list b {
  padding: 4px 7px;
  color: var(--orange-deep);
  background: #ffe4dc;
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .08em;
}

.rule-summary {
  display: grid;
  gap: 4px;
  margin-top: 14px;
  padding: 16px;
  border: 2px solid var(--orange);
  border-radius: 12px;
}

.rule-summary strong { font-size: 15px; }
.rule-summary span { color: var(--muted); font-size: 11px; line-height: 1.4; }

.engine-pane {
  position: relative;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 30px 24px;
  background:
    linear-gradient(90deg, rgba(11,11,11,.045) 1px, transparent 1px),
    linear-gradient(rgba(11,11,11,.045) 1px, transparent 1px),
    var(--paper);
  background-size: 14px 14px;
}

.engine-line {
  position: absolute;
  top: 72px;
  bottom: 72px;
  left: 40px;
  width: 3px;
  overflow: hidden;
  background: #c9c4ba;
}

.engine-line i {
  position: absolute;
  inset: 0 0 auto;
  height: 24%;
  background: var(--orange);
  transition: transform 420ms cubic-bezier(.2,.8,.2,1);
  transform: translateY(var(--flow-y, 0%));
}

.engine-step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 0 12px;
  align-items: center;
  min-height: 63px;
  padding: 10px 10px 10px 0;
  opacity: .44;
  transition: opacity 240ms ease, transform 240ms ease;
}

.engine-step b {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  color: var(--paper-bright);
  background: var(--ink);
  border: 3px solid var(--paper);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 9px;
}

.engine-step span {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .07em;
}

.engine-step small {
  grid-column: 2;
  color: var(--muted);
  font-size: 10px;
}

.engine-step.is-active,
.engine-step.is-complete {
  opacity: 1;
}

.engine-step.is-active {
  transform: translateX(5px);
}

.engine-step.is-active b {
  color: var(--ink);
  background: var(--orange);
}

.engine-step.is-complete b::after {
  content: "✓";
  position: absolute;
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: var(--paper-bright);
  background: var(--ink);
}

.distribution-pane {
  background: var(--paper-bright);
}

.clip-row {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.clip-thumb {
  position: relative;
  width: 46px;
  height: 70px;
  overflow: hidden;
  background: var(--ink);
  border-radius: 8px;
}

.clip-thumb::before {
  content: "";
  position: absolute;
  inset: 8px 7px 28px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50% 50% 42% 42%;
}

.clip-thumb::after {
  content: "";
  position: absolute;
  right: 7px;
  bottom: 10px;
  left: 7px;
  height: 13px;
  background: var(--orange);
  box-shadow: 0 -5px 0 rgba(255,255,255,.85);
}

.clip-thumb--two::after { background: var(--paper); }
.clip-thumb span { position: absolute; z-index: 2; top: 4px; left: 5px; color: white; font: 7px var(--mono); }

.clip-row > div:nth-child(2) { display: grid; gap: 3px; }
.clip-row strong { font-size: 14px; }
.clip-row small { color: var(--muted); font-size: 10px; }

.pass-badge {
  padding: 5px 7px;
  color: #176d45;
  background: #dff4e9;
  border-radius: 5px;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 800;
}

.review-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin: 18px 0;
  padding: 14px;
  background: var(--paper);
  border-radius: 10px;
}

.review-line > div { display: grid; gap: 3px; }
.review-line span { font-size: 12px; font-weight: 800; }
.review-line small { color: var(--muted); font-size: 9px; }
.review-state { color: var(--orange-deep); font: 800 9px var(--mono) !important; letter-spacing: .06em; }

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.platform-grid div {
  display: grid;
  justify-items: center;
  gap: 5px;
  padding: 14px 7px;
  color: var(--paper-bright);
  background: var(--ink);
  border-radius: 10px;
  text-align: center;
}

.platform-grid i {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: var(--ink);
  background: var(--orange);
  border-radius: 6px;
  font-style: normal;
  font-weight: 900;
}

.platform-grid span { font-size: 10px; font-weight: 800; }
.platform-grid strong { color: #aaa59d; font-size: 8px; font-weight: 600; }

.system-console__foot {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 13px;
  min-height: 58px;
  padding: 0 22px;
  color: var(--paper-bright);
  background: var(--ink);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .06em;
}

.system-console__foot strong { color: var(--orange); }
.system-console__foot > span:last-child { justify-self: end; color: #8f8b84; }

/* Live product workspace */
.product-ui {
  --stage-progress: 0%;
  overflow: hidden;
  color: var(--ink);
  background: #f8f5ef;
  border: 2px solid #3a3936;
  border-radius: 26px;
  box-shadow: 14px 14px 0 var(--orange);
}

.product-ui button {
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

.product-ui__bar {
  display: grid;
  grid-template-columns: 76px 1fr auto 48px;
  align-items: center;
  min-height: 54px;
  background: var(--paper-bright);
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
}

.product-ui__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 100%;
  color: var(--paper-bright);
  background: var(--ink);
  font-size: 10px;
}

.product-ui__brand .signal-mark {
  grid-template-columns: repeat(3, 3px);
  gap: 2px;
  width: 13px;
  height: 14px;
}

.product-ui__brand .signal-mark i:nth-child(1) { height: 5px; }
.product-ui__brand .signal-mark i:nth-child(2) { height: 13px; }
.product-ui__brand .signal-mark i:nth-child(3) { height: 8px; }

.product-ui__crumb {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 22px;
  font-size: 9px;
  letter-spacing: .06em;
}

.product-ui__crumb span,
.product-ui__crumb i { color: #8e8981; font-style: normal; }

.product-ui__state {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: #eef8f2;
  border: 1px solid #cae8d7;
  border-radius: 999px;
  color: #176d45;
  font-size: 8px;
  letter-spacing: .07em;
}

.product-ui__state .status-beacon,
.signal-board__status .status-beacon {
  width: 7px;
  height: 7px;
  background: #27a765;
  box-shadow: 0 0 0 4px rgba(39,167,101,.13);
}

.product-ui__more {
  height: 100%;
  font-weight: 900;
  letter-spacing: 2px;
}

.product-ui__shell {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
}

.product-rail {
  display: flex;
  flex-direction: column;
  min-height: 670px;
  padding: 18px 10px 12px;
  background: var(--ink-soft);
}

.product-rail button {
  display: grid;
  justify-items: center;
  gap: 4px;
  min-height: 58px;
  padding: 8px 2px;
  color: #77736d;
  border-radius: 10px;
}

.product-rail button:hover,
.product-rail button.is-current {
  color: var(--paper-bright);
  background: #2a2927;
}

.product-rail button.is-current span { color: var(--orange); }
.product-rail button span { font-size: 16px; line-height: 1; }
.product-rail button small { font: 7px var(--mono); letter-spacing: .03em; }
.product-rail__last { margin-top: auto; }

.campaign-workspace {
  min-width: 0;
  padding: 25px 26px 28px;
}

.campaign-workspace__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 20px;
}

.campaign-workspace__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
  font: 700 8px var(--mono);
  letter-spacing: .08em;
}

.campaign-workspace__eyebrow span { color: #77736d; }
.campaign-workspace__eyebrow b { padding: 4px 6px; color: var(--orange-deep); background: #ffe2d8; border-radius: 4px; }

.campaign-workspace__head h3 {
  margin: 0;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -.045em;
}

.campaign-workspace__actions {
  display: flex;
  gap: 8px;
}

.campaign-workspace__actions button {
  min-height: 36px;
  padding: 0 12px;
  background: var(--paper-bright);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 10px;
  font-weight: 800;
}

.campaign-workspace__actions button b {
  display: inline-grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  margin-left: 6px;
  color: var(--paper-bright);
  background: var(--ink);
  border-radius: 5px;
  font-size: 8px;
}

.campaign-workspace__actions .campaign-pause {
  color: #176d45;
  background: #eef8f2;
  border-color: #cae8d7;
}

.campaign-pause i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  background: #27a765;
  border-radius: 50%;
}

.campaign-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 16px;
  background: var(--paper-bright);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.campaign-kpis > div {
  display: grid;
  gap: 3px;
  padding: 14px 16px;
  border-right: 1px solid var(--line);
}

.campaign-kpis > div:last-child { border-right: 0; }
.campaign-kpis span { color: #827d75; font: 700 7px var(--mono); letter-spacing: .07em; }
.campaign-kpis strong { font-size: 22px; line-height: 1; }
.campaign-kpis small { color: var(--muted); font-size: 9px; }
.campaign-kpis > div.is-updating strong { animation: kpi-pop 360ms cubic-bezier(.2,.8,.2,1); }

@keyframes kpi-pop {
  50% { color: var(--orange-deep); transform: translateY(-2px); }
}

.campaign-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  min-height: 453px;
  background: var(--paper-bright);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.execution-card {
  min-width: 0;
  padding: 20px 20px 18px;
  border-right: 1px solid var(--line);
}

.execution-card__head,
.control-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.execution-card__head > div { display: grid; gap: 4px; }
.execution-card__head small { color: var(--muted); font-size: 10px; }

.execution-progress {
  white-space: nowrap;
  color: #8a857d;
  font: 800 9px var(--mono);
}

.execution-progress b { color: var(--orange-deep); font-size: 13px; }

.workflow-stages {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin: 20px 0 17px;
}

.workflow-stages::before,
.workflow-stages::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 13px;
  right: 10%;
  left: 10%;
  height: 2px;
  background: #d7d2c9;
}

.workflow-stages::after {
  right: auto;
  width: calc(var(--stage-progress) * .8);
  background: var(--orange);
  transition: width 420ms cubic-bezier(.2,.8,.2,1);
}

.workflow-stage {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 5px;
  padding: 0;
  font: 700 8px var(--mono);
  letter-spacing: .03em;
  opacity: .42;
  transition: opacity 220ms ease, transform 220ms ease;
}

.workflow-stage b {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--paper-bright);
  background: var(--ink);
  border: 3px solid var(--paper-bright);
  border-radius: 50%;
  font-size: 7px;
  box-shadow: 0 0 0 1px #d7d2c9;
}

.workflow-stage.is-complete,
.workflow-stage.is-active { opacity: 1; }
.workflow-stage.is-active { transform: translateY(-2px); }
.workflow-stage.is-active b { color: var(--ink); background: var(--orange); box-shadow: 0 0 0 2px rgba(255,90,54,.2); }
.workflow-stage.is-complete b { font-size: 0; }
.workflow-stage.is-complete b::after { content: "✓"; font-size: 9px; }

.stage-viewport {
  position: relative;
  min-height: 317px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(11,11,11,.035) 1px, transparent 1px),
    linear-gradient(rgba(11,11,11,.035) 1px, transparent 1px),
    var(--paper);
  background-size: 14px 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
}

.stage-panel {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  grid-template-rows: auto 1fr;
  gap: 12px 24px;
  padding: 22px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 320ms ease, transform 420ms cubic-bezier(.2,.8,.2,1);
}

.stage-panel.is-active { opacity: 1; transform: translateY(0); }
.stage-panel[hidden] { display: none; }

.stage-panel__intro {
  grid-row: 1 / span 2;
  align-self: center;
}

.stage-panel__intro > span,
.next-strategy > span,
.schedule-window > span,
.connected-stack > span {
  color: var(--orange-deep);
  font: 800 7px var(--mono);
  letter-spacing: .08em;
}

.stage-panel__intro h4 {
  max-width: 330px;
  margin: 9px 0 10px;
  font-size: clamp(25px, 2.5vw, 38px);
  line-height: .93;
  letter-spacing: -.055em;
}

.stage-panel__intro p {
  max-width: 300px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.document-stack {
  display: grid;
  gap: 7px;
}

.document-stack > div {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 10px;
  align-items: center;
  min-height: 48px;
  padding: 7px 10px;
  background: var(--paper-bright);
  border: 1px solid var(--line);
  border-radius: 9px;
}

.document-stack i {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--paper-bright);
  background: var(--ink);
  border-radius: 7px;
  font-style: normal;
  font-size: 10px;
  font-weight: 900;
}

.document-stack span { display: grid; gap: 1px; }
.document-stack small { color: #8c877f; font: 7px var(--mono); }
.document-stack strong { font-size: 10px; }
.document-stack > div > b { padding: 4px 6px; color: #176d45; background: #e1f4e9; border-radius: 4px; font: 800 7px var(--mono); }

.compiled-rules {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  color: var(--paper-bright);
  background: var(--ink);
  border-radius: 10px;
}

.compiled-rules > div { display: flex; align-items: baseline; gap: 6px; white-space: nowrap; }
.compiled-rules > div span { color: var(--orange); font-size: 24px; font-weight: 900; }
.compiled-rules > div strong { font-size: 9px; }
.compiled-rules ul { display: flex; flex-wrap: wrap; gap: 4px; margin: 0; padding: 0; list-style: none; }
.compiled-rules li { padding: 3px 5px; background: #2c2b29; border-radius: 4px; color: #bbb5ac; font: 6px var(--mono); }

.source-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
  padding: 8px 13px;
  color: var(--paper-bright);
  background: var(--ink);
  border-radius: 10px;
}

.source-strip div { display: grid; gap: 1px; }
.source-strip span { font-size: 15px; font-weight: 900; }
.source-strip small { color: #918c84; font: 7px var(--mono); }
.source-strip i { width: 1px; height: 26px; background: #393735; }

.generated-clips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.generated-clip {
  display: grid;
  gap: 4px;
  padding: 8px;
  background: var(--paper-bright);
  border: 1px solid var(--line);
  border-radius: 9px;
}

.generated-clip__visual {
  position: relative;
  display: block;
  height: 69px;
  overflow: hidden;
  background: var(--ink);
  border-radius: 6px;
}

.generated-clip__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.generated-clip__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 52%, rgba(0, 0, 0, .7));
}

.generated-clip__visual::before {
  display: none;
}

.generated-clip__visual i {
  position: absolute;
  right: 8px;
  bottom: 10px;
  left: 8px;
  height: 7px;
  background: var(--orange);
  box-shadow: 0 -5px 0 var(--paper-bright);
}

.generated-clip__visual--alt i { right: 18px; background: #f5c56b; }
.generated-clip__visual--last i { left: 16px; background: #a9d8c0; }
.generated-clip__visual b { position: absolute; z-index: 2; right: 5px; bottom: 5px; color: var(--paper-bright); font: 7px var(--mono); }
.generated-clip strong { font-size: 8px; }
.generated-clip small { color: var(--muted); font-size: 6px; }

.compliance-score {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px;
  color: var(--paper-bright);
  background: var(--ink);
  border-radius: 10px;
}

.compliance-score span { display: flex; align-items: baseline; gap: 8px; }
.compliance-score span b { color: #57d18f; font-size: 23px; }
.compliance-score span small { color: #aaa59d; font-size: 8px; }
.compliance-score > i { padding: 5px 7px; color: #176d45; background: #dff4e9; border-radius: 5px; font: 800 7px var(--mono); }

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
}

.compliance-grid > div {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px;
  background: var(--paper-bright);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.compliance-grid i {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  color: #176d45;
  background: #dff4e9;
  border-radius: 50%;
  font-style: normal;
  font-size: 9px;
  font-weight: 900;
}

.compliance-grid span { display: grid; gap: 2px; }
.compliance-grid strong { font-size: 8px; }
.compliance-grid small { color: var(--muted); font-size: 7px; }

.distribution-board {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 8px;
  grid-row: 1 / span 2;
  grid-column: 2;
}

.distribution-accounts {
  display: grid;
  gap: 7px;
}

.distribution-accounts > div {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 8px;
  align-items: center;
  min-height: 52px;
  padding: 8px;
  background: var(--paper-bright);
  border: 1px solid var(--line);
  border-radius: 9px;
}

.distribution-accounts i,
.connected-stack i {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--paper-bright);
  background: var(--ink);
  border-radius: 7px;
  font-style: normal;
  font-size: 9px;
  font-weight: 900;
}

.distribution-accounts span { display: grid; }
.distribution-accounts strong { font-size: 9px; }
.distribution-accounts small { color: var(--muted); font-size: 7px; }
.distribution-accounts > div > b { color: var(--orange-deep); font: 800 7px var(--mono); }

.schedule-window {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 13px;
  color: var(--paper-bright);
  background: var(--ink);
  border-radius: 10px;
}

.schedule-window > span { color: #8f8a82; }
.schedule-window > strong { margin: 8px 0 13px; font-size: 17px; }
.schedule-window > div { display: grid; grid-template-columns: repeat(8, 1fr); gap: 3px; }
.schedule-window > div i { height: 34px; background: #302f2d; border-radius: 4px; }
.schedule-window > div i:nth-child(-n+5) { background: var(--orange); }
.schedule-window > div i:nth-child(2), .schedule-window > div i:nth-child(4) { transform: translateY(-5px); }
.schedule-window > small { margin-top: 12px; color: #aaa59d; font-size: 7px; }

.signal-board {
  display: grid;
  gap: 8px;
}

.signal-board__status {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px;
  color: var(--paper-bright);
  background: var(--ink);
  border-radius: 10px;
}

.signal-board__status > div { display: grid; gap: 2px; }
.signal-board__status strong { font-size: 9px; }
.signal-board__status small { color: #99948c; font-size: 7px; }

.signal-stream { display: grid; gap: 5px; }
.signal-stream > div { display: flex; align-items: center; justify-content: space-between; padding: 8px 9px; background: var(--paper-bright); border: 1px solid var(--line); border-radius: 7px; }
.signal-stream span { font-size: 8px; font-weight: 800; }
.signal-stream b { color: #8e8981; font: 700 6px var(--mono); }

.next-strategy {
  padding: 11px;
  background: #ffe2d8;
  border: 1px solid #ffc7b7;
  border-radius: 9px;
}

.next-strategy > div { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 7px; }
.next-strategy b { padding: 5px 6px; color: var(--paper-bright); background: var(--ink); border-radius: 5px; font: 700 6px var(--mono); }

.control-card {
  padding: 20px 16px;
  background: #f3efe7;
}

.control-card__head { padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.control-card__head > b { color: var(--orange-deep); font: 800 7px var(--mono); }

.policy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.policy-row > span { display: grid; gap: 2px; }
.policy-row strong { font-size: 9px; }
.policy-row small { color: var(--muted); font-size: 7px; }

.switch {
  position: relative;
  display: block;
  width: 30px;
  height: 17px;
  flex: 0 0 30px;
  background: #c8c3ba;
  border-radius: 999px;
}

.switch b {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 11px;
  height: 11px;
  background: var(--paper-bright);
  border-radius: 50%;
  transition: transform 240ms ease;
}

.switch.is-on { background: var(--orange); }
.switch.is-on b { transform: translateX(13px); }

.review-note {
  display: grid;
  gap: 3px;
  margin: 16px 0;
  padding: 13px;
  color: var(--paper-bright);
  background: var(--ink);
  border-radius: 10px;
}

.review-note span { color: var(--orange); font: 800 7px var(--mono); }
.review-note strong { font-size: 10px; }
.review-note small { color: #9e9991; font-size: 7px; }

.connected-stack {
  display: grid;
  gap: 9px;
  padding-top: 4px;
}

.connected-stack > span { color: #827d75; }
.connected-stack > div { display: flex; align-items: center; }
.connected-stack i { width: 27px; height: 27px; margin-right: -6px; border: 2px solid var(--paper); border-radius: 50%; }
.connected-stack strong { margin-left: 13px; font-size: 8px; }

.product-ui__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 45px;
  padding: 0 18px;
  color: #8d8880;
  background: var(--ink);
  font: 700 7px var(--mono);
  letter-spacing: .06em;
}

.product-ui__foot > div { display: flex; align-items: center; gap: 10px; }
.product-ui__foot strong { color: var(--orange); }
.product-ui__foot .status-beacon { animation: beacon-pulse 1.6s ease-in-out infinite; }

@keyframes beacon-pulse {
  50% { opacity: .52; box-shadow: 0 0 0 7px rgba(255,90,54,.08); }
}

.compare-scene {
  padding: 112px 0 126px;
}

.compare-scene__title {
  max-width: 1120px;
  margin: 25px 0 58px;
  font-size: clamp(58px, 7vw, 112px);
  font-weight: 900;
  line-height: .88;
  letter-spacing: -.07em;
}

.compare-scene__title em {
  color: var(--paper-bright);
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: 24px;
  align-items: stretch;
}

.manual-side,
.automated-side {
  position: relative;
  min-height: 410px;
  padding: 30px;
  border: 3px solid var(--ink);
  border-radius: 24px;
}

.manual-side {
  background: rgba(255,253,248,.26);
}

.manual-chain {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  align-items: center;
  margin-top: 50px;
}

.manual-chain span {
  padding: 12px 14px;
  background: var(--paper-bright);
  border: 2px solid var(--ink);
  border-radius: 8px;
  font-weight: 800;
  box-shadow: 4px 4px 0 var(--ink);
}

.manual-chain span:nth-of-type(2n) { transform: rotate(1.2deg); }
.manual-chain span:nth-of-type(3n) { transform: rotate(-1.3deg); }
.manual-chain i { font-style: normal; font-weight: 900; }

.automated-side {
  color: var(--paper-bright);
  background: var(--ink);
  box-shadow: 12px 12px 0 var(--paper-bright);
}

.automated-step {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 34px;
}

.automated-step b {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  color: var(--ink);
  background: var(--orange);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 10px;
}

.automated-step strong {
  font-size: clamp(24px, 2.8vw, 42px);
  letter-spacing: -.04em;
}

.automated-line {
  width: 3px;
  height: 34px;
  margin: 4px 0 -29px 21px;
  background: var(--orange);
}

.automated-state {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 36px;
  padding: 17px 18px;
  color: var(--ink);
  background: var(--paper-bright);
  border-radius: 12px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .07em;
}

.automated-side > small {
  display: block;
  margin-top: 13px;
  color: #aaa59d;
  font-size: 11px;
}

.agency-scene {
  padding: 126px 0 136px;
}

.agency-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: clamp(60px, 9vw, 150px);
  align-items: center;
}

.agency-copy h2 {
  margin: 25px 0 30px;
  font-size: clamp(58px, 6.2vw, 98px);
  font-weight: 900;
  line-height: .88;
  letter-spacing: -.07em;
}

.agency-copy > p:nth-of-type(2) {
  max-width: 590px;
  margin: 0;
  color: #3c3935;
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.38;
  letter-spacing: -.025em;
}

.agency-copy blockquote {
  margin: 32px 0;
  padding-left: 18px;
  border-left: 5px solid var(--orange);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: .04em;
}

.official-template {
  position: relative;
  padding: 30px;
  background: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 26px;
  box-shadow: 14px 14px 0 var(--orange);
  color: var(--paper-bright);
  transform: rotate(1deg);
}

.verified-mark {
  padding: 6px 8px;
  color: var(--ink);
  background: var(--orange);
  border-radius: 5px;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .06em;
}

.official-template__brand {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 30px 0 12px;
  color: #aaa59d;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .07em;
}

.official-template__brand i { color: var(--orange); font-style: normal; }

.official-template h3 {
  margin: 0 0 24px;
  font-size: clamp(38px, 4vw, 64px);
  line-height: 1;
  letter-spacing: -.05em;
}

.official-template ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.official-template li {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 13px;
  align-items: center;
  min-height: 66px;
  padding: 10px 15px;
  background: #1d1d1d;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 11px;
}

.official-template li > span {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--orange);
}

.official-template li div { display: grid; gap: 3px; }
.official-template li strong { font-size: 13px; }
.official-template li small { color: #918d86; font-size: 10px; }
.official-template li > b { color: var(--orange); }

.official-template__foot {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.16);
  color: var(--orange);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .07em;
}

.early-access {
  padding: 108px 0 100px;
}

.early-access__inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
}

.early-access h2 {
  margin: 26px 0 24px;
  font-size: clamp(64px, 8vw, 124px);
  font-weight: 900;
  line-height: .86;
  letter-spacing: -.075em;
}

.early-access__copy {
  max-width: 630px;
  margin: 0 0 30px;
  color: #aaa59d;
  font-size: 19px;
}

.early-access__form-wrap {
  width: min(100%, 650px);
}

.access-form--large { width: 100%; max-width: none; }

.early-access .access-form input {
  color: var(--ink);
  background: var(--paper-bright);
  border-color: var(--paper-bright);
}

.early-access .access-form .button {
  border-color: var(--orange);
}

.early-access .form-message.is-success { color: #82e0ad; }
.early-access .form-message.is-error { color: #ff9b84; }

.early-access__note {
  margin-top: 14px;
  color: #77736d;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .06em;
}

.site-footer {
  color: var(--paper-bright);
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,.14);
}

.footer__top,
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer__top {
  min-height: 88px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  font-size: 13px;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 24px;
  color: #aaa59d;
  font-size: 11px;
  font-weight: 800;
}

.footer__links a:hover { color: var(--orange); }

.footer__bottom {
  min-height: 58px;
  color: #77736d;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .04em;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(.2,.8,.2,1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero { min-height: auto; padding-bottom: 120px; }
  .hero__lower { grid-template-columns: 1fr; gap: 42px; }
  .hero__copy { max-width: 720px; }
  .campaign-entry { width: min(100%, 800px); justify-self: end; }
  .system-console__grid { grid-template-columns: 1fr 220px 1fr; }
  .brief-pane, .distribution-pane { padding: 22px; }
  .scene-heading { grid-template-columns: 1fr; }
  .scene-heading > p:last-child { max-width: 620px; }
  .compare-grid { grid-template-columns: 1fr; }
  .manual-side, .automated-side { min-height: 330px; }
  .agency-grid { gap: 60px; }
  .campaign-layout { grid-template-columns: minmax(0, 1fr) 220px; }
  .campaign-workspace { padding-inline: 20px; }
  .stage-panel { grid-template-columns: .72fr 1.28fr; gap: 12px 18px; padding: 18px; }
  .stage-panel__intro h4 { font-size: 29px; }
  .distribution-board { grid-template-columns: 1fr; }
  .schedule-window { min-height: 108px; }
}

@media (max-width: 850px) {
  .shell { width: min(calc(100% - 36px), var(--shell)); }
  .site-header { grid-template-columns: 1fr auto; }
  .site-nav { display: none; }
  .hero { padding-top: 130px; }
  .hero__title { margin-bottom: 45px; }
  .hero__shift { padding-left: 0; }
  .system-console__grid { grid-template-columns: 1fr; }
  .brief-pane, .distribution-pane { border: 0; }
  .brief-pane { border-bottom: 1px solid var(--line); }
  .distribution-pane { border-top: 1px solid var(--line); }
  .engine-pane { grid-template-columns: repeat(5, minmax(88px, 1fr)); overflow-x: auto; align-items: start; }
  .engine-line { top: 47px; right: 44px; bottom: auto; left: 44px; width: auto; height: 3px; }
  .engine-line i { width: 20%; height: 3px; transform: translateX(var(--flow-x, 0%)); }
  .engine-step { grid-template-columns: 1fr; justify-items: center; min-width: 100px; padding: 0; text-align: center; }
  .engine-step small { grid-column: 1; }
  .engine-step.is-active { transform: translateY(-4px); }
  .system-console__foot { grid-template-columns: auto 1fr; padding-block: 14px; }
  .system-console__foot > span:last-child { grid-column: 1 / -1; justify-self: start; }
  .agency-grid { grid-template-columns: 1fr; }
  .official-template { width: min(100%, 680px); justify-self: end; }
  .product-ui__shell { grid-template-columns: 1fr; }
  .product-rail { display: none; }
  .campaign-layout { grid-template-columns: 1fr; }
  .execution-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .control-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 18px;
  }
  .control-card__head { grid-column: 1 / -1; }
  .review-note, .connected-stack { margin: 14px 0 0; }
  .connected-stack { padding: 13px; background: var(--paper-bright); border-radius: 10px; }
}

@media (max-width: 620px) {
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .site-header { top: 8px; width: calc(100% - 16px); min-height: 58px; padding: 7px 8px 7px 14px; border-radius: 16px; }
  .site-header .wordmark > span:last-child { display: none; }
  .button--mini { min-height: 42px; padding: 0 15px; font-size: 11px; }
  .hero { padding-top: 108px; padding-bottom: 96px; }
  .hero__title { margin: 25px 0 35px; font-size: clamp(54px, 18vw, 84px); line-height: .86; }
  .hero__copy > p:first-child { font-size: 17px; }
  .access-form { display: grid; gap: 10px; }
  .access-form input,
  .access-form .button { width: 100%; height: 56px; min-height: 56px; margin: 0; border: 2px solid var(--ink); border-radius: 999px; }
  .campaign-entry { padding: 20px; border-width: 2px; border-radius: 20px; box-shadow: 8px 8px 0 var(--orange); transform: none; }
  .campaign-entry:hover, .campaign-entry.is-connected { box-shadow: 10px 10px 0 var(--orange); transform: translateY(-3px); }
  .campaign-entry__head { align-items: flex-start; }
  .campaign-entry__scan { grid-template-columns: 1fr; }
  .campaign-entry__scan div { padding: 12px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .campaign-entry__scan div:last-child { border-bottom: 0; }
  .hero__handoff { padding: 0 16px; font-size: 8px; }
  .system-scene, .agency-scene { padding: 88px 0 96px; }
  .compare-scene { padding: 82px 0 92px; }
  .scene-heading { margin-bottom: 36px; }
  .scene-heading h2, .compare-scene__title, .agency-copy h2 { font-size: clamp(52px, 15vw, 76px); }
  .system-console { border-radius: 18px; box-shadow: 7px 7px 0 var(--orange); }
  .system-console__top { padding: 0 15px; }
  .brief-pane, .distribution-pane { padding: 18px; }
  .engine-pane { padding: 25px 18px; }
  .clip-row { grid-template-columns: 48px 1fr; }
  .pass-badge { grid-column: 2; width: fit-content; }
  .platform-grid { grid-template-columns: 1fr; }
  .platform-grid div { grid-template-columns: auto 1fr auto; justify-items: start; text-align: left; }
  .manual-side, .automated-side { min-height: 0; padding: 21px; border-radius: 18px; }
  .manual-chain { margin-top: 32px; }
  .manual-chain span { padding: 10px; font-size: 13px; box-shadow: 3px 3px 0 var(--ink); }
  .automated-step strong { font-size: 25px; }
  .official-template { padding: 21px; border-radius: 18px; box-shadow: 8px 8px 0 var(--orange); transform: none; }
  .official-template__top { align-items: flex-start; }
  .official-template li { grid-template-columns: 26px 1fr auto; }
  .early-access { padding: 86px 0 76px; }
  .early-access h2 { font-size: clamp(56px, 17vw, 82px); }
  .early-access__copy { font-size: 16px; }
  .early-access .access-form input { border-color: var(--paper-bright); }
  .early-access .access-form .button { border-color: var(--orange); }
  .footer__top, .footer__bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 20px; }
  .footer__links { justify-content: flex-start; gap: 15px 20px; }
  .footer__bottom { min-height: 78px; line-height: 1.6; }
  .product-ui { border-radius: 18px; box-shadow: 7px 7px 0 var(--orange); }
  .product-ui__bar { grid-template-columns: 50px 1fr auto 36px; min-height: 49px; }
  .product-ui__brand strong { display: none; }
  .product-ui__crumb { gap: 6px; padding: 0 10px; font-size: 7px; }
  .product-ui__crumb span { display: none; }
  .product-ui__state { padding: 7px; }
  .product-ui__state strong { display: none; }
  .campaign-workspace { padding: 17px 13px 18px; }
  .campaign-workspace__head { align-items: center; margin-bottom: 15px; }
  .campaign-workspace__head h3 { font-size: 27px; }
  .campaign-workspace__eyebrow { font-size: 6px; }
  .campaign-workspace__actions button:first-child { display: none; }
  .campaign-kpis { grid-template-columns: repeat(2, 1fr); }
  .campaign-kpis > div { min-height: 79px; padding: 12px; border-bottom: 1px solid var(--line); }
  .campaign-kpis > div:nth-child(2) { border-right: 0; }
  .campaign-kpis > div:nth-child(n+3) { border-bottom: 0; }
  .campaign-kpis strong { font-size: 19px; }
  .execution-card { padding: 16px 12px 13px; }
  .execution-card__head { align-items: center; }
  .execution-card__head small { max-width: 220px; font-size: 8px; }
  .workflow-stages { margin: 18px 0 14px; }
  .workflow-stage { font-size: 6px; }
  .workflow-stage b { width: 25px; height: 25px; }
  .workflow-stages::before, .workflow-stages::after { top: 12px; }
  .stage-viewport { min-height: 568px; }
  .stage-panel { grid-template-columns: 1fr; grid-template-rows: auto; align-content: start; gap: 13px; padding: 17px; }
  .stage-panel__intro { grid-row: auto; }
  .stage-panel__intro h4 { max-width: 290px; margin-block: 8px; font-size: 31px; }
  .stage-panel__intro p { font-size: 10px; }
  .document-stack, .source-strip, .generated-clips, .compliance-score, .compliance-grid, .distribution-board, .signal-board, .next-strategy { grid-column: 1; grid-row: auto; }
  .compiled-rules { flex-direction: column; align-items: flex-start; }
  .generated-clips { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .generated-clip { padding: 6px; }
  .generated-clip__visual { height: 76px; }
  .distribution-board { grid-template-columns: 1fr; }
  .schedule-window { min-height: 125px; }
  .control-card { grid-template-columns: 1fr; padding: 17px 14px; }
  .control-card__head { grid-column: 1; }
  .review-note { margin-top: 14px; }
  .product-ui__foot { align-items: flex-start; flex-direction: column; justify-content: center; min-height: 62px; padding-block: 10px; }
  .product-ui__foot > span { font-size: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.001ms !important; animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
  .js .reveal { opacity: 1; transform: none; }
}
