@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("assets/fonts/plus-jakarta-sans-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("assets/fonts/plus-jakarta-sans-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("assets/fonts/plus-jakarta-sans-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("assets/fonts/plus-jakarta-sans-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("assets/fonts/plus-jakarta-sans-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f4f7f2;
  --text: #121616;
  --brand: #0057ff;
  --accent: #f5b700;
  --mint: #d9eee5;
  --soft-blue: #dde8ff;
  --dark: #17201d;
  --white: #ffffff;
  --muted: #69706c;
  --wide: 1580px;
  --content: 1360px;
  --reading: 700px;
  --legal: 820px;
  --radius: 10px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: auto;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  letter-spacing: 0.012em;
  min-height: 100%;
}

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

button,
input,
select,
textarea {
  font-family: inherit;
}

a,
button {
  text-decoration: none;
}

a:hover,
button:hover {
  text-decoration: none;
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

::selection {
  background: var(--brand);
  color: var(--white);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 80;
  transform: translateY(-160%);
  background: var(--dark);
  color: var(--white);
  border: 0;
  border-radius: var(--radius);
  min-height: 44px;
  padding: 13px 22px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
}

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

.wrap {
  width: min(1360px, calc(100% - 56px));
  margin-inline: auto;
}

.wide {
  width: min(1580px, calc(100% - 32px));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--brand);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  letter-spacing: -0.02em;
}

h1 span {
  display: block;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 4.3rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 16ch;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.2;
  font-weight: 700;
}

p {
  margin: 0;
}

.section-lead,
.mix-intro p,
.hero-copy .lead {
  max-width: var(--reading);
  color: var(--muted);
}

.hero,
.mix,
.afterclick,
.proof,
.brief {
  padding: clamp(3rem, 5.5vw, 4.5rem) 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 14px 22px;
  border: 0;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  color: inherit;
  background: none;
}

.btn-icon {
  transition: transform 0.35s var(--ease);
}

.btn:hover .btn-icon,
.btn:focus-visible .btn-icon {
  transform: translateX(4px);
}

.btn-primary {
  background: var(--brand);
  color: var(--white);
}

.btn-primary:hover {
  background: #0046d1;
}

.btn-header {
  background: var(--dark);
  color: var(--white);
}

.btn-header:hover {
  background: #0f1715;
}

.text-link {
  color: var(--brand);
  font-weight: 600;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--text);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.header-bar {
  width: min(1580px, calc(100% - 32px));
  margin-inline: auto;
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: min-height 0.35s var(--ease);
}

.site-header.is-compact {
  background: rgba(244, 247, 242, 0.94);
  box-shadow: 0 1px 0 rgba(18, 22, 22, 0.06);
}

.site-header.is-compact .header-bar {
  min-height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  margin-right: auto;
}

.brand-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.brand-type {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  font-weight: 800;
  font-size: clamp(0.78rem, 1.15vw, 1.02rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
  white-space: nowrap;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--white);
  padding: 6px;
  border-radius: 14px;
}

.nav-link {
  min-height: 44px;
  padding: 10px 16px;
  border: 0;
  background: transparent;
  color: #6a7370;
  font: inherit;
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  border-radius: 10px;
  cursor: pointer;
}

.nav-link:hover {
  color: var(--text);
}

.nav-link.is-active {
  background: var(--mint);
  color: var(--dark);
  font-weight: 800;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 14px;
  border: 0;
  border-radius: 10px;
  background: var(--white);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.nav-toggle-bars {
  width: 16px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.nav-panel {
  width: min(1580px, calc(100% - 32px));
  margin: 0 auto 12px;
  background: var(--white);
  border-radius: 16px;
  padding: 12px;
}

.nav-panel nav {
  display: grid;
  gap: 6px;
}

.nav-panel-link {
  min-height: 48px;
  text-align: left;
  padding: 12px 16px;
  border: 0;
  border-radius: 10px;
  background: var(--bg);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.nav-panel-link:hover {
  background: var(--mint);
}

.nav-panel-link.is-active {
  background: var(--mint);
  color: var(--dark);
  font-weight: 800;
}

.hero {
  padding-top: calc(clamp(3rem, 5.5vw, 4.5rem) + 0.5rem);
}

.hero-stage {
  width: min(1580px, calc(100% - 32px));
  margin-inline: auto;
  position: relative;
  overflow: clip;
}

.canvas-ticks {
  position: absolute;
  inset: 0 0 auto 0;
  height: 18px;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(18, 22, 22, 0.12) 0 1px,
      transparent 1px 48px
    );
  opacity: 0.45;
}

.hero-glow {
  position: absolute;
  inset: 8% 8% auto auto;
  width: min(52%, 640px);
  height: min(70%, 520px);
  pointer-events: none;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(0, 87, 255, 0.14), transparent 58%),
    radial-gradient(ellipse at 20% 80%, rgba(245, 183, 0, 0.16), transparent 52%),
    radial-gradient(ellipse at 80% 90%, rgba(217, 238, 229, 0.7), transparent 48%);
  filter: blur(12px);
  animation: glow-shift 12s ease-in-out infinite;
}

.hero-composition {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  min-height: min(78vh, 860px);
  padding: 1.25rem 0 0.5rem;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy .eyebrow {
  opacity: 0;
}

.hero.is-ready .hero-copy .eyebrow {
  animation: title-in 0.7s var(--ease) both;
}

.hero-composition h1 {
  font-size: clamp(3.1rem, 6.2vw, 6.6rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 800;
  max-width: 11ch;
  position: relative;
  z-index: 1;
}

.hero-composition h1 span:nth-child(2) {
  color: var(--brand);
}

.hero-copy .lead {
  margin-top: 1.35rem;
  font-size: 1.02rem;
  max-width: 42ch;
}

.hero.is-ready .hero-copy .lead {
  animation: title-in 0.8s var(--ease) 0.22s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.5rem;
  opacity: 0;
}

.hero.is-ready .hero-actions {
  animation: title-in 0.8s var(--ease) 0.32s both;
}

.btn-ghost {
  background: var(--white);
  color: var(--text);
  box-shadow: 0 10px 24px rgba(23, 32, 29, 0.08);
}

.btn-ghost:hover {
  background: var(--mint);
}

.hero-flow {
  list-style: none;
  margin: 1.85rem 0 0;
  padding: 0;
  display: grid;
  gap: 0;
  max-width: 38rem;
  opacity: 0;
}

.hero.is-ready .hero-flow {
  animation: title-in 0.8s var(--ease) 0.42s both;
}

.hero-flow li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(18, 22, 22, 0.08);
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.hero-flow li:last-child {
  border-bottom: 1px solid rgba(18, 22, 22, 0.08);
}

.hero-flow strong {
  color: var(--text);
  font-weight: 700;
  margin-right: 0.4em;
}

.flow-mark {
  width: 10px;
  height: 10px;
  margin-top: 0.45rem;
  border-radius: 99px;
  background: var(--brand);
  box-shadow: 0 0 0 0 rgba(0, 87, 255, 0.45);
  animation: pulse-dot 2.4s ease-out infinite;
}

.hero-flow li:nth-child(2) .flow-mark {
  background: var(--accent);
  animation-delay: 0.4s;
}

.hero-flow li:nth-child(3) .flow-mark {
  background: var(--dark);
  animation-delay: 0.8s;
}

.campaign-board {
  position: relative;
  width: 100%;
  height: min(72vh, 640px);
  min-height: 560px;
  z-index: 2;
  transform: translate3d(var(--board-x, 0px), var(--board-y, 0px), 0);
  transition: transform 0.4s var(--ease);
}

.mix-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}

.mix-path {
  fill: none;
  stroke: rgba(0, 87, 255, 0.28);
  stroke-width: 1.6;
  stroke-dasharray: 8 10;
  stroke-linecap: round;
  animation: dash-flow 18s linear infinite;
}

.mix-path.delay-a { stroke: rgba(23, 32, 29, 0.18); animation-duration: 22s; }
.mix-path.delay-b { stroke: rgba(245, 183, 0, 0.45); animation-duration: 16s; }
.mix-path.delay-c { stroke: rgba(0, 87, 255, 0.2); animation-duration: 20s; }

.frag-slot {
  position: absolute;
  width: min(260px, 46%);
  animation: bob 5.6s ease-in-out infinite;
  will-change: transform;
}

.frag-slot:hover,
.frag-slot:focus-within {
  z-index: 6;
}

.slot-search { top: 2%; left: 6%; animation-delay: 0s; }
.slot-social { top: 6%; right: 2%; width: min(240px, 42%); animation-delay: -1.4s; animation-duration: 6.4s; }
.slot-native { top: 42%; left: 0; width: min(280px, 52%); animation-delay: -2.2s; animation-duration: 5.8s; }
.slot-prog { right: 6%; bottom: 4%; animation-delay: -0.8s; animation-duration: 6.8s; }
.slot-conv { left: 34%; bottom: 14%; animation-delay: -3s; animation-duration: 5.2s; }

.frag {
  --tilt: 0deg;
  width: 100%;
  padding: 16px 16px 14px;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(23, 32, 29, 0.12);
  opacity: 0;
  transform: translateY(28px) rotate(var(--tilt)) scale(0.96);
  transition:
    transform 0.7s var(--ease),
    opacity 0.7s var(--ease),
    box-shadow 0.35s var(--ease);
}

.hero.is-ready .frag {
  opacity: 1;
  transform: translateY(0) rotate(var(--tilt)) scale(1);
}

.frag:hover,
.frag:focus-visible {
  z-index: 6;
  transform: translateY(-8px) rotate(0deg) scale(1.04);
  box-shadow: 0 24px 48px rgba(23, 32, 29, 0.18);
}

.frag-kicker {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.frag-search {
  --tilt: -4deg;
  background: var(--white);
  transition-delay: 0.08s;
}

.frag-query {
  position: relative;
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.3;
  background: var(--bg);
  border-radius: 8px;
  padding: 10px 12px;
}

.caret {
  display: inline-block;
  width: 1.5px;
  height: 0.95em;
  margin-left: 3px;
  background: var(--brand);
  vertical-align: -0.12em;
  animation: blink 1s steps(1) infinite;
}

.frag-suggest {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.frag-suggest li {
  opacity: 0;
}

.hero.is-ready .frag-suggest li {
  animation: title-in 0.55s var(--ease) both;
}

.hero.is-ready .frag-suggest li:nth-child(1) { animation-delay: 0.55s; }
.hero.is-ready .frag-suggest li:nth-child(2) { animation-delay: 0.7s; }
.hero.is-ready .frag-suggest li:nth-child(3) { animation-delay: 0.85s; }

.frag-social {
  --tilt: 5deg;
  background: var(--mint);
  transition-delay: 0.16s;
}

.tile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 8px 0 10px;
}

.tile {
  height: 46px;
  border-radius: 8px;
  animation: tile-pulse 3.6s ease-in-out infinite;
}

.tile-ig { background: var(--brand); }
.tile-tt { background: var(--dark); animation-delay: 0.4s; }
.tile-li { background: var(--soft-blue); animation-delay: 0.8s; }
.tile-fb { background: var(--accent); animation-delay: 1.2s; }

.frag-native {
  --tilt: -2.5deg;
  background: var(--white);
  transition-delay: 0.24s;
}

.frag-article {
  font-weight: 700;
  line-height: 1.35;
  font-size: 1rem;
}

.frag-meta,
.frag-note {
  margin-top: 10px;
  font-size: 0.75rem;
  color: var(--muted);
}

.frag-prog {
  --tilt: 3deg;
  background: var(--dark);
  color: var(--white);
  transition-delay: 0.32s;
}

.frag-prog .frag-note {
  color: rgba(244, 247, 242, 0.72);
}

.matrix {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin: 10px 0;
}

.cell {
  height: 18px;
  border-radius: 4px;
  background: rgba(221, 232, 255, 0.18);
  animation: cell-flicker 2.8s ease-in-out infinite;
}

.cell:nth-child(2) { animation-delay: 0.2s; }
.cell:nth-child(3) { animation-delay: 0.4s; }
.cell:nth-child(4) { animation-delay: 0.15s; }
.cell:nth-child(5) { animation-delay: 0.55s; }
.cell:nth-child(6) { animation-delay: 0.7s; }
.cell:nth-child(7) { animation-delay: 0.35s; }
.cell:nth-child(8) { animation-delay: 0.9s; }
.cell:nth-child(9) { animation-delay: 0.1s; }
.cell:nth-child(10) { animation-delay: 0.65s; }
.cell:nth-child(11) { animation-delay: 0.45s; }
.cell:nth-child(12) { animation-delay: 0.8s; }

.cell.on {
  background: var(--accent);
}

.frag-conv {
  --tilt: -5deg;
  background: var(--soft-blue);
  transition-delay: 0.4s;
}

.lp-shell {
  display: grid;
  gap: 8px;
  margin: 10px 0;
}

.lp-line,
.lp-field,
.lp-cta {
  display: block;
  height: 8px;
  border-radius: 99px;
  background: var(--white);
}

.lp-line.wide { width: 86%; height: 10px; }
.lp-line { width: 62%; }
.lp-field { height: 22px; border-radius: 6px; width: 100%; }
.lp-cta {
  width: 42%;
  height: 16px;
  background: var(--brand);
  border-radius: 6px;
  animation: cta-glow 2.2s ease-in-out infinite;
}

.hero.is-ready .hero-composition h1 span {
  animation: title-in 0.8s var(--ease) both;
}

.hero.is-ready .hero-composition h1 span:nth-child(2) { animation-delay: 0.08s; }
.hero.is-ready .hero-composition h1 span:nth-child(3) { animation-delay: 0.16s; }

@keyframes title-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes glow-shift {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.9; }
  50% { transform: translate(-18px, 12px) scale(1.06); opacity: 1; }
}

@keyframes dash-flow {
  to { stroke-dashoffset: -240; }
}

@keyframes blink {
  0%, 45% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(0, 87, 255, 0.4); }
  70% { box-shadow: 0 0 0 8px rgba(0, 87, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 87, 255, 0); }
}

@keyframes tile-pulse {
  0%, 100% { transform: scale(1); filter: brightness(1); }
  50% { transform: scale(0.96); filter: brightness(1.08); }
}

@keyframes cell-flicker {
  0%, 100% { opacity: 0.45; }
  40% { opacity: 1; }
  70% { opacity: 0.6; }
}

@keyframes cta-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 87, 255, 0.2); }
  50% { box-shadow: 0 0 0 6px rgba(0, 87, 255, 0); }
}

.mix-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.8fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 2.5rem;
}

.mix-intro h2 {
  max-width: 12ch;
}

.mix-shell {
  display: grid;
  grid-template-columns: minmax(250px, 0.42fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.mix-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mix-layer {
  text-align: left;
  border: 0;
  cursor: pointer;
  background: var(--white);
  color: var(--text);
  border-radius: 14px;
  min-height: 72px;
  padding: 14px 18px;
  display: grid;
  gap: 2px;
  transform: translateX(calc(var(--shift) * 14px));
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
}

.mix-layer:nth-child(1) { --shift: 0; }
.mix-layer:nth-child(2) { --shift: 1; }
.mix-layer:nth-child(3) { --shift: 2; }
.mix-layer:nth-child(4) { --shift: 3; }
.mix-layer:nth-child(5) { --shift: 2; }
.mix-layer:nth-child(6) { --shift: 1; }

.mix-layer-name {
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
}

.mix-layer-hint {
  font-size: 0.8rem;
  color: var(--muted);
}

.mix-layer.is-active {
  background: var(--dark);
  color: var(--white);
  transform: translateX(calc(var(--shift) * 14px - 8px));
}

.mix-layer.is-active .mix-layer-hint {
  color: rgba(244, 247, 242, 0.7);
}

.mix-stage {
  background: var(--dark);
  color: var(--white);
  border-radius: 22px;
  min-height: 460px;
  padding: clamp(1.5rem, 3vw, 2.8rem);
  position: relative;
  overflow: hidden;
}

.mix-stage::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -40px;
  top: -50px;
  background: var(--brand);
  opacity: 0.18;
  border-radius: 32px;
  transform: rotate(18deg);
}

.mix-stage::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 90px;
  left: 8%;
  bottom: 8%;
  background: var(--accent);
  opacity: 0.16;
  border-radius: 18px;
}

.mix-panel {
  position: relative;
  z-index: 1;
}

.mix-panel.is-active {
  animation: panel-in 0.45s var(--ease);
}

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

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.mix-panel-kicker {
  letter-spacing: 0.05em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
}

.mix-panel h3 {
  margin-bottom: 14px;
  max-width: 18ch;
}

.mix-panel p {
  max-width: var(--reading);
  color: rgba(244, 247, 242, 0.82);
}

.chip-board {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.chip {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--dark);
}

.chip:nth-child(1) { grid-column: 1 / 4; }
.chip:nth-child(2) { grid-column: 4 / 7; }
.chip:nth-child(3) { grid-column: 2 / 5; }
.chip:nth-child(4) { grid-column: 5 / 7; }
.chip:nth-child(5) { grid-column: 1 / 3; }
.chip:nth-child(6) { grid-column: 3 / 6; }

.chip-a { background: var(--mint); }
.chip-b { background: var(--soft-blue); }
.chip-c { background: var(--accent); }
.chip-d { background: var(--white); }

.afterclick .wrap h2 {
  max-width: 16ch;
}

.afterclick .section-lead {
  margin-top: 1.1rem;
}

.bands {
  margin-top: 2.4rem;
  display: grid;
  gap: 0;
}

.band {
  padding: clamp(2.2rem, 4vw, 3.4rem) 0;
}

.band-inner {
  width: min(1360px, calc(100% - 56px));
  margin-inline: auto;
}

.band h3 {
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.8rem;
  max-width: 12ch;
}

.band p {
  max-width: var(--reading);
}

.band-mint {
  background: var(--mint);
}

.band-mint .band-inner {
  padding-right: min(18%, 180px);
}

.band-dark {
  background: var(--dark);
  color: var(--white);
}

.band-dark .band-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  padding-left: min(22%, 220px);
}

.band-dark p {
  color: rgba(244, 247, 242, 0.8);
}

.band-blue {
  background: var(--soft-blue);
}

.band-blue .band-inner {
  padding-left: min(12%, 140px);
}

.proof-collage {
  margin-top: 2.6rem;
  display: grid;
  grid-template-columns: 1.22fr minmax(280px, 1fr);
  gap: 22px;
  align-items: stretch;
}

.proof-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
}

.quote {
  margin: 0;
  border-radius: 26px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.proof.is-in .quote {
  opacity: 1;
  transform: none;
}

.proof.is-in .quote-md { transition-delay: 0.12s; }
.proof.is-in .quote-sm { transition-delay: 0.22s; }

.quote blockquote {
  margin: 0;
}

.quote p {
  font-size: 1.05rem;
  line-height: 1.65;
}

.quote figcaption {
  display: grid;
  gap: 2px;
  margin-top: 1.4rem;
}

.quote-name {
  font-weight: 700;
}

.quote-role,
.quote-mix {
  font-size: 0.82rem;
  color: var(--muted);
}

.quote-mix {
  font-weight: 600;
  color: var(--brand);
  margin-top: 6px;
}

.quote-lg {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--dark);
  color: var(--white);
  padding: clamp(1.8rem, 3.2vw, 3rem);
}

.quote-lg p {
  font-size: clamp(1.18rem, 2vw, 1.5rem);
  line-height: 1.48;
}

.quote-lg .quote-role {
  color: rgba(244, 247, 242, 0.68);
}

.quote-lg .quote-mix {
  color: var(--accent);
}

.quote-md {
  background: var(--mint);
  padding: 1.7rem 1.8rem;
}

.quote-sm {
  background: var(--white);
  padding: 1.55rem 1.65rem;
}

.brief-form {
  margin-top: 2.2rem;
}

.brief-group {
  border: 0;
  margin: 0 0 1.6rem;
  padding: 0 0 0.4rem 1.2rem;
  border-left: 3px solid var(--brand);
}

.brief-group legend {
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 0.78rem;
  padding: 0;
  margin-bottom: 14px;
  color: var(--dark);
}

.field-row {
  display: grid;
  gap: 14px;
}

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

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

.field {
  display: grid;
  gap: 7px;
}

.field label {
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid transparent;
  background: var(--white);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.4;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  box-shadow: inset 0 0 0 2px #c43c2c;
}

.field-error {
  color: #9c2b1e;
  font-size: 0.82rem;
  font-weight: 600;
}

.brief-submit {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-left: 1.2rem;
}

.privacy-note {
  max-width: 52ch;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-status {
  margin: 1rem 0 0 1.2rem;
  font-weight: 600;
  color: var(--dark);
}

.site-footer {
  background: var(--dark);
  color: rgba(244, 247, 242, 0.82);
  padding: 0;
  border-top: 1px solid rgba(244, 247, 242, 0.08);
}

.footer-grid {
  width: min(1580px, calc(100% - 32px));
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px 28px;
  min-height: 64px;
  padding: 14px 0;
}

.footer-name {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 8px 22px;
  flex-wrap: wrap;
}

.site-footer .text-link,
.site-footer .footer-btn {
  color: var(--white);
  font-weight: 600;
}

.site-footer .text-link:hover,
.site-footer .footer-btn:hover {
  color: var(--accent);
}

.footer-btn {
  background: none;
  border: 0;
  padding: 0;
  min-height: 44px;
  cursor: pointer;
}

.footer-copy {
  margin: 0;
  font-size: 0.88rem;
  white-space: nowrap;
}

.legal-page .legal-wrap {
  width: min(820px, calc(100% - 56px));
  margin: 0 auto;
}

.legal-page .legal-header {
  padding: 1.2rem 0 0;
}

.legal-page .legal-header-bar {
  width: min(1580px, calc(100% - 32px));
  margin-inline: auto;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.legal-page .brand {
  margin-right: 0;
}

.footer-nav .text-link,
.footer-nav .footer-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav-panel[hidden] {
  display: none !important;
}

.legal-content {
  padding: clamp(3rem, 5.5vw, 4.5rem) 0;
}

.legal-content h1 {
  font-size: clamp(2.1rem, 4vw, 4.3rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.4rem;
}

.legal-content h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  max-width: none;
  margin: 2rem 0 0.7rem;
  line-height: 1.2;
}

.legal-content p,
.legal-content li {
  color: var(--text);
}

.legal-content p + p {
  margin-top: 0.85rem;
}

.legal-content ul {
  padding-left: 1.15rem;
}

.legal-block {
  margin: 1.2rem 0;
}

.legal-block p {
  margin-top: 0.2rem;
}

@media (max-width: 1100px) {
  .hero-composition {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 12px;
  }

  .hero-composition h1 {
    font-size: clamp(2.8rem, 8vw, 4.8rem);
  }

  .campaign-board {
    height: 520px;
    min-height: 520px;
  }

  .mix-intro,
  .mix-shell {
    grid-template-columns: 1fr;
  }

  .mix-layer {
    transform: none;
  }

  .mix-layer.is-active {
    transform: none;
  }

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

  .quote-lg {
    grid-column: 1 / -1;
    min-height: 0;
  }

  .proof-stack {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding-top: 0;
    align-items: start;
  }

  .quote-md,
  .quote-sm {
    width: 100%;
  }
}

@media (max-width: 860px) {
  .wrap {
    width: min(1360px, calc(100% - 32px));
  }

  .legal-page .legal-wrap {
    width: min(820px, calc(100% - 32px));
  }

  .nav-desktop,
  .btn-header {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .brand-name {
    white-space: normal;
    max-width: 14rem;
    font-size: 0.82rem;
  }

  .hero-composition {
    min-height: 0;
  }

  .hero-composition h1 {
    max-width: 11ch;
  }

  .campaign-board {
    height: 430px;
    min-height: 430px;
    margin: 0.4rem 0 0;
  }

  .frag-slot {
    width: min(210px, 54%);
  }

  .field-row.three,
  .field-row.two,
  .brief-submit {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .band-mint .band-inner,
  .band-dark .band-inner,
  .band-blue .band-inner {
    padding: 0;
    align-items: flex-start;
    text-align: left;
  }

  .chip-board {
    grid-template-columns: 1fr 1fr;
  }

  .chip:nth-child(n) {
    grid-column: auto;
  }

  .proof-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 0;
  }

  .quote-md,
  .quote-sm {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
    min-height: 0;
    padding: 16px 0;
    gap: 4px;
  }

  .footer-copy {
    white-space: normal;
  }

  .campaign-board {
    height: 390px;
    min-height: 390px;
  }

  .frag {
    padding: 12px;
  }

  .frag-slot {
    width: min(168px, 48%);
  }

  .slot-search {
    top: 2%;
    left: 0;
  }

  .slot-social {
    top: 6%;
    right: 0;
    width: min(150px, 44%);
  }

  .slot-native {
    top: 46%;
    left: 0;
    width: min(170px, 50%);
  }

  .slot-prog {
    right: 0;
    bottom: 4%;
    width: min(160px, 46%);
  }

  .slot-conv {
    left: 28%;
    bottom: 22%;
    width: min(168px, 48%);
  }

  .tile {
    height: 34px;
  }

  .mix-stage {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .frag,
  .hero.is-ready .frag,
  .quote,
  .proof.is-in .quote,
  .hero-copy .eyebrow,
  .hero-copy .lead,
  .hero-actions,
  .hero-flow,
  .hero.is-ready .frag-suggest li {
    opacity: 1;
    transform: none;
  }
}
