:root {
  --ink: #111319;
  --ink-soft: #1b1e25;
  --paper: #ffee9b;
  --paper-deep: #f4dd7e;
  --white: #fffaf0;
  --soft: #f1efe7;
  --muted: #62645f;
  --acid: #adc642;
  --acid-deep: #8ea52f;
  --violet: #3546ff;
  --coral: #e95500;
  --line: rgba(17, 19, 25, 0.16);
  --light-line: rgba(255, 255, 255, 0.16);
  --shell: min(1220px, calc(100vw - 48px));
  --sans: "Helvetica Neue", "Avenir Next", "Segoe UI", Arial, sans-serif;
  --serif: Didot, "Bodoni 72", "Bodoni MT", Iowan Old Style, Baskerville, "Times New Roman", serif;
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
  --radius-sm: 15px;
  --radius-md: 24px;
  --radius-lg: 38px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--violet);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 15px;
  color: var(--ink);
  background: var(--acid);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

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

.section-pad {
  padding: clamp(90px, 11vw, 158px) 0;
}

.concept-flag {
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(17, 19, 25, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(17, 19, 25, 0.18);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.concept-flag span {
  width: 7px;
  height: 7px;
  background: var(--acid);
  border-radius: 50%;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(241, 239, 231, 0.91);
  border-color: var(--line);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  flex: 0 0 auto;
}

.logo {
  display: block;
  width: clamp(116px, 10vw, 134px);
  height: auto;
}

.logo-dark {
  display: none;
}

.site-header.is-scrolled .logo-light {
  display: none;
}

.site-header.is-scrolled .logo-dark {
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 29px;
  font-size: 14px;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
  opacity: 0.76;
  transition: opacity 0.2s ease;
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.main-nav > a:hover {
  opacity: 1;
}

.main-nav > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-nav > a[aria-current="page"]:not(.nav-cta) {
  opacity: 1;
}

.main-nav > a[aria-current="page"]:not(.nav-cta)::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  gap: 24px;
  padding: 0 17px;
  color: var(--ink);
  background: var(--acid);
  border: 1px solid var(--acid);
  border-radius: 999px;
  font-weight: 700;
}

.nav-cta span {
  font-size: 17px;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero::before,
.hero::after {
  display: none;
  content: none;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.hero-orb {
  position: absolute;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.14;
  pointer-events: none;
}

.hero-orb-one {
  top: -210px;
  left: -130px;
  background: var(--violet);
}

.hero-orb-two {
  right: -200px;
  bottom: 100px;
  background: var(--coral);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  justify-content: center;
  gap: clamp(55px, 7vw, 90px);
  padding-top: 145px;
  padding-bottom: 80px;
}

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

.eyebrow,
.kicker {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.56);
}

.eyebrow span {
  width: 8px;
  height: 8px;
  background: var(--acid);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(173, 198, 66, 0.11);
}

.hero h1 {
  max-width: 1150px;
  margin: 0;
  font-size: clamp(58px, 7.2vw, 104px);
  font-weight: 500;
  letter-spacing: -0.062em;
  line-height: 0.93;
  text-wrap: balance;
}

.hero h1 em {
  color: var(--paper);
  font-family: var(--serif);
  font-weight: 400;
}

.hero-lower {
  display: grid;
  align-items: end;
  margin-top: 41px;
  grid-template-columns: minmax(0, 650px) auto;
  gap: 55px;
}

.hero-lede {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: clamp(18px, 1.65vw, 22px);
  line-height: 1.55;
}

.hero-actions,
.contact-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 35px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  transition: transform 0.25s var(--ease), background 0.25s ease;
}

.button:hover {
  transform: translateY(-3px);
}

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

.button-acid:hover {
  background: #c1d853;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 8px 0 7px;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 700;
}

.text-link-light {
  color: rgba(255, 255, 255, 0.83);
}

.customer-loop {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.loop-top,
.loop-caption {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 22px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.loop-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.loop-top p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.loop-top p span {
  width: 7px;
  height: 7px;
  background: var(--acid);
  border-radius: 50%;
}

.loop-track {
  display: grid;
  align-items: stretch;
  padding: 17px;
  grid-template-columns: 1fr 28px 1fr 28px 1fr 28px 1fr;
}

.loop-track article {
  min-height: 145px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-sm);
}

.loop-track article > span {
  display: block;
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.loop-track strong {
  display: block;
  margin-top: 22px;
  font-size: 21px;
  letter-spacing: -0.03em;
}

.loop-track p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  line-height: 1.45;
}

.loop-track > i {
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.28);
  font-style: normal;
}

.loop-track .loop-highlight {
  color: var(--ink);
  background: var(--acid);
  border-color: var(--acid);
}

.loop-track .loop-highlight > span,
.loop-track .loop-highlight p {
  color: rgba(17, 19, 25, 0.58);
}

.loop-caption {
  min-height: 52px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  letter-spacing: 0.04em;
  text-transform: none;
}

.loop-caption p {
  margin: 0;
  color: rgba(255, 255, 255, 0.79);
}

.outcome-ticker {
  overflow: hidden;
  color: var(--ink);
  background: var(--acid);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.outcome-ticker > div {
  display: flex;
  width: max-content;
  animation: ticker 30s linear infinite;
}

.outcome-ticker span {
  display: flex;
  min-height: 59px;
  align-items: center;
  gap: 19px;
  padding: 0 27px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.outcome-ticker i {
  font-size: 17px;
  font-style: normal;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.revenue-gap {
  background: var(--soft);
}

.section-intro,
.choice-heading,
.offers-heading {
  display: grid;
  align-items: start;
  grid-template-columns: 0.34fr 1.08fr 0.58fr;
  gap: 44px;
}

.kicker {
  color: var(--muted);
}

.kicker-light {
  color: rgba(255, 255, 255, 0.48);
}

.section-intro h2,
.evidence-heading h2,
.journey-copy h2,
.choice-heading h2,
.pilot-copy h2,
.proof-copy h2,
.offers-heading h2,
.why-statement h2,
.faq-heading h2,
.contact h2 {
  margin: 0;
  font-size: clamp(47px, 5.8vw, 82px);
  font-weight: 500;
  letter-spacing: -0.058em;
  line-height: 0.98;
  text-wrap: balance;
}

.section-intro > p:last-child,
.choice-heading > p:last-child {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.pain-grid {
  display: grid;
  margin-top: 76px;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pain-card {
  position: relative;
  display: flex;
  min-height: 440px;
  flex-direction: column;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--ink);
  border-radius: var(--radius-md);
}

.pain-card-violet {
  color: var(--white);
  background: var(--violet);
}

.pain-card-coral {
  color: var(--white);
  background: var(--coral);
}

.pain-number {
  align-self: flex-start;
  padding: 7px 9px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
}

.pain-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin-top: 48px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 26px;
}

.pain-card h3 {
  max-width: 330px;
  margin: 25px 0 0;
  font-size: 31px;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.pain-card > p {
  margin: 16px 0 30px;
  color: color-mix(in srgb, currentColor 68%, transparent);
  font-size: 16px;
  line-height: 1.55;
}

.pain-card > div:last-child {
  display: grid;
  gap: 7px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid currentColor;
  font-size: 13px;
}

.pain-card > div:last-child b {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.founder-truth {
  display: grid;
  align-items: center;
  margin-top: 18px;
  padding: 38px 40px;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius-md);
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
}

.founder-truth p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 17px;
}

.founder-truth strong {
  font-family: var(--serif);
  font-size: clamp(29px, 3vw, 43px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.evidence {
  color: var(--white);
  background: var(--ink);
}

.evidence-heading {
  display: grid;
  align-items: start;
  grid-template-columns: 0.38fr 1.62fr;
  gap: 50px;
}

.evidence-heading h2 {
  max-width: 970px;
}

.metric-grid {
  display: grid;
  margin-top: 74px;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.metric {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 26px;
  background: var(--ink-soft);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
}

.metric strong {
  font-size: clamp(48px, 5vw, 67px);
  font-weight: 500;
  letter-spacing: -0.06em;
}

.metric p {
  max-width: 250px;
  margin: 19px 0 35px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 16px;
  line-height: 1.5;
}

.metric a {
  margin-top: auto;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.metric-acid,
.metric-paper {
  color: var(--ink);
  background: var(--acid);
  border-color: var(--acid);
}

.metric-paper {
  background: var(--paper);
  border-color: var(--paper);
}

.metric-violet {
  background: var(--violet);
  border-color: var(--violet);
}

.metric-acid p,
.metric-paper p,
.metric-acid a,
.metric-paper a {
  color: rgba(17, 19, 25, 0.62);
}

.benchmark-note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.36);
  font-size: 11px;
}

.journey {
  background: var(--white);
}

.journey-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(55px, 8vw, 115px);
}

.journey-copy {
  position: sticky;
  top: 125px;
}

.journey-copy h2 {
  margin-top: 24px;
}

.journey-copy > p:not(.kicker) {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.journey-copy .text-link {
  margin-top: 31px;
}

.journey-board {
  display: grid;
  padding: 13px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 27px 70px rgba(17, 19, 25, 0.11);
  grid-template-columns: 1fr 55px 1fr;
}

.board-column {
  min-width: 0;
  padding: 21px;
  border-radius: 28px;
}

.board-column > p {
  margin: 0 0 17px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.board-before {
  color: rgba(17, 19, 25, 0.72);
  background: #deddd7;
}

.board-after {
  color: var(--white);
  background: var(--violet);
}

.board-column article {
  display: grid;
  align-items: center;
  min-height: 100px;
  padding: 16px 0;
  border-top: 1px solid currentColor;
  grid-template-columns: 31px 1fr;
}

.board-column article span {
  align-self: start;
  padding-top: 4px;
  font-size: 9px;
  font-weight: 800;
}

.board-column article b {
  font-size: 16px;
}

.board-column article small {
  margin-top: 3px;
  grid-column: 2;
  opacity: 0.62;
  font-size: 12px;
}

.board-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}

.board-arrow span {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  color: var(--ink);
  background: var(--acid);
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.board-arrow small {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.07em;
  writing-mode: vertical-rl;
}

.build-choice {
  background: var(--paper);
}

.choice-heading {
  grid-template-columns: 0.33fr 1.12fr 0.55fr;
}

.choice-grid {
  display: grid;
  margin-top: 75px;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}

.choice-card {
  padding: 31px;
  border: 1px solid var(--ink);
  border-radius: var(--radius-md);
}

.choice-internal {
  color: var(--white);
  background: var(--coral);
}

.choice-corso {
  background: var(--acid);
}

.choice-card-top {
  display: flex;
  min-height: 200px;
  flex-direction: column;
  padding-bottom: 30px;
  border-bottom: 1px solid currentColor;
}

.choice-card-top > span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.choice-card-top strong {
  margin-top: auto;
  font-size: clamp(61px, 7vw, 94px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.88;
}

.choice-card-top small {
  margin-top: 11px;
  opacity: 0.64;
  font-size: 12px;
}

.choice-card ul {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.choice-card li {
  display: flex;
  min-height: 51px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid currentColor;
  font-size: 15px;
}

.choice-card li b {
  font-size: 17px;
}

.choice-card > p {
  margin: 27px 0 0;
  max-width: 530px;
  opacity: 0.72;
  font-size: 15px;
}

.choice-card > a {
  display: inline-block;
  margin-top: 21px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.manual-cost {
  display: grid;
  align-items: center;
  margin-top: 17px;
  padding: 38px;
  background: var(--white);
  border: 1px solid var(--ink);
  border-radius: var(--radius-md);
  grid-template-columns: 0.78fr 1.12fr 0.6fr;
  gap: 50px;
}

.calculator-copy h3 {
  margin: 16px 0 0;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.calculator-copy > p:last-child {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.calculator-controls {
  display: grid;
  gap: 27px;
}

.calculator-controls label {
  display: grid;
  gap: 12px;
}

.calculator-controls label > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
  font-weight: 700;
}

.calculator-controls output {
  color: var(--violet);
  font-size: 15px;
  font-weight: 800;
}

input[type="range"] {
  width: 100%;
  height: 5px;
  appearance: none;
  background: linear-gradient(to right, var(--violet) var(--range-progress, 0%), #d4d2ca var(--range-progress, 0%));
  border-radius: 999px;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  width: 20px;
  height: 20px;
  appearance: none;
  background: var(--acid);
  border: 2px solid var(--ink);
  border-radius: 50%;
}

input[type="range"]::-moz-range-thumb {
  width: 17px;
  height: 17px;
  background: var(--acid);
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.calculator-result {
  display: flex;
  min-height: 235px;
  justify-content: center;
  flex-direction: column;
  padding: 25px;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius-sm);
}

.calculator-result > span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calculator-result strong {
  margin: 4px 0 17px;
  color: var(--acid);
  font-size: 27px;
  letter-spacing: -0.04em;
}

.calculator-result small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 9px;
}

.pilot {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 20%, rgba(53, 70, 255, 0.19), transparent 27%),
    var(--ink);
}

.pilot-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(60px, 9vw, 130px);
}

.pilot-copy h2 {
  margin-top: 24px;
}

.pilot-copy > p:not(.kicker) {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 18px;
  line-height: 1.7;
}

.pilot-promise {
  margin-top: 41px;
  padding: 21px;
  color: var(--ink);
  background: var(--acid);
  border-radius: var(--radius-sm);
}

.pilot-promise span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pilot-promise p {
  margin: 8px 0 0;
  font-size: 15px;
}

.pilot-card {
  padding: 14px 32px 32px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: 16px 16px 0 var(--violet);
  transform: rotate(1deg);
}

.pilot-card-head {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.pilot-card-head span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pilot-card-head span::before {
  width: 8px;
  height: 8px;
  background: var(--coral);
  border-radius: 50%;
  content: "";
}

.pilot-card h3 {
  max-width: 500px;
  margin: 37px 0;
  font-size: clamp(39px, 4.2vw, 58px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.pilot-list {
  border-top: 1px solid var(--ink);
}

.pilot-list > div {
  display: grid;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 42px 1fr;
}

.pilot-list span {
  padding-top: 2px;
  color: var(--violet);
  font-size: 10px;
  font-weight: 800;
}

.pilot-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.pilot-list b {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 16px;
}

.pilot-card .button {
  width: 100%;
  margin-top: 30px;
}

.proof {
  background: var(--soft);
}

.proof-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(340px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(48px, 4.5vw, 68px);
}

.proof-copy {
  min-width: 0;
}

.proof-copy h2 {
  margin-top: 22px;
  font-size: clamp(47px, 4.5vw, 72px);
}

.proof-copy > p:not(.kicker) {
  margin: 27px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.proof-points {
  display: grid;
  align-items: center;
  margin-top: 35px;
  padding: 19px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.proof-points i {
  display: grid;
  width: 33px;
  height: 33px;
  place-items: center;
  background: var(--acid);
  border-radius: 50%;
  font-style: normal;
}

.proof-copy .text-link {
  margin-top: 26px;
}

.video-shell {
  width: 100%;
  padding: 12px;
  color: var(--white);
  background: var(--ink);
  border-radius: 31px;
  box-shadow: 0 31px 70px rgba(17, 19, 25, 0.22);
  scroll-margin-top: 110px;
  transform: rotate(1deg);
}

.video-top,
.video-bottom {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-top span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
}

.video-top i {
  width: 8px;
  height: 8px;
  background: var(--acid);
  border-radius: 50%;
}

.video-top b {
  color: var(--acid);
}

.video-bottom {
  min-height: 40px;
  letter-spacing: 0.04em;
  text-transform: none;
}

.video-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-top: 75%;
  background: #08090c;
  border-radius: 18px;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.offers {
  background: var(--paper);
}

.offers-heading {
  grid-template-columns: 0.34fr 1.66fr;
}

.offer-list {
  margin-top: 75px;
  border-top: 1px solid var(--ink);
}

.offer-row {
  display: grid;
  align-items: center;
  min-height: 190px;
  padding: 27px 17px;
  border-bottom: 1px solid var(--ink);
  grid-template-columns: 55px 1.1fr 0.9fr 58px;
  gap: 28px;
}

.offer-row > span {
  align-self: start;
  padding-top: 7px;
  color: var(--violet);
  font-size: 10px;
  font-weight: 800;
}

.offer-row > div > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-row h3 {
  margin: 0;
  font-size: clamp(31px, 3.5vw, 48px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
}

.offer-row > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.offer-row > i {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  background: var(--acid);
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 19px;
  font-style: normal;
}

.offer-row-white {
  margin: 0 -17px;
  padding-right: 34px;
  padding-left: 34px;
  background: var(--white);
}

.why {
  color: var(--white);
  background: var(--violet);
}

.why-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(65px, 9vw, 130px);
}

.why-statement h2 {
  margin-top: 22px;
}

.why-statement h2 em {
  color: var(--paper);
  font-family: var(--serif);
  font-weight: 400;
}

.why-list {
  border-top: 1px solid rgba(255, 255, 255, 0.33);
}

.why-list article {
  display: grid;
  padding: 27px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.33);
  grid-template-columns: 50px 1fr;
}

.why-list article > span {
  color: var(--acid);
  font-size: 10px;
  font-weight: 800;
}

.why-list h3 {
  margin: 0;
  font-size: 25px;
  letter-spacing: -0.035em;
}

.why-list p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.6;
}

.faq {
  background: var(--soft);
}

.faq-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(60px, 9vw, 130px);
}

.faq-heading {
  position: sticky;
  top: 125px;
}

.faq-heading h2 {
  margin-top: 22px;
}

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

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

.faq-list summary {
  display: grid;
  min-height: 105px;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
  grid-template-columns: 1fr 40px;
  gap: 25px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

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

.faq-list summary span {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  background: var(--acid);
  border: 1px solid var(--ink);
  border-radius: 50%;
  transition: transform 0.25s ease;
}

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

.faq-list details p {
  max-width: 710px;
  margin: -6px 60px 30px 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.contact {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 20%, rgba(173, 198, 66, 0.16), transparent 25%),
    var(--ink);
}

.contact::after {
  display: none;
  content: none;
}

.contact-inner {
  max-width: 1050px;
  text-align: center;
}

.contact h2 {
  margin-top: 24px;
  font-size: clamp(53px, 7vw, 98px);
}

.contact-inner > p:not(.kicker) {
  max-width: 700px;
  margin: 30px auto 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 19px;
}

.contact-actions {
  justify-content: center;
  margin-top: 39px;
}

.contact-inner > small {
  display: block;
  margin-top: 27px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 11px;
}

.site-footer {
  color: var(--white);
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-top,
.footer-bottom {
  display: grid;
  align-items: center;
}

.footer-top {
  min-height: 145px;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.footer-top img {
  width: 124px;
}

.footer-top p {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  text-align: center;
  font-size: 13px;
}

.footer-top a {
  justify-self: end;
  color: var(--acid);
  font-size: 13px;
}

.footer-bottom {
  min-height: 68px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  grid-template-columns: 1fr 1fr;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-bottom span:last-child {
  justify-self: end;
}

.contact-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.76fr);
  gap: clamp(55px, 8vw, 118px);
}

.contact-copy h2 {
  max-width: 760px;
  margin-top: 24px;
  font-size: clamp(52px, 6.2vw, 86px);
}

.contact-copy > p:not(.kicker) {
  max-width: 640px;
  margin: 29px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 18px;
  line-height: 1.65;
}

.contact-copy > .text-link {
  margin-top: 38px;
}

.contact-reassurance {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 31px;
}

.contact-reassurance span {
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.035em;
}

.contact-form {
  position: relative;
  padding: clamp(28px, 4vw, 44px);
  color: var(--ink);
  background: var(--soft);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 30px;
  box-shadow: 13px 13px 0 var(--violet);
}

.form-heading {
  display: grid;
  align-items: start;
  margin-bottom: 34px;
  padding-bottom: 27px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 1fr 50px;
  gap: 25px;
}

.form-heading div {
  display: grid;
  gap: 7px;
}

.form-heading span,
.form-row label {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-heading b {
  font-size: 24px;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.form-heading i {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--white);
  background: var(--coral);
  border-radius: 50%;
  font-size: 20px;
  font-style: normal;
}

.form-row + .form-row {
  margin-top: 23px;
}

.form-row label {
  display: block;
  margin-bottom: 7px;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 10px 0 12px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(17, 19, 25, 0.32);
  border-radius: 0;
  outline: 0;
  font-size: 16px;
}

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

.form-row input:focus,
.form-row textarea:focus {
  border-bottom-color: var(--violet);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(17, 19, 25, 0.36);
}

.contact-form .button {
  width: 100%;
  margin-top: 31px;
  border: 1px solid var(--ink);
}

.form-privacy,
.form-status {
  margin: 14px 0 0;
  color: rgba(17, 19, 25, 0.64);
  font-size: 12px;
  line-height: 1.5;
}

.form-privacy a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-status {
  min-height: 17px;
  font-weight: 700;
}

.form-status-sent {
  color: #536412;
}

.form-status-invalid,
.form-status-error {
  color: #b64200;
}

.form-trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  white-space: nowrap !important;
}

.footer-main {
  display: grid;
  min-height: 260px;
  align-items: start;
  padding: 64px 0 56px;
  grid-template-columns: 1.35fr 0.72fr 0.72fr 1.05fr;
  gap: clamp(34px, 5vw, 72px);
}

.footer-brand-block img {
  width: 124px;
}

.footer-brand-block p {
  max-width: 280px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  line-height: 1.6;
}

.footer-column,
.footer-contact {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 11px;
}

.footer-column > p,
.footer-contact > p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.footer-column a:hover,
.footer-bottom a:hover {
  color: var(--acid);
}

.footer-contact > a {
  color: var(--acid);
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 700;
  letter-spacing: -0.025em;
}

.footer-contact small {
  max-width: 230px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  line-height: 1.55;
}

.footer-bottom {
  min-height: 70px;
  grid-template-columns: 1fr auto;
}

.footer-bottom div {
  display: flex;
  justify-self: end;
  gap: 25px;
}

.footer-bottom > span {
  justify-self: start;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.62);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

@media (max-width: 1120px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    max-width: 820px;
  }

  .contact-form {
    max-width: 760px;
  }

  .footer-main {
    grid-template-columns: 1.25fr 0.75fr 0.75fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

  .hero-lower {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .section-intro,
  .choice-heading {
    grid-template-columns: 0.32fr 1.68fr;
  }

  .section-intro > p:last-child,
  .choice-heading > p:last-child {
    max-width: 720px;
    margin-top: 25px;
    grid-column: 2;
  }

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

  .journey-grid,
  .pilot-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .journey-copy,
  .faq-heading {
    position: static;
  }

  .journey-copy,
  .pilot-copy,
  .proof-copy {
    max-width: 800px;
  }

  .manual-cost {
    grid-template-columns: 1fr 1fr;
  }

  .calculator-result {
    min-height: auto;
    grid-column: 1 / -1;
  }

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

  .why-statement {
    max-width: 850px;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 36px, 760px);
  }

  .header-inner {
    min-height: 72px;
  }

  .menu-toggle {
    position: relative;
    z-index: 103;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 0;
    color: inherit;
    background: transparent;
    border: 0;
  }

  .menu-toggle span {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .menu-toggle i,
  .menu-toggle i::after {
    display: block;
    width: 25px;
    height: 1px;
    background: currentColor;
    content: "";
    transition: transform 0.25s ease;
  }

  .menu-toggle i::after {
    transform: translateY(6px);
  }

  .menu-toggle[aria-expanded="true"] i {
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] i::after {
    transform: rotate(-90deg);
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 102;
    display: flex;
    height: 100dvh;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    padding: 105px 30px 40px;
    color: var(--white);
    background: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-15px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav > a:not(.nav-cta) {
    width: 100%;
    padding: 17px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 30px;
    letter-spacing: -0.04em;
  }

  .main-nav .nav-cta {
    margin-top: 29px;
  }

  .site-header:has(.main-nav.is-open) {
    color: var(--white);
    background: transparent;
    border-color: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .site-header:has(.main-nav.is-open) .brand {
    position: relative;
    z-index: 103;
  }

  .site-header:has(.main-nav.is-open) .logo-dark {
    display: none;
  }

  .site-header:has(.main-nav.is-open) .logo-light {
    display: block;
  }

  .hero-inner {
    min-height: auto;
    padding-top: 140px;
    padding-bottom: 85px;
  }

  .loop-track {
    overflow-x: auto;
    grid-template-columns: 210px 28px 210px 28px 210px 28px 210px;
    scrollbar-width: thin;
  }

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

  .pain-card {
    min-height: 390px;
  }

  .founder-truth,
  .evidence-heading,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

  .board-arrow {
    min-height: 65px;
    flex-direction: row;
  }

  .board-arrow span {
    transform: rotate(90deg);
  }

  .board-arrow small {
    writing-mode: horizontal-tb;
  }

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

  .offer-row {
    grid-template-columns: 40px 1fr 50px;
    gap: 18px;
  }

  .offer-row > p {
    grid-column: 2 / -1;
  }

  .offer-row > i {
    width: 47px;
    height: 47px;
    grid-column: 3;
    grid-row: 1;
  }
}

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

  .section-pad {
    padding: 82px 0;
  }

  .concept-flag {
    right: 12px;
    bottom: 10px;
    left: auto;
    max-width: calc(100vw - 24px);
  }

  .logo {
    width: 100px;
  }

  .hero-inner {
    gap: 48px;
    padding-top: 124px;
    padding-bottom: 72px;
  }

  .eyebrow {
    margin-bottom: 22px;
    font-size: 9px;
  }

  .hero h1 {
    font-size: clamp(49px, 14.4vw, 70px);
    line-height: 0.94;
  }

  .hero-lower {
    margin-top: 28px;
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 17px;
  }

  .button {
    width: 100%;
    min-height: 57px;
  }

  .hero-actions .text-link,
  .contact-actions .text-link {
    align-self: flex-start;
  }

  .loop-top,
  .loop-caption {
    padding: 0 14px;
  }

  .loop-top small,
  .loop-caption > span {
    display: none;
  }

  .loop-caption {
    font-size: 9px;
  }

  .outcome-ticker span {
    min-height: 52px;
  }

  .section-intro,
  .choice-heading,
  .offers-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section-intro h2,
  .evidence-heading h2,
  .journey-copy h2,
  .choice-heading h2,
  .pilot-copy h2,
  .proof-copy h2,
  .offers-heading h2,
  .why-statement h2,
  .faq-heading h2,
  .contact h2 {
    font-size: clamp(43px, 12vw, 61px);
  }

  .section-intro > p:last-child,
  .choice-heading > p:last-child {
    margin-top: 4px;
    grid-column: auto;
  }

  .pain-grid,
  .metric-grid,
  .choice-grid,
  .offer-list {
    margin-top: 45px;
  }

  .pain-card {
    min-height: 400px;
    padding: 24px;
  }

  .pain-icon {
    margin-top: 40px;
  }

  .pain-card h3 {
    font-size: 29px;
  }

  .founder-truth {
    padding: 28px 25px;
    gap: 20px;
  }

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

  .metric {
    min-height: 280px;
  }

  .journey-grid,
  .pilot-grid,
  .proof-grid,
  .why-grid,
  .faq-grid {
    gap: 52px;
  }

  .journey-copy > p:not(.kicker),
  .pilot-copy > p:not(.kicker) {
    font-size: 16px;
  }

  .journey-board {
    padding: 8px;
    border-radius: 27px;
  }

  .board-column {
    padding: 19px;
    border-radius: 21px;
  }

  .choice-card {
    padding: 24px;
  }

  .choice-card-top {
    min-height: 180px;
  }

  .choice-card-top strong {
    font-size: 67px;
  }

  .choice-card li {
    font-size: 13px;
  }

  .manual-cost {
    padding: 26px 23px;
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .calculator-result {
    grid-column: auto;
  }

  .pilot-card {
    padding: 9px 21px 24px;
    border-radius: 27px;
    box-shadow: 8px 8px 0 var(--violet);
    transform: none;
  }

  .pilot-card h3 {
    margin: 30px 0;
    font-size: 42px;
  }

  .pilot-list > div {
    grid-template-columns: 34px 1fr;
  }

  .video-shell {
    padding: 7px;
    border-radius: 20px;
    transform: none;
  }

  .video-frame {
    border-radius: 13px;
  }

  .video-top,
  .video-bottom {
    min-height: 32px;
    font-size: 8px;
  }

  .video-top b,
  .video-bottom span:last-child {
    display: none;
  }

  .proof-points {
    font-size: 10px;
  }

  .offer-row,
  .offer-row-white {
    min-height: 215px;
    margin: 0;
    padding: 24px 7px;
  }

  .offer-row h3 {
    font-size: 34px;
  }

  .why-list article {
    grid-template-columns: 37px 1fr;
  }

  .faq-list summary {
    min-height: 95px;
    font-size: 17px;
  }

  .faq-list details p {
    margin-right: 0;
  }

  .contact h2 {
    font-size: clamp(48px, 13.5vw, 68px);
  }

  .contact-copy > p:not(.kicker) {
    font-size: 17px;
  }

  .contact-form {
    padding: 27px 22px;
    border-radius: 23px;
    box-shadow: 8px 8px 0 var(--violet);
  }

  .form-heading b {
    font-size: 21px;
  }

  .footer-main {
    padding: 47px 0;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-contact {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: start;
    padding: 22px 0;
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .footer-bottom div {
    justify-self: start;
  }
}

.homepage-ai-module {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.module-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, #000, transparent 95%);
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 95%);
}

.homepage-ai-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 760px;
  align-items: center;
  padding: clamp(90px, 10vw, 145px) 0;
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
  gap: clamp(55px, 8vw, 110px);
}

.homepage-ai-copy h2 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(55px, 6.2vw, 90px);
  font-weight: 520;
  letter-spacing: -0.065em;
  line-height: 0.93;
}

.homepage-ai-copy h2 em {
  color: var(--paper);
  font-family: var(--serif);
  font-weight: 400;
}

.homepage-ai-copy > p:not(.eyebrow) {
  max-width: 660px;
  margin: 32px 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 19px;
  line-height: 1.6;
}

.homepage-ai-visual {
  padding: 13px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 38px;
  transform: rotate(1.5deg);
}

.visual-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 10px 21px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visual-label span {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  background: var(--acid);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(173, 198, 66, 0.11);
}

.visual-input,
.visual-output {
  padding: 25px;
  color: var(--ink);
  border-radius: 24px;
}

.visual-input {
  background: var(--soft);
}

.visual-output {
  background: var(--acid);
}

.visual-input small,
.visual-output small,
.visual-input strong,
.visual-output strong {
  display: block;
}

.visual-input small,
.visual-output small {
  margin-bottom: 28px;
  color: rgba(17, 19, 25, 0.52);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visual-input strong,
.visual-output strong {
  font-size: clamp(27px, 3vw, 42px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.visual-input p {
  margin: 8px 0 0;
  color: rgba(17, 19, 25, 0.6);
}

.visual-process {
  display: grid;
  padding: 13px 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.visual-process span {
  padding: 9px 7px;
  color: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 8px;
  font-weight: 800;
  text-align: center;
}

.visual-output > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 24px;
}

.visual-output > div span {
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 750;
}

@media (max-width: 1000px) {
  .homepage-ai-grid {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .homepage-ai-visual {
    max-width: 650px;
    transform: none;
  }
}

@media (max-width: 680px) {
  .homepage-ai-grid {
    padding: 82px 0;
  }

  .homepage-ai-copy h2 {
    font-size: clamp(45px, 14vw, 66px);
    text-wrap: pretty;
  }

  .homepage-ai-copy > p:not(.eyebrow) {
    font-size: 17px;
  }

  .visual-process {
    grid-template-columns: 1fr;
  }
}

@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;
  }
}
