:root {
  --bg: #001936;
  --bg-soft: #012b5d;
  --bg-deep: #04142d;
  --panel: rgba(227, 255, 255, 0.05);
  --panel-strong: rgba(175, 201, 234, 0.12);
  --text: #e7ffff;
  --muted: #afc9ea;
  --line: rgba(175, 201, 234, 0.18);
  --accent: #e7ffff;
  --accent-2: #9bbbe2;
  --accent-3: #23446f;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 999px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: "Bricolage Grotesque", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(175, 201, 234, 0.18), transparent 26%),
    radial-gradient(circle at 90% 12%, rgba(35, 68, 111, 0.34), transparent 24%),
    linear-gradient(180deg, #012b5d 0%, #001936 30%, #04142d 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 92%);
}

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

button {
  font: inherit;
}

.page-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding-bottom: 56px;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  margin-top: 16px;
  padding: 14px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #012b5d;
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
}

.brand-logo {
  display: block;
  width: 150px;
  height: 44px;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  justify-self: center;
  color: var(--muted);
}

.site-nav a {
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.96rem;
  font-weight: 500;
  transition: background 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(231, 255, 255, 0.08);
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: var(--bg-soft);
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: #f3ffff;
}

.button-small {
  justify-self: end;
  padding: 10px 18px;
  font-size: 0.92rem;
}

.button-ghost {
  border-color: var(--line);
  background: transparent;
  color: var(--text);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.06);
}

.section {
  margin-top: 28px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-2);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero,
.problem-card,
.solution-card,
.case-card,
.process-card,
.operator-card,
.testimonial-card,
.philosophy-card,
.reason-card,
.comparison-card,
.faq-item,
.cta-card,
.logo-strip,
.audit-card {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 34px;
  justify-items: center;
  min-height: calc(100vh - 140px);
  padding: 72px 0 16px;
}

.hero::before,
.cta-card::after,
.audit-card::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 50%;
  width: min(760px, 88vw);
  height: 420px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(175, 201, 234, 0.18), transparent 72%);
  filter: blur(14px);
  pointer-events: none;
}

.hero h1,
.section-heading h2,
.cta-card h2,
.audit-copy h2 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.hero-text,
.section-heading p,
.solution-card p,
.case-note,
.process-card p,
.operator-card p,
.testimonial-card p,
.philosophy-card p,
.reason-card p,
.comparison-card li,
.faq-answer p,
.cta-card p,
.audit-copy p,
.logo-strip-label,
.loop-note p,
.problem-card p,
.pillar-card p,
.mini-note p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.hero-text {
  max-width: 46ch;
  margin: 0;
  font-size: 1.18rem;
  text-align: center;
}

.hero-stage {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 22px;
  max-width: 980px;
  text-align: center;
}

.hero-stage .eyebrow {
  margin-bottom: 0;
}

.hero h1 {
  max-width: none;
  font-size: clamp(2.35rem, 4.8vw, 4.5rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.hero-line {
  display: block;
  white-space: nowrap;
}

.hero-cta-wrap {
  display: grid;
  justify-items: center;
  width: 100%;
}

.hero-cta {
  display: grid;
  gap: 6px;
  min-width: min(100%, 420px);
  padding: 18px 28px;
  border: 1px solid rgba(231, 255, 255, 0.16);
  border-radius: 16px;
  background: linear-gradient(180deg, #19427a 0%, #0d2a58 100%);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(231, 255, 255, 0.14);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.hero-cta:hover,
.hero-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(231, 255, 255, 0.18);
}

.hero-cta-title {
  color: var(--accent);
  font-size: 1.22rem;
  font-weight: 700;
}

.hero-cta-subtitle {
  color: var(--muted);
  font-size: 0.98rem;
}

.signal-label,
.mini-note-title,
.preview-kicker {
  margin: 0 0 16px;
  color: var(--text);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pillar-stack {
  display: grid;
  gap: 16px;
}

.pillar-card,
.mini-note,
.preview-window {
  position: relative;
  z-index: 1;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(0, 0, 0, 0.16);
}

.pillar-card span,
.solution-number,
.process-step {
  color: var(--accent);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
}

.pillar-card h2,
.solution-card h3,
.case-card h3,
.process-card h3,
.operator-card h3,
.philosophy-card h3,
.reason-card h3 {
  margin: 10px 0 10px;
  font-size: 1.45rem;
  line-height: 1.1;
}

.logo-strip {
  display: grid;
  gap: 18px;
  padding: 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero-logo-strip {
  position: relative;
  z-index: 1;
  width: 100%;
  gap: 16px;
}

.creative-bar {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  width: 100%;
}

.creative-row {
  display: grid;
  gap: 0;
}

.creative-row-square {
  --creative-card-width: 220px;
  --creative-card-aspect: 1 / 1;
}

.creative-row-vertical {
  --creative-card-width: 220px;
  --creative-card-aspect: 9 / 16;
}

.creative-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 6px 0;
}

.creative-marquee::before,
.creative-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 88px;
  z-index: 2;
  pointer-events: none;
}

.creative-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #012b5d 0%, rgba(1, 43, 93, 0) 100%);
}

.creative-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #012b5d 0%, rgba(1, 43, 93, 0) 100%);
}

.creative-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: creative-scroll 38s linear infinite;
}

.creative-marquee:hover .creative-track {
  animation-play-state: paused;
}

.creative-reel {
  display: flex;
  gap: 18px;
  flex: 0 0 auto;
}

.creative-card {
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
  width: var(--creative-card-width, 220px);
  aspect-ratio: var(--creative-card-aspect, 9 / 16);
  border: 1px solid rgba(175, 201, 234, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(10, 18, 36, 0.96), rgba(4, 11, 24, 0.98)),
    rgba(0, 0, 0, 0.28);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(231, 255, 255, 0.04);
}

.creative-card img,
.creative-card video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.creative-card video {
  background: #071226;
}

.creative-card.is-placeholder {
  display: grid;
  place-items: center;
  padding: 18px;
}

.creative-card.is-placeholder::after {
  display: none;
}

.creative-placeholder-inner {
  display: grid;
  gap: 10px;
  text-align: center;
}

.creative-placeholder-inner strong {
  color: var(--accent);
  font-size: 1rem;
}

.creative-placeholder-inner span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

@keyframes creative-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

.logo-strip-header {
  max-width: 640px;
  justify-self: center;
  text-align: center;
}

.logo-strip-label {
  margin: 0;
}

.logo-marquee {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.logo-marquee::before,
.logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 72px;
  z-index: 2;
  pointer-events: none;
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #012b5d 0%, rgba(1, 43, 93, 0) 100%);
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #012b5d 0%, rgba(1, 43, 93, 0) 100%);
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: logo-scroll 34s linear infinite;
}

.logo-marquee-reverse .logo-track {
  animation-direction: reverse;
  animation-duration: 40s;
}

.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

.logo-reel {
  display: flex;
  gap: 14px;
  flex: 0 0 auto;
}

.logo-chip {
  display: grid;
  place-items: center;
  min-width: 0;
  height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.logo-chip img {
  display: block;
  max-width: none;
  height: 72px;
  width: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

@keyframes logo-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 7px));
  }
}

.section-heading {
  max-width: 830px;
  margin-bottom: 24px;
}

.section-heading h2 {
  font-size: clamp(2.4rem, 5vw, 4.1rem);
}

.problem-grid,
.solution-grid,
.operator-grid,
.testimonial-grid,
.philosophy-grid,
.reason-grid,
.comparison,
.faq-list {
  display: grid;
  gap: 20px;
}

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

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

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

.problem-card,
.solution-card,
.process-card,
.operator-card,
.testimonial-card,
.philosophy-card,
.reason-card,
.comparison-card,
.faq-item {
  border-radius: var(--radius-lg);
  padding: 26px;
}

.problem-card {
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
}

.solution-card {
  background:
    linear-gradient(180deg, rgba(227, 255, 255, 0.06), rgba(155, 187, 226, 0.05)),
    rgba(227, 255, 255, 0.03);
}

.solution-kicker,
.process-meta,
.audit-meta,
.case-brand {
  margin: 10px 0;
  color: var(--text);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.9rem;
}

.proof-gallery {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.4fr);
  gap: 18px;
  align-items: start;
}

.proof-shot {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(175, 201, 234, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.proof-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.proof-shot-feature {
  grid-row: 1 / span 7;
}

.process-intro {
  margin-top: 16px;
  margin-bottom: 28px;
}

.process-intro-card {
  max-width: 760px;
  padding: 28px;
  border: 1px solid rgba(175, 201, 234, 0.18);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(175, 201, 234, 0.12), rgba(35, 68, 111, 0.18)),
    rgba(227, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.process-intro-card h3 {
  margin: 8px 0 10px;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.process-intro-card p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.process-intro-card p:last-child {
  margin-bottom: 0;
}

.process-timeline {
  position: relative;
  display: grid;
  gap: 56px;
  margin-top: 12px;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(175, 201, 234, 0.22);
  transform: translateX(-50%);
}

.process-stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px minmax(0, 1fr);
  align-items: center;
  gap: 28px;
}

.process-stage-copy {
  max-width: 520px;
}

.process-stage-left .process-stage-copy {
  justify-self: end;
  text-align: left;
}

.process-stage-right .process-stage-copy {
  justify-self: start;
  text-align: left;
}

.process-stage-copy h3 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.process-stage-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.55;
}

.process-stage-node {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100%;
}

.process-stage-node::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(180deg, rgba(175, 201, 234, 0.1), rgba(175, 201, 234, 0.45), rgba(175, 201, 234, 0.1));
  transform: translateX(-50%);
}

.process-stage-number {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(175, 201, 234, 0.22);
  border-radius: 50%;
  background: #153765;
  color: var(--accent);
  font-family: "IBM Plex Mono", monospace;
  font-size: 1.1rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.process-stage-media {
  min-width: 0;
}

.process-media-stack {
  position: relative;
  width: min(100%, 520px);
  margin: 0 auto;
}

.process-stage-left .process-media-stack {
  margin-left: auto;
  margin-right: 0;
}

.process-stage-right .process-media-stack {
  margin-left: 0;
  margin-right: auto;
}

.process-shot {
  margin: 0;
}

.process-shot-card {
  overflow: hidden;
  border: 1px solid rgba(175, 201, 234, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.2);
}

.testimonial-marquee {
  position: relative;
  overflow: hidden;
}

.testimonial-marquee::before,
.testimonial-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 72px;
  z-index: 2;
  pointer-events: none;
}

.testimonial-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #001936 0%, rgba(0, 25, 54, 0) 100%);
}

.testimonial-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #001936 0%, rgba(0, 25, 54, 0) 100%);
}

.testimonial-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: testimonial-scroll 42s linear infinite;
}

.testimonial-marquee:hover .testimonial-track {
  animation-play-state: paused;
}

.testimonial-reel {
  display: flex;
  gap: 18px;
  flex: 0 0 auto;
}

.testimonial-shot {
  margin: 0;
  overflow: hidden;
  flex: 0 0 auto;
  width: min(520px, 82vw);
  border: 1px solid rgba(175, 201, 234, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.testimonial-shot img {
  display: block;
  width: 100%;
  height: auto;
}

@keyframes testimonial-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

.process-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.process-shot-large {
  max-width: 440px;
}

.process-shot-small {
  position: absolute;
  right: -18px;
  top: 22px;
  width: 46%;
}

.process-shot-wide + .process-shot-wide {
  margin-top: 18px;
}

.process-media-stack-brief .process-shot-large {
  max-width: 380px;
}

.process-media-stack-brief .process-shot-small {
  top: auto;
  bottom: 34px;
  right: -10px;
  width: 44%;
}

.process-media-stack-production,
.process-media-stack-launch,
.process-media-stack-iteration {
  display: grid;
  gap: 18px;
}

.operator-card,
.philosophy-card,
.reason-card,
.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
}

.audit-card,
.cta-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.audit {
  position: relative;
  left: 50%;
  width: min(calc(100vw - 32px), 1200px);
  transform: translateX(-50%);
}

.audit-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(175, 201, 234, 0.16), rgba(35, 68, 111, 0.2)),
    rgba(227, 255, 255, 0.05);
}

.audit-copy,
.audit-preview {
  position: relative;
  z-index: 1;
}

.audit-copy-panel {
  display: grid;
  align-content: start;
  gap: 18px;
  max-width: 860px;
  min-height: auto;
  padding: 0;
  background: transparent;
}

.audit-copy h2,
.cta-card h2 {
  max-width: 12ch;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
}

.audit-copy-panel h2 {
  max-width: 9ch;
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 0.96;
}

.cta-card {
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(175, 201, 234, 0.16), rgba(35, 68, 111, 0.2)),
    rgba(227, 255, 255, 0.06);
}

.audit-meta {
  margin: 18px 0 24px;
  color: var(--text);
}

.preview-window ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text);
  line-height: 1.7;
}

.testimonial-placeholder {
  display: grid;
  place-items: center;
  min-height: 220px;
  text-align: center;
  border-style: dashed;
}

.comparison {
  display: grid;
  gap: 24px;
}

.comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(175, 201, 234, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(8, 13, 28, 0.96), rgba(4, 10, 22, 0.98)),
    rgba(0, 0, 0, 0.28);
  box-shadow: var(--shadow);
}

.comparison-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 22px 20px;
  border-bottom: 1px solid rgba(175, 201, 234, 0.08);
  border-right: 1px solid rgba(175, 201, 234, 0.08);
  text-align: center;
}

.comparison-table tr:last-child th,
.comparison-table tr:last-child td {
  border-bottom: 0;
}

.comparison-table th:last-child,
.comparison-table td:last-child {
  border-right: 0;
}

.comparison-table thead th {
  color: var(--accent);
  font-size: 1.02rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.02);
}

.comparison-table thead .comparison-brand-col {
  background:
    linear-gradient(180deg, rgba(231, 255, 255, 0.08), rgba(155, 187, 226, 0.08)),
    rgba(255, 255, 255, 0.03);
}

.comparison-table .comparison-feature-col {
  width: 42%;
  background: transparent;
}

.comparison-table tbody th {
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
  text-align: left;
  background: rgba(255, 255, 255, 0.01);
}

.comparison-check,
.comparison-cross,
.comparison-mixed {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.35rem;
  font-weight: 700;
}

.comparison-check {
  background: #62ea1e;
  color: #061322;
  box-shadow: 0 0 0 4px rgba(98, 234, 30, 0.14);
}

.comparison-cross {
  color: rgba(231, 255, 255, 0.66);
}

.comparison-mixed {
  color: #f2c879;
}

.faq-list {
  max-width: 900px;
}

.faq-trigger {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  font-size: 1.18rem;
  font-weight: 700;
  cursor: pointer;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-answer > p {
  overflow: hidden;
  margin: 14px 0 0;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 1080px) {
  .solution-grid,
  .operator-grid,
  .reason-grid,
  .philosophy-grid {
    grid-template-columns: 1fr;
  }

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

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

  .proof-shot-feature {
    grid-row: auto;
  }

  .process-intro-card {
    max-width: none;
  }

  .process-stage {
    grid-template-columns: minmax(0, 1fr) 84px minmax(0, 1fr);
    gap: 20px;
  }

  .process-stage-copy h3 {
    font-size: clamp(1.8rem, 3.8vw, 2.5rem);
  }

  .logo-strip {
    padding: 24px;
  }

  .hero {
    min-height: auto;
    padding-top: 36px;
  }
}

@media (max-width: 760px) {
  body::before {
    background-size: 48px 48px;
  }

  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
    padding-bottom: 36px;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand cta"
      "nav nav";
    gap: 10px 12px;
    top: 8px;
    margin-top: 10px;
    padding: 12px 12px 14px;
    border-radius: 24px;
  }

  .brand-logo {
    width: 126px;
    height: 36px;
  }

  .brand {
    grid-area: brand;
    justify-self: start;
  }

  .site-nav {
    grid-area: nav;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    justify-self: stretch;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 0 0 auto;
    padding: 8px 12px;
    font-size: 0.88rem;
  }

  .hero-copy,
  .problem-card,
  .solution-card,
  .operator-card,
  .testimonial-card,
  .philosophy-card,
  .reason-card,
  .comparison-card,
  .faq-item,
  .audit-card,
  .cta-card,
  .logo-strip {
    padding: 22px;
  }

  .section {
    margin-top: 20px;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 0.76rem;
    letter-spacing: 0.08em;
  }

  .hero {
    gap: 22px;
    padding: 18px 0 6px;
  }

  .hero-stage {
    gap: 14px;
    width: 100%;
  }

  .hero h1 {
    max-width: 9.4ch;
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 0.99;
  }

  .hero-line {
    white-space: normal;
  }

  .hero-text {
    max-width: 30ch;
    font-size: 0.98rem;
    line-height: 1.52;
  }

  .hero-cta-title {
    font-size: 1rem;
  }

  .hero-cta-subtitle {
    font-size: 0.86rem;
    line-height: 1.4;
  }

  .logo-strip {
    gap: 12px;
    border-radius: 18px;
  }

  .logo-strip-header {
    max-width: 30ch;
  }

  .logo-strip-label {
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .logo-marquee {
    border-radius: 16px;
  }

  .logo-marquee::before,
  .logo-marquee::after {
    width: 28px;
  }

  .logo-track,
  .logo-reel {
    gap: 8px;
  }

  .logo-chip img {
    height: 40px;
  }

  .creative-bar {
    gap: 10px;
  }

  .creative-marquee {
    padding: 2px 0;
  }

  .creative-track,
  .creative-reel {
    gap: 8px;
  }

  .creative-row-square .creative-card {
    width: 132px;
    border-radius: 14px;
  }

  .creative-row-vertical .creative-card {
    width: 104px;
    border-radius: 14px;
  }

  .creative-marquee::before,
  .creative-marquee::after {
    width: 20px;
  }

  .process-intro-card {
    padding: 22px;
  }

  .process-timeline {
    gap: 34px;
  }

  .process-timeline::before {
    left: 28px;
    transform: none;
  }

  .process-stage {
    grid-template-columns: 56px 1fr;
    gap: 18px;
    align-items: start;
  }

  .process-stage-node {
    grid-column: 1;
    grid-row: 1 / span 2;
    min-height: 100%;
  }

  .process-stage-node::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .process-stage-copy,
  .process-stage-media {
    grid-column: 2;
  }

  .process-stage-copy,
  .process-stage-left .process-stage-copy,
  .process-stage-right .process-stage-copy {
    justify-self: start;
    max-width: none;
  }

  .process-stage-copy {
    order: 1;
  }

  .process-stage-media {
    order: 2;
  }

  .process-stage-copy h3 {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
  }

  .process-stage-copy p {
    font-size: 0.98rem;
  }

  .process-media-stack,
  .process-stage-left .process-media-stack,
  .process-stage-right .process-media-stack {
    width: 100%;
    margin: 0;
  }

  .process-shot-small {
    position: relative;
    right: auto;
    top: auto;
    bottom: auto;
    width: 78%;
    margin-top: -14px;
    margin-left: auto;
  }

  .process-media-stack-brief .process-shot-small {
    width: 78%;
    margin-top: -14px;
    margin-right: 0;
  }

  .proof-gallery {
    gap: 12px;
  }

  .proof-shot {
    border-radius: 16px;
  }

  .comparison-table-wrap {
    border-radius: 18px;
    -webkit-overflow-scrolling: touch;
  }

  .comparison-table {
    min-width: 660px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 14px 12px;
  }

  .comparison-table thead th {
    font-size: 0.88rem;
  }

  .comparison-table tbody th {
    font-size: 0.9rem;
    line-height: 1.32;
  }

  .comparison-check,
  .comparison-cross,
  .comparison-mixed {
    width: 34px;
    height: 34px;
    font-size: 1.05rem;
  }

  .testimonial-shot {
    width: min(320px, 82vw);
    border-radius: 16px;
  }

  .testimonial-marquee::before,
  .testimonial-marquee::after {
    width: 20px;
  }

  .logo-chip {
    min-width: 0;
    height: auto;
    padding: 0;
  }

  .logo-chip img {
    height: 42px;
  }

  .hero h1,
  .section-heading h2,
  .audit-copy h2,
  .cta-card h2 {
    font-size: clamp(2rem, 9.5vw, 3.3rem);
  }

  .button,
  .hero-cta {
    width: 100%;
    justify-self: stretch;
  }

  .button-small {
    grid-area: cta;
    width: auto;
    min-width: 0;
    justify-self: end;
    padding: 10px 14px;
    font-size: 0.84rem;
  }

  .hero-cta {
    min-width: 100%;
    padding: 15px 18px;
  }

  .section-heading {
    margin-bottom: 18px;
  }

  .section-heading h2 {
    line-height: 0.98;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: min(calc(100% - 16px), var(--max-width));
  }

  .site-header {
    padding: 10px 10px 12px;
    border-radius: 20px;
  }

  .brand-logo {
    width: 118px;
    height: 34px;
  }

  .site-nav a {
    padding: 7px 11px;
    font-size: 0.84rem;
  }

  .hero {
    gap: 16px;
    padding-top: 12px;
  }

  .hero h1 {
    max-width: 9.2ch;
    font-size: clamp(1.8rem, 9.4vw, 2.7rem);
  }

  .hero-text,
  .section-heading p,
  .solution-card p,
  .operator-card p,
  .faq-answer p,
  .audit-copy p,
  .logo-strip-label,
  .problem-card p {
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .button,
  .button-small {
    padding: 13px 18px;
    font-size: 0.95rem;
  }

  .logo-strip,
  .problem-card,
  .solution-card,
  .operator-card,
  .philosophy-card,
  .reason-card,
  .faq-item,
  .audit-card,
  .cta-card {
    padding: 16px;
    border-radius: 16px;
  }

  .creative-row-square .creative-card {
    width: 116px;
    border-radius: 12px;
  }

  .creative-row-vertical .creative-card {
    width: 92px;
    border-radius: 12px;
  }

  .process-stage {
    grid-template-columns: 46px 1fr;
    gap: 14px;
  }

  .process-stage-number {
    width: 44px;
    height: 44px;
    font-size: 0.96rem;
  }

  .process-stage-copy h3 {
    margin-bottom: 10px;
    font-size: clamp(1.45rem, 7vw, 1.9rem);
  }

  .process-stage-copy p {
    font-size: 0.95rem;
  }

  .process-shot-card,
  .proof-shot,
  .testimonial-shot {
    border-radius: 14px;
  }

  .comparison-table {
    min-width: 620px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 14px 12px;
  }
}

@media (max-width: 420px) {
  .page-shell {
    width: min(calc(100% - 12px), var(--max-width));
  }

  .site-header {
    gap: 8px 10px;
    top: 6px;
    margin-top: 6px;
    padding: 9px 9px 11px;
    border-radius: 18px;
  }

  .brand-logo {
    width: 110px;
    height: 32px;
  }

  .button-small {
    padding: 9px 12px;
    font-size: 0.8rem;
  }

  .site-nav a {
    padding: 7px 10px;
    font-size: 0.82rem;
  }

  .section {
    margin-top: 16px;
  }

  .hero h1,
  .section-heading h2,
  .audit-copy h2,
  .cta-card h2 {
    font-size: clamp(1.7rem, 9vw, 2.5rem);
  }

  .hero-text,
  .section-heading p,
  .solution-card p,
  .operator-card p,
  .faq-answer p,
  .audit-copy p,
  .logo-strip-label,
  .problem-card p,
  .process-stage-copy p {
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .logo-chip img {
    height: 36px;
  }

  .creative-track,
  .creative-reel {
    gap: 6px;
  }

  .creative-row-square .creative-card {
    width: 102px;
  }

  .creative-row-vertical .creative-card {
    width: 82px;
  }

  .proof-gallery {
    gap: 10px;
  }

  .process-intro-card {
    padding: 18px;
  }

  .process-timeline::before {
    left: 22px;
  }

  .process-stage {
    grid-template-columns: 40px 1fr;
    gap: 12px;
  }

  .process-stage-number {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }

  .process-shot-small,
  .process-media-stack-brief .process-shot-small {
    width: 84%;
    margin-top: -10px;
  }

  .comparison-table {
    min-width: 560px;
  }

  .comparison-check,
  .comparison-cross,
  .comparison-mixed {
    width: 30px;
    height: 30px;
    font-size: 0.95rem;
  }

  .testimonial-shot {
    width: min(280px, 80vw);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .faq-answer,
  .reveal {
    transition: none;
  }

  .logo-track {
    animation: none;
  }

  .creative-track {
    animation: none;
  }

  .testimonial-track {
    animation: none;
  }
}
