

:root {
  --ink: #071817;
  --ink-soft: #18312f;
  --paper: #f5f6ef;
  --paper-deep: #e8ece2;
  --white: #ffffff;
  --mint: #76e6c1;
  --mint-dark: #2f9c7c;
  --blue: #6f8cff;
  --line: rgba(7, 24, 23, 0.14);
  --muted: #657572;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto minmax(250px, 1fr);
  align-items: center;
  min-height: 82px;
  padding: 0 4.5vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 24, 23, 0.93);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
}

.brand-mark {
  position: relative;
  display: block;
  width: 48px;
  height: 34px;
  overflow: hidden;
  flex: 0 0 auto;
}

.brand-mark img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 68px;
  height: 68px;
  max-width: none;
  object-fit: contain;
  transform: translate(-50%, -50%);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 14px;
  letter-spacing: 0.12em;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
}

.site-header nav {
  display: flex;
  gap: 32px;
  align-items: center;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.site-header nav a,
.footer-links a {
  transition: color 180ms ease;
}

.site-header nav a:hover,
.footer-links a:hover {
  color: var(--mint);
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 650;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.header-cta:hover {
  background: var(--mint);
  color: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: 780px;
  grid-template-columns: minmax(0, 1.05fr) minmax(440px, 0.95fr);
  gap: 7vw;
  align-items: center;
  overflow: hidden;
  padding: 108px 7vw 96px;
  background: var(--ink);
  color: var(--white);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(118, 230, 193, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(118, 230, 193, 0.12) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.25), black);
}

.hero::after {
  position: absolute;
  top: 8%;
  right: 4%;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: rgba(111, 140, 255, 0.16);
  content: "";
  filter: blur(100px);
  pointer-events: none;
}

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

.eyebrow,
.section-kicker {
  margin: 0 0 20px;
  color: var(--mint-dark);
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.5;
}

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

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(58px, 6.7vw, 108px);
  font-weight: 550;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.hero h1 span,
.section-heading h2 span,
.loop-copy h2 span,
.governance-copy h2 span,
.closing h2 span {
  color: var(--mint);
}

.hero-lede {
  max-width: 720px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 21px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 680;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

.button-primary {
  background: var(--mint);
  color: var(--ink);
}

.button-primary:hover {
  background: #9ef0d4;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 42px;
}

.proof-row span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.54);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-system {
  padding: 20px;
  border: 1px solid rgba(118, 230, 193, 0.26);
  border-radius: 24px;
  background: rgba(12, 38, 35, 0.72);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.system-label,
.system-footer,
.card-kicker,
.evidence-line,
.approval-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.system-label {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.live-dot {
  color: var(--mint);
}

.live-dot::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(118, 230, 193, 0.1);
  content: "";
}

.system-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.045);
}

.card-kicker {
  justify-content: flex-start;
  gap: 8px;
  color: var(--mint);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
}

.system-card h2 {
  margin: 15px 0 10px;
  font-size: clamp(21px, 1.8vw, 29px);
  font-weight: 580;
  letter-spacing: -0.03em;
}

.system-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.55;
}

.evidence-line {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
}

.system-connector {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
  height: 54px;
  color: rgba(255, 255, 255, 0.38);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  font-style: normal;
}

.system-connector span {
  height: 1px;
  background: rgba(118, 230, 193, 0.2);
}

.system-connector em {
  font-style: normal;
}

.decision-card {
  border-color: rgba(111, 140, 255, 0.3);
  background: rgba(111, 140, 255, 0.08);
}

.approval-row {
  margin-top: 18px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 650;
}

.approval-row button {
  padding: 8px 13px;
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font: inherit;
  font-size: 11px;
}

.system-footer {
  gap: 14px;
  padding: 18px 4px 0;
  color: rgba(255, 255, 255, 0.36);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  text-transform: uppercase;
}

.system-footer span::before {
  margin-right: 5px;
  color: var(--mint);
  content: "✓";
}

.market-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(170px, 0.7fr)) minmax(300px, 1.6fr);
  min-height: 150px;
  align-items: center;
  gap: 2vw;
  padding: 28px 7vw;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.market-strip > div {
  display: grid;
  gap: 4px;
}

.market-strip strong {
  font-size: clamp(26px, 2.6vw, 42px);
  font-weight: 590;
  letter-spacing: -0.04em;
}

.market-strip span {
  color: var(--muted);
  font-size: 12px;
}

.market-strip p {
  margin: 0;
  padding-left: 2vw;
  border-left: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.5;
}

.section-shell {
  padding: 120px 7vw;
}

.section-heading {
  max-width: 1000px;
  margin-bottom: 64px;
}

.section-heading h2,
.loop-copy h2,
.governance-copy h2,
.closing h2 {
  margin: 0;
  font-size: clamp(43px, 5vw, 76px);
  font-weight: 540;
  letter-spacing: -0.055em;
  line-height: 1;
}

.section-heading h2 span {
  color: var(--mint-dark);
}

.split-heading {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 8vw;
  align-items: end;
}

.split-heading > p,
.split-heading > div + p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

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

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.problem-grid article {
  min-height: 310px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.problem-grid article > span,
.pillar-number {
  color: var(--mint-dark);
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
}

.problem-grid h3,
.pillar h3,
.audience-grid h3,
.pilot-grid h3 {
  margin: 58px 0 14px;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 570;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.problem-grid p,
.pillar p,
.audience-grid p,
.pilot-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

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

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

.pillar {
  display: grid;
  grid-template-columns: 80px 1fr minmax(230px, 0.45fr);
  gap: 30px;
  align-items: center;
  min-height: 215px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.pillar h3 {
  margin: 0 0 10px;
  font-size: clamp(28px, 3.2vw, 49px);
}

.pillar p {
  max-width: 760px;
  font-size: 15px;
}

.pillar-tag {
  justify-self: end;
  max-width: 230px;
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: right;
  text-transform: uppercase;
}

.loop {
  display: grid;
  min-height: 850px;
  grid-template-columns: minmax(0, 0.75fr) minmax(560px, 1.25fr);
  gap: 6vw;
  align-items: center;
  overflow: hidden;
  padding: 120px 7vw;
  background: var(--ink);
  color: var(--white);
}

.loop-copy h2 span,
.governance-copy h2 span,
.closing h2 span {
  color: var(--mint);
}

.loop-copy > p:not(.section-kicker),
.governance-copy > p:not(.section-kicker) {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  margin-top: 28px;
  color: var(--mint);
  font-size: 14px;
  font-weight: 650;
}

.loop-ring {
  position: relative;
  width: min(48vw, 700px);
  aspect-ratio: 1;
  justify-self: end;
  border: 1px solid rgba(118, 230, 193, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(118, 230, 193, 0.08), transparent 45%),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
}

.loop-ring::before,
.loop-ring::after {
  position: absolute;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
}

.loop-ring::before {
  inset: 15%;
}

.loop-ring::after {
  inset: 31%;
}

.ring-center {
  position: absolute;
  inset: 35%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(118, 230, 193, 0.28);
  border-radius: 50%;
  background: var(--ink);
  text-align: center;
}

.ring-center small {
  color: var(--mint);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.12em;
}

.ring-center strong {
  margin-top: 4px;
  font-size: clamp(24px, 3vw, 46px);
  font-weight: 550;
}

.ring-center span {
  max-width: 130px;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  line-height: 1.4;
}

.loop-step {
  position: absolute;
  z-index: 3;
  display: grid;
  min-width: 155px;
  max-width: 210px;
  gap: 4px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 12px;
  background: rgba(15, 45, 42, 0.96);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.22);
}

.loop-step > span {
  color: var(--mint);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
}

.loop-step strong {
  font-size: 14px;
}

.loop-step small {
  color: rgba(255, 255, 255, 0.44);
  font-size: 9px;
}

.loop-step-1 {
  top: 4%;
  left: 36%;
}

.loop-step-2 {
  top: 24%;
  right: -1%;
}

.loop-step-3 {
  right: 4%;
  bottom: 13%;
}

.loop-step-4 {
  bottom: 3%;
  left: 22%;
}

.loop-step-5 {
  top: 43%;
  left: -4%;
}

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

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

.audience-grid article {
  min-height: 225px;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.audience-grid h3 {
  margin: 0 0 14px;
}

.audience-grid p {
  max-width: 560px;
}

.governance {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  gap: 8vw;
  padding: 120px 7vw;
  background: #102d2a;
  color: var(--white);
}

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

.governance-list > div {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.governance-list span {
  color: var(--mint);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
}

.governance-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.5;
}

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

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

.pilot-grid article {
  min-height: 330px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
}

.pilot-grid article > span {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--mint);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pilot-grid h3 {
  margin: 62px 0 14px;
}

.pilot-outcomes {
  display: grid;
  grid-template-columns: minmax(170px, 0.3fr) 1fr;
  gap: 30px;
  align-items: center;
  margin-top: 22px;
  padding: 26px 30px;
  border-radius: 16px;
  background: var(--ink);
  color: var(--white);
}

.pilot-outcomes p {
  margin: 0;
  color: var(--mint);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pilot-outcomes > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pilot-outcomes span {
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 11px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  gap: 7vw;
  align-items: start;
  background: var(--paper-deep);
}

.contact-intro {
  position: sticky;
  top: 118px;
}

.contact-intro h2 {
  margin: 16px 0 24px;
  font-size: clamp(42px, 5.4vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.contact-intro h2 span {
  color: var(--mint-dark);
}

.contact-intro > p:not(.section-kicker, .dogfood-note) {
  max-width: 620px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.contact-next {
  margin-top: 40px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.55);
}

.contact-next > p,
.form-heading > p {
  margin: 0;
  color: var(--mint-dark);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.contact-next ol {
  display: grid;
  gap: 15px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.contact-next li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 11px;
  align-items: start;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.5;
}

.contact-next li span {
  color: var(--mint-dark);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  font-weight: 700;
}

.dogfood-note {
  margin: 22px 0 0;
  padding: 16px 17px;
  border: 1px solid rgba(47, 156, 124, 0.25);
  border-radius: 12px;
  background: rgba(118, 230, 193, 0.1);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.dogfood-note strong {
  color: var(--ink);
}

.lead-form {
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 34px 90px rgba(7, 24, 23, 0.15);
}

.form-heading {
  padding-bottom: 27px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.form-heading h3 {
  margin: 10px 0 7px;
  font-size: 30px;
  font-weight: 620;
  letter-spacing: -0.035em;
}

.form-heading > span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 19px 16px;
  margin-top: 28px;
}

.form-grid label {
  display: grid;
  gap: 8px;
}

.form-grid label > span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.form-grid label > span small {
  color: rgba(255, 255, 255, 0.38);
  font-weight: 500;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  outline: none;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font: inherit;
  font-size: 13px;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.form-grid input,
.form-grid select {
  height: 48px;
  padding: 0 13px;
}

.form-grid textarea {
  min-height: 130px;
  padding: 13px;
  resize: vertical;
  line-height: 1.55;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-grid select {
  color-scheme: dark;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--mint);
  background: rgba(118, 230, 193, 0.08);
  box-shadow: 0 0 0 3px rgba(118, 230, 193, 0.12);
}

.form-wide {
  grid-column: 1 / -1;
}

.form-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  pointer-events: none;
}

.form-submit {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
}

.form-submit button {
  flex: 0 0 auto;
  border: 0;
  cursor: pointer;
}

.form-submit button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.form-submit p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 1.55;
}

.form-status {
  display: none;
  margin-top: 22px;
  padding: 15px 16px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.55;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  border: 1px solid rgba(118, 230, 193, 0.32);
  background: rgba(118, 230, 193, 0.09);
  color: #b7f4d8;
}

.form-status.is-error {
  border: 1px solid rgba(255, 138, 138, 0.32);
  background: rgba(255, 138, 138, 0.08);
  color: #ffc4c4;
}

.closing {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.55fr);
  gap: 8vw;
  align-items: end;
  padding: 120px 7vw;
  background: var(--mint);
}

.closing .section-kicker {
  color: var(--ink);
}

.closing h2 span {
  color: rgba(7, 24, 23, 0.5);
}

.closing-action p {
  margin: 0 0 26px;
  color: rgba(7, 24, 23, 0.68);
  font-size: 16px;
  line-height: 1.6;
}

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

footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(300px, 1.6fr) minmax(280px, auto);
  gap: 5vw;
  align-items: center;
  min-height: 180px;
  padding: 40px 7vw;
  background: var(--ink);
  color: var(--white);
}

.footer-brand .brand-mark {
  background: transparent;
  color: var(--mint);
}

footer > p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 24px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.footer-links a[aria-current="page"] {
  color: var(--mint);
}

.footer-copyright {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
}

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

  .site-header nav {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 88px;
  }

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

  .hero-system {
    width: min(760px, 100%);
  }

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

  .market-strip p {
    grid-column: 1 / -1;
    padding: 22px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

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

  .contact-intro {
    position: static;
  }

  .lead-form {
    width: min(820px, 100%);
  }

  .loop-ring {
    width: min(720px, 90vw);
    justify-self: center;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 72px;
    padding: 0 20px;
  }

  .brand-copy small {
    display: none;
  }

  .header-cta {
    padding: 10px 13px;
    font-size: 11px;
  }

  .hero,
  .section-shell,
  .loop,
  .governance,
  .closing {
    padding-right: 22px;
    padding-left: 22px;
  }

  .hero {
    gap: 58px;
    padding-top: 80px;
    padding-bottom: 70px;
  }

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

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

  .proof-row {
    margin-top: 28px;
  }

  .hero-system {
    padding: 13px;
    border-radius: 18px;
  }

  .system-card {
    padding: 19px;
  }

  .system-footer {
    flex-wrap: wrap;
  }

  .market-strip {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 40px 22px;
  }

  .market-strip p {
    grid-column: auto;
  }

  .section-shell,
  .loop,
  .governance,
  .closing {
    padding-top: 88px;
    padding-bottom: 88px;
  }

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

  .section-heading h2,
  .loop-copy h2,
  .governance-copy h2,
  .closing h2 {
    font-size: clamp(41px, 12vw, 62px);
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 26px;
  }

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

  .problem-grid article {
    min-height: 260px;
  }

  .pillar {
    grid-template-columns: 40px 1fr;
  }

  .pillar-tag {
    grid-column: 2;
    justify-self: start;
    text-align: left;
  }

  .loop {
    min-height: auto;
  }

  .loop-ring {
    width: 96vw;
    margin-left: -13vw;
    transform: scale(0.82);
  }

  .loop-step {
    min-width: 130px;
    max-width: 150px;
    padding: 10px 12px;
  }

  .governance {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .pilot-grid article {
    min-height: 270px;
  }

  .pilot-outcomes {
    grid-template-columns: 1fr;
  }

  .closing {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .lead-form {
    padding: 24px 18px;
    border-radius: 18px;
  }

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

  .form-wide {
    grid-column: auto;
  }

  .form-submit {
    align-items: stretch;
    flex-direction: column;
  }

  .form-submit button {
    width: 100%;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 52px 22px;
  }

  .footer-links {
    justify-content: flex-start;
  }

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

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

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