@font-face {
  font-family: "Satoshi";
  src: url("./assets/ad-placements/hsw/fonts/Satoshi-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("./assets/ad-placements/hsw/fonts/Satoshi-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("./assets/ad-placements/hsw/fonts/Satoshi-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --pa-violet: #6224f8;
  --pa-violet-deep: #3c0ca6;
  --pa-violet-soft: #efe7fe;
  --pa-teal: #22c8c8;
  --pa-lime: #c6e82c;

  --ink-900: #0a0a12;
  --ink-700: #2a2a34;
  --ink-500: #565662;
  --ink-300: #8e8e98;
  --ink-100: #c8c8cf;

  --paper: #f0eee9;
  --paper-cream: #f7f6f1;
  --paper-warm: #ebe8e0;
  --white: #ffffff;
  --ink-on-dark-soft: rgba(247, 247, 243, 0.74);
  --ink-on-dark-faint: rgba(247, 247, 243, 0.52);

  --line: #d8d4ca;
  --line-soft: #e2dfd6;
  --line-dark: rgba(247, 247, 243, 0.14);

  --shadow-flat: 0 1px 0 rgba(11, 14, 22, 0.04);
  --shadow-card: 0 18px 48px rgba(11, 14, 22, 0.06);
  --shadow-hover: 0 22px 56px rgba(11, 14, 22, 0.1);

  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --reveal-stagger: 60ms;

  --font: "Satoshi", "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-num: "Satoshi", "Inter", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
  border-radius: 0 !important;
}

html {
  scroll-behavior: smooth;
}

#audience,
#programs,
#placements,
#creatives,
#editorial,
#specs,
#request {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink-900);
  font-family: var(--font);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--ink-900);
  color: var(--white);
  padding: 10px 14px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 16px 28px;
  background: rgba(240, 238, 233, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: saturate(120%) blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 160px;
  text-decoration: none;
}

.brand img {
  width: 28px;
  height: auto;
}

.brand span {
  color: var(--ink-900);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.005em;
}

nav {
  display: flex;
  justify-content: center;
  gap: 4px;
}

nav a,
.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.1;
  transition: background 200ms var(--ease-out), color 200ms var(--ease-out),
    border-color 200ms var(--ease-out), transform 200ms var(--ease-out);
}

nav a {
  color: var(--ink-500);
}

nav a:hover,
nav a:focus-visible {
  color: var(--ink-900);
  background: var(--paper-cream);
  border-color: var(--line);
  outline: none;
}

.header-cta,
.button-primary {
  background: var(--ink-900);
  color: var(--white);
  border-color: var(--ink-900);
}

.header-cta:hover,
.header-cta:focus-visible,
.button-primary:hover,
.button-primary:focus-visible {
  background: var(--pa-violet);
  border-color: var(--pa-violet);
  transform: translateY(-1px);
  outline: none;
}

.button-secondary {
  background: transparent;
  border-color: var(--ink-900);
  color: var(--ink-900);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--ink-900);
  color: var(--white);
  transform: translateY(-1px);
  outline: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  gap: 64px;
  align-items: center;
  padding: 112px 6vw 80px;
}

.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 22%;
  width: 620px;
  height: 620px;
  transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, rgba(98, 36, 248, 0.08), rgba(98, 36, 248, 0));
  pointer-events: none;
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow,
.small-label {
  display: inline-block;
  margin: 0 0 20px;
  color: var(--pa-violet);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.eyebrow-on-dark {
  color: var(--pa-lime);
}

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

h1 {
  margin-bottom: 28px;
  font-size: clamp(3rem, 6.6vw, 5.5rem);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.022em;
  text-wrap: balance;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.hero-lede {
  max-width: 640px;
  margin-bottom: 36px;
  color: var(--ink-700);
  font-size: clamp(1.125rem, 1.4vw, 1.375rem);
  font-weight: 400;
  line-height: 1.45;
}

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

.hero-visual {
  margin: 0;
}

.screen-frame {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 3;
  transition: box-shadow 400ms var(--ease-expo), transform 400ms var(--ease-expo);
}

.screen-frame:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.screen-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

figcaption {
  max-width: 720px;
  margin-top: 16px;
  color: var(--ink-500);
  font-size: 14px;
  line-height: 1.5;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0 6vw;
  padding: 56px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-strip div {
  position: relative;
  padding: 0 32px;
}

.proof-strip div + div {
  border-left: 1px solid var(--line);
}

.proof-strip .proof-value {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-num);
  font-size: clamp(2.6rem, 5.6vw, 4.25rem);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  color: var(--ink-900);
}

.proof-strip .proof-label {
  display: block;
  color: var(--ink-500);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.proof-note {
  max-width: 980px;
  margin: 24px 6vw 0;
  color: var(--ink-500);
  font-size: 13px;
  line-height: 1.5;
}

.section {
  padding: 112px 6vw;
}

.section-light {
  background: var(--paper);
}

.section-cream {
  background: var(--paper-cream);
}

.section-warm {
  background: var(--paper-warm);
}

.section-dark {
  background: var(--ink-900);
  color: var(--paper);
}

.section-dark h1,
.section-dark h2,
.section-dark h3 {
  color: var(--paper);
}

.section-heading {
  max-width: 920px;
  margin-bottom: 56px;
}

.section-heading p:not(.eyebrow) {
  max-width: 700px;
  color: var(--ink-500);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.5;
}

.section-dark .section-heading p:not(.eyebrow) {
  color: var(--ink-on-dark-soft);
}

/* AUDIENCE SECTION */

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.audience-block {
  padding: 36px 32px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-flat);
}

.audience-block h3 {
  margin-bottom: 18px;
  font-size: 20px;
  font-weight: 500;
}

.audience-block ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.audience-block li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-700);
  font-size: 15px;
  line-height: 1.45;
}

.audience-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 1px;
  background: var(--pa-violet);
}

/* PROGRAMS SECTION (named, dark) */

.programs-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.program {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 18px;
  padding: 44px 40px;
  background: var(--ink-900);
  transition: background 300ms var(--ease-expo);
}

.program:hover {
  background: #12121b;
}

.program-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink-on-dark-faint);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.program-meta .program-index {
  font-family: var(--font-num);
  font-size: 13px;
  color: var(--pa-lime);
}

.program-name {
  margin: 0;
  font-size: clamp(1.5rem, 2.3vw, 2rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.022em;
  color: var(--paper);
}

.program-spirit {
  margin: 0;
  color: var(--ink-on-dark-soft);
  font-size: 17px;
  line-height: 1.5;
}

.program-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 24px;
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
}

.program-specs div {
  display: grid;
  gap: 6px;
}

.program-specs dt {
  color: var(--ink-on-dark-faint);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.program-specs dd {
  margin: 0;
  color: var(--paper);
  font-size: 14.5px;
  line-height: 1.4;
}

/* PLACEMENT BROWSER */

.placement-browser {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}

.placement-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  background: var(--paper-warm);
  border-bottom: 1px solid var(--line);
}

.placement-tabs button {
  position: relative;
  min-height: 60px;
  padding: 16px 12px;
  border: 0;
  background: transparent;
  color: var(--ink-500);
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: color 200ms var(--ease-out), background 200ms var(--ease-out);
}

.placement-tabs button:hover,
.placement-tabs button:focus-visible {
  color: var(--ink-900);
  background: rgba(255, 255, 255, 0.6);
  outline: none;
}

.placement-tabs button.is-active {
  color: var(--ink-900);
  background: var(--white);
}

.placement-tabs button.is-active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: -1px;
  height: 2px;
  background: var(--pa-violet);
}

.placement-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 40px;
  padding: 40px;
}

.placement-panel.is-active {
  animation: blur-in 0.45s var(--ease-expo) both;
}

.placement-panel[hidden] {
  display: none;
}

.placement-panel figure {
  overflow: hidden;
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  aspect-ratio: 16 / 10;
}

.placement-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.placement-copy {
  align-self: center;
}

.placement-copy h3 {
  font-size: 24px;
  font-weight: 500;
}

.placement-copy ul,
.request-panel ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.placement-copy li,
.request-panel li {
  position: relative;
  padding-left: 20px;
  color: var(--ink-700);
  font-size: 15px;
  line-height: 1.45;
}

.placement-copy li::before,
.request-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 10px;
  height: 1px;
  background: var(--pa-violet);
}

/* CREATIVES GRID */

.creative-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}

.creative {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-flat);
  transition: box-shadow 400ms var(--ease-expo), transform 400ms var(--ease-expo);
}

.creative:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.creative-wide {
  grid-column: span 6;
}

.creative img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 22px;
  background: var(--paper-cream);
  border: 1px solid var(--line-soft);
}

.creative-wide img {
  height: auto;
  object-fit: contain;
  padding: 22px;
  background: var(--paper-cream);
}

.creative h3 {
  font-size: 18px;
  font-weight: 500;
}

.creative p {
  margin: 0;
  color: var(--ink-500);
  font-size: 14px;
  line-height: 1.5;
}

.creative-running {
  margin: 8px 0 26px;
  color: var(--ink-500);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hsw-creative {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 250px;
  margin-bottom: 22px;
  padding: 26px;
  overflow: hidden;
  background: var(--ink-900);
  color: var(--paper);
  border: 1px solid var(--line);
}

.hsw-creative::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hsw-image);
  background-size: cover;
  background-position: center;
  opacity: 0.6;
}

.hsw-creative::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 14, 22, 0.2), rgba(11, 14, 22, 0.65));
}

.hsw-creative img,
.hsw-creative strong,
.hsw-creative span {
  position: relative;
  z-index: 1;
}

.hsw-creative img {
  width: 150px;
  height: auto;
  margin: 0 0 28px;
  border: 0;
  background: transparent;
  padding: 0;
}

.hsw-creative strong {
  display: block;
  max-width: 240px;
  margin-bottom: 18px;
  font-size: 26px;
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.018em;
}

.hsw-creative span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* EDITORIAL CONTEXT */

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.editorial-cell {
  padding: 32px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.editorial-cell .editorial-num {
  display: block;
  margin-bottom: 16px;
  font-family: var(--font-num);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--pa-violet);
  text-transform: uppercase;
}

.editorial-cell h3 {
  margin-bottom: 10px;
  font-size: 19px;
  font-weight: 500;
}

.editorial-cell p {
  margin: 0;
  color: var(--ink-500);
  font-size: 14.5px;
  line-height: 1.5;
}

/* SPECS (demoted) */

.spec-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.spec-grid article {
  padding: 28px 24px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: transparent;
}

.spec-grid h3 {
  color: var(--paper);
  font-size: 16px;
  font-weight: 500;
}

.spec-grid p {
  margin: 0;
  color: var(--ink-on-dark-soft);
  font-size: 14px;
  line-height: 1.5;
}

/* INVENTORY (collapsed details) */

.inventory-details {
  margin: 40px 0 0;
  padding: 0;
  background: transparent;
}

.inventory-details summary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  background: var(--paper-cream);
  color: var(--ink-900);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  transition: background 200ms var(--ease-out);
}

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

.inventory-details summary::before {
  content: "+";
  font-family: var(--font-num);
  font-size: 16px;
  font-weight: 400;
  color: var(--pa-violet);
}

.inventory-details[open] summary::before {
  content: "−";
}

.inventory-details summary:hover {
  background: var(--white);
}

.inventory-table {
  display: grid;
  margin-top: 20px;
  border: 1px solid var(--line);
  background: var(--line);
  gap: 1px;
  overflow-x: auto;
}

.inventory-table [role="row"] {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 0.7fr 1.4fr;
  min-width: 900px;
  background: var(--white);
}

.inventory-table span {
  padding: 14px 16px;
  border: 0;
  color: var(--ink-700);
  font-size: 14px;
}

.inventory-table .table-head {
  background: var(--ink-900);
}

.inventory-table .table-head span {
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* REQUEST */

.request {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.55fr);
  gap: 56px;
  align-items: start;
  padding: 112px 6vw;
  background: var(--paper-cream);
  border-top: 1px solid var(--line);
}

.request h2 {
  max-width: 860px;
}

.request p {
  max-width: 720px;
  color: var(--ink-700);
  font-size: 19px;
  line-height: 1.5;
}

.request-panel {
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}

.request-panel h3 {
  font-size: 18px;
  font-weight: 500;
}

.request-panel .button {
  width: 100%;
  margin-top: 30px;
}

.site-footer {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 36px 6vw;
  background: var(--ink-900);
  color: var(--paper);
}

.site-footer img {
  width: 28px;
  height: 34px;
  object-fit: contain;
}

.site-footer p {
  margin: 0;
  color: var(--ink-on-dark-soft);
  font-size: 14px;
}

.site-footer a {
  margin-left: auto;
  color: var(--pa-lime);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 200ms var(--ease-out);
}

.site-footer a:hover {
  opacity: 0.75;
}

/* MOTION + REVEAL */

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slide-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes blur-in {
  from { opacity: 0; filter: blur(8px); transform: translateY(8px); }
  to { opacity: 1; filter: blur(0); transform: translateY(0); }
}

@keyframes scale-in {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes float-up {
  from { opacity: 0; transform: translateY(48px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal,
.reveal-up,
.reveal-blur,
.reveal-stagger > * {
  opacity: 0;
  will-change: opacity, transform, filter;
}

.reveal.is-revealed {
  animation: fade-in 0.6s var(--ease-expo) both;
}

.reveal-up.is-revealed {
  animation: slide-up 0.7s var(--ease-expo) both;
}

.reveal-blur.is-revealed {
  animation: blur-in 0.7s var(--ease-expo) both;
}

.reveal-stagger.is-revealed > * {
  animation: slide-up 0.7s var(--ease-expo) both;
  animation-delay: calc(var(--i, 0) * var(--reveal-stagger));
}

/* RESPONSIVE */

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 44px;
    padding-top: 88px;
  }

  .hero-copy {
    max-width: 920px;
  }

  .programs-stack,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .creative {
    grid-column: span 6;
  }

  .creative-wide {
    grid-column: span 12;
  }

  .spec-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .editorial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  body {
    font-size: 16px;
  }

  .site-header {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px 18px;
  }

  .brand {
    min-width: 0;
  }

  nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
  }

  nav a {
    min-width: 0;
    padding: 10px 8px;
    font-size: 13px;
  }

  .header-cta {
    width: 100%;
  }

  .hero,
  .section,
  .request {
    padding-left: 24px;
    padding-right: 24px;
  }

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

  #audience,
  #programs,
  #placements,
  #creatives,
  #editorial,
  #specs,
  #request {
    scroll-margin-top: 178px;
  }

  .proof-strip {
    grid-template-columns: 1fr;
    gap: 0;
    margin: 0 24px;
    padding: 32px 0;
  }

  .proof-strip div {
    padding: 22px 0;
  }

  .proof-strip div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .program {
    padding: 32px 28px;
  }

  .program-specs {
    grid-template-columns: 1fr;
  }

  .placement-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .placement-panel {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 24px;
  }

  .request {
    grid-template-columns: 1fr;
    padding: 80px 24px;
  }

  .creative,
  .creative-wide {
    grid-column: span 12;
  }

  .spec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .editorial-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .placement-tabs {
    grid-template-columns: 1fr;
  }

  .placement-tabs button.is-active::after {
    display: none;
  }

  .placement-tabs button.is-active {
    background: var(--ink-900);
    color: var(--white);
  }

  .spec-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer a {
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal-up,
  .reveal-blur,
  .reveal-stagger > * {
    opacity: 1;
  }
}

@media print {
  .site-header,
  .hero-actions,
  .placement-tabs,
  .site-footer,
  .inventory-details summary {
    display: none;
  }

  body {
    background: #fff;
    color: #000;
  }

  .section,
  .hero,
  .request {
    padding: 36px 0;
    break-inside: avoid;
  }

  .placement-panel[hidden] {
    display: grid;
  }

  .inventory-details[open] .inventory-table,
  .inventory-details .inventory-table {
    display: grid;
  }

  .reveal,
  .reveal-up,
  .reveal-blur,
  .reveal-stagger > * {
    opacity: 1 !important;
    animation: none !important;
  }
}
