@font-face {
  font-family: "Geist";
  src: url("assets/fonts/Geist-Variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #090909;
  --black-2: #101010;
  --white: #f6f6f1;
  --white-2: #eaeae5;
  --accent: #c8ff1a;
  --accent-ink: #090909;
  --accent-muted: rgba(9, 9, 9, 0.64);
  --accent-line: rgba(9, 9, 9, 0.28);
  --line-dark: rgba(246, 246, 241, 0.18);
  --line-light: rgba(9, 9, 9, 0.2);
  --shell: min(1240px, calc(100vw - 64px));
  --font: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--white);
  background: var(--black);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

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

.skip-link:focus {
  transform: none;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.site-header {
  position: absolute;
  z-index: 100;
  top: 15px;
  right: 15px;
  left: 15px;
  display: grid;
  height: 62px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 28px;
  border: 1px solid var(--line-dark);
}

.site-header.is-scrolled {
  position: fixed;
  border-color: var(--line-dark);
  background: rgba(9, 9, 9, 0.92);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
}

.brand img {
  width: 126px;
  height: auto;
  filter: invert(1);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(246, 246, 241, 0.7);
  font-size: 12px;
}

.desktop-nav a:hover {
  color: var(--white);
}

.header-apply {
  justify-self: end;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  gap: 24px;
  border: 1px solid var(--line-dark);
  color: var(--white);
  background: transparent;
  font-size: 12px;
  font-weight: 650;
  transition: background 160ms ease, color 160ms ease;
}

.button:hover {
  color: var(--black);
  background: var(--white);
}

.button--small {
  min-height: 38px;
  padding: 0 16px;
  font-size: 10px;
}

.button--accent {
  color: var(--accent-ink);
  border-color: var(--accent);
  background: var(--accent);
}

.button--accent:hover {
  color: var(--black);
  border-color: var(--white);
  background: var(--white);
}

.button--black {
  color: var(--white);
  border-color: var(--black);
  background: var(--black);
}

.button--black:hover {
  color: var(--black);
  border-color: var(--white);
  background: var(--white);
}

.button--full {
  width: 100%;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 900px;
  padding: 15px;
  background: var(--black);
}

.hero-frame {
  position: relative;
  overflow: hidden;
  min-height: 870px;
  border: 1px solid var(--line-dark);
  background: var(--black-2);
}

.hero-frame::after {
  position: absolute;
  z-index: 3;
  inset: 62px 0 0;
  content: "";
  pointer-events: none;
  opacity: 0.15;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 3px,
    rgba(255, 255, 255, 0.06) 4px
  );
  mix-blend-mode: soft-light;
}

.hero-media {
  position: absolute;
  inset: 62px 0 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 26%, rgba(200, 255, 26, 0.18), transparent 24%),
    linear-gradient(135deg, #121212 0%, #090909 70%);
}

.hero-system {
  position: absolute;
  top: 78px;
  right: -28px;
  width: min(720px, 56vw);
  color: var(--white);
}

.hero-system::before {
  position: absolute;
  top: -240px;
  right: -110px;
  width: 660px;
  height: 660px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 86px rgba(255, 255, 255, 0.025),
    0 0 0 172px rgba(255, 255, 255, 0.018);
}

.hero-system__status {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px 12px;
  color: rgba(246, 246, 241, 0.52);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-system__status span:last-child {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-system__status b {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(200, 255, 26, 0.12);
}

.hero-system__board {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(246, 246, 241, 0.2);
  background: rgba(14, 14, 14, 0.86);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.42);
}

.hero-system__head,
.hero-system__row {
  display: grid;
  grid-template-columns: 1.4fr 0.72fr 0.52fr;
  align-items: center;
}

.hero-system__head {
  min-height: 48px;
  color: rgba(246, 246, 241, 0.38);
  border-bottom: 1px solid var(--line-dark);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-system__head span,
.hero-system__row > span,
.hero-system__row > strong {
  padding: 0 18px;
}

.hero-system__head span + span,
.hero-system__row > span + span,
.hero-system__row > strong {
  border-left: 1px solid var(--line-dark);
}

.hero-system__row {
  min-height: 76px;
  color: rgba(246, 246, 241, 0.82);
  border-bottom: 1px solid var(--line-dark);
  font-size: 11px;
}

.hero-system__row > span,
.hero-system__row > strong {
  display: flex;
  height: 100%;
  align-items: center;
}

.hero-system__row b {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  margin-right: 12px;
  place-items: center;
  color: var(--accent);
  border: 1px solid rgba(200, 255, 26, 0.45);
  border-radius: 50%;
  font-size: 7px;
}

.hero-system__row > strong {
  color: var(--accent);
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-system__route {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  gap: 13px;
  color: rgba(246, 246, 241, 0.56);
  background: rgba(200, 255, 26, 0.04);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-system__route b {
  position: relative;
  width: 56px;
  height: 1px;
  background: rgba(200, 255, 26, 0.5);
}

.hero-system__route b::after {
  position: absolute;
  top: -2px;
  right: 0;
  width: 5px;
  height: 5px;
  border-top: 1px solid var(--accent);
  border-right: 1px solid var(--accent);
  content: "";
  transform: rotate(45deg);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 9, 9, 0.98) 0%, rgba(9, 9, 9, 0.88) 40%, rgba(9, 9, 9, 0.12) 78%),
    linear-gradient(0deg, rgba(9, 9, 9, 0.92) 0%, transparent 48%);
}

.hero-media iframe {
  position: absolute;
  z-index: 20;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: var(--black);
}

.hero-copy {
  position: absolute;
  z-index: 4;
  bottom: 52px;
  left: 28px;
  width: min(800px, 60vw);
}

.hero h1 {
  margin-bottom: 24px;
  font-size: clamp(52px, 5.2vw, 78px);
  font-weight: 520;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero-subtitle {
  max-width: 660px;
  margin-bottom: 26px;
  color: rgba(246, 246, 241, 0.78);
  font-size: 14px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: stretch;
}

.video-button {
  display: flex;
  max-width: 340px;
  align-items: center;
  padding: 0 22px;
  gap: 12px;
  border: 1px solid var(--line-dark);
  border-left: 0;
  background: rgba(9, 9, 9, 0.56);
  font-size: 10px;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
}

.play {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  padding-left: 2px;
  border: 1px solid var(--white);
  border-radius: 50%;
  font-size: 8px;
}

.hero-meta {
  position: absolute;
  z-index: 4;
  right: 28px;
  bottom: 52px;
  display: grid;
  width: 360px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.hero-meta > div {
  min-height: 80px;
  padding: 16px;
  border-right: 1px solid var(--line-dark);
}

.hero-meta > div:last-child {
  border-right: 0;
}

.hero-meta span,
.hero-meta strong {
  display: block;
}

.hero-meta span {
  margin-bottom: 10px;
  color: rgba(246, 246, 241, 0.4);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-meta strong {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.25;
}

.logo-proof {
  color: var(--black);
  border-bottom: 1px solid var(--line-light);
  background: var(--white);
}

.logo-proof__inner {
  display: grid;
  min-height: 206px;
  grid-template-columns: 170px 1fr;
  align-items: center;
  gap: 48px;
}

.logo-groups {
  display: grid;
  gap: 26px;
  padding: 28px 0;
}

.logo-group {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 20px;
}

.logo-group > span {
  color: rgba(9, 9, 9, 0.52);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.1em;
}

.logo-proof__inner > p {
  margin: 0;
  color: rgba(9, 9, 9, 0.48);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.logo-row {
  display: grid;
  align-items: center;
  gap: 30px;
}

.logo-row--b2b {
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 24px;
}

.logo-row--dtc {
  grid-template-columns: repeat(5, 1fr);
}

.logo-row > img,
.logo-lockup img {
  width: 100%;
  max-width: 118px;
  max-height: 32px;
  margin-inline: auto;
  object-fit: contain;
  filter: brightness(0);
  opacity: 1;
}

.logo-lockup {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.logo-lockup img {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
}

.logo-lockup small {
  color: rgba(9, 9, 9, 0.82);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.05;
  text-transform: uppercase;
}

.section {
  padding: 132px 0;
}

.section--black {
  color: var(--white);
  background: var(--black);
}

.section--white {
  color: var(--black);
  background: var(--white);
}

.section-head {
  max-width: 940px;
  margin: 0 auto 72px;
  text-align: center;
}

.section-head--left {
  margin-inline: 0;
  text-align: left;
}

.section-head h2,
.proof-head h2,
.founder-copy h2,
.book-inner h2 {
  margin-bottom: 24px;
  font-size: clamp(46px, 5vw, 72px);
  font-weight: 520;
  letter-spacing: -0.055em;
  line-height: 1;
}

.section-intro {
  max-width: 700px;
  margin: 0 auto;
  color: rgba(9, 9, 9, 0.6);
  font-size: 17px;
  line-height: 1.55;
}

.section-head--left .section-intro {
  margin-left: 0;
}

.section--black .section-intro {
  color: rgba(246, 246, 241, 0.62);
}

.three-rows {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.three-rows article {
  min-height: 290px;
  padding: 28px;
  border-right: 1px solid var(--line-light);
}

.three-rows article:last-child {
  border-right: 0;
}

.three-rows article > span,
.mechanism-steps article > span,
.process-list article > span,
.results-list article > span {
  display: block;
  margin-bottom: 68px;
  color: var(--accent);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.1em;
}

.three-rows h3,
.mechanism-steps h3,
.process-list h3,
.results-list h3 {
  margin-bottom: 14px;
  font-size: 22px;
  font-weight: 550;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.three-rows p,
.mechanism-steps p,
.process-list p,
.results-list p {
  margin: 0;
  color: rgba(9, 9, 9, 0.55);
  font-size: 13px;
  line-height: 1.55;
}

.mechanism-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 64px;
  align-items: start;
}

.mechanism-steps {
  border-top: 1px solid var(--line-dark);
}

.mechanism-steps article {
  position: relative;
  min-height: 188px;
  padding: 24px 20px 24px 52px;
  border-bottom: 1px solid var(--line-dark);
  opacity: 1;
  cursor: pointer;
  transition: background-color 240ms ease, box-shadow 240ms ease, opacity 240ms ease;
}

.mechanism-steps article.is-active {
  opacity: 1;
  background: rgba(200, 255, 26, 0.025);
  box-shadow: inset 3px 0 var(--accent);
}

.mechanism-steps article:not(.is-active) {
  opacity: 0.62;
}

.mechanism-steps article:focus-visible {
  outline: 1px solid var(--accent);
  outline-offset: -1px;
}

.mechanism-steps article > span {
  position: absolute;
  top: 28px;
  left: 18px;
  margin: 0;
}

.mechanism-steps p {
  color: rgba(246, 246, 241, 0.5);
}

.system-visual {
  position: sticky;
  top: 96px;
  border: 1px solid var(--line-dark);
  background: var(--black-2);
}

.system-title {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border-bottom: 1px solid var(--line-dark);
}

.system-title span {
  color: rgba(246, 246, 241, 0.38);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.system-title strong {
  font-size: 13px;
  font-weight: 600;
}

.contact-list > div {
  display: flex;
  min-height: 72px;
  align-items: center;
  padding: 0 24px;
  gap: 12px;
  border-bottom: 1px solid var(--line-dark);
}

.person-mark {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  font-size: 8px;
}

.contact-list p {
  margin: 0;
}

.contact-list strong,
.contact-list small {
  display: block;
}

.contact-list strong {
  font-size: 11px;
  font-weight: 600;
}

.contact-list small {
  color: rgba(246, 246, 241, 0.38);
  font-size: 8px;
}

.contact-list b {
  margin-left: auto;
  color: var(--accent);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.system-flow {
  display: grid;
  min-height: 174px;
  grid-template-columns: 1fr auto auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 24px;
  border-bottom: 1px solid var(--line-dark);
}

.system-flow > span {
  height: 1px;
  background: var(--line-dark);
}

.system-flow > div {
  display: flex;
  min-width: 145px;
  min-height: 92px;
  align-items: center;
  padding: 16px;
  gap: 12px;
  border: 1px solid var(--line-dark);
}

.system-flow b {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--white);
  border: 1px solid var(--white);
  font-size: 12px;
}

.system-flow p {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
}

.system-flow small {
  display: block;
  margin-top: 3px;
  color: rgba(246, 246, 241, 0.38);
  font-size: 8px;
  font-weight: 400;
}

.crm-record {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line-dark);
}

.crm-record > div {
  min-height: 94px;
  padding: 22px 24px;
  border-right: 1px solid var(--line-dark);
}

.crm-record > div:last-child {
  border-right: 0;
}

.crm-record span,
.crm-record strong {
  display: block;
}

.crm-record span {
  margin-bottom: 8px;
  color: rgba(246, 246, 241, 0.38);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.crm-record strong {
  font-size: 12px;
  font-weight: 600;
}

.signal-return {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  color: var(--accent);
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.1em;
}

.signal-return span {
  font-size: 18px;
}

.comparison-section {
  color: var(--accent-ink);
  background: var(--accent);
}

.comparison-section .section-intro {
  color: var(--accent-muted);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--accent-line);
}

.comparison-grid > div {
  padding: 34px;
}

.comparison-grid > div:first-child {
  color: var(--accent-muted);
  border-right: 1px solid var(--accent-line);
}

.comparison-grid h3 {
  margin-bottom: 28px;
  color: var(--accent-ink);
  font-size: 20px;
  font-weight: 600;
}

.comparison-grid ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.comparison-grid li {
  position: relative;
  min-height: 64px;
  padding: 20px 10px 20px 36px;
  border-top: 1px solid var(--accent-line);
  font-size: 13px;
}

.comparison-grid li::before {
  position: absolute;
  left: 6px;
  content: "×";
  font-weight: 700;
}

.comparison-grid > div:last-child li::before {
  content: "→";
}

.sales-cycle__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 92px;
  align-items: center;
}

.sales-track {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.sales-track li {
  min-height: 128px;
  padding: 24px;
  border-bottom: 1px solid var(--line-dark);
}

.sales-track span,
.sales-track strong {
  display: block;
}

.sales-track span {
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sales-track strong {
  max-width: 540px;
  font-size: 19px;
  font-weight: 520;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.process-list {
  position: relative;
  border-top: 1px solid var(--line-light);
}

.process-flow {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: -7px;
  width: 86px;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.process-flow path {
  fill: none;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.process-flow__base {
  stroke: rgba(9, 9, 9, 0.12);
  stroke-width: 1;
}

.process-flow__signal {
  stroke: var(--accent);
  stroke-width: 2;
  stroke-dasharray: 2 22;
  animation: signal-move 13s linear infinite;
}

.process-list article {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 142px;
  grid-template-columns: 60px 0.85fr 1.15fr;
  align-items: center;
  gap: 36px;
  border-bottom: 1px solid var(--line-light);
}

.process-list article > span {
  margin: 0;
}

.process-list h3,
.process-list p {
  margin: 0;
}

.results-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.results-list article {
  min-height: 244px;
  padding: 28px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.results-list article > span {
  margin-bottom: 48px;
}

.results-list p {
  color: rgba(246, 246, 241, 0.5);
}

.proof-section {
  padding: 0;
  color: var(--black);
  background: var(--white);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-right: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.proof-head {
  grid-column: 1 / -1;
  padding: 110px 40px 80px;
  border-bottom: 1px solid var(--line-light);
}

.proof-head h2 {
  max-width: 900px;
}

.proof-head > p:last-child {
  margin: 0;
  color: rgba(9, 9, 9, 0.55);
}

.proof-stat {
  min-height: 208px;
  padding: 30px;
  border-right: 1px solid var(--line-light);
}

.proof-stat:last-child {
  border-right: 0;
}

.proof-stat strong,
.proof-stat span,
.proof-stat small {
  display: block;
}

.proof-stat strong {
  margin-bottom: 56px;
  font-size: 36px;
  font-weight: 540;
  letter-spacing: -0.04em;
}

.proof-stat span {
  margin-bottom: 4px;
  font-size: 11px;
  font-weight: 650;
}

.proof-stat small {
  color: rgba(9, 9, 9, 0.45);
  font-size: 9px;
}

.founder-section {
  display: grid;
  min-height: 860px;
  grid-template-columns: 1fr 1fr;
}

.founder-photo {
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--line-dark);
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
  filter: grayscale(1) contrast(1.03);
}

.founder-copy {
  display: flex;
  max-width: 720px;
  flex-direction: column;
  justify-content: center;
  padding: 80px clamp(40px, 6vw, 100px);
}

.founder-copy h2 {
  font-size: clamp(44px, 4.4vw, 66px);
}

.founder-copy > p {
  color: rgba(246, 246, 241, 0.58);
  font-size: 14px;
}

.founder-signature {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
}

.founder-signature strong,
.founder-signature span {
  display: block;
}

.founder-signature strong {
  font-size: 17px;
  font-weight: 600;
}

.founder-signature span {
  margin-top: 3px;
  color: rgba(246, 246, 241, 0.38);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.testimonial-list blockquote {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  margin: 0;
  padding: 34px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.testimonial-list blockquote > p {
  max-width: 530px;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.testimonial-list footer {
  margin-top: auto;
}

.testimonial-list footer strong,
.testimonial-list footer span {
  display: block;
}

.testimonial-list footer strong {
  font-size: 11px;
  font-weight: 650;
}

.testimonial-list footer span {
  color: rgba(9, 9, 9, 0.48);
  font-size: 9px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 100px;
  align-items: center;
}

.price-panel {
  border: 1px solid var(--line-dark);
}

.price-title {
  padding: 34px;
  border-bottom: 1px solid var(--line-dark);
}

.price-title > span,
.price-title > strong,
.price-title > p {
  display: block;
}

.price-title > span {
  margin-bottom: 42px;
  color: rgba(246, 246, 241, 0.45);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-title > strong {
  font-size: 62px;
  font-weight: 520;
  letter-spacing: -0.05em;
  line-height: 1;
}

.price-title > strong small {
  margin-left: 10px;
  color: rgba(246, 246, 241, 0.4);
  font-size: 12px;
  font-weight: 450;
  letter-spacing: 0;
}

.price-title > p {
  max-width: 500px;
  margin: 18px 0 0;
  color: rgba(246, 246, 241, 0.5);
  font-size: 12px;
}

.price-panel ul {
  margin: 0;
  padding: 0 34px;
  list-style: none;
}

.price-panel li {
  position: relative;
  padding: 17px 0 17px 28px;
  border-bottom: 1px solid var(--line-dark);
  color: rgba(246, 246, 241, 0.72);
  font-size: 12px;
}

.price-panel li::before {
  position: absolute;
  left: 2px;
  color: var(--accent);
  content: "→";
}

.price-panel .button {
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 96px;
  align-items: start;
}

.faq-grid .section-head {
  position: sticky;
  top: 100px;
}

.faq-list {
  border-top: 1px solid var(--line-light);
}

.faq-list details {
  border-bottom: 1px solid var(--line-light);
}

.faq-list summary {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary span {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line-light);
  font-size: 14px;
  font-weight: 400;
  transition: transform 150ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details > p {
  max-width: 680px;
  margin: -4px 50px 28px 0;
  color: rgba(9, 9, 9, 0.58);
  font-size: 13px;
  line-height: 1.65;
}

.book-section {
  padding: 140px 0;
  color: var(--accent-ink);
  background: var(--accent);
}

.book-inner {
  max-width: 970px;
  text-align: left;
}

.book-inner h2 {
  max-width: 950px;
  font-size: clamp(54px, 6.5vw, 92px);
}

.book-inner > p {
  max-width: 670px;
  margin-bottom: 32px;
  color: var(--accent-muted);
  font-size: 16px;
}

.book-steps {
  display: grid;
  max-width: 970px;
  grid-template-columns: repeat(3, 1fr);
  margin: 42px 0 28px;
  border-top: 1px solid rgba(9, 9, 9, 0.34);
  border-left: 1px solid rgba(9, 9, 9, 0.34);
}

.book-steps > div {
  min-height: 164px;
  padding: 20px;
  border-right: 1px solid rgba(9, 9, 9, 0.34);
  border-bottom: 1px solid rgba(9, 9, 9, 0.34);
}

.book-steps b,
.book-steps span,
.book-steps small {
  display: block;
}

.book-steps b {
  margin-bottom: 34px;
  font-size: 8px;
  font-weight: 700;
}

.book-steps span {
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 680;
}

.book-steps small {
  color: rgba(9, 9, 9, 0.62);
  font-size: 10px;
  line-height: 1.45;
}

.site-footer {
  display: grid;
  min-height: 140px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 32px;
  color: var(--white);
  border-top: 1px solid var(--line-dark);
  background: var(--black);
}

.site-footer p {
  margin: 0;
  color: rgba(246, 246, 241, 0.38);
  font-size: 10px;
}

.site-footer > a:last-child {
  justify-self: end;
  color: rgba(246, 246, 241, 0.5);
  font-size: 10px;
}

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

.reveal[data-reveal-delay="1"] {
  transition-delay: 100ms;
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  :root {
    --shell: min(100% - 48px, 940px);
  }

  .desktop-nav {
    gap: 18px;
  }

  .hero-copy {
    width: 66vw;
  }

  .hero-meta {
    width: 300px;
  }

  .hero-system {
    right: -84px;
    width: 64vw;
  }

  .mechanism-layout,
  .sales-cycle__grid,
  .pricing-grid,
  .faq-grid {
    gap: 54px;
  }

  .system-flow > div {
    min-width: 118px;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0 18px;
  }

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

  .menu-toggle {
    display: grid;
    width: 38px;
    height: 38px;
    justify-self: end;
    place-items: center;
    gap: 0;
    border: 1px solid var(--line-dark);
    background: transparent;
  }

  .menu-toggle span {
    display: block;
    width: 15px;
    height: 1px;
    background: var(--white);
    transition: transform 150ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    z-index: 99;
    top: 78px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    padding: 32px 22px;
    opacity: 0;
    border: 1px solid var(--line-dark);
    background: var(--black);
    transition: opacity 150ms ease, visibility 150ms ease;
  }

  .mobile-nav.is-open {
    visibility: visible;
    opacity: 1;
  }

  .mobile-nav > a:not(.button) {
    padding: 16px 0;
    border-bottom: 1px solid var(--line-dark);
    font-size: 20px;
  }

  .mobile-nav .button {
    margin-top: 28px;
  }

  .hero-copy {
    right: 28px;
    bottom: 180px;
    width: auto;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-meta {
    right: 28px;
    bottom: 30px;
    left: 28px;
    width: auto;
  }

  .mechanism-layout,
  .sales-cycle__grid,
  .pricing-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .system-visual,
  .faq-grid .section-head {
    position: static;
  }

  .comparison-grid,
  .founder-section {
    grid-template-columns: 1fr;
  }

  .comparison-grid > div:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--accent-line);
  }

  .process-list article {
    grid-template-columns: 44px 0.82fr 1.18fr;
    gap: 20px;
  }

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

  .proof-stat:nth-child(3),
  .proof-stat:nth-child(5) {
    border-right: 0;
  }

  .proof-stat:nth-child(2),
  .proof-stat:nth-child(3) {
    border-bottom: 1px solid var(--line-light);
  }

  .founder-photo {
    min-height: 660px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .logo-row--b2b {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    row-gap: 26px;
  }
}

@media (max-width: 600px) {
  :root {
    --shell: calc(100vw - 36px);
  }

  .site-header {
    top: 10px;
    right: 10px;
    left: 10px;
    height: 58px;
  }

  .site-header.is-scrolled {
    right: 10px;
    left: 10px;
  }

  .brand img {
    width: 112px;
  }

  .hero {
    min-height: 844px;
    padding: 10px;
  }

  .hero-frame {
    min-height: 824px;
  }

  .hero-frame::after {
    inset: 58px 0 0;
  }

  .hero-media {
    inset: 58px 0 0;
  }

  .hero-system {
    top: 48px;
    right: -160px;
    width: 720px;
    opacity: 0.42;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(9, 9, 9, 0.99) 0%, rgba(9, 9, 9, 0.83) 61%, rgba(9, 9, 9, 0.22) 100%);
  }

  .hero-copy {
    right: 18px;
    bottom: 163px;
    left: 18px;
  }

  .hero h1 {
    margin-bottom: 18px;
    font-size: clamp(39px, 11.5vw, 48px);
    line-height: 0.98;
  }

  .hero h1 br {
    display: none;
  }

  .hero-subtitle {
    margin-bottom: 20px;
    font-size: 12px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button,
  .video-button {
    width: 100%;
    max-width: none;
  }

  .video-button {
    min-height: 58px;
    border-top: 0;
    border-left: 1px solid var(--line-dark);
  }

  .hero-meta {
    right: 18px;
    bottom: 20px;
    left: 18px;
  }

  .hero-meta > div {
    min-height: 70px;
    padding: 12px 10px;
  }

  .hero-meta span {
    margin-bottom: 7px;
    font-size: 6px;
  }

  .hero-meta strong {
    font-size: 9px;
  }

  .logo-proof__inner {
    min-height: 0;
    grid-template-columns: 1fr;
    padding: 34px 0;
    gap: 28px;
  }

  .logo-groups {
    gap: 24px;
  }

  .logo-group {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .logo-group > span {
    text-align: center;
  }

  .logo-proof__inner > p {
    text-align: center;
  }

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

  .logo-row > img,
  .logo-lockup img {
    max-width: 118px;
    max-height: 30px;
  }

  .section {
    padding: 86px 0;
  }

  .section-head {
    margin-bottom: 48px;
    text-align: left;
  }

  .section-head h2,
  .proof-head h2,
  .founder-copy h2,
  .book-inner h2 {
    font-size: 40px;
  }

  .section-intro {
    margin-left: 0;
    font-size: 15px;
  }

  .three-rows,
  .results-list,
  .testimonial-list {
    grid-template-columns: 1fr;
  }

  .three-rows article,
  .results-list article {
    min-height: 0;
    padding: 24px 0 28px;
    border-right: 0;
  }

  .three-rows article > span,
  .results-list article > span {
    margin-bottom: 32px;
  }

  .mechanism-steps article {
    padding-right: 0;
  }

  .system-visual {
    width: calc(100% + 36px);
    margin-left: -18px;
    border-right: 0;
    border-left: 0;
  }

  .system-flow {
    grid-template-columns: 1fr 1fr;
  }

  .system-flow > span {
    display: none;
  }

  .system-flow > div {
    min-width: 0;
  }

  .comparison-grid {
    width: calc(100% + 36px);
    margin-left: -18px;
    border-right: 0;
    border-left: 0;
  }

  .comparison-grid > div {
    padding: 26px 18px;
  }

  .process-list article {
    display: block;
    padding: 26px 0;
  }

  .process-list article > span {
    margin-bottom: 26px;
  }

  .process-list h3 {
    margin-bottom: 14px;
  }

  .results-list {
    border-left: 0;
  }

  .proof-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .proof-head {
    padding: 82px 18px 54px;
  }

  .proof-head h2 br {
    display: none;
  }

  .proof-stat {
    min-height: 158px;
    padding: 24px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .proof-stat strong {
    margin-bottom: 32px;
  }

  .founder-photo {
    min-height: 520px;
  }

  .founder-copy {
    padding: 78px 18px;
  }

  .testimonial-list {
    border-left: 0;
  }

  .testimonial-list blockquote {
    min-height: 240px;
    padding: 28px 0;
    border-right: 0;
  }

  .price-panel {
    width: calc(100% + 36px);
    margin-left: -18px;
    border-right: 0;
    border-left: 0;
  }

  .price-title,
  .price-panel ul {
    padding-right: 18px;
    padding-left: 18px;
  }

  .price-title > strong {
    font-size: 52px;
  }

  .faq-list summary {
    min-height: 74px;
    font-size: 14px;
  }

  .book-section {
    padding: 92px 0;
  }

  .book-inner h2 {
    font-size: 47px;
  }

  .book-inner .button {
    width: 100%;
  }

  .book-steps {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .book-steps > div {
    min-height: 0;
    padding: 18px;
  }

  .book-steps b {
    margin-bottom: 18px;
  }

  .site-footer {
    min-height: 112px;
    grid-template-columns: 1fr auto;
    padding: 0 18px;
  }

  .site-footer p {
    display: none;
  }
}


/* V2 clarity pass: one signal color, fewer hero ideas, and diagrams that teach. */
.hero {
  min-height: 780px;
}

.hero-frame {
  min-height: 750px;
  isolation: isolate;
  background:
    radial-gradient(circle at 84% 20%, rgba(200, 255, 26, 0.07), transparent 25%),
    var(--black);
}

.hero-frame::after {
  opacity: 0.07;
}

.hero-gesture {
  position: absolute;
  z-index: 1;
  top: 62px;
  right: -4%;
  width: min(58vw, 820px);
  height: 430px;
  pointer-events: none;
}

.hero-gesture svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hero-gesture path {
  fill: none;
  stroke: rgba(246, 246, 241, 0.14);
  stroke-width: 1.25;
  vector-effect: non-scaling-stroke;
}

.hero-gesture circle {
  fill: var(--accent);
  filter: drop-shadow(0 0 14px rgba(200, 255, 26, 0.5));
}

.hero-copy {
  top: 150px;
  bottom: auto;
  left: clamp(28px, 5vw, 72px);
  width: min(880px, calc(100% - 56px));
}

.hero h1 {
  max-width: 860px;
  font-size: clamp(54px, 5.4vw, 82px);
}

.hero-subtitle {
  max-width: 620px;
  color: rgba(246, 246, 241, 0.72);
  font-size: 15px;
}

.hero-score {
  position: absolute;
  z-index: 4;
  right: clamp(28px, 5vw, 72px);
  bottom: 42px;
  left: clamp(28px, 5vw, 72px);
  height: 150px;
  border-top: 1px solid var(--line-dark);
}

.hero-score > svg,
.results-path > svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.score-line {
  fill: none;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.score-line--base {
  stroke: rgba(246, 246, 241, 0.18);
  stroke-width: 1;
}

.score-line--signal {
  stroke: var(--accent);
  stroke-width: 2;
  stroke-dasharray: 10 18;
  animation: signal-move 9s linear infinite;
}

.hero-score__node {
  position: absolute;
  display: grid;
  grid-template-columns: 28px auto;
  align-items: center;
  gap: 0 10px;
  padding: 5px 9px 5px 5px;
  background: var(--black);
}

.hero-score__node b {
  display: grid;
  width: 26px;
  height: 26px;
  grid-row: 1 / 3;
  place-items: center;
  color: var(--accent-ink);
  border-radius: 50%;
  background: var(--accent);
  font-size: 8px;
}

.hero-score__node span,
.hero-score__node small {
  display: block;
}

.hero-score__node span {
  font-size: 11px;
  font-weight: 650;
}

.hero-score__node small {
  color: rgba(246, 246, 241, 0.42);
  font-size: 8px;
}

.hero-score__node--one {
  top: 67px;
  left: 1%;
}

.hero-score__node--two {
  top: 48px;
  left: 48%;
  transform: translateX(-50%);
}

.hero-score__node--three {
  top: 56px;
  right: 0;
}

.hero-frame > iframe {
  position: absolute;
  z-index: 30;
  inset: 62px 0 0;
  width: 100%;
  height: calc(100% - 62px);
  border: 0;
  background: var(--black);
}

.logo-proof__inner {
  min-height: 0;
  grid-template-columns: 1fr;
  padding: 30px 0 42px;
  gap: 20px;
}

.logo-groups {
  gap: 30px;
  padding: 0;
}

.logo-group {
  grid-template-columns: 42px 1fr;
  gap: 24px;
}

.logo-row--b2b {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px 38px;
}

.logo-row > img,
.logo-lockup {
  justify-self: center;
}

.logo-row > img {
  max-width: 150px;
  max-height: 36px;
}

.logo-lockup small {
  font-size: 10px;
}

.three-rows article {
  min-height: 344px;
}

.three-rows article > span {
  margin-bottom: 0;
}

.micro-visual {
  height: 86px;
  margin: 32px 0 38px;
}

.micro-visual svg,
.comparison-sketch svg,
.process-tool svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.micro-visual text,
.comparison-sketch text,
.process-tool text {
  fill: rgba(9, 9, 9, 0.58);
  font-family: var(--font);
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.diagram-line {
  fill: none;
  stroke-width: 1.25;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.diagram-line--muted {
  stroke: rgba(9, 9, 9, 0.34);
}

.diagram-line--accent {
  stroke: var(--accent);
  stroke-width: 2;
}

.diagram-line--dash {
  stroke-dasharray: 4 6;
}

.diagram-node,
.diagram-dot {
  fill: var(--black);
}

.diagram-dot--faint {
  opacity: 0.25;
}

.diagram-ring {
  fill: var(--white);
  stroke: var(--accent);
  stroke-width: 2;
}

.section--white .three-rows article > span,
.section--white .process-list article > span {
  color: rgba(9, 9, 9, 0.56);
}

.section--white .diagram-line--accent,
.comparison-section .diagram-line--accent {
  stroke: var(--black);
}

.section--white .diagram-ring,
.comparison-section .diagram-ring {
  fill: var(--accent);
  stroke: var(--black);
}

.mechanism-layout {
  grid-template-columns: 1fr;
  gap: 60px;
}

.mechanism-copy {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 88px;
  align-items: start;
}

.mechanism-copy .section-head {
  margin-bottom: 0;
}

.orchestration-map {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line-dark);
  background:
    radial-gradient(circle at 50% 40%, rgba(200, 255, 26, 0.055), transparent 34%),
    var(--black-2);
}

.map-route {
  display: grid;
  grid-template-columns: 1fr 44px 1fr 44px 1fr 44px 1fr;
  align-items: center;
}

.map-node {
  position: relative;
  display: flex;
  min-height: 164px;
  flex-direction: column;
  padding: 18px;
  border: 1px solid var(--line-dark);
}

.map-node > b {
  margin-bottom: auto;
  color: var(--accent);
  font-size: 8px;
  font-weight: 650;
}

.map-node > span,
.map-node > small {
  display: block;
}

.map-node > span {
  font-size: 14px;
  font-weight: 620;
}

.map-node > small {
  margin-top: 3px;
  color: rgba(246, 246, 241, 0.42);
  font-size: 9px;
}

.map-node i {
  position: absolute;
  top: 18px;
  right: 18px;
  font-style: normal;
}

.contact-dots {
  display: flex;
  gap: 4px;
}

.contact-dots em {
  width: 8px;
  height: 8px;
  border: 1px solid var(--accent);
  border-radius: 50%;
}

.contact-dots em:nth-child(2) {
  background: var(--accent);
}

.content-mark {
  width: 28px;
  height: 34px;
  border: 1px solid rgba(246, 246, 241, 0.42);
}

.content-mark::before,
.content-mark::after {
  position: absolute;
  right: 5px;
  left: 5px;
  height: 1px;
  content: "";
  background: rgba(246, 246, 241, 0.42);
}

.content-mark::before {
  top: 10px;
}

.content-mark::after {
  top: 17px;
}

.platform-pair {
  display: flex;
  gap: 5px;
}

.platform-pair em {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(246, 246, 241, 0.44);
  font-size: 9px;
  font-weight: 650;
  font-style: normal;
}

.pipeline-mark {
  display: flex;
  height: 32px;
  align-items: end;
  gap: 4px;
}

.pipeline-mark em {
  width: 6px;
  background: var(--accent);
}

.pipeline-mark em:nth-child(1) { height: 9px; opacity: 0.4; }
.pipeline-mark em:nth-child(2) { height: 18px; opacity: 0.7; }
.pipeline-mark em:nth-child(3) { height: 30px; }

.map-arrow svg {
  width: 100%;
  height: 80px;
}

.map-arrow path,
.map-return path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.5;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.map-return {
  position: relative;
  height: 76px;
  margin-top: 10px;
}

.map-return svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 72px;
}

.map-return path {
  stroke-dasharray: 5 7;
  opacity: 0.72;
}

.map-return span {
  position: absolute;
  bottom: 0;
  left: 50%;
  padding: 2px 10px;
  color: rgba(246, 246, 241, 0.48);
  background: var(--black-2);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

.comparison-section {
  color: var(--black);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  background: var(--white-2);
}

.comparison-grid {
  border-color: var(--line-light);
  background: var(--white);
}

.comparison-grid > div {
  padding: 34px 38px;
}

.comparison-grid > div:first-child {
  color: rgba(9, 9, 9, 0.55);
  border-color: var(--line-light);
}

.comparison-sketch {
  height: 118px;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line-light);
}

.sketch-dots circle {
  fill: var(--black);
}

.sketch-dots--muted {
  opacity: 0.32;
}

.sketch-box {
  fill: var(--accent);
  stroke: var(--black);
  stroke-width: 1;
}

.sketch-box--muted {
  fill: transparent;
  stroke: rgba(9, 9, 9, 0.32);
}

.formats-section {
  position: relative;
  overflow: hidden;
}

.formats-section .section-head {
  max-width: 900px;
}

.format-source {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(420px, 100%);
  min-height: 92px;
  margin: 0 auto;
  place-content: center;
  padding: 20px 30px;
  color: var(--black);
  border: 1px solid var(--black);
  background: var(--accent);
  text-align: center;
}

.format-source strong {
  display: block;
}

.format-source strong {
  font-size: 17px;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.format-flow {
  position: relative;
}

.format-flow__lines {
  width: 100%;
  height: 110px;
}

.format-flow__lines path {
  fill: none;
  stroke: rgba(9, 9, 9, 0.48);
  stroke-width: 1.25;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.format-flow__lines circle {
  fill: var(--accent);
  stroke: var(--black);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

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

.format-grid article {
  min-width: 0;
  padding: 14px 14px 26px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.format-grid article > span {
  display: block;
  margin: 22px 0 8px;
  color: rgba(9, 9, 9, 0.5);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.format-grid h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 620;
  letter-spacing: -0.03em;
}

.format-grid p {
  margin: 0;
  color: rgba(9, 9, 9, 0.55);
  font-size: 12px;
  line-height: 1.55;
}

.format-preview {
  position: relative;
  overflow: hidden;
  height: 230px;
  border: 1px solid var(--black);
  background: var(--white-2);
}

.format-preview--post {
  padding: 18px;
  background: var(--white);
}

.post-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.post-author > i {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--accent-ink);
  border-radius: 50%;
  background: var(--accent);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
}

.post-author b,
.post-author small {
  display: block;
}

.post-author b {
  font-size: 10px;
}

.post-author small {
  color: rgba(9, 9, 9, 0.45);
  font-size: 7px;
}

.post-copy {
  padding: 28px 0 22px;
}

.post-copy strong {
  display: block;
  margin-bottom: 18px;
  font-size: 16px;
  font-weight: 570;
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.post-copy span {
  display: block;
  width: 100%;
  height: 5px;
  margin-top: 7px;
  background: rgba(9, 9, 9, 0.12);
}

.post-copy span:nth-child(3) { width: 88%; }
.post-copy span:nth-child(4) { width: 66%; }

.post-metrics {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid var(--line-light);
  color: rgba(9, 9, 9, 0.45);
  font-size: 7px;
}

.format-preview--video {
  color: var(--white);
  background:
    linear-gradient(180deg, transparent 52%, rgba(9, 9, 9, 0.82)),
    #242424;
}

.video-person {
  position: absolute;
  right: 24%;
  bottom: 0;
  width: 52%;
  height: 78%;
  border-radius: 46% 46% 0 0;
  background: #3a3a3a;
}

.video-person i {
  position: absolute;
  top: -33px;
  left: 50%;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: #4a4a4a;
  transform: translateX(-50%);
}

.format-preview--video > b {
  position: absolute;
  top: 16px;
  left: 16px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  padding-left: 2px;
  color: var(--accent-ink);
  border-radius: 50%;
  background: var(--accent);
  font-size: 8px;
}

.video-captions {
  position: absolute;
  right: 32px;
  bottom: 30px;
  left: 32px;
}

.video-captions span {
  display: block;
  height: 7px;
  margin-top: 6px;
  background: var(--white);
}

.video-captions span:last-child {
  width: 70%;
  background: var(--accent);
}

.format-preview--video > small {
  position: absolute;
  right: 12px;
  bottom: 10px;
  font-size: 7px;
}

.format-preview--walkthrough {
  background: var(--black);
}

.walkthrough-bar {
  display: flex;
  height: 28px;
  align-items: center;
  padding: 0 10px;
  gap: 5px;
  border-bottom: 1px solid var(--line-dark);
}

.walkthrough-bar i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(246, 246, 241, 0.3);
}

.walkthrough-ui {
  position: absolute;
  inset: 45px 16px 16px;
  padding: 16px;
  border: 1px solid var(--line-dark);
}

.walkthrough-ui span {
  display: block;
  width: 72%;
  height: 8px;
  margin-bottom: 12px;
  background: rgba(246, 246, 241, 0.16);
}

.walkthrough-ui span:nth-child(2) { width: 48%; }
.walkthrough-ui span:nth-child(3) { width: 84%; }

.walkthrough-ui b {
  position: absolute;
  right: 18px;
  bottom: 16px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--accent);
  border-radius: 50%;
}

.format-preview--walkthrough > svg {
  position: absolute;
  z-index: 2;
  right: 8px;
  bottom: 12px;
  left: 8px;
  width: calc(100% - 16px);
}

.format-preview--walkthrough > svg path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.5;
}

.format-preview--walkthrough > svg circle {
  fill: var(--accent);
}

.format-preview--static {
  padding: 20px;
  color: var(--accent);
  background: var(--black);
}

.format-preview--static strong {
  position: absolute;
  bottom: 18px;
  left: 18px;
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 650;
  letter-spacing: -0.06em;
  line-height: 0.82;
}

.format-preview--static i {
  position: absolute;
  top: 22px;
  right: -28px;
  width: 110px;
  height: 110px;
  border: 1px solid var(--accent);
  border-radius: 50%;
}

.format-note {
  margin: 16px 0 0;
  color: rgba(9, 9, 9, 0.42);
  font-size: 9px;
}

.real-creative {
  margin-top: 118px;
  padding-top: 88px;
  border-top: 1px solid var(--line-light);
}

.real-creative.real-creative--standalone {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

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

.real-creative__head {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  align-items: end;
  margin-bottom: 48px;
  gap: 80px;
}

.real-creative__head h3 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(38px, 4.4vw, 64px);
  font-weight: 520;
  letter-spacing: -0.05em;
  line-height: 1;
}

.real-creative__head > p {
  margin: 0;
  color: rgba(9, 9, 9, 0.58);
  font-size: 14px;
  line-height: 1.6;
}

.real-creative__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.ad-shot {
  margin: 0;
  padding: 18px 18px 30px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.ad-shot__stage {
  display: grid;
  min-height: 390px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(9, 9, 9, 0.16);
  background:
    linear-gradient(rgba(9, 9, 9, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 9, 9, 0.035) 1px, transparent 1px),
    var(--white-2);
  background-size: 22px 22px;
}

.screenshot-slot {
  display: flex;
  min-width: 160px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: rgba(246, 246, 241, 0.9);
  border: 1px solid rgba(246, 246, 241, 0.24);
  background: var(--black);
  box-shadow: 0 24px 54px rgba(9, 9, 9, 0.14);
  text-align: center;
}

.screenshot-slot--portrait {
  width: 220px;
  aspect-ratio: 4 / 5;
}

.screenshot-slot--vertical {
  width: 180px;
  aspect-ratio: 9 / 16;
}

.screenshot-slot--square {
  width: 250px;
  aspect-ratio: 1;
}

.screenshot-slot--wide {
  width: min(86%, 430px);
  aspect-ratio: 16 / 9;
}

.screenshot-slot span,
.screenshot-slot strong,
.screenshot-slot small {
  display: block;
}

.screenshot-slot span {
  margin-bottom: auto;
  color: var(--accent);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.screenshot-slot strong {
  margin: auto 0 6px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.screenshot-slot small {
  color: rgba(246, 246, 241, 0.42);
  font-size: 8px;
}

.ad-shot figcaption {
  padding: 24px 4px 0;
}

.ad-shot figcaption > span {
  display: block;
  margin-bottom: 10px;
  color: rgba(9, 9, 9, 0.48);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ad-shot figcaption h3 {
  margin-bottom: 9px;
  font-size: 20px;
  font-weight: 620;
  letter-spacing: -0.03em;
}

.ad-shot figcaption p {
  max-width: 470px;
  margin: 0;
  color: rgba(9, 9, 9, 0.55);
  font-size: 12px;
  line-height: 1.55;
}

.ad-shot__stage > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.section-bridge {
  position: relative;
  z-index: 2;
  height: 96px;
  overflow: hidden;
}

.section-bridge--light-dark {
  background: var(--white);
}

.section-bridge--dark-light {
  background: var(--black);
}

.section-bridge svg {
  width: 100%;
  height: 100%;
}

.section-bridge__fill {
  stroke: none;
}

.section-bridge--light-dark .section-bridge__fill {
  fill: var(--black);
}

.section-bridge--dark-light .section-bridge__fill {
  fill: var(--white);
}

.section-bridge__line {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 10 15;
  vector-effect: non-scaling-stroke;
}

.section-bridge circle {
  fill: var(--accent);
  stroke: var(--black);
  stroke-width: 1;
  filter: drop-shadow(0 0 9px rgba(200, 255, 26, 0.55));
  vector-effect: non-scaling-stroke;
}

.map-arrow path:first-child,
.format-flow__lines path,
.team-curve path:first-child,
.map-return path:first-child,
.team-loop path:first-child,
.section-bridge__line {
  stroke-dasharray: 7 9;
  animation: signal-move 10s linear infinite;
}

.team-diagram {
  min-height: 198px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-light);
}

.team-node {
  display: flex;
  min-height: 108px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  border: 1px solid rgba(9, 9, 9, 0.3);
}

.team-node b,
.team-node span {
  display: block;
}

.team-node b {
  margin-bottom: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-node span {
  color: rgba(9, 9, 9, 0.52);
  font-size: 9px;
  line-height: 1.35;
}

.team-diagram--old {
  display: grid;
  grid-template-columns: 1fr 86px 1fr;
  align-items: center;
}

.team-disconnect {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: rgba(9, 9, 9, 0.42);
  gap: 8px;
}

.team-disconnect i {
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(9, 9, 9, 0.28) 0 4px, transparent 4px 8px);
}

.team-disconnect b {
  font-size: 18px;
  font-weight: 450;
}

.team-diagram--old > small {
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: 18px;
  color: rgba(9, 9, 9, 0.42);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-diagram--new {
  display: grid;
  grid-template-columns: 1fr 54px 1.05fr 54px 1fr;
  align-items: center;
}

.maestro-hub {
  display: flex;
  min-height: 122px;
  flex-direction: column;
  justify-content: center;
  padding: 14px;
  color: var(--accent-ink);
  border: 1px solid var(--black);
  background: var(--accent);
  text-align: center;
}

.maestro-hub b {
  margin-bottom: 7px;
  font-size: 15px;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.maestro-hub span {
  color: rgba(9, 9, 9, 0.6);
  font-size: 8px;
  line-height: 1.35;
  text-transform: uppercase;
}

.team-curve svg {
  width: 100%;
  height: 74px;
}

.team-curve path,
.team-loop path {
  fill: none;
  stroke: var(--black);
  stroke-width: 1.5;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.team-loop {
  position: relative;
  grid-column: 1 / -1;
  height: 58px;
}

.team-loop svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 58px;
}

.team-loop path {
  stroke-dasharray: 5 7;
  opacity: 0.55;
}

.team-loop span {
  position: absolute;
  bottom: 0;
  left: 50%;
  padding: 2px 8px;
  color: rgba(9, 9, 9, 0.48);
  background: var(--white);
  font-size: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

.old-way-section,
.maestro-way-section {
  position: relative;
  overflow: hidden;
}

.maestro-way-section {
  background: var(--black-2);
}

.old-way-section .section-head,
.maestro-way-section .section-head {
  max-width: 1080px;
}

.old-way-section .section-head h2,
.maestro-way-section .section-head h2 {
  font-size: clamp(52px, 6.2vw, 88px);
}

.old-model {
  display: grid;
  grid-template-columns: 1fr 230px 1fr;
  align-items: stretch;
  margin-top: 22px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.old-model__lane {
  display: flex;
  min-height: 500px;
  flex-direction: column;
  padding: 32px;
}

.old-model__lane:first-child {
  border-right: 1px solid var(--line-light);
  transform: translateY(-14px);
}

.old-model__lane:last-child {
  border-left: 1px solid var(--line-light);
  transform: translateY(14px);
}

.model-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 22px;
}

.model-label b {
  font-size: 22px;
  font-weight: 650;
  letter-spacing: -0.035em;
}

.model-label span {
  color: rgba(9, 9, 9, 0.48);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.filter-cloud {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  margin: auto 0;
  gap: 9px;
}

.filter-cloud span {
  padding: 9px 12px;
  color: rgba(9, 9, 9, 0.6);
  border: 1px solid rgba(9, 9, 9, 0.24);
  font-size: 9px;
}

.filter-cloud span:nth-child(2),
.filter-cloud span:nth-child(5) {
  opacity: 0.54;
}

.old-lane-flow {
  position: relative;
  display: grid;
  margin: 38px 0;
  padding: 0;
  list-style: none;
}

.old-lane-flow::before {
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 5px;
  border-left: 1px dashed rgba(9, 9, 9, 0.25);
  content: "";
}

.old-lane-flow li {
  position: relative;
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr);
  padding: 18px 0 18px 26px;
  gap: 14px;
  border-top: 1px solid var(--line-light);
}

.old-lane-flow li:last-child {
  border-bottom: 1px solid var(--line-light);
}

.old-lane-flow li::before {
  position: absolute;
  top: 21px;
  left: 0;
  width: 11px;
  height: 11px;
  color: rgba(9, 9, 9, 0.5);
  background: var(--white);
  content: "×";
  font-size: 11px;
  line-height: 1;
}

.old-lane-flow b {
  font-size: 11px;
  font-weight: 650;
  line-height: 1.35;
}

.old-lane-flow span {
  color: rgba(9, 9, 9, 0.56);
  font-size: 10px;
  line-height: 1.45;
}

.account-rows {
  display: grid;
  align-content: center;
  margin: auto 0;
}

.account-rows span {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--line-light);
  color: rgba(9, 9, 9, 0.66);
  font-size: 10px;
}

.account-rows span:last-child {
  border-bottom: 1px solid var(--line-light);
}

.account-rows i {
  width: 8px;
  height: 8px;
  border: 1px solid rgba(9, 9, 9, 0.48);
  border-radius: 50%;
}

.sales-blindspot {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: center;
  margin: 26px 0;
  padding: 16px;
  gap: 12px;
  border: 1px dashed rgba(9, 9, 9, 0.3);
  color: rgba(9, 9, 9, 0.58);
  font-size: 10px;
  line-height: 1.45;
}

.sales-blindspot b {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(9, 9, 9, 0.28);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 520;
}

.model-output {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding-top: 20px;
  gap: 20px;
  border-top: 1px solid var(--line-light);
}

.model-output small {
  color: rgba(9, 9, 9, 0.42);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.model-output strong {
  font-size: 13px;
  font-weight: 650;
}

.model-break {
  display: grid;
  grid-template-columns: 1fr 82px 1fr;
  align-content: center;
  align-items: center;
  padding: 0 10px;
  gap: 6px;
  text-align: center;
}

.model-break i {
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(9, 9, 9, 0.28) 0 4px, transparent 4px 9px);
}

.model-break b {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  color: var(--black);
  font-size: 72px;
  font-weight: 300;
  line-height: 1;
}

.model-break__copy {
  grid-column: 1 / -1;
  margin-top: 22px;
}

.model-break__copy strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 720;
  letter-spacing: -0.035em;
}

.model-break__copy span {
  color: rgba(9, 9, 9, 0.52);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.06em;
  line-height: 1.75;
  text-transform: uppercase;
}

.old-model__failure {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 180px minmax(0, 1fr);
  align-items: start;
  padding: 30px 34px;
  gap: 32px;
  border-top: 1px solid var(--black);
  color: var(--white);
  background: var(--black);
}

.old-model__failure h3 {
  font-size: 24px;
  font-weight: 650;
  letter-spacing: -0.04em;
}

.old-model__failure p {
  max-width: 850px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.55;
}

.new-model {
  position: relative;
  min-height: 430px;
  padding: 48px 0 28px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.new-model__flow {
  position: absolute;
  z-index: 0;
  top: 34px;
  right: 0;
  left: 0;
  width: 100%;
  height: 330px;
}

.new-model__path,
.new-model__arrow {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.6;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.new-model__path {
  stroke-dasharray: 8 11;
  animation: signal-move 9s linear infinite;
}

.new-model__path--return {
  animation-direction: reverse;
}

.new-model__nodes {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.86fr 1fr;
  align-items: center;
  gap: 150px;
}

.model-team,
.maestro-core {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  padding: 24px;
}

.model-team {
  border: 1px solid var(--line-dark);
  background: var(--black);
}

.model-team b {
  margin-bottom: auto;
  font-size: 22px;
  font-weight: 620;
  letter-spacing: -0.035em;
}

.model-team span,
.maestro-core span {
  display: block;
  padding: 10px 0;
  border-top: 1px solid var(--line-dark);
  color: rgba(246, 246, 241, 0.56);
  font-size: 9px;
}

.maestro-core {
  justify-content: center;
  color: var(--accent-ink);
  border: 1px solid var(--accent);
  background: var(--accent);
  box-shadow: 0 0 80px rgba(200, 255, 26, 0.1);
}

.maestro-core small {
  margin-bottom: 10px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.maestro-core strong {
  margin-bottom: 30px;
  font-size: 30px;
  font-weight: 760;
  letter-spacing: -0.04em;
}

.maestro-core span {
  color: rgba(9, 9, 9, 0.62);
  border-color: rgba(9, 9, 9, 0.24);
}

.new-model__legend {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-top: 38px;
  gap: 24px;
  color: rgba(246, 246, 241, 0.42);
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.new-model__legend span:last-child {
  text-align: right;
}

.new-model__legend b {
  color: var(--accent);
  font-size: 9px;
  font-weight: 700;
}

.sales-track {
  position: relative;
  padding-left: 54px;
  border-top: 0;
}

.sales-track::before {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 16px;
  width: 1px;
  content: "";
  background: var(--accent);
}

.sales-track li {
  position: relative;
  min-height: 138px;
  padding: 24px 20px;
}

.sales-track li::before {
  position: absolute;
  top: 30px;
  left: -45px;
  width: 13px;
  height: 13px;
  border: 4px solid var(--black);
  border-radius: 50%;
  content: "";
  background: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}

.process-list article {
  min-height: 168px;
  grid-template-columns: 46px 170px 0.82fr 1.18fr;
  gap: 28px;
}

.process-tool {
  width: 170px;
  height: 74px;
}

.process-tool rect,
.process-tool circle {
  fill: transparent;
  stroke: rgba(9, 9, 9, 0.36);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.process-tool .tool-accent {
  fill: var(--accent);
  stroke: var(--black);
}

.process-tool .tool-accent-box {
  fill: var(--accent);
  stroke: var(--black);
}

.process-tool .tool-line,
.process-tool .tool-arrow {
  fill: none;
  stroke: rgba(9, 9, 9, 0.52);
  stroke-width: 1.25;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.results-path {
  position: relative;
  height: 150px;
  margin: -14px 0 64px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.results-path > div {
  position: absolute;
  bottom: 17px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 3px 8px 3px 3px;
  background: var(--black);
}

.results-path > div:nth-of-type(1) { left: 1%; }
.results-path > div:nth-of-type(2) { left: 34%; transform: translateX(-50%); }
.results-path > div:nth-of-type(3) { left: 66%; transform: translateX(-50%); }
.results-path > div:nth-of-type(4) { right: 1%; }

.results-path b {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: var(--accent-ink);
  border-radius: 50%;
  background: var(--accent);
  font-size: 7px;
}

.results-path span {
  color: rgba(246, 246, 241, 0.68);
  font-size: 9px;
  font-weight: 620;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.results-list {
  margin-top: 0;
}

@keyframes signal-move {
  to { stroke-dashoffset: -280; }
}

@media (max-width: 1080px) {
  .old-model {
    grid-template-columns: 1fr 180px 1fr;
  }

  .new-model__nodes {
    gap: 96px;
  }

  .hero h1 {
    max-width: 760px;
  }

  .logo-row--b2b {
    gap: 28px;
  }

  .mechanism-copy {
    gap: 56px;
  }

  .process-list article {
    grid-template-columns: 42px 142px 0.86fr 1.14fr;
    gap: 22px;
  }

  .process-tool {
    width: 142px;
  }
}

@media (max-width: 860px) {
  .section-bridge {
    height: 80px;
  }

  .old-model {
    grid-template-columns: 1fr 116px 1fr;
  }

  .old-model__lane {
    min-height: 380px;
    padding: 24px;
  }

  .model-label {
    display: block;
  }

  .model-label span {
    display: block;
    margin-top: 6px;
  }

  .new-model__nodes {
    gap: 62px;
  }

  .model-team,
  .maestro-core {
    min-height: 210px;
    padding: 18px;
  }

  .new-model__flow {
    top: 22px;
  }

  .hero {
    min-height: 810px;
  }

  .hero-frame {
    min-height: 780px;
  }

  .hero-copy {
    top: 126px;
  }

  .hero-score {
    bottom: 32px;
  }

  .hero-gesture {
    right: -24%;
    width: 94vw;
    opacity: 0.72;
  }

  .mechanism-copy {
    grid-template-columns: 1fr;
  }

  .orchestration-map {
    padding: 22px;
  }

  .map-route {
    grid-template-columns: 1fr 38px 1fr 38px 1fr 38px 1fr;
  }

  .map-node {
    min-height: 150px;
    padding: 14px;
  }

  .map-node i {
    top: 14px;
    right: 14px;
  }

  .map-node > span {
    font-size: 12px;
  }

  .format-flow__lines {
    display: none;
  }

  .format-source {
    margin-bottom: 34px;
  }

  .format-source::after {
    position: absolute;
    bottom: -35px;
    left: 50%;
    width: 1px;
    height: 34px;
    content: "";
    background: var(--black);
  }

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

  .format-preview {
    height: 250px;
  }

  .real-creative__head {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .real-creative__head > p {
    max-width: 620px;
  }

  .ad-shot__stage {
    min-height: 350px;
  }

  .process-list article {
    grid-template-columns: 38px 128px 0.82fr 1.18fr;
    gap: 18px;
  }

  .process-tool {
    width: 128px;
  }
}

@media (max-width: 600px) {
  .section-bridge {
    height: 64px;
  }

  .process-flow {
    display: none;
  }

  .old-way-section .section-head h2,
  .maestro-way-section .section-head h2 {
    font-size: 43px;
  }

  .old-model {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }

  .old-model__lane {
    min-height: 0;
    padding: 24px 0;
    border-right: 0 !important;
    border-bottom: 1px solid var(--line-light);
    border-left: 0 !important;
    transform: none !important;
  }

  .old-lane-flow li {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .model-break {
    width: 150px;
    min-height: 120px;
    justify-self: center;
  }

  .model-break i {
    transform: rotate(90deg);
  }

  .old-model__failure {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 10px;
  }

  .new-model {
    min-height: 0;
    padding: 30px 0;
  }

  .new-model__flow {
    display: none;
  }

  .new-model__nodes {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .new-model__nodes::before {
    position: absolute;
    z-index: -1;
    top: 40px;
    bottom: 40px;
    left: 50%;
    width: 1px;
    content: "";
    background: var(--accent);
  }

  .new-model__legend {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
    text-align: center;
  }

  .new-model__legend span:last-child {
    text-align: center;
  }

  .hero {
    min-height: 840px;
  }

  .hero-frame {
    min-height: 820px;
  }

  .hero-copy {
    top: 112px;
    right: 18px;
    left: 18px;
    width: auto;
  }

  .hero h1 {
    font-size: clamp(42px, 12vw, 52px);
  }

  .hero-subtitle {
    font-size: 13px;
  }

  .hero-gesture {
    top: 62px;
    right: -42%;
    width: 150vw;
    height: 340px;
    opacity: 0.55;
  }

  .hero-score {
    right: 18px;
    bottom: 22px;
    left: 18px;
    height: 128px;
  }

  .hero-score__node {
    grid-template-columns: 22px auto;
    gap: 0 6px;
    padding: 3px;
  }

  .hero-score__node b {
    width: 21px;
    height: 21px;
    font-size: 6px;
  }

  .hero-score__node span {
    max-width: 82px;
    font-size: 8px;
    line-height: 1.1;
  }

  .hero-score__node small {
    display: none;
  }

  .hero-score__node--one { top: 61px; }
  .hero-score__node--two { top: 43px; }
  .hero-score__node--three { top: 49px; }

  .logo-proof__inner {
    padding: 30px 0 38px;
  }

  .logo-group {
    grid-template-columns: 1fr;
  }

  .logo-row--b2b,
  .logo-row--dtc {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 24px;
  }

  .three-rows article {
    min-height: 0;
  }

  .micro-visual {
    width: min(100%, 300px);
  }

  .orchestration-map {
    width: calc(100% + 36px);
    margin-left: -18px;
    padding: 18px;
    border-right: 0;
    border-left: 0;
  }

  .map-route {
    grid-template-columns: 1fr;
  }

  .map-node {
    min-height: 122px;
  }

  .map-arrow {
    display: grid;
    height: 46px;
    place-items: center;
  }

  .map-arrow svg {
    width: 42px;
    height: 54px;
    transform: rotate(90deg);
  }

  .map-return {
    height: auto;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--line-dark);
  }

  .map-return svg {
    display: none;
  }

  .map-return span {
    position: static;
    display: block;
    padding: 0;
    background: transparent;
    line-height: 1.45;
    text-align: center;
    transform: none;
    white-space: normal;
  }

  .comparison-grid > div {
    padding: 26px 18px;
  }

  .comparison-sketch {
    height: 102px;
  }

  .format-grid {
    grid-template-columns: 1fr;
    border-left: 0;
  }

  .format-grid article {
    padding: 12px 0 30px;
    border-right: 0;
  }

  .format-preview {
    height: 280px;
  }

  .format-grid article > span {
    margin-top: 18px;
  }

  .format-note {
    line-height: 1.4;
  }

  .real-creative {
    margin-top: 82px;
    padding-top: 64px;
  }

  .real-creative__head {
    margin-bottom: 36px;
  }

  .real-creative__head h3 {
    font-size: 40px;
  }

  .real-creative__grid {
    grid-template-columns: 1fr;
    border-left: 0;
  }

  .ad-shot {
    padding: 12px 0 28px;
    border-right: 0;
  }

  .ad-shot__stage {
    min-height: 330px;
  }

  .screenshot-slot--portrait { width: 190px; }
  .screenshot-slot--vertical { width: 158px; }
  .screenshot-slot--square { width: 220px; }

  .team-diagram--old,
  .team-diagram--new {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .team-node,
  .maestro-hub {
    min-height: 108px;
  }

  .team-disconnect,
  .team-curve {
    justify-self: center;
  }

  .team-disconnect {
    width: 70px;
    height: 44px;
    transform: rotate(90deg);
  }

  .team-diagram--old > small {
    grid-column: 1;
    margin-top: 18px;
    text-align: center;
  }

  .team-curve {
    display: grid;
    width: 54px;
    height: 48px;
    place-items: center;
  }

  .team-curve svg {
    width: 48px;
    transform: rotate(90deg);
  }

  .team-loop {
    display: none;
  }

  .sales-track {
    padding-left: 42px;
  }

  .sales-track li {
    padding-right: 0;
  }

  .sales-track li::before {
    left: -33px;
  }

  .process-list article {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 18px 10px;
    padding: 28px 0;
  }

  .process-list article > span {
    margin: 0;
  }

  .process-tool {
    width: min(180px, 100%);
  }

  .process-list h3,
  .process-list p {
    grid-column: 1 / -1;
  }

  .process-list h3 {
    margin-bottom: -2px;
  }

  .results-path {
    height: 130px;
    margin-bottom: 48px;
  }

  .results-path > div {
    gap: 4px;
    padding-right: 3px;
  }

  .results-path b {
    width: 20px;
    height: 20px;
  }

  .results-path span {
    font-size: 7px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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

/* Old-way diagram: two independent systems whose paths stop before they meet. */
.old-model--scattered {
  position: relative;
  display: grid;
  min-height: 760px;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto 92px auto;
  align-items: start;
  margin-top: 22px;
  border: 0;
}

.old-island {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(9, 9, 9, 0.24);
  background: var(--white);
  box-shadow: 10px 10px 0 rgba(9, 9, 9, 0.035);
}

.old-island--marketing {
  z-index: 2;
  grid-row: 1;
  grid-column: 1 / 9;
  transform: rotate(-0.45deg);
}

.old-island--sales {
  z-index: 2;
  grid-row: 3;
  grid-column: 8 / 13;
  transform: rotate(0.6deg);
}

.old-island > header,
.old-island > footer {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
}

.old-island > header {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line-light);
}

.old-island > header h3 {
  font-size: 25px;
  font-weight: 660;
  letter-spacing: -0.04em;
}

.old-island > header span,
.old-island > footer small {
  color: rgba(9, 9, 9, 0.42);
  font-size: 8px;
  font-weight: 680;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.old-island > footer {
  padding-top: 20px;
  border-top: 1px solid var(--line-light);
}

.old-island > footer strong {
  font-size: 13px;
  font-weight: 680;
}

.old-funnel {
  display: grid;
  grid-template-columns: 1fr 24px 1fr 24px 1fr;
  align-items: stretch;
  padding: 28px 0;
}

.old-funnel > div {
  min-height: 134px;
  padding: 16px;
  border: 1px solid rgba(9, 9, 9, 0.18);
}

.old-funnel > div:nth-of-type(2) { transform: translateY(9px); }
.old-funnel > div:nth-of-type(3) { transform: translateY(-5px); }

.old-funnel b,
.old-funnel strong,
.old-funnel p {
  display: block;
}

.old-funnel b {
  margin-bottom: 22px;
  color: rgba(9, 9, 9, 0.35);
  font-size: 8px;
}

.old-funnel strong {
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 670;
}

.old-funnel p {
  margin: 0;
  color: rgba(9, 9, 9, 0.5);
  font-size: 9px;
  line-height: 1.45;
}

.old-funnel > i {
  align-self: center;
  color: rgba(9, 9, 9, 0.3);
  font-size: 15px;
  font-style: normal;
  text-align: center;
}

.old-island--sales .account-rows { margin: 28px 0 20px; }
.old-island--sales .sales-blindspot { margin: 0 0 26px; }

.old-dead-zone {
  position: absolute;
  z-index: 3;
  top: 290px;
  left: 34%;
  width: 39%;
  height: 250px;
  text-align: center;
  pointer-events: none;
}

.old-dead-zone svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.old-dead-zone path {
  fill: none;
  stroke: rgba(9, 9, 9, 0.32);
  stroke-width: 1;
  stroke-dasharray: 6 9;
  vector-effect: non-scaling-stroke;
}

.old-dead-zone > strong,
.old-dead-zone > small,
.dead-mark,
.dead-tag {
  position: absolute;
}

.dead-mark {
  top: 82px;
  left: calc(50% - 30px);
  width: 60px;
  color: var(--black);
  font-size: 56px;
  font-weight: 300;
  line-height: 1;
}

.old-dead-zone > strong {
  top: 145px;
  left: 0;
  width: 100%;
  font-size: 20px;
  letter-spacing: -0.04em;
}

.old-dead-zone > small {
  top: 178px;
  left: 0;
  width: 100%;
  color: rgba(9, 9, 9, 0.45);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dead-tag {
  padding: 5px 8px;
  border: 1px solid rgba(9, 9, 9, 0.2);
  color: rgba(9, 9, 9, 0.48);
  background: var(--white);
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dead-tag--one { top: 47px; left: 15%; transform: rotate(-4deg); }
.dead-tag--two { right: 10%; bottom: 23px; transform: rotate(3deg); }

.old-model--scattered .old-model__failure {
  position: relative;
  top: auto;
  left: auto;
  display: block;
  width: auto;
  height: auto;
  grid-row: 3;
  grid-column: 1 / 6;
  align-self: end;
  padding: 28px;
  border: 0;
  border-radius: 0;
  color: var(--white);
  background: var(--black);
  box-shadow: none;
}

.old-model--scattered .old-model__failure h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.old-model--scattered .old-model__failure p {
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.logo-row > img[src$="bullymake.svg"],
.logo-row > img[src$="candid-leap.svg"] {
  filter: grayscale(1) contrast(4);
}

.logo-row > img[src$="bullymake.svg"] {
  max-width: 104px;
  max-height: 48px;
}

@media (max-width: 860px) {
  .old-model--scattered {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 96px;
  }

  .old-island--marketing,
  .old-island--sales,
  .old-model--scattered .old-model__failure {
    grid-row: auto;
    grid-column: 1;
    transform: none;
  }

  .old-dead-zone {
    position: relative;
    top: auto;
    left: auto;
    width: min(440px, 90%);
    height: 190px;
    justify-self: center;
    margin: -62px auto;
  }

  .old-dead-zone svg { transform: rotate(90deg); }
  .old-model--scattered .old-model__failure { max-width: 520px; }
}

@media (max-width: 600px) {
  .old-island { padding: 22px; }
  .old-island > header { display: block; }
  .old-island > header span { display: block; margin-top: 6px; }
  .old-funnel { grid-template-columns: 1fr; gap: 10px; }
  .old-funnel > div { min-height: 0; }
  .old-funnel > div:nth-of-type(2),
  .old-funnel > div:nth-of-type(3) { transform: none; }
  .old-funnel > i { transform: rotate(90deg); }
}

/* Compact founder note: the portrait supports the signature instead of dominating the section. */
.founder-section {
  display: block;
  min-height: 0;
  padding: 124px 0;
}

.founder-copy {
  width: min(calc(100% - 48px), 1040px);
  max-width: none;
  margin: 0 auto;
  padding: 0;
}

.founder-copy h2 {
  max-width: 920px;
}

.founder-copy > p {
  max-width: 820px;
  font-size: 15px;
  line-height: 1.65;
}

.founder-signature {
  display: flex;
  align-items: center;
  padding-top: 26px;
  gap: 15px;
}

.founder-signature img {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border: 1px solid rgba(246, 246, 241, 0.28);
  border-radius: 50%;
  object-fit: cover;
  object-position: center 24%;
  filter: grayscale(1) contrast(1.03);
}

.founder-signature div {
  min-width: 0;
}

@media (max-width: 600px) {
  .founder-section { padding: 86px 0; }
  .founder-copy { width: calc(100% - 36px); padding: 0; }
}

/* Hero proof sits immediately beneath the primary action. */
.hero-logo-proof {
  position: absolute;
  z-index: 5;
  right: clamp(28px, 5vw, 72px);
  bottom: 28px;
  left: clamp(28px, 5vw, 72px);
  display: grid;
  grid-template-columns: 156px 1fr;
  align-items: center;
  padding-top: 18px;
  gap: 32px;
  border-top: 1px solid var(--line-dark);
  color: var(--white);
}

.hero-logo-proof > p {
  margin: 0;
  color: rgba(246, 246, 241, 0.42);
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-logo-proof .logo-groups {
  gap: 14px;
  padding: 0;
}

.hero-logo-proof .logo-group {
  grid-template-columns: 30px 1fr;
  gap: 16px;
}

.hero-logo-proof .logo-group > span {
  color: rgba(246, 246, 241, 0.38);
  font-size: 8px;
}

.hero-logo-proof .logo-row {
  gap: 16px 24px;
}

.hero-logo-proof .logo-row--b2b {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.hero-logo-proof .logo-row--dtc {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.hero-logo-proof .logo-row > img,
.hero-logo-proof .logo-lockup img {
  max-width: 108px;
  max-height: 25px;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: 0.76;
}

.hero-logo-proof .logo-lockup img {
  width: 22px;
  height: 22px;
}

.hero-logo-proof .logo-lockup small {
  color: rgba(246, 246, 241, 0.72);
  font-size: 8px;
}

.hero-logo-proof .logo-row > img[src$="bullymake.svg"],
.hero-logo-proof .logo-row > img[src$="candid-leap.svg"] {
  filter: grayscale(1) contrast(3);
}

@media (max-width: 860px) {
  .hero { min-height: 920px; }
  .hero-frame { min-height: 890px; }
  .hero-logo-proof {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .hero-logo-proof .logo-row--b2b { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
  .hero { min-height: 980px; }
  .hero-frame { min-height: 960px; }
  .hero-logo-proof {
    right: 18px;
    bottom: 24px;
    left: 18px;
  }
  .hero-logo-proof .logo-group { grid-template-columns: 1fr; gap: 8px; }
  .hero-logo-proof .logo-row--b2b,
  .hero-logo-proof .logo-row--dtc { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .hero-logo-proof .logo-row > :nth-child(n + 5) { display: none; }
  .hero-logo-proof .logo-row > img { max-height: 21px; }
}

/* Outcomes are a value checklist, not a card grid. */
.results-list {
  display: block;
  max-width: 1040px;
  margin: 0 auto;
  border: 0;
}

.results-list article {
  display: grid;
  min-height: 0;
  grid-template-columns: 58px minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  align-items: center;
  padding: 30px 0;
  gap: 24px;
  border-right: 0;
  border-bottom: 1px solid var(--line-dark);
}

.results-list article:first-child {
  border-top: 1px solid var(--line-dark);
}

.results-list article > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin: 0;
  color: var(--accent-ink);
  border-radius: 50%;
  background: var(--accent);
  font-size: 15px;
  font-weight: 780;
}

.results-list h3,
.results-list p {
  margin: 0;
}

.results-list h3 {
  max-width: 390px;
  font-size: 23px;
}

.results-list p {
  max-width: 560px;
  font-size: 13px;
}

@media (max-width: 760px) {
  .results-list article {
    grid-template-columns: 44px 1fr;
    padding: 25px 0;
    gap: 10px 16px;
  }

  .results-list article > span {
    grid-row: 1 / 3;
    align-self: start;
  }

  .results-list p {
    grid-column: 2;
  }
}

/* Clarity and conversion pass */
.fit-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: 96px;
}

.fit-grid .section-head {
  margin: 0;
}

.fit-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.fit-list li {
  display: grid;
  min-height: 78px;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  border-bottom: 1px solid var(--line-light);
  font-size: clamp(16px, 1.5vw, 21px);
  font-weight: 570;
  letter-spacing: -0.02em;
}

.fit-list li span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: var(--accent-ink);
  background: var(--accent);
  font-size: 12px;
  font-weight: 750;
}

body.application-open {
  overflow: hidden;
}

.application-modal {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.application-modal[hidden] {
  display: none;
}

.application-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(7px);
}

.application-dialog {
  position: relative;
  width: min(920px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  border: 1px solid rgba(246, 246, 241, 0.26);
  color: var(--white);
  background: var(--black);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
}

.application-close {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line-dark);
  background: transparent;
  font-size: 24px;
  font-weight: 300;
  cursor: pointer;
}

.application-progress {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  padding: 28px 76px 0 38px;
  gap: 18px;
}

.application-progress > span {
  color: rgba(246, 246, 241, 0.54);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.application-progress > i {
  height: 2px;
  overflow: hidden;
  background: rgba(246, 246, 241, 0.16);
}

.application-progress b {
  display: block;
  width: 16.666%;
  height: 100%;
  background: var(--accent);
  transition: width 220ms ease;
}

.application-wizard,
.application-result {
  min-height: 610px;
}

.application-step,
.application-result {
  padding: 74px 88px 68px;
}

.application-step {
  display: none;
}

.application-step.is-active {
  display: block;
  animation: application-in 220ms ease both;
}

.application-result[hidden] {
  display: none;
}

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

.application-question {
  max-width: 720px;
  margin-bottom: 38px;
}

.application-question h2 {
  margin-bottom: 14px;
  font-size: clamp(38px, 5vw, 64px);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.application-question p {
  max-width: 610px;
  margin: 0;
  color: rgba(246, 246, 241, 0.58);
  font-size: 14px;
}

.application-field {
  display: block;
  max-width: 660px;
  margin-top: 18px;
}

.application-field > span,
.application-binary legend {
  display: block;
  margin-bottom: 8px;
  color: rgba(246, 246, 241, 0.64);
  font-size: 11px;
  font-weight: 620;
}

.application-field input,
.application-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(246, 246, 241, 0.35);
  border-radius: 0;
  outline: none;
  color: var(--white);
  background: transparent;
  font: inherit;
  font-size: 22px;
}

.application-field input {
  height: 58px;
}

.application-field textarea {
  min-height: 100px;
  padding: 13px 0;
  resize: vertical;
  line-height: 1.45;
}

.application-field input::placeholder,
.application-field textarea::placeholder {
  color: rgba(246, 246, 241, 0.28);
}

.application-field input:focus,
.application-field textarea:focus {
  border-color: var(--accent);
}

.application-options {
  display: grid;
  max-width: 680px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.application-options label,
.application-binary label {
  position: relative;
  cursor: pointer;
}

.application-options input,
.application-binary input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.application-options label > span {
  display: flex;
  min-height: 76px;
  align-items: center;
  padding: 16px 20px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  font-size: 16px;
  font-weight: 560;
}

.application-options input:checked + span,
.application-binary input:checked + span {
  color: var(--accent-ink);
  background: var(--accent);
}

.application-binary {
  display: grid;
  max-width: 680px;
  grid-template-columns: minmax(0, 1fr) 88px 88px;
  align-items: stretch;
  margin: 0 0 18px;
  padding: 0;
  border: 1px solid var(--line-dark);
}

.application-binary legend {
  float: left;
  width: calc(100% - 176px);
  margin: 0;
  padding: 16px 18px;
  color: var(--white);
  font-size: 13px;
  line-height: 1.35;
}

.application-binary label > span {
  display: grid;
  height: 100%;
  min-height: 65px;
  place-items: center;
  border-left: 1px solid var(--line-dark);
  font-size: 13px;
  font-weight: 640;
}

.application-actions {
  display: flex;
  max-width: 680px;
  align-items: center;
  justify-content: flex-end;
  margin-top: 40px;
  gap: 20px;
}

.application-back {
  padding: 10px 0;
  border: 0;
  color: rgba(246, 246, 241, 0.54);
  background: transparent;
  cursor: pointer;
}

.application-result {
  padding-top: 68px;
}

.application-result iframe {
  width: 100%;
  height: 720px;
  border: 1px solid var(--line-dark);
  background: var(--white);
}

.application-result--community {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.application-result--community .button[aria-disabled="true"] {
  opacity: 0.46;
  pointer-events: none;
}

.community-note {
  margin: 12px 0 0;
  color: rgba(246, 246, 241, 0.46);
  font-size: 11px;
}

@media (max-width: 860px) {
  .fit-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .application-step,
  .application-result {
    padding-right: 48px;
    padding-left: 48px;
  }
}

@media (max-width: 600px) {
  .application-modal {
    align-items: stretch;
    padding: 0;
  }

  .application-dialog {
    max-height: 100vh;
    border: 0;
  }

  .application-progress {
    padding: 22px 62px 0 22px;
  }

  .application-wizard,
  .application-result {
    min-height: calc(100vh - 52px);
  }

  .application-step,
  .application-result {
    padding: 54px 22px 38px;
  }

  .application-question h2 {
    font-size: 42px;
  }

  .application-options {
    grid-template-columns: 1fr;
  }

  .application-binary {
    grid-template-columns: 1fr 70px 70px;
  }

  .application-binary legend {
    width: calc(100% - 140px);
  }

  .application-result iframe {
    height: 680px;
  }
}

/* Hero: one focal point, with deliberate breathing room. */
.hero {
  min-height: 790px;
}

.hero-frame {
  min-height: 760px;
  background: var(--black);
}

.hero-frame::after {
  opacity: 0.035;
}

.hero-copy {
  top: 132px;
  width: min(1040px, calc(100% - 56px));
}

.hero h1 {
  max-width: 1040px;
  margin-bottom: 22px;
  font-size: clamp(54px, 5vw, 76px);
  line-height: 1;
}

.hero-subtitle {
  max-width: 680px;
  margin-bottom: 30px;
}

@media (max-width: 1080px) {
  .hero h1 {
    max-width: 900px;
    font-size: clamp(52px, 5.6vw, 66px);
  }
}

@media (max-width: 860px) {
  .hero {
    min-height: 890px;
  }

  .hero-frame {
    min-height: 860px;
  }

  .hero-copy {
    top: 116px;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: 940px;
  }

  .hero-frame {
    min-height: 910px;
  }

  .hero-copy {
    top: 78px;
    width: calc(100% - 36px);
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 58px);
    line-height: 0.98;
  }
}

/* Full-bleed, first-viewport hero with the video in the composition. */
.site-header {
  top: 0;
  right: 0;
  left: 0;
  height: 74px;
  padding-right: clamp(24px, 4vw, 56px);
  padding-left: clamp(24px, 4vw, 56px);
  border: 0;
  border-bottom: 1px solid var(--line-dark);
}

.site-header.is-scrolled {
  top: 0;
  right: 0;
  left: 0;
}

.hero {
  height: min(900px, 100svh);
  min-height: 720px;
  padding: 0;
}

.hero-frame {
  height: 100%;
  min-height: 720px;
  border: 0;
}

.hero-frame::after {
  inset: 74px 0 0;
}

.hero-copy {
  top: 112px;
  right: clamp(24px, 5.5vw, 84px);
  left: clamp(24px, 5.5vw, 84px);
  width: auto;
}

.hero h1 {
  max-width: 1080px;
  margin-bottom: 34px;
  font-size: clamp(54px, 5.1vw, 78px);
}

.hero-lower {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: start;
  gap: clamp(52px, 7vw, 112px);
}

.hero-offer {
  padding-top: 8px;
}

.hero-subtitle {
  max-width: 600px;
  margin-bottom: 28px;
}

.hero-video {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(246, 246, 241, 0.28);
  background: #000;
}

.hero-video::before {
  position: absolute;
  z-index: 1;
  top: -1px;
  left: -1px;
  width: 52px;
  height: 4px;
  background: var(--accent);
  content: "";
  pointer-events: none;
}

.hero-video > button,
.hero-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.hero-video > button {
  padding: 0;
  overflow: hidden;
  color: var(--white);
  background: #000;
  cursor: pointer;
}

.hero-video > button::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.32));
  content: "";
  transition: background 180ms ease;
}

.hero-video > button:hover::after {
  background: rgba(0, 0, 0, 0.12);
}

.hero-video > button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video__play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  padding-left: 4px;
  border-radius: 50%;
  color: var(--accent-ink);
  background: var(--accent);
  font-size: 18px;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.hero-video > button:hover .hero-video__play {
  transform: translate(-50%, -50%) scale(1.06);
}

.hero-video.is-playing > button {
  display: none;
}

.hero-logo-proof {
  right: clamp(24px, 5.5vw, 84px);
  bottom: 24px;
  left: clamp(24px, 5.5vw, 84px);
}

.hero-logo-proof .logo-group {
  grid-template-columns: 92px 1fr;
  gap: 14px;
}

.hero-logo-proof .logo-group > span {
  line-height: 1.25;
}

.hero-logo-proof .logo-row > img[src$="bullymake.svg"],
.hero-logo-proof .logo-row > img[src$="candid-leap.svg"] {
  filter: grayscale(1) brightness(0) invert(1);
  opacity: 0.72;
}

@media (max-width: 980px) {
  .hero,
  .hero-frame {
    min-height: 980px;
  }

  .hero-copy {
    top: 108px;
  }

  .hero h1 {
    max-width: 900px;
    font-size: clamp(50px, 6.1vw, 64px);
  }

  .hero-lower {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 40px;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 64px;
  }

  .hero,
  .hero-frame {
    min-height: 1160px;
  }

  .hero-frame::after {
    inset: 64px 0 0;
  }

  .hero-copy {
    top: 94px;
    right: 18px;
    left: 18px;
  }

  .hero h1 {
    margin-bottom: 28px;
    font-size: clamp(42px, 12vw, 58px);
  }

  .hero h1 br {
    display: none;
  }

  .hero-lower {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-video {
    min-width: 0;
  }

  .hero-logo-proof {
    right: 18px;
    left: 18px;
  }
}

/* Integrated Maestro-loop hero. */
.hero {
  height: min(820px, 100svh);
  min-height: 700px;
}

.hero-frame {
  height: 100%;
  min-height: 700px;
}

.hero-copy {
  top: 108px;
  right: clamp(28px, 5.5vw, 84px);
  left: clamp(28px, 5.5vw, 84px);
}

.hero h1 {
  max-width: 1100px;
  margin-bottom: 26px;
  font-size: clamp(54px, 5.1vw, 78px);
}

.hero-lower {
  grid-template-columns: minmax(350px, 0.74fr) minmax(560px, 1.26fr);
  align-items: center;
  gap: clamp(40px, 5vw, 76px);
}

.hero-offer {
  align-self: stretch;
  padding-top: 4px;
}

.hero-subtitle {
  max-width: 510px;
  margin-bottom: 24px;
  font-size: 14px;
}

.hero-proof-inline {
  display: grid;
  max-width: 520px;
  margin-top: 28px;
  padding-top: 16px;
  gap: 14px;
  border-top: 1px solid var(--line-dark);
}

.hero-proof-row {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}

.hero-proof-row > span {
  color: rgba(246, 246, 241, 0.42);
  font-size: 8px;
  font-weight: 620;
  letter-spacing: 0.04em;
  line-height: 1.25;
}

.hero-proof-row > div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 12px;
}

.hero-proof-row:last-child > div {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-proof-row img {
  width: auto;
  max-width: 100%;
  max-height: 22px;
  margin: 0 auto;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: 0.72;
}

.hero-orchestra {
  position: relative;
  width: 100%;
  height: 390px;
  isolation: isolate;
}

.hero-orchestra::before {
  position: absolute;
  z-index: -2;
  top: 50%;
  left: 50%;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(200, 255, 26, 0.06);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

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

.hero-flow-path {
  fill: none;
  stroke-linecap: round;
  stroke-width: 1.4;
  vector-effect: non-scaling-stroke;
}

.hero-flow-path--input {
  stroke: rgba(246, 246, 241, 0.28);
}

.hero-flow-path--loop {
  stroke: rgba(200, 255, 26, 0.62);
  stroke-dasharray: 3 8;
  animation: hero-flow-dash 9s linear infinite;
}

.hero-flow-arrow {
  fill: none;
  stroke: rgba(246, 246, 241, 0.52);
  stroke-width: 1.4;
  vector-effect: non-scaling-stroke;
}

.hero-flow-signal {
  fill: var(--accent);
  filter: drop-shadow(0 0 8px rgba(200, 255, 26, 0.6));
}

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

.hero-flow-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  padding: 14px;
  border: 1px solid rgba(246, 246, 241, 0.24);
  background: rgba(9, 9, 9, 0.92);
}

.hero-flow-node > span {
  margin-bottom: 6px;
  color: rgba(246, 246, 241, 0.44);
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-flow-node > strong {
  font-size: 13px;
  font-weight: 630;
  letter-spacing: -0.02em;
}

.hero-flow-node--sales {
  top: 14px;
  left: 0;
  width: 174px;
  height: 98px;
}

.hero-contact-list {
  display: grid;
  margin-top: auto;
  gap: 4px;
}

.hero-contact-list b {
  display: block;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0 5px, rgba(246, 246, 241, 0.17) 5px 100%);
}

.hero-contact-list b:nth-child(2) { width: 86%; }
.hero-contact-list b:nth-child(3) { width: 94%; }

.hero-flow-node--channels {
  top: 14px;
  right: 0;
  width: 174px;
  height: 104px;
}

.hero-platforms {
  display: flex;
  margin-top: auto;
  gap: 6px;
}

.hero-platforms b {
  display: grid;
  width: 28px;
  height: 22px;
  place-items: center;
  color: var(--accent-ink);
  background: var(--accent);
  font-size: 10px;
  font-style: normal;
}

.hero-maestro-core {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 158px;
  height: 158px;
  grid-template-columns: repeat(3, 1fr);
  place-content: center;
  place-items: center;
  border: 1px solid var(--accent);
  border-radius: 50%;
  color: var(--white);
  background: var(--black);
  box-shadow: 0 0 0 12px rgba(200, 255, 26, 0.025), 0 0 60px rgba(200, 255, 26, 0.06);
  transform: translate(-50%, -50%);
}

.hero-maestro-core strong {
  grid-column: 1 / -1;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 560;
  letter-spacing: -0.04em;
}

.hero-maestro-core span {
  color: rgba(246, 246, 241, 0.5);
  font-size: 7px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-flow-node--creative {
  bottom: 4px;
  left: 0;
  width: 228px;
  height: 164px;
  padding: 10px;
}

.hero-flow-video {
  flex: 1;
  min-height: 0;
  aspect-ratio: auto;
  border-color: rgba(246, 246, 241, 0.18);
}

.hero-flow-video::before {
  width: 34px;
  height: 3px;
}

.hero-flow-video .hero-video__play {
  width: 42px;
  height: 42px;
  font-size: 12px;
}

.hero-flow-node--crm {
  right: 0;
  bottom: 8px;
  width: 186px;
  height: 106px;
}

.hero-pipeline {
  display: flex;
  height: 24px;
  align-items: end;
  margin-top: auto;
  gap: 5px;
}

.hero-pipeline b {
  width: 18px;
  height: 7px;
  background: rgba(246, 246, 241, 0.2);
}

.hero-pipeline b:nth-child(2) { height: 14px; background: rgba(246, 246, 241, 0.38); }
.hero-pipeline b:nth-child(3) { height: 23px; background: var(--accent); }

@media (max-width: 1100px) {
  .hero {
    height: auto;
    min-height: 980px;
  }

  .hero-frame {
    min-height: 980px;
  }

  .hero-lower {
    grid-template-columns: 340px minmax(500px, 1fr);
    gap: 32px;
  }
}

@media (max-width: 920px) {
  .hero,
  .hero-frame {
    min-height: 1240px;
  }

  .hero-lower {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero-offer,
  .hero-proof-inline {
    max-width: 620px;
  }

  .hero-orchestra {
    max-width: 680px;
  }
}

@media (max-width: 600px) {
  .hero,
  .hero-frame {
    min-height: 1220px;
  }

  .hero-copy {
    top: 88px;
  }

  .hero h1 {
    font-size: clamp(42px, 12vw, 56px);
  }

  .hero-proof-row {
    grid-template-columns: 86px minmax(0, 1fr);
  }

  .hero-orchestra {
    height: 420px;
    transform: scale(0.94);
    transform-origin: top left;
  }

  .hero-flow-node--sales,
  .hero-flow-node--channels {
    width: 148px;
  }

  .hero-flow-node--creative {
    width: 196px;
  }

  .hero-flow-node--crm {
    width: 158px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-flow-path--loop {
    animation: none;
  }

  .hero-flow-signal {
    display: none;
  }
}

/* Centered hero: one message, one video, one action, one quiet conducting line. */
.hero {
  height: 100svh;
  min-height: 720px;
  padding: 0;
}

.hero-frame {
  height: 100%;
  min-height: 720px;
  border: 0;
  background: var(--black);
}

.hero-frame::after {
  inset: 76px 0 0;
  opacity: 0.025;
}

.hero-copy {
  position: relative;
  z-index: 4;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  display: flex;
  width: min(1160px, 100%);
  height: 100%;
  min-height: 720px;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  padding: 106px 24px 40px;
  text-align: center;
}

.hero-copy > *:not(.hero-motif) {
  position: relative;
  z-index: 1;
}

.hero h1 {
  max-width: 1080px;
  margin: 0 auto 18px;
  font-size: clamp(50px, 4.65vw, 70px);
  font-weight: 540;
  letter-spacing: -0.057em;
  line-height: 0.96;
}

.hero-subtitle {
  max-width: 740px;
  margin: 0 auto 26px;
  color: rgba(246, 246, 241, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

.hero-video {
  width: min(500px, 100%);
  flex: 0 0 auto;
  aspect-ratio: 16 / 9;
  border-color: rgba(246, 246, 241, 0.3);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

.hero-video::before {
  width: 44px;
  height: 3px;
}

.hero-video__play {
  width: 58px;
  height: 58px;
  font-size: 16px;
}

.hero-actions {
  justify-content: center;
  margin-top: 18px;
}

.hero-actions .button {
  min-height: 48px;
  padding-inline: 24px;
}

.hero-proof-inline {
  display: flex;
  width: min(760px, 100%);
  max-width: none;
  align-items: flex-start;
  justify-content: center;
  margin-top: 22px;
  padding-top: 16px;
  gap: 32px;
  border-top: 1px solid rgba(246, 246, 241, 0.14);
}

.hero-proof-group {
  display: grid;
  min-width: 0;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.hero-proof-group + .hero-proof-group {
  padding-left: 32px;
  border-left: 1px solid rgba(246, 246, 241, 0.12);
}

.hero-proof-group > span {
  color: rgba(246, 246, 241, 0.4);
  font-size: 8px;
  font-weight: 620;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-align: right;
  text-transform: uppercase;
}

.hero-proof-group > div {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 16px;
}

.hero-proof-group img {
  width: auto;
  max-width: 82px;
  max-height: 20px;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: 0.7;
}

.hero-proof-group img[src$="purefunnel.png"] {
  max-width: 76px;
}

.hero-motif {
  position: absolute;
  z-index: 0;
  top: 238px;
  left: 50%;
  width: min(1080px, 94vw);
  height: 430px;
  overflow: visible;
  pointer-events: none;
  transform: translateX(-50%);
}

.hero-motif path {
  fill: none;
  stroke-linecap: round;
  stroke-width: 1.1;
  vector-effect: non-scaling-stroke;
}

.hero-motif__base {
  stroke: rgba(246, 246, 241, 0.09);
}

.hero-motif__accent {
  stroke: rgba(200, 255, 26, 0.34);
  stroke-dasharray: 118 2600;
  stroke-dashoffset: -1170;
}

.hero-motif circle {
  fill: var(--accent);
  opacity: 0.78;
  filter: drop-shadow(0 0 10px rgba(200, 255, 26, 0.35));
}

@media (min-width: 841px) and (min-height: 1050px) {
  .hero-copy {
    padding-top: clamp(190px, 19vh, 240px);
    padding-bottom: 72px;
  }

  .hero h1 {
    max-width: 1120px;
    margin-bottom: 24px;
    font-size: clamp(58px, 5.4vw, 80px);
  }

  .hero-subtitle {
    max-width: 760px;
    margin-bottom: 34px;
    font-size: 15px;
  }

  .hero-video {
    width: min(700px, 56vw);
  }

  .hero-actions {
    margin-top: 26px;
  }

  .hero-proof-inline {
    margin-top: 28px;
    padding-top: 18px;
  }

  .hero-motif {
    top: clamp(300px, 30vh, 380px);
    width: min(1220px, 96vw);
    height: min(50vh, 600px);
  }
}

@media (max-height: 760px) and (min-width: 761px) {
  .hero-copy {
    padding-top: 96px;
  }

  .hero h1 {
    font-size: clamp(48px, 4.35vw, 64px);
  }

  .hero-subtitle {
    margin-bottom: 22px;
    font-size: 13px;
  }

  .hero-video {
    width: min(470px, 100%);
  }

  .hero-actions {
    margin-top: 16px;
  }

  .hero-proof-inline {
    margin-top: 18px;
    padding-top: 14px;
  }

  .hero-motif {
    top: 220px;
    height: 430px;
  }
}

@media (max-width: 840px) {
  .hero {
    height: auto;
    min-height: 900px;
  }

  .hero-frame,
  .hero-copy {
    height: auto;
    min-height: 900px;
  }

  .hero-copy {
    padding: 100px 22px 38px;
  }

  .hero h1 {
    font-size: clamp(44px, 7.7vw, 60px);
  }

  .hero-motif {
    top: 268px;
    width: 1120px;
    height: 420px;
    opacity: 0.82;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: 920px;
  }

  .hero-frame,
  .hero-copy {
    min-height: 920px;
  }

  .hero-copy {
    padding: 96px 18px 38px;
  }

  .hero h1 {
    margin-bottom: 20px;
    font-size: clamp(40px, 11.2vw, 52px);
    line-height: 0.98;
  }

  .hero h1 br {
    display: none;
  }

  .hero-subtitle {
    max-width: 520px;
    margin-bottom: 26px;
    font-size: 13px;
  }

  .hero-video {
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
    justify-content: center;
  }

  .hero-proof-inline {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-proof-group {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 10px;
  }

  .hero-proof-group + .hero-proof-group {
    padding-top: 12px;
    padding-left: 0;
    border-top: 1px solid rgba(246, 246, 241, 0.1);
    border-left: 0;
  }

  .hero-proof-group > div {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-proof-group:last-child > div {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-proof-group img {
    max-width: 58px;
    max-height: 17px;
    margin: 0 auto;
  }

  .hero-proof-group img[src$="purefunnel.png"] {
    max-width: 58px;
  }

  .hero-motif {
    top: 320px;
    width: 920px;
    height: 380px;
    opacity: 0.72;
  }
}

/* Video-led split hero with a quiet, continuous proof rail. */
.hero-proof-marquee {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(246, 246, 241, 0.14);
  border-bottom: 1px solid rgba(246, 246, 241, 0.08);
}

.hero-proof-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: hero-proof-marquee 36s linear infinite;
  will-change: transform;
}

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

.hero-proof-set {
  display: flex;
  min-width: max-content;
  height: 68px;
  align-items: center;
  padding-right: 64px;
  gap: 38px;
}

.hero-proof-set > span {
  color: rgba(246, 246, 241, 0.42);
  font-size: 9px;
  font-weight: 620;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-proof-set > i {
  width: 1px;
  height: 22px;
  background: rgba(246, 246, 241, 0.16);
}

.hero-proof-set img {
  width: auto;
  max-width: 112px;
  max-height: 26px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: 0.74;
}

.hero-proof-set img[src$="purefunnel.png"] {
  max-width: 96px;
}

@keyframes hero-proof-marquee {
  to {
    transform: translateX(-50%);
  }
}

@media (min-width: 841px) {
  .hero-copy {
    display: block;
    width: 100%;
    max-width: none;
    padding: 0;
    text-align: left;
  }

  .hero-split {
    display: grid;
    width: min(1380px, calc(100% - 80px));
    height: 100%;
    grid-template-areas:
      "headline video"
      "subtitle video"
      "cta video";
    grid-template-columns: minmax(360px, 0.72fr) minmax(560px, 1.28fr);
    grid-template-rows: auto auto auto;
    align-content: center;
    align-items: start;
    margin: 0 auto;
    padding: 100px 0 126px;
    column-gap: clamp(48px, 6vw, 96px);
  }

  .hero h1 {
    grid-area: headline;
    max-width: 560px;
    margin: 0 0 26px;
    font-size: clamp(54px, 4.5vw, 76px);
    line-height: 0.96;
  }

  .hero-subtitle {
    grid-area: subtitle;
    max-width: 500px;
    margin: 0 0 34px;
    font-size: 15px;
    line-height: 1.58;
  }

  .hero-video {
    grid-area: video;
    width: 100%;
    max-width: 760px;
    align-self: center;
    justify-self: end;
  }

  .hero-actions {
    grid-area: cta;
    justify-self: start;
    margin: 0;
  }

  .hero-proof-marquee {
    position: absolute;
    right: 0;
    bottom: clamp(28px, 4vh, 54px);
    left: 0;
  }

  .hero-proof-set {
    padding-left: 38px;
  }

  .hero-motif {
    top: 50%;
    left: 66%;
    width: min(1040px, 78vw);
    height: min(590px, 68vh);
    transform: translate(-50%, -48%);
  }
}

@media (min-width: 841px) and (min-height: 1000px) {
  .hero-split {
    width: min(1460px, calc(100% - 96px));
    padding-top: 150px;
    padding-bottom: 190px;
  }

  .hero h1 {
    max-width: 600px;
    font-size: clamp(60px, 5.2vw, 82px);
  }

  .hero-video {
    max-width: 800px;
  }

  .hero-proof-marquee {
    bottom: clamp(52px, 6vh, 78px);
  }

  .hero-motif {
    width: min(1180px, 82vw);
    height: min(720px, 66vh);
  }
}

@media (max-width: 1020px) and (min-width: 841px) {
  .hero-split {
    width: calc(100% - 48px);
    grid-template-columns: minmax(320px, 0.78fr) minmax(450px, 1.22fr);
    column-gap: 38px;
  }

  .hero h1 {
    font-size: clamp(48px, 5.6vw, 60px);
  }

  .hero-subtitle {
    font-size: 13px;
  }
}

@media (max-width: 840px) {
  .hero-split {
    position: relative;
    z-index: 1;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
  }

  .hero-proof-marquee {
    flex: 0 0 auto;
    margin-top: 26px;
  }

  .hero-proof-set {
    height: 64px;
    padding-right: 46px;
    gap: 28px;
  }

  .hero-proof-set img {
    max-width: 92px;
    max-height: 22px;
  }
}

@media (max-width: 600px) {
  .hero-proof-marquee {
    width: 100vw;
    margin-right: -18px;
    margin-left: -18px;
  }

  .hero-proof-set {
    height: 58px;
    gap: 24px;
  }

  .hero-proof-set > span {
    font-size: 8px;
  }

  .hero-proof-set img {
    max-width: 82px;
    max-height: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-proof-track {
    animation: none;
  }

  .hero-proof-set[aria-hidden="true"] {
    display: none;
  }
}

/* Keep the complete hero composition inside the first desktop viewport. */
@media (min-width: 841px) {
  .hero,
  .hero-frame,
  .hero-copy {
    height: 100svh;
    min-height: 720px;
  }

  .hero-split,
  .hero-copy {
    box-sizing: border-box;
  }

  .hero-split {
    width: min(1380px, calc(100% - 64px));
    grid-template-columns: minmax(400px, 0.78fr) minmax(600px, 1.22fr);
    column-gap: clamp(44px, 4.5vw, 64px);
    padding-top: clamp(72px, 9vh, 100px);
    padding-bottom: 104px;
  }

  .hero h1 {
    max-width: 520px;
    font-size: clamp(50px, 4vw, 64px);
    line-height: 0.98;
  }

  .hero-copy > .hero-proof-marquee {
    position: absolute;
    bottom: 0;
  }
}

@media (min-width: 841px) and (min-height: 1000px) {
  .hero-split {
    width: min(1460px, calc(100% - 64px));
    grid-template-columns: minmax(400px, 0.78fr) minmax(600px, 1.22fr);
    padding-top: clamp(72px, 8vh, 108px);
    padding-bottom: 138px;
  }

  .hero h1 {
    max-width: 520px;
    font-size: clamp(50px, 4.4vw, 64px);
  }

  .hero-copy > .hero-proof-marquee {
    bottom: clamp(24px, 3vh, 40px);
  }
}
