:root {
  --ink: #10131f;
  --ink-2: #252a3c;
  --paper: #fffaf0;
  --paper-2: #f5f7ef;
  --white: #ffffff;
  --aqua: #35d0ba;
  --coral: #ff6b57;
  --blue: #8bc6ff;
  --gold: #ffd166;
  --pink: #ff8fb3;
  --muted: #6c7284;
  --line: rgba(16, 19, 31, 0.13);
  --shadow: 0 24px 70px rgba(16, 19, 31, 0.16);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

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

h1,
h2,
h3 {
  line-height: 1.04;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 880px;
  font-size: clamp(2.8rem, 5.8vw, 5.35rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  color: var(--muted);
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 74px;
  padding: 12px clamp(18px, 4vw, 44px);
  color: var(--ink);
  background: rgba(255, 250, 240, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

body > .site-header:not(.funnel-header) {
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  min-height: 96px;
}

body > .site-header:not(.funnel-header) > .brand-mark {
  grid-row: 1;
  grid-column: 2;
  justify-self: center;
}

body > .site-header:not(.funnel-header) > .primary-nav {
  grid-row: 1;
  grid-column: 1;
  justify-self: start;
}

body > .site-header:not(.funnel-header) > .header-actions {
  grid-row: 1;
  grid-column: 3;
}

body > .site-header:not(.funnel-header) > .brand-mark .brand-logo {
  height: 68px;
  max-width: min(260px, 30vw);
}

body > .site-header.home-header {
  min-height: 112px;
  overflow: visible;
}

body > .site-header.home-header > .brand-mark {
  position: absolute;
  top: 4px;
  left: 50%;
  grid-column: 1 / -1;
  justify-self: stretch;
  z-index: 2;
  width: clamp(264px, 21.6vw, 336px);
  transform: translateX(-50%);
}

body > .site-header.home-header > .brand-mark .brand-logo.home-header-logo {
  width: 100%;
  height: auto;
  max-width: none;
  filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.24));
}

body > .site-header.home-header > .primary-nav,
body > .site-header.home-header > .header-actions,
body > .site-header.home-header > .nav-toggle {
  position: relative;
  z-index: 3;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: var(--ink);
  white-space: nowrap;
}

.brand-logo {
  display: block;
  width: auto;
  height: 48px;
  max-width: min(220px, 42vw);
  object-fit: contain;
}

.brand-badge {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--ink);
  background: var(--aqua);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 0.78rem;
}

.primary-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.primary-nav a,
.nav-menu > button {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  color: var(--ink-2);
  background: transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 760;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a[aria-current="page"],
.nav-menu > button:hover,
.nav-menu > button:focus-visible {
  color: var(--ink);
  background: var(--white);
  outline: none;
}

.nav-menu {
  position: relative;
}

.nav-menu-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  display: grid;
  min-width: 220px;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 6px);
  transition: 160ms ease;
}

.nav-menu:hover .nav-menu-panel,
.nav-menu:focus-within .nav-menu-panel,
.nav-menu.is-open .nav-menu-panel {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-menu-panel a {
  justify-content: flex-start;
  border-radius: 6px;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.phone-link {
  color: var(--ink-2);
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  color: var(--ink);
  background: var(--coral);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 5px 5px 0 var(--ink);
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover,
.button:focus-visible {
  background: #e85646;
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--ink);
  outline: none;
}

.button:disabled {
  color: var(--muted);
  background: #dfe1d8;
  border-color: var(--line);
  box-shadow: none;
  cursor: not-allowed;
  opacity: 0.8;
  transform: none;
}

.button-small {
  min-height: 42px;
  padding-inline: 14px;
  font-size: 0.9rem;
}

.button-large {
  min-height: 56px;
  padding-inline: 22px;
}

.button-ghost {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: 5px 5px 0 rgba(255, 255, 255, 0.2);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 3px 3px 0 rgba(255, 255, 255, 0.22);
}

.button-secondary {
  background: var(--white);
  box-shadow: 4px 4px 0 var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 11px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 2px auto;
  background: var(--ink);
}

.nav-toggle[aria-expanded="true"] {
  background: var(--aqua);
  border-color: var(--ink);
}

.hero-section {
  position: relative;
  isolation: isolate;
  min-height: calc(92vh - 74px);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.74fr);
  align-items: end;
  gap: clamp(34px, 6vw, 72px);
  width: min(var(--max), calc(100% - 36px));
  min-height: calc(92vh - 74px);
  margin: 0 auto;
  padding: clamp(42px, 5vw, 72px) 0 42px;
}

.hero-copy {
  display: grid;
  gap: 20px;
  max-width: 850px;
}

.eyebrow {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-section .eyebrow,
.final-cta .eyebrow {
  color: var(--aqua);
}

.hero-subhead {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.12rem, 2vw, 1.42rem);
}

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

.quick-proof-band {
  background: var(--white);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(760px, 100%);
  margin: 0 auto;
}

.hero-metrics div {
  min-height: 86px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(16, 19, 31, 0.1);
}

.hero-metrics dt {
  color: var(--ink);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 950;
}

.hero-metrics dd {
  margin: 4px 0 0;
  color: var(--muted);
}

.hero-player,
.hero-brief-card {
  align-self: center;
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 28px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.hero-brief-card h2 {
  color: var(--white);
  font-size: clamp(2rem, 3.6vw, 3.7rem);
}

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

.hero-check-list li {
  position: relative;
  padding-left: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 820;
}

.hero-check-list li::before {
  content: "";
  position: absolute;
  top: 0.3em;
  left: 0;
  width: 15px;
  height: 15px;
  background: var(--aqua);
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 2px 2px 0 var(--ink);
}

.player-topline,
.player-controls,
.sample-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.player-topline h2 {
  margin-top: 4px;
  color: var(--white);
  font-size: clamp(1.7rem, 3vw, 3rem);
}

.duration,
.sample-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: var(--ink);
  background: var(--aqua);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.waveform {
  width: 100%;
  min-height: 84px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
}

.hero-player .waveform {
  min-height: 116px;
}

.play-button {
  position: relative;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 4px 4px 0 var(--aqua);
}

.play-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--ink);
  transform: translate(-42%, -50%);
}

.is-playing .play-button::before {
  left: 50%;
  width: 16px;
  height: 18px;
  border: 0;
  background:
    linear-gradient(to right, var(--ink) 0 35%, transparent 35% 65%, var(--ink) 65% 100%);
  transform: translate(-50%, -50%);
}

.track-title {
  color: var(--white);
  font-weight: 900;
}

.track-meta,
.transcript {
  color: rgba(255, 255, 255, 0.68);
}

section:not(.hero-section) {
  padding: clamp(64px, 9vw, 110px) clamp(18px, 4vw, 44px);
}

body section.quick-proof-band {
  padding: 0 clamp(18px, 4vw, 44px);
}

.logo-band,
.promise-section,
.samples-section,
.process-section,
.deliverables-section,
.use-case-section,
.team-section,
.reviews-section,
.faq-section,
.content-band,
.comparison-section,
.form-section,
.facts-section,
.blog-grid,
.timeline-section,
.pricing-panel {
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
}

.section-kicker,
.section-heading {
  display: grid;
  gap: 14px;
  max-width: 840px;
  margin-bottom: clamp(30px, 5vw, 52px);
}

.section-heading p,
.section-kicker p {
  max-width: 760px;
  font-size: 1.05rem;
}

.logo-band {
  display: grid;
  gap: 36px;
}

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

.logo-wall span {
  display: grid;
  min-height: 78px;
  place-items: center;
  padding: 14px;
  color: var(--ink-2);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 950;
  text-align: center;
}

.promise-grid,
.steps-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.promise-card,
.step-card,
.review-card,
.sample-card,
.use-case-grid article,
.blog-grid article {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 100%;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(16, 19, 31, 0.07);
}

.promise-card:nth-child(2),
.step-card:nth-child(2),
.use-case-grid article:nth-child(2n),
.blog-grid article:nth-child(2n) {
  background: var(--paper-2);
}

.promise-card:nth-child(3),
.step-card:nth-child(3),
.use-case-grid article:nth-child(3n),
.blog-grid article:nth-child(3n) {
  background: #f7fbff;
}

.number-mark {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--gold);
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 950;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-chip {
  min-height: 42px;
  padding: 0 16px;
  color: var(--ink-2);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
}

.filter-chip.active,
.filter-chip:hover,
.filter-chip:focus-visible {
  color: var(--ink);
  background: var(--aqua);
  border-color: var(--ink);
  outline: none;
}

.sample-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.sample-card {
  min-height: 280px;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.sample-card .waveform {
  background: #f5f7ef;
}

.sample-card .player-controls {
  align-items: flex-start;
  justify-content: flex-start;
}

.sample-card .play-button {
  width: 46px;
  height: 46px;
  box-shadow: 3px 3px 0 var(--ink);
}

.sample-card p {
  font-size: 0.94rem;
}

.sample-meta {
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 6px;
}

.sample-meta span {
  min-height: 26px;
  background: var(--paper-2);
  border: 1px solid var(--line);
}

.sample-card.is-hidden {
  display: none;
}

.deliverables-grid,
.use-case-grid,
.team-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.deliverables-grid div {
  display: grid;
  gap: 8px;
  min-height: 124px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.deliverables-grid strong {
  font-size: 1.05rem;
}

.deliverables-grid span {
  color: var(--muted);
}

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

.buyer-path-section {
  scroll-margin-top: 92px;
}

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

.buyer-path-card,
.agency-mode-grid article {
  display: grid;
  min-height: 100%;
  align-content: start;
  gap: 14px;
  padding: clamp(22px, 3vw, 30px);
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 6px solid var(--aqua);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(16, 19, 31, 0.07);
}

.buyer-path-card:nth-child(2) {
  border-top-color: var(--coral);
}

.buyer-path-card:nth-child(3) {
  background: #f7fbff;
  border-top-color: var(--blue);
}

.buyer-path-card:nth-child(4) {
  background: var(--paper-2);
  border-top-color: var(--gold);
}

.buyer-path-card h3,
.agency-mode-grid h3 {
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
}

.buyer-path-card p:not(.eyebrow),
.agency-mode-grid p {
  max-width: 600px;
}

.buyer-path-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
  margin-top: 4px;
}

.buyer-path-links a {
  color: var(--ink-2);
  border-bottom: 2px solid var(--aqua);
  font-weight: 900;
}

.buyer-path-links a:hover,
.buyer-path-links a:focus-visible {
  color: var(--ink);
  border-bottom-color: var(--coral);
  outline: none;
}

.fit-check-band {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding: 20px 22px;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
}

.fit-check-band > div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.fit-check-band span {
  color: rgba(255, 255, 255, 0.72);
}

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

.agency-mode-grid article:nth-child(2) {
  background: #f7fbff;
  border-top-color: var(--blue);
}

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

.creative-lead-card {
  display: grid;
  grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
  padding: clamp(18px, 3vw, 28px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.creative-lead-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 8px 8px 0 var(--ink);
}

.creative-lead-card > div {
  display: grid;
  gap: 14px;
}

.creative-lead-card h3 {
  font-size: clamp(1.8rem, 3vw, 3.3rem);
}

.creative-lead-card a {
  color: var(--ink);
  font-weight: 950;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.creator-proof {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) repeat(2, minmax(110px, 0.55fr));
  gap: 10px;
  margin-top: 6px;
}

.creator-proof > a,
.creator-proof > div {
  display: grid;
  align-content: center;
  min-height: 92px;
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.creator-proof > a {
  color: var(--ink);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 950;
  text-decoration: none;
}

.creator-proof strong {
  color: var(--ink);
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 0.95;
}

.creator-proof span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.team-strip article {
  display: grid;
  gap: 12px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.avatar {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 6px 6px 0 var(--ink);
}

.avatar-one {
  background:
    linear-gradient(135deg, rgba(53, 208, 186, 0.88), rgba(139, 198, 255, 0.84)),
    repeating-linear-gradient(90deg, rgba(16, 19, 31, 0.12) 0 10px, transparent 10px 22px);
}

.avatar-two {
  background:
    linear-gradient(135deg, rgba(255, 107, 87, 0.86), rgba(139, 198, 255, 0.82)),
    repeating-linear-gradient(0deg, rgba(16, 19, 31, 0.12) 0 8px, transparent 8px 20px);
}

.avatar-three {
  background:
    linear-gradient(135deg, rgba(255, 209, 102, 0.88), rgba(255, 143, 179, 0.82)),
    repeating-linear-gradient(45deg, rgba(16, 19, 31, 0.12) 0 8px, transparent 8px 18px);
}

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

.review-card blockquote {
  font-size: 1.25rem;
  font-weight: 840;
  line-height: 1.25;
}

.review-card figcaption {
  color: var(--muted);
  font-weight: 900;
}

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

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

summary {
  min-height: 64px;
  padding: 20px 48px 20px 22px;
  color: var(--ink);
  font-weight: 950;
  cursor: pointer;
}

details p {
  padding: 0 22px 22px;
  max-width: 860px;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto clamp(36px, 6vw, 72px);
  padding: clamp(28px, 5vw, 46px);
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.final-cta div {
  display: grid;
  gap: 14px;
  max-width: 800px;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.72);
}

.final-cta h2 {
  font-size: clamp(2rem, 4vw, 4.6rem);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
  padding: 38px clamp(18px, 4vw, 44px);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.site-footer > div {
  display: grid;
  gap: 12px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 20px;
}

.site-footer a:not(.brand-mark) {
  color: var(--ink-2);
  font-weight: 850;
}

.page-hero {
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
  padding: clamp(74px, 10vw, 132px) 0 clamp(44px, 6vw, 72px);
}

.compact-hero {
  display: grid;
  gap: 18px;
}

.compact-hero h1 {
  max-width: 980px;
  font-size: clamp(2.7rem, 6vw, 5.8rem);
}

.compact-hero p:not(.eyebrow) {
  max-width: 760px;
  font-size: 1.16rem;
}

.pricing-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding-top: 0;
}

.price-card,
.included-list,
.contact-card {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 36px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.price-card h2 {
  font-size: clamp(4rem, 9vw, 7rem);
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink-2);
  font-weight: 760;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.34em;
  left: 0;
  width: 16px;
  height: 16px;
  background: var(--aqua);
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 2px 2px 0 var(--ink);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  padding: 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

th {
  background: var(--ink);
  color: var(--white);
  font-size: 0.9rem;
}

tr:last-child td {
  border-bottom: 0;
}

.timeline-section {
  display: grid;
  gap: 16px;
  padding-top: 0;
}

.timeline-section article {
  display: grid;
  grid-template-columns: 120px minmax(180px, 0.3fr) minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 118px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: 28px;
  align-items: end;
}

.contact-hero > div:first-child {
  display: grid;
  gap: 18px;
}

.contact-card a {
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 950;
}

.form-section {
  max-width: 920px;
  padding-top: 0;
}

.contact-form,
.brief-form {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 28px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 247, 239, 0.96)),
    var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.brief-progress {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 260px);
  gap: 18px;
  align-items: end;
  padding: clamp(12px, 2vw, 18px);
}

.brief-progress h2 {
  margin-top: 8px;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.progress-meter {
  display: grid;
  gap: 10px;
  color: var(--ink-2);
  font-size: 0.9rem;
  font-weight: 950;
}

.progress-track {
  position: relative;
  height: 10px;
  overflow: hidden;
  background: rgba(16, 19, 31, 0.12);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.progress-track span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 16.66%;
  background: var(--aqua);
  border-right: 2px solid var(--ink);
  border-radius: inherit;
  transition: width 180ms ease;
}

.brief-dots {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  padding: 0 clamp(12px, 2vw, 18px);
  margin: 0;
  list-style: none;
}

.brief-dots li {
  height: 8px;
  background: rgba(16, 19, 31, 0.12);
  border-radius: 999px;
}

.brief-dots li.active {
  background: var(--ink);
}

.brief-step {
  display: none;
  min-height: clamp(360px, 44vw, 470px);
  align-content: center;
  gap: 18px;
  padding: clamp(24px, 5vw, 58px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgba(16, 19, 31, 0.12);
}

.brief-step.active {
  display: grid;
}

.brief-step-count {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  color: var(--ink);
  background: var(--gold);
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 950;
}

.brief-step label:not(.file-drop) {
  max-width: 780px;
  color: var(--ink);
  font-size: clamp(2rem, 5vw, 4.2rem);
  font-weight: 950;
  line-height: 1.02;
}

.brief-step p {
  max-width: 640px;
  font-size: 1.08rem;
}

.brief-field-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 760px;
}

.brief-field-grid > div {
  display: grid;
  gap: 8px;
}

.field-caption {
  color: var(--ink-2);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.brief-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.simple-lead-form {
  gap: 16px;
  max-width: 720px;
  margin-inline: auto;
  padding: clamp(18px, 4vw, 30px);
}

.simple-lead-heading {
  display: grid;
  gap: 6px;
}

.simple-lead-heading h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

.paid-lead-proof {
  display: grid;
  gap: 8px;
  margin: 6px 0 2px;
  padding: 0;
  color: var(--ink);
  list-style: none;
}

.paid-lead-proof li {
  position: relative;
  padding-left: 24px;
  font-weight: 900;
}

.paid-lead-proof li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "✓";
}

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

.lead-fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 16px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.simple-lead-form .button[type="submit"] {
  width: 100%;
}

.contact-form label:not(.file-drop) {
  display: grid;
  gap: 8px;
  color: var(--ink-2);
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 62px;
  padding: 0 16px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 1.05rem;
  font-weight: 800;
}

.contact-form textarea {
  min-height: 190px;
  padding-block: 16px;
  line-height: 1.35;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--ink);
  outline: 3px solid rgba(53, 208, 186, 0.35);
}

.file-drop {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 168px;
  align-content: center;
  padding: 24px;
  color: var(--ink);
  background: var(--paper-2);
  border: 2px dashed rgba(16, 19, 31, 0.28);
  border-radius: var(--radius);
  cursor: pointer;
}

.file-drop:hover,
.file-drop:focus-within {
  border-color: var(--ink);
  outline: 3px solid rgba(53, 208, 186, 0.35);
}

.file-drop input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.file-drop span {
  font-size: 1.25rem;
  font-weight: 950;
}

.file-drop small {
  color: var(--muted);
  font-weight: 800;
}

.brief-controls {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(12px, 2vw, 18px);
}

.brief-controls [data-brief-next],
.brief-controls [data-brief-submit] {
  margin-left: auto;
}

.brief-controls [hidden] {
  display: none;
}

.form-note {
  min-height: 0;
  color: var(--ink-2);
  font-weight: 800;
  padding: 0 clamp(12px, 2vw, 18px);
}

.form-note:not(:empty) {
  padding: 14px 18px;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 5px 5px 0 var(--ink);
}

.form-note[data-state="pending"] {
  background: #f5f7ef;
}

.form-note[data-state="success"] {
  background: #d5f7f1;
}

.form-note[data-state="error"] {
  background: #ffe4df;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 0;
}

.facts-section {
  max-width: 900px;
  padding-top: 0;
}

.no-top-pad {
  padding-top: 0;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    justify-content: space-between;
    align-items: center;
  }

  body > .site-header:not(.funnel-header) {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    min-height: 86px;
  }

  body > .site-header:not(.funnel-header) > .brand-mark {
    grid-column: 2;
  }

  body > .site-header:not(.funnel-header) > .nav-toggle {
    grid-row: 1;
    grid-column: 3;
    justify-self: end;
  }

  body > .site-header:not(.funnel-header) > .primary-nav,
  body > .site-header:not(.funnel-header) > .header-actions {
    grid-column: 1 / -1;
  }

  body > .site-header:not(.funnel-header) > .brand-mark .brand-logo {
    height: 58px;
    max-width: min(220px, 52vw);
  }

  body > .site-header.home-header {
    min-height: 94px;
  }

  body > .site-header.home-header > .brand-mark {
    top: 4px;
    grid-column: 1 / -1;
    width: min(252px, 36vw);
  }

  body > .site-header.home-header > .brand-mark .brand-logo.home-header-logo {
    width: 100%;
    height: auto;
    max-width: none;
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav,
  .header-actions {
    display: none;
    grid-column: 1 / -1;
    justify-self: stretch;
    width: 100%;
  }

  .primary-nav {
    flex-direction: column;
    align-items: stretch;
    justify-self: stretch;
    gap: 4px;
    margin-top: 10px;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .primary-nav a,
  .nav-menu > button {
    justify-content: flex-start;
    width: 100%;
  }

  .nav-menu-panel {
    position: static;
    display: none;
    min-width: 0;
    margin-top: 4px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-menu:hover .nav-menu-panel,
  .nav-menu:focus-within .nav-menu-panel,
  .nav-menu.is-open .nav-menu-panel {
    display: grid;
    transform: none;
  }

  .header-actions {
    grid-template-columns: 1fr;
    justify-items: stretch;
    gap: 10px;
    margin-top: 8px;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .header-actions .phone-link,
  .header-actions .button {
    width: 100%;
    justify-content: center;
  }

  .nav-open .primary-nav {
    display: flex;
  }

  .nav-open .header-actions {
    display: grid;
  }

  body.nav-open {
    overflow: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: auto;
    padding-top: 78px;
  }

  .hero-section {
    min-height: auto;
  }

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

  .steps-grid,
  .deliverables-grid,
  .sample-grid,
  .use-case-grid,
  .buyer-path-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-panel,
  .contact-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  h1 {
    font-size: clamp(2.4rem, 11.4vw, 3.05rem);
  }

  h2,
  .compact-hero h1 {
    font-size: clamp(2.05rem, 10vw, 3.5rem);
  }

  .site-header {
    min-height: 68px;
    padding-inline: 16px;
  }

  body > .site-header:not(.funnel-header) {
    min-height: 78px;
  }

  body > .site-header:not(.funnel-header) > .brand-mark .brand-logo {
    height: 52px;
    max-width: min(190px, 54vw);
  }

  body > .site-header.home-header {
    min-height: 82px;
  }

  body > .site-header.home-header > .brand-mark {
    top: 5px;
    width: min(192px, 42vw);
  }

  body > .site-header.home-header > .brand-mark .brand-logo.home-header-logo {
    width: 100%;
    height: auto;
    max-width: none;
  }

  .brand-logo {
    height: 42px;
    max-width: 168px;
  }

  .hero-grid,
  .logo-band,
  .promise-section,
  .samples-section,
  .process-section,
  .deliverables-section,
  .use-case-section,
  .team-section,
  .reviews-section,
  .faq-section,
  .content-band,
  .comparison-section,
  .form-section,
  .facts-section,
  .blog-grid,
  .timeline-section,
  .pricing-panel,
  .page-hero,
  .final-cta {
    width: min(100% - 28px, var(--max));
  }

  .hero-actions,
  .final-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .final-cta .button {
    width: 100%;
  }

  .brief-progress,
  .brief-field-grid {
    grid-template-columns: 1fr;
  }

  .brief-step {
    min-height: 420px;
    padding: 22px;
  }

  .brief-step label:not(.file-drop) {
    font-size: clamp(1.8rem, 9vw, 2.7rem);
  }

  .brief-step p {
    font-size: 1rem;
  }

  .simple-lead-form {
    gap: 14px;
    padding: 16px;
    border-radius: 14px;
    box-shadow: 8px 8px 0 rgba(16, 19, 31, 0.12);
  }

  .simple-lead-heading h2 {
    font-size: 2rem;
  }

  .simple-lead-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .lead-fit-grid,
  .buyer-path-grid,
  .agency-mode-grid {
    grid-template-columns: 1fr;
  }

  .fit-check-band {
    align-items: stretch;
    flex-direction: column;
  }

  .fit-check-band .button {
    width: 100%;
  }

  .contact-form input,
  .contact-form select {
    min-height: 52px;
  }

  .contact-form textarea {
    min-height: 128px;
  }

  .hero-grid {
    gap: 18px;
    padding-top: 42px;
    padding-bottom: 24px;
  }

  .hero-copy {
    gap: 14px;
  }

  .hero-subhead {
    font-size: 0.98rem;
  }

  .button-large {
    min-height: 46px;
  }

  .hero-player,
  .hero-brief-card {
    gap: 10px;
    padding: 16px;
  }

  .hero-brief-card h2 {
    font-size: 1.55rem;
  }

  .hero-check-list {
    gap: 8px;
  }

  .hero-check-list li {
    font-size: 0.9rem;
  }

  .player-topline {
    align-items: center;
  }

  .player-topline h2 {
    font-size: 1.35rem;
  }

  .hero-player .label {
    display: none;
  }

  .hero-player .waveform {
    min-height: 52px;
    height: 52px;
  }

  .hero-player .play-button {
    width: 40px;
    height: 40px;
  }

  .hero-player .track-meta,
  .hero-player .transcript {
    display: none;
  }

  .hero-player .track-title {
    font-size: 0.86rem;
  }

  .hero-metrics,
  .promise-grid,
  .steps-grid,
  .deliverables-grid,
  .sample-grid,
  .use-case-grid,
  .creative-lead-card,
  .creator-proof,
  .team-strip,
  .review-grid,
  .blog-grid,
  .logo-wall {
    grid-template-columns: 1fr;
  }

  .creative-lead-card img {
    width: calc(100% - 8px);
    box-shadow: 6px 6px 0 var(--ink);
  }

  .player-topline,
  .player-controls {
    align-items: flex-start;
  }

  .timeline-section article {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

.article-hero {
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
  padding: clamp(74px, 10vw, 132px) 0 clamp(28px, 4vw, 48px);
  display: grid;
  gap: 18px;
}

.article-hero .eyebrow {
  color: var(--coral);
}

.article-hero h1 {
  max-width: 980px;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
}

.article-hero p.lede {
  max-width: 780px;
  font-size: 1.18rem;
  color: var(--ink-2);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px;
  font-size: 0.95rem;
  color: var(--muted);
}

.article-meta span + span::before {
  content: "·";
  margin-right: 14px;
  color: var(--line);
}

.article-body {
  width: min(760px, calc(100% - 36px));
  margin-inline: auto;
  padding: 0 0 clamp(40px, 6vw, 80px);
  display: grid;
  gap: 22px;
  font-size: 1.08rem;
  line-height: 1.65;
}

.article-body > * {
  color: var(--ink-2);
}

.article-body p,
.article-body li {
  color: var(--ink-2);
}

.article-body h2 {
  margin-top: 28px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--ink);
  line-height: 1.15;
}

.article-body h3 {
  margin-top: 18px;
  font-size: 1.25rem;
  color: var(--ink);
}

.article-body ul,
.article-body ol {
  padding-left: 22px;
  display: grid;
  gap: 8px;
  margin: 0;
}

.article-body a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.article-body a:hover {
  color: var(--coral);
}

.article-body strong {
  color: var(--ink);
}

.article-body .callout {
  padding: 22px 24px;
  border-radius: var(--radius);
  background: var(--paper-2);
  border-left: 4px solid var(--aqua);
  font-size: 1.04rem;
  color: var(--ink-2);
}

.article-body .callout strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.article-body blockquote {
  padding: 20px 24px;
  margin: 0;
  background: #f7fbff;
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  font-size: 1.1rem;
  color: var(--ink-2);
}

.article-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}

.article-body th,
.article-body td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.article-body th {
  background: var(--paper-2);
  color: var(--ink);
  font-weight: 850;
}

.article-body tr:last-child td {
  border-bottom: 0;
}

.article-body .key-takeaways {
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(16, 19, 31, 0.05);
}

.article-body .key-takeaways h2 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral);
}

.article-body .inline-cta {
  display: grid;
  gap: 12px;
  padding: 24px;
  margin: 12px 0;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
}

.article-body .inline-cta p,
.article-body .inline-cta strong {
  color: var(--paper);
}

.article-body .inline-cta .button {
  justify-self: start;
}

.article-related {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto clamp(60px, 8vw, 110px);
}

.article-related h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 22px;
}

@media (max-width: 720px) {
  .article-hero h1 {
    font-size: clamp(2rem, 7vw, 3rem);
  }
  .article-body {
    font-size: 1.02rem;
  }
}

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

/* ===== Examples section ================================================= */

.examples-section {
  padding: clamp(76px, 10vw, 124px) 28px;
  background: var(--ink);
  color: var(--paper);
}

.examples-section .section-heading {
  max-width: var(--max);
  margin: 0 auto 56px;
}

.examples-section .section-heading .eyebrow {
  color: var(--aqua);
}

.examples-section .section-heading h2,
.examples-section .section-heading h3 {
  color: var(--paper);
}

.examples-section .section-heading p {
  color: rgba(255, 250, 240, 0.7);
  max-width: 720px;
}

.format-flow {
  max-width: var(--max);
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.real-sample-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.real-sample-card {
  position: relative;
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: 18px;
  min-height: 138px;
  padding: 16px;
  overflow: hidden;
  background: rgba(255, 250, 240, 0.085);
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.2);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.real-sample-card::after {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 128px;
  height: 34px;
  content: "";
  background:
    linear-gradient(
      90deg,
      rgba(255, 250, 240, 0.08) 0 4px,
      transparent 4px 9px,
      rgba(53, 208, 186, 0.22) 9px 13px,
      transparent 13px 20px
    );
  background-size: 48px 100%;
  border-radius: 999px;
  opacity: 0.7;
  pointer-events: none;
}

.real-sample-card:hover,
.real-sample-card:focus-within,
.real-sample-card.is-playing {
  transform: translateY(-3px);
  border-color: rgba(53, 208, 186, 0.48);
  background: rgba(255, 250, 240, 0.12);
  box-shadow: 0 24px 66px rgba(0, 0, 0, 0.28);
}

.real-sample-card-featured {
  grid-column: span 2;
  grid-template-columns: 132px minmax(0, 1fr);
  min-height: 190px;
  background:
    linear-gradient(135deg, rgba(255, 107, 87, 0.14), rgba(53, 208, 186, 0.1)),
    rgba(255, 250, 240, 0.1);
}

.sample-cover {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  align-self: start;
  background: var(--sample-accent, var(--aqua));
  border: 1px solid rgba(255, 250, 240, 0.32);
  border-radius: var(--radius);
  box-shadow: inset 0 -34px 46px rgba(16, 19, 31, 0.22);
  cursor: pointer;
  font: inherit;
  padding: 0;
}

.sample-cover::before {
  position: absolute;
  inset: 12px;
  content: "";
  background: linear-gradient(135deg, rgba(255, 250, 240, 0.36), transparent 48%);
  border: 1px solid rgba(255, 250, 240, 0.28);
  border-radius: 6px;
  opacity: 0.8;
}

.sample-cover::after {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  content: "";
  height: 22px;
  background:
    linear-gradient(
      90deg,
      rgba(16, 19, 31, 0.5) 0 4px,
      transparent 4px 9px,
      rgba(16, 19, 31, 0.28) 9px 14px,
      transparent 14px 20px
    );
  background-size: 34px 100%;
  border-radius: 999px;
}

.sample-disc {
  position: relative;
  z-index: 1;
  display: none;
}

.sample-play-icon {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 52px;
  aspect-ratio: 1;
  place-items: center;
  background: rgba(255, 250, 240, 0.94);
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(16, 19, 31, 0.3);
  pointer-events: none;
}

.sample-play-icon::before {
  width: 0;
  height: 0;
  margin-left: 4px;
  content: "";
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid var(--ink);
}

.real-sample-card.is-playing .sample-disc {
  animation: none;
}

.real-sample-card.is-playing .sample-play-icon::before {
  width: 12px;
  height: 18px;
  margin-left: 0;
  border-top: 0;
  border-bottom: 0;
  border-right: 4px solid var(--ink);
  border-left: 4px solid var(--ink);
}

.sample-cover-chilis {
  --sample-accent: linear-gradient(135deg, #ff6b57, #ffd166 58%, #35d0ba);
}

.sample-cover-kfc {
  --sample-accent: linear-gradient(135deg, #ffffff, #ff6b57 45%, #10131f);
}

.sample-cover-wendys {
  --sample-accent: linear-gradient(135deg, #8bc6ff, #ff8fb3 54%, #ffffff);
}

.sample-cover-doritos {
  --sample-accent: linear-gradient(135deg, #ff6b57, #ffd166 42%, #10131f);
}

.sample-cover-mcdonalds {
  --sample-accent: linear-gradient(135deg, #ffd166, #ff6b57);
}

.sample-cover-bud {
  --sample-accent: linear-gradient(135deg, #8bc6ff, #ffffff 52%, #ff6b57);
}

.sample-cover-peeko,
.sample-cover-shipping {
  --sample-accent: linear-gradient(135deg, #35d0ba, #8bc6ff 58%, #fffaf0);
}

.sample-cover-lavazza {
  --sample-accent: linear-gradient(135deg, #10131f, #ff6b57 54%, #ffd166);
}

.sample-cover-trivago {
  --sample-accent: linear-gradient(135deg, #8bc6ff, #35d0ba 55%, #ff6b57);
}

.sample-info {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
}

.real-sample-card h3 {
  color: var(--paper);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1;
}

.real-sample-card-featured h3 {
  font-size: clamp(2.2rem, 4vw, 4.4rem);
}

.sample-kicker {
  color: var(--aqua);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.sample-info p:not(.sample-kicker) {
  color: rgba(255, 250, 240, 0.72);
}

.sample-play-button {
  align-self: flex-start;
  min-height: 38px;
  padding: 0 13px;
  color: var(--paper);
  background: rgba(255, 250, 240, 0.1);
  border: 1px solid rgba(255, 250, 240, 0.26);
  border-radius: 999px;
  box-shadow: none;
  font-size: 0.86rem;
  font-weight: 950;
}

.sample-play-button:hover,
.sample-play-button:focus-visible {
  color: var(--paper);
  background: rgba(53, 208, 186, 0.18);
  border-color: var(--aqua);
}

.real-sample-card.is-playing .sample-play-button {
  color: var(--ink);
  background: var(--aqua);
  border-color: var(--aqua);
}

.sample-play-button:focus-visible {
  outline: 3px solid var(--aqua);
  outline-offset: 3px;
}

.sample-cover:focus-visible {
  outline: 3px solid var(--aqua);
  outline-offset: 4px;
}

@keyframes sampleSpin {
  to {
    transform: rotate(360deg);
  }
}

.format-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  align-content: start;
  padding: clamp(22px, 3vw, 30px);
  background: rgba(255, 250, 240, 0.055);
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: var(--radius);
}

.format-card-featured {
  background: linear-gradient(140deg, rgba(255, 107, 87, 0.14), rgba(53, 208, 186, 0.07));
  border-color: rgba(255, 107, 87, 0.35);
}

.format-duration {
  display: grid;
  width: clamp(60px, 7vw, 88px);
  aspect-ratio: 1;
  place-items: center;
  color: var(--ink);
  background: var(--aqua);
  border: 2px solid var(--paper);
  border-radius: 50%;
  font-size: clamp(1.35rem, 2.4vw, 2.25rem);
  font-weight: 950;
  line-height: 1;
  box-shadow: 5px 5px 0 rgba(255, 250, 240, 0.16);
}

.format-label {
  margin-bottom: 8px;
  color: var(--aqua);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.format-card h3 {
  color: var(--paper);
  font-size: clamp(1.45rem, 2.5vw, 2.35rem);
  line-height: 1.1;
}

.format-card p:not(.format-label),
.format-card dd {
  color: rgba(255, 250, 240, 0.7);
}

.format-card dl {
  grid-column: 2;
  display: grid;
  gap: 10px;
  margin: 2px 0 0;
}

.format-card dl div {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 250, 240, 0.14);
}

.format-card dt {
  margin-bottom: 4px;
  color: rgba(255, 250, 240, 0.92);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.format-card dd {
  margin: 0;
}

.format-note {
  max-width: var(--max);
  margin: 28px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: rgba(255, 250, 240, 0.08);
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: var(--radius);
  color: rgba(255, 250, 240, 0.65);
}

.format-note strong {
  color: var(--paper);
}

.format-note span {
  flex: 1 1 360px;
}

.format-note .button {
  flex: 0 0 auto;
}

@media (max-width: 820px) {
  .format-flow,
  .real-sample-grid,
  .format-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .real-sample-card,
  .real-sample-card-featured {
    grid-column: auto;
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 14px;
    min-height: 166px;
    padding: 14px;
    border-radius: 14px;
  }

  .real-sample-card::after {
    right: 14px;
    bottom: 14px;
    left: 146px;
    height: 22px;
    opacity: 0.5;
  }

  .real-sample-card-featured {
    background:
      linear-gradient(135deg, rgba(255, 107, 87, 0.16), rgba(53, 208, 186, 0.09)),
      rgba(255, 250, 240, 0.1);
  }

  .sample-cover {
    width: 100%;
    border-radius: 12px;
  }

  .sample-play-icon {
    width: 46px;
  }

  .sample-info {
    justify-content: start;
    padding: 2px 0 28px;
    gap: 7px;
  }

  .sample-kicker {
    font-size: 0.68rem;
  }

  .real-sample-card h3,
  .real-sample-card-featured h3 {
    font-size: clamp(1.35rem, 7vw, 2rem);
    line-height: 0.96;
  }

  .sample-info p:not(.sample-kicker) {
    font-size: 0.95rem;
    line-height: 1.35;
  }

  .sample-play-button {
    min-height: 40px;
    padding: 0 15px;
    font-size: 0.9rem;
  }

  .format-card-featured {
    grid-row: auto;
  }

  .format-card dl {
    grid-column: auto;
  }

  .examples-section {
    padding: 80px 22px 96px;
  }

  .format-note {
    align-items: stretch;
  }

  .format-note .button {
    width: 100%;
  }
}

/* ===== Hero brief footer (replaces removed second CTA) =================== */
.hero-brief-footer {
  font-size: 0.92rem;
  color: var(--muted);
  margin-top: 18px;
}

.hero-brief-footer a {
  color: var(--ink);
  border-bottom: 2px solid var(--aqua);
  font-weight: 600;
}

/* ===== Founder pull-quote =============================================== */
.founder-quote {
  max-width: 880px;
  margin: 48px auto 0;
  padding: 36px 40px;
  background: var(--paper-2);
  border-left: 4px solid var(--aqua);
  border-radius: var(--radius);
}

.founder-quote blockquote p {
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  line-height: 1.4;
  color: var(--ink);
  font-weight: 500;
  margin: 0;
}

.founder-quote figcaption {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.95rem;
}

.founder-quote figcaption span:first-child {
  font-weight: 700;
  color: var(--ink);
}

.founder-quote figcaption span:last-child {
  color: var(--muted);
}

@media (max-width: 720px) {
  .founder-quote {
    padding: 26px 24px;
  }
}

/* ===== Hartman Brothers studio architecture ============================ */
.studio-hero {
  position: relative;
  display: grid;
  min-height: 600px;
  height: calc(100svh - 150px);
  max-height: 760px;
  align-items: end;
  overflow: hidden;
  color: var(--paper);
  background-color: #090b0e;
  background-image: url("images/jukebox-social-hero-v2.png");
  background-position: center;
  background-size: cover;
}

.studio-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 5, 7, 0.94) 0%, rgba(3, 5, 7, 0.8) 42%, rgba(3, 5, 7, 0.26) 78%, rgba(3, 5, 7, 0.2) 100%);
}

.studio-hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(var(--max), calc(100% - 56px));
  gap: 20px;
  margin-inline: auto;
  padding: clamp(46px, 6vw, 68px) 0;
}

.studio-hero-copy .eyebrow {
  color: var(--aqua);
}

.studio-hero-copy h1 {
  max-width: 1040px;
  color: var(--white);
  font-size: clamp(3.1rem, 6vw, 5.5rem);
  line-height: 0.95;
}

.studio-hero-copy > p:not(.eyebrow) {
  max-width: 700px;
  color: rgba(255, 250, 240, 0.84);
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
}

.studio-hero-copy .home-hero-reassurance {
  margin: -4px 0 0;
  color: rgba(255, 250, 240, 0.88);
  font-size: 0.92rem;
  font-weight: 800;
}

.home-hero-reassurance span {
  display: inline-block;
  margin: 0 0.35rem;
  color: var(--aqua);
}

.studio-hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.studio-hero-facts li {
  padding: 4px 22px;
  color: rgba(255, 250, 240, 0.78);
  border-left: 1px solid rgba(255, 250, 240, 0.3);
  font-size: 0.92rem;
  font-weight: 800;
}

.studio-hero-facts li:first-child {
  padding-left: 0;
  border-left: 0;
}

.studio-intro-band,
.engagements-section,
.plain-process,
.studio-faq,
.offer-body,
.work-reel-section,
.about-story,
.about-values,
.conversion-note {
  width: min(var(--max), calc(100% - 56px));
  margin-inline: auto;
}

.studio-intro-band {
  display: grid;
  grid-template-columns: 0.45fr 1.25fr 0.9fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  padding: clamp(70px, 9vw, 116px) 0;
}

.studio-intro-band h2 {
  font-size: clamp(2.4rem, 4.7vw, 4.7rem);
}

.studio-intro-band > p:last-child {
  color: var(--ink-2);
  font-size: 1.1rem;
}

.section-heading-split {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
}

.section-heading-split > p {
  padding-bottom: 8px;
}

.format-note-dark {
  color: rgba(255, 250, 240, 0.72);
}

.engagements-section {
  padding: clamp(82px, 10vw, 132px) 0;
}

.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 52px;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.engagement-grid article {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 390px;
  padding: 30px clamp(22px, 3vw, 38px) 34px;
  border-left: 1px solid var(--line);
}

.engagement-grid article:first-child {
  border-left: 0;
}

.engagement-grid .service-number {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 950;
}

.engagement-grid h3 {
  font-size: clamp(2rem, 3.5vw, 3.4rem);
}

.engagement-grid strong {
  margin-top: auto;
  color: var(--ink);
}

.engagement-grid a,
.text-arrow {
  color: var(--ink);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--aqua);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.human-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(460px, 1.2fr);
  min-height: 720px;
  background: var(--white);
}

.human-photo {
  min-height: 620px;
  overflow: hidden;
}

.human-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.human-copy {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: clamp(52px, 8vw, 120px);
}

.human-copy h2 {
  max-width: 740px;
}

.human-copy > p:not(.eyebrow) {
  max-width: 690px;
  color: var(--ink-2);
  font-size: 1.1rem;
}

.human-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 12px 0;
}

.human-proof div {
  padding-top: 14px;
  border-top: 2px solid var(--ink);
}

.human-proof dt {
  color: var(--ink);
  font-size: 1.7rem;
  font-weight: 950;
}

.human-proof dd {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.plain-process {
  padding: clamp(86px, 11vw, 142px) 0;
}

.plain-process ol {
  display: grid;
  margin: 48px 0 34px;
  padding: 0;
  border-top: 2px solid var(--ink);
  list-style: none;
}

.plain-process li {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.plain-process li > span {
  color: var(--coral);
  font-size: 0.85rem;
  font-weight: 950;
}

.plain-process li div {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1fr);
  gap: 34px;
}

.plain-process h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.35rem);
}

.studio-faq {
  padding: 0 0 clamp(88px, 11vw, 144px);
}

.studio-final-cta {
  margin-top: 0;
}

.studio-final-cta p:not(.eyebrow) {
  max-width: 580px;
  margin-top: 12px;
  color: rgba(255, 250, 240, 0.7);
}

.studio-footer {
  margin-top: 0;
}

section.brief-section {
  padding-top: 0;
}

.form-privacy {
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

/* ===== Service, work, and about pages ================================== */
.offer-hero {
  color: var(--paper);
  background: var(--ink);
}

section.offer-hero {
  padding: 0;
}

.offer-hero.brandbops-offer {
  color: var(--ink);
  background: var(--aqua);
}

.offer-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(36px, 8vw, 110px);
  width: min(var(--max), calc(100% - 56px));
  min-height: 520px;
  height: min(68svh, 620px);
  max-height: none;
  margin-inline: auto;
  padding: clamp(62px, 8vw, 100px) 0;
  align-items: end;
}

.offer-hero-copy {
  display: grid;
  gap: 20px;
}

.offer-hero-copy .button {
  justify-self: start;
}

.offer-hero .eyebrow {
  color: var(--aqua);
}

.brandbops-offer .eyebrow {
  color: var(--ink);
}

.offer-hero h1 {
  max-width: 900px;
  color: inherit;
  font-size: clamp(3.2rem, 6.6vw, 6.4rem);
  line-height: 0.96;
}

.offer-hero-copy > p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 250, 240, 0.74);
  font-size: 1.17rem;
}

.brandbops-offer .offer-hero-copy > p:not(.eyebrow) {
  color: rgba(16, 19, 31, 0.76);
}

.offer-hero-aside {
  display: grid;
  gap: 18px;
  padding-left: 26px;
  border-left: 1px solid rgba(255, 250, 240, 0.28);
}

.brandbops-offer .offer-hero-aside {
  border-left-color: rgba(16, 19, 31, 0.3);
}

.offer-hero-aside strong {
  color: inherit;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 1;
}

.offer-hero-aside p,
.offer-hero-aside li {
  color: rgba(255, 250, 240, 0.76);
}

.brandbops-offer .offer-hero-aside p,
.brandbops-offer .offer-hero-aside li {
  color: rgba(16, 19, 31, 0.78);
}

.offer-hero-aside ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 20px;
}

.offer-hero-aside .button {
  justify-self: start;
}

.mobile-hero-cta {
  display: none;
}

.offer-body {
  padding: clamp(80px, 10vw, 132px) 0;
}

.offer-lede {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 1.2fr);
  gap: clamp(38px, 8vw, 110px);
  align-items: start;
}

.offer-lede h2 {
  font-size: clamp(2.5rem, 5vw, 5rem);
}

.offer-lede-copy {
  display: grid;
  gap: 18px;
  color: var(--ink-2);
  font-size: 1.08rem;
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 64px;
}

.scope-grid article {
  display: grid;
  gap: 14px;
  min-height: 270px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.scope-grid h3 {
  font-size: 1.6rem;
}

.scope-grid .number-mark {
  width: 44px;
  height: 44px;
}

.deliverable-band {
  color: var(--paper);
  background: #0b766f;
}

.deliverable-band-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(42px, 8vw, 110px);
  width: min(var(--max), calc(100% - 56px));
  margin-inline: auto;
  padding: clamp(80px, 10vw, 132px) 0;
}

.deliverable-band h2,
.deliverable-band h3,
.deliverable-band strong {
  color: var(--white);
}

.deliverable-band .eyebrow {
  color: var(--gold);
}

.package-copy {
  max-width: 580px;
  margin-top: 20px;
  color: rgba(255, 250, 240, 0.78);
}

.package-cta {
  margin-top: 30px;
}

.optional-label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.home-inquiry-section {
  padding-top: clamp(72px, 9vw, 110px);
  padding-bottom: clamp(80px, 10vw, 124px);
}

.home-inquiry-primary {
  scroll-margin-top: 90px;
  background: linear-gradient(180deg, #f4f7ed 0%, var(--paper) 100%);
}

.home-inquiry-primary .section-heading {
  margin-bottom: 30px;
}

.deliverable-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.deliverable-list li {
  padding: 18px 0;
  color: rgba(255, 250, 240, 0.82);
  border-top: 1px solid rgba(255, 250, 240, 0.25);
  font-weight: 760;
}

.work-reel-section {
  padding: clamp(80px, 10vw, 128px) 0;
}

.work-reel-section .real-sample-grid {
  margin-top: 48px;
}

.work-reel-section .real-sample-card {
  color: var(--paper);
  background: var(--ink);
  border-color: rgba(16, 19, 31, 0.1);
}

.work-reel-section .real-sample-card:hover,
.work-reel-section .real-sample-card:focus-within,
.work-reel-section .real-sample-card.is-playing {
  background: #1b2030;
}

.work-reel-section .sample-info p {
  color: rgba(255, 250, 240, 0.68);
}

.work-reel-section .sample-info h3 {
  color: var(--white);
}

.work-note,
.conversion-note {
  padding: 22px 0;
  color: var(--ink-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-story {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(44px, 9vw, 120px);
  padding: clamp(80px, 10vw, 132px) 0;
}

.about-story img {
  width: 100%;
  max-height: 760px;
  object-fit: cover;
  object-position: center 20%;
}

.about-story-copy {
  display: grid;
  align-content: center;
  gap: 20px;
}

.about-story-copy h2 {
  font-size: clamp(2.6rem, 5vw, 5rem);
}

.about-story-copy p:not(.eyebrow) {
  color: var(--ink-2);
  font-size: 1.08rem;
}

.about-values {
  padding: 0 0 clamp(86px, 11vw, 142px);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 44px;
}

.about-values-grid article {
  padding-top: 20px;
  border-top: 2px solid var(--ink);
}

.about-values-grid h3 {
  margin-bottom: 10px;
  font-size: 1.55rem;
}

@media (max-width: 980px) {
  .studio-intro-band,
  .offer-lede {
    grid-template-columns: 1fr;
  }

  .studio-intro-band {
    gap: 18px;
  }

  .engagement-grid,
  .scope-grid,
  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .engagement-grid article {
    min-height: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .engagement-grid article:first-child {
    border-top: 0;
  }

  .human-section,
  .about-story {
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  }

  .human-copy {
    padding: 48px;
  }
}

@media (max-width: 760px) {
  .studio-hero {
    height: auto;
    min-height: calc(88svh - 74px);
    max-height: none;
    background-position: 76% center;
  }

  .studio-hero-shade {
    background: linear-gradient(180deg, rgba(3, 5, 7, 0.7), rgba(3, 5, 7, 0.84));
  }

  .studio-hero-copy,
  .studio-intro-band,
  .engagements-section,
  .plain-process,
  .studio-faq,
  .offer-body,
  .work-reel-section,
  .about-story,
  .about-values,
  .conversion-note,
  .offer-hero-inner,
  .deliverable-band-inner {
    width: min(100% - 32px, var(--max));
  }

  .studio-hero-copy {
    padding: 72px 0 46px;
  }

  .studio-hero-copy h1,
  .offer-hero h1 {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
  }

  .studio-hero-facts {
    display: none;
  }

  .section-heading-split,
  .offer-hero-inner,
  .human-section,
  .about-story,
  .deliverable-band-inner {
    grid-template-columns: 1fr;
  }

  .offer-hero-inner {
    height: auto;
    min-height: 0;
    padding: 64px 0;
  }

  .section-heading-split {
    align-items: start;
  }

  .engagement-grid {
    margin-top: 34px;
  }

  .engagement-grid article {
    padding-inline: 0;
  }

  .human-section {
    min-height: 0;
  }

  .human-photo {
    min-height: 460px;
    max-height: 620px;
  }

  .human-copy {
    padding: 52px 18px 64px;
  }

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

  .plain-process li {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
  }

  .plain-process li div {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .offer-hero-inner {
    height: auto;
    min-height: calc(100svh - 104px);
    max-height: none;
    padding: 56px 0;
    align-items: start;
  }

  .offer-hero-aside {
    display: none;
  }

  .brandbops-offer .offer-hero-aside {
    display: none;
  }

  .mobile-hero-cta {
    display: inline-flex;
    width: 100%;
  }

  .brandbops-offer .mobile-hero-cta {
    background: var(--white);
  }

  .scope-grid {
    margin-top: 42px;
  }

  .scope-grid article {
    min-height: 0;
  }

  .deliverable-list {
    grid-template-columns: 1fr;
  }

  .about-story {
    gap: 36px;
  }

  .about-story img {
    max-height: 560px;
  }
}

/* ===== Paid-acquisition funnels ======================================== */
.funnel-page {
  background: #fffdf7;
}

.funnel-page section[id] {
  scroll-margin-top: 92px;
}

.funnel-header {
  grid-template-columns: auto 1fr auto;
  background: rgba(255, 253, 247, 0.94);
}

.funnel-nav {
  justify-self: center;
  display: flex;
  gap: 24px;
  color: var(--ink-2);
  font-size: 0.9rem;
  font-weight: 820;
}

.funnel-nav a:hover,
.funnel-nav a:focus-visible,
.funnel-text-link:hover,
.funnel-text-link:focus-visible {
  text-decoration: underline;
  text-decoration-color: var(--aqua);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.funnel-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: center;
  min-height: 650px;
  color: var(--paper);
  background:
    radial-gradient(circle at 76% 18%, rgba(53, 208, 186, 0.18), transparent 28%),
    radial-gradient(circle at 12% 82%, rgba(255, 107, 87, 0.15), transparent 32%),
    var(--ink);
}

body .funnel-hero,
body .campaign-hero {
  padding: clamp(64px, 8vw, 104px) max(clamp(20px, 5vw, 72px), calc((100vw - var(--max)) / 2));
}

.funnel-hero-copy {
  display: grid;
  gap: 22px;
}

.funnel-hero .eyebrow,
.campaign-hero .eyebrow {
  color: var(--aqua);
}

.funnel-hero h1,
.campaign-hero h1 {
  color: var(--white);
  font-size: clamp(3.15rem, 6.3vw, 6.5rem);
  line-height: 0.94;
}

.funnel-hero h1 span {
  color: var(--gold);
}

.funnel-lede,
.campaign-hero > div > p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 250, 240, 0.78);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
}

.funnel-text-link {
  align-self: center;
  color: var(--white);
  font-weight: 850;
}

.funnel-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 6px 0 0;
  padding: 0;
  color: rgba(255, 250, 240, 0.78);
  list-style: none;
  font-size: 0.94rem;
  font-weight: 760;
}

.hero-cta-note {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-cta-note span {
  display: inline-block;
  margin: 0 0.35rem;
  color: var(--accent);
}

.funnel-proof-list li::before {
  margin-right: 8px;
  color: var(--aqua);
  content: "✓";
  font-weight: 950;
}

.hook-stack {
  display: grid;
  gap: 14px;
}

.hook-stack > div {
  position: relative;
  display: grid;
  gap: 5px;
  min-height: 118px;
  padding: 22px;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  box-shadow: 9px 9px 0 rgba(255, 255, 255, 0.09);
  transform: rotate(-1.4deg);
}

.hook-stack > div:nth-child(2) {
  margin-left: 24px;
  background: #e9fffb;
  transform: rotate(1.2deg);
}

.hook-stack > div:nth-child(3) {
  margin-right: 14px;
  background: #fff3d0;
  transform: rotate(-0.4deg);
}

.hook-stack span {
  color: var(--coral);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hook-stack strong {
  font-size: 1.25rem;
}

.hook-stack i {
  position: absolute;
  right: 18px;
  bottom: 17px;
  left: 18px;
  height: 20px;
  background: repeating-linear-gradient(90deg, var(--ink) 0 4px, transparent 4px 9px, var(--aqua) 9px 14px, transparent 14px 20px);
  border-radius: 999px;
  opacity: 0.26;
}

.hook-stack > p {
  padding: 8px 20px 0;
  color: rgba(255, 250, 240, 0.68);
  font-size: 0.88rem;
}

body section.funnel-trust-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 0 max(clamp(20px, 5vw, 72px), calc((100vw - var(--max)) / 2));
  background: var(--aqua);
}

.funnel-trust-band p {
  padding: 24px 34px;
  color: var(--ink-2);
  border-left: 1px solid rgba(16, 19, 31, 0.2);
}

.funnel-trust-band p:first-child {
  border-left: 0;
}

.funnel-trust-band strong {
  color: var(--ink);
}

.funnel-examples .real-sample-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.funnel-section,
.funnel-process,
.fit-section,
.order-section,
.paid-brief-section {
  width: min(var(--max), calc(100% - 56px));
  margin-inline: auto;
}

body section.funnel-section,
body section.funnel-process,
body section.fit-section,
body section.order-section,
body section.paid-brief-section {
  padding: clamp(76px, 9vw, 118px) 0;
}

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

.offer-choice {
  display: grid;
  align-content: start;
  gap: 22px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 20px 54px rgba(16, 19, 31, 0.08);
}

.offer-choice-featured {
  background: #e9fffb;
  border: 2px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
}

.offer-flag {
  justify-self: start;
  padding: 6px 10px;
  color: var(--ink);
  background: var(--gold);
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.offer-price {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--ink);
}

.offer-price h3 {
  max-width: 280px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.offer-price strong {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.9;
}

.offer-choice ul,
.fit-grid ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  color: var(--ink-2);
  list-style: none;
}

.offer-choice li,
.fit-grid li {
  position: relative;
  padding-left: 25px;
}

.offer-choice li::before,
.fit-grid li::before {
  position: absolute;
  left: 0;
  color: #0b766f;
  content: "✓";
  font-weight: 950;
}

.offer-choice .button {
  width: 100%;
  margin-top: auto;
}

.scope-note {
  margin-top: 28px;
  padding: 18px 20px;
  color: var(--ink-2);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.scope-note a {
  color: var(--ink);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--aqua);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.funnel-process ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 2px solid var(--ink);
  list-style: none;
}

.funnel-process li {
  display: grid;
  gap: 36px;
  min-height: 260px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.funnel-process li:last-child {
  border-right: 0;
}

.funnel-process li > span {
  color: var(--coral);
  font-weight: 950;
}

.funnel-process li div {
  align-self: end;
}

.funnel-process h3 {
  margin-bottom: 10px;
  font-size: 1.6rem;
}

.fit-section {
  border-top: 1px solid var(--line);
}

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

.fit-grid article {
  display: grid;
  align-content: start;
  gap: 20px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.fit-grid article:last-child {
  background: #fff3d0;
}

.fit-grid h3 {
  font-size: 2rem;
}

.funnel-human {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.order-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(42px, 8vw, 104px);
  align-items: start;
}

.order-section .order-intro {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 18px;
}

.order-intro h2 {
  font-size: clamp(2.7rem, 5vw, 5rem);
}

.order-tabs {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.order-tabs button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 70px;
  padding: 14px 16px;
  color: var(--ink);
  background: var(--white);
  border: 2px solid transparent;
  border-radius: var(--radius);
  text-align: left;
}

.order-tabs button.is-selected {
  background: #e9fffb;
  border-color: var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
}

.order-tabs span {
  font-weight: 820;
}

.order-tabs strong {
  font-size: 1.3rem;
}

.checkout-form {
  display: grid;
  gap: 20px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(16, 19, 31, 0.11);
}

.checkout-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  color: var(--ink);
  border-bottom: 2px solid var(--ink);
  font-weight: 900;
}

.checkout-summary strong {
  font-size: 1.8rem;
}

.checkout-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 850;
}

.checkout-form input,
.checkout-form select,
.checkout-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(16, 19, 31, 0.28);
  border-radius: var(--radius);
  font: inherit;
}

.checkout-form textarea {
  min-height: 100px;
  resize: vertical;
}

.checkout-form input:focus,
.checkout-form select:focus,
.checkout-form textarea:focus {
  border-color: var(--ink);
  outline: 3px solid rgba(53, 208, 186, 0.32);
}

.scope-confirm {
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  padding: 16px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.9rem;
}

.checkout-form .scope-confirm input {
  width: 20px;
  min-height: 20px;
  margin: 2px 0 0;
  accent-color: #0b766f;
}

.checkout-fine-print {
  font-size: 0.87rem;
  text-align: center;
}

.order-reassurance {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.order-reassurance li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 760;
}

.order-reassurance li::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: #0b766f;
  font-weight: 950;
}

.mobile-checkout-bar {
  display: none;
}

.campaign-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(44px, 8vw, 110px);
  align-items: end;
  min-height: 610px;
  color: var(--paper);
  background: var(--ink);
}

.campaign-hero > div {
  display: grid;
  gap: 22px;
}

.campaign-hero aside {
  display: grid;
  gap: 12px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.campaign-hero aside strong {
  color: var(--gold);
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.9;
}

.campaign-hero aside span,
.campaign-hero aside li {
  color: rgba(255, 250, 240, 0.75);
}

.campaign-hero aside ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 20px;
}

.custom-inquiry-section {
  border-top: 1px solid var(--line);
}

.campaign-detail-section {
  border-top: 1px solid var(--line);
}

.usage-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(340px, 1.2fr) auto;
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  color: var(--paper);
  background: #0b766f;
}

body section.usage-section {
  padding: clamp(70px, 9vw, 108px) max(clamp(20px, 5vw, 72px), calc((100vw - var(--max)) / 2));
}

.usage-section .eyebrow {
  color: var(--gold);
}

.usage-section h2 {
  color: var(--white);
  font-size: clamp(2.3rem, 4vw, 4.2rem);
}

.usage-section p:not(.eyebrow) {
  color: rgba(255, 250, 240, 0.8);
  font-size: 1.08rem;
}

.brief-header-label {
  justify-self: end;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 850;
  text-transform: uppercase;
}

.brief-hero {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

body section.brief-hero {
  padding: clamp(64px, 8vw, 96px) 24px 26px;
}

.brief-hero h1 {
  max-width: 860px;
  margin: 12px auto 16px;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
}

.brief-hero > p:not(.eyebrow) {
  font-size: 1.1rem;
}

.order-verification {
  margin-top: 24px;
  padding: 14px 18px;
  color: var(--ink-2);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.order-verification[data-state="success"] {
  color: #064b46;
  background: #e9fffb;
  border-color: rgba(11, 118, 111, 0.32);
}

.order-verification[data-state="error"] {
  color: #7f2118;
  background: #fff0ed;
  border-color: rgba(255, 107, 87, 0.38);
}

.paid-brief-section {
  max-width: 900px;
}

.paid-brief-form[hidden] {
  display: none;
}

@media (max-width: 980px) {
  .funnel-nav {
    display: none;
  }

  .funnel-hero,
  .campaign-hero,
  .order-section,
  .usage-section {
    grid-template-columns: 1fr;
  }

  .hook-stack {
    max-width: 620px;
  }

  .order-section .order-intro {
    position: static;
  }
}

@media (max-width: 760px) {
  .funnel-header {
    min-height: 68px;
    padding-inline: 16px;
  }

  .funnel-header .brand-logo {
    max-width: 154px;
    height: 40px;
  }

  .funnel-header > .button {
    min-height: 40px;
    padding-inline: 11px;
    font-size: 0.82rem;
  }

  body .funnel-hero,
  body .campaign-hero {
    min-height: 0;
    padding: 58px 18px 70px;
  }

  .funnel-hero h1,
  .campaign-hero h1 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .funnel-hero .hero-actions,
  .campaign-hero .hero-actions {
    display: grid;
  }

  .funnel-hero .button,
  .campaign-hero .button {
    width: 100%;
  }

  .funnel-text-link {
    justify-self: start;
    padding: 8px 0;
  }

  .hook-stack {
    margin-top: 16px;
  }

  .hook-stack > div:nth-child(2) {
    margin-left: 10px;
  }

  .hook-stack > div:nth-child(3) {
    margin-right: 6px;
  }

  body section.funnel-trust-band,
  .offer-choice-grid,
  .fit-grid,
  .funnel-process ol,
  .funnel-examples .real-sample-grid {
    grid-template-columns: 1fr;
  }

  .funnel-trust-band p {
    padding: 20px 18px;
    border-top: 1px solid rgba(16, 19, 31, 0.2);
    border-left: 0;
  }

  .funnel-trust-band p:first-child {
    border-top: 0;
  }

  .funnel-section,
  .funnel-process,
  .fit-section,
  .order-section,
  .paid-brief-section {
    width: min(100% - 32px, var(--max));
  }

  .offer-choice-featured {
    box-shadow: 6px 6px 0 var(--ink);
  }

  .offer-price {
    align-items: start;
    flex-direction: column;
  }

  .funnel-process li {
    min-height: 0;
    gap: 28px;
    border-right: 0;
  }

  .order-section {
    gap: 30px;
  }

  .checkout-form {
    padding: 22px 18px;
  }

  .mobile-checkout-bar {
    position: sticky;
    bottom: 0;
    z-index: 35;
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
    padding: 10px 16px;
    background: rgba(255, 253, 247, 0.96);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(16px);
  }

  .mobile-checkout-bar .button {
    min-height: 46px;
  }

  .mobile-checkout-bar > a:last-child {
    font-weight: 850;
    text-decoration: underline;
    text-decoration-color: var(--aqua);
    text-decoration-thickness: 3px;
  }

  .campaign-hero aside {
    margin-top: 10px;
  }

  .brief-header-label {
    font-size: 0.7rem;
  }
}
