:root {
  --bg: #070d13;
  --bg-soft: #0d1720;
  --bg-lift: #111e29;
  --ink: #f7f5ef;
  --muted: #aab5bb;
  --paper: #f4f0e7;
  --paper-2: #fffaf0;
  --paper-ink: #12191f;
  --paper-muted: #59656d;
  --line: rgba(255, 255, 255, .13);
  --line-dark: rgba(18, 25, 31, .14);
  --teal: #50d4c5;
  --blue: #98d9ff;
  --green: #36bb82;
  --copper: #d69b56;
  --max: 1180px;
  --shadow: 0 28px 78px rgba(0, 0, 0, .34);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  letter-spacing: 0;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

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

p {
  line-height: 1.65;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 54px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: rgba(7, 13, 19, .74);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  background: rgba(7, 13, 19, .91);
}

.legal-header {
  position: sticky;
  background: rgba(7, 13, 19, .95);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  font-size: 22px;
  font-weight: 900;
}

.brand-logo {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(80, 212, 197, .16));
}

.brand-word {
  line-height: 1;
}

.brand-mark {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  overflow: hidden;
  border: 1px solid rgba(152, 217, 255, .3);
  border-radius: 10px;
  background:
    radial-gradient(circle at 52% 52%, rgba(80, 212, 197, .24) 0 19%, transparent 20%),
    linear-gradient(135deg, rgba(80, 212, 197, .18), rgba(214, 155, 86, .14)),
    #0b141d;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04);
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 4px solid transparent;
  border-top-color: var(--teal);
  border-right-color: rgba(152, 217, 255, .82);
  border-bottom-color: var(--copper);
  border-radius: 50%;
  transform: rotate(-38deg);
}

.brand-mark::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 5px;
  top: 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--blue), var(--copper));
  box-shadow:
    -7px -7px 0 -1px rgba(80, 212, 197, .78),
    7px 7px 0 -1px rgba(214, 155, 86, .78);
}

.mark-core {
  position: absolute;
  left: 15px;
  top: 15px;
  z-index: 2;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 3px rgba(80, 212, 197, .75);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 12px;
  color: rgba(247, 245, 239, .8);
  text-decoration: none;
  font-size: 14px;
  font-weight: 720;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--ink);
}

.site-nav .nav-contact {
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .07);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: min(820px, 88vh);
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 13, 19, .97) 0%, rgba(7, 13, 19, .89) 32%, rgba(7, 13, 19, .37) 68%, rgba(7, 13, 19, .78) 100%),
    linear-gradient(0deg, rgba(7, 13, 19, .97) 0%, rgba(7, 13, 19, .25) 52%, rgba(7, 13, 19, .1) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 148px 0 132px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  max-width: 815px;
  margin-bottom: 24px;
  font-size: 92px;
  line-height: .94;
  letter-spacing: 0;
  overflow-wrap: normal;
}

.hero-copy {
  max-width: 735px;
  color: rgba(247, 245, 239, .79);
  font-size: 22px;
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 850;
  font-size: 14px;
}

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

.button.secondary {
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .06);
  color: var(--ink);
}

.button:hover,
.button:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  transform: translateY(-1px);
}

.hero-status {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: min(var(--max), calc(100% - 40px));
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(16px);
}

.hero-status span {
  padding: 13px 18px;
  color: rgba(247, 245, 239, .82);
  background: rgba(7, 13, 19, .64);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
  text-align: center;
}

.delivery-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(var(--max), calc(100% - 40px));
  margin: -34px auto 0;
  box-shadow: var(--shadow);
}

.delivery-strip article {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 14px;
  min-height: 168px;
  min-width: 0;
  padding: 24px;
  border-right: 1px solid var(--line-dark);
  background: var(--paper);
  color: var(--paper-ink);
}

.delivery-strip article:last-child {
  border-right: 0;
}

.delivery-strip strong,
.delivery-strip span {
  display: block;
}

.delivery-strip > article > span {
  color: #27857c;
  font-size: 11px;
  font-weight: 900;
}

.delivery-strip strong {
  margin-bottom: 9px;
  font-size: 16px;
}

.delivery-strip p {
  margin: 0;
  color: var(--paper-muted);
  font-size: 14px;
  line-height: 1.48;
  overflow-wrap: break-word;
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 108px 0;
}

.split-section,
.tech-section,
.trust-section {
  display: grid;
  grid-template-columns: minmax(280px, 470px) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 76px);
  align-items: start;
}

.section-heading.compact {
  max-width: 760px;
}

.section h2,
.page-hero h1 {
  margin-bottom: 0;
  font-size: 58px;
  line-height: 1;
  letter-spacing: 0;
}

.lead-copy {
  color: var(--muted);
  font-size: 18px;
}

.lead-copy p:last-child,
.lead-copy.single {
  margin-bottom: 0;
}

.advantage-section {
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
  gap: clamp(46px, 7vw, 96px);
  align-items: start;
}

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

.advantage-intro p:not(.eyebrow) {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.dark-link {
  color: var(--teal);
}

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

.advantage-list article {
  padding: 30px 0 32px;
  border-bottom: 1px solid var(--line);
}

.advantage-list span {
  display: block;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.advantage-list h3 {
  max-width: 650px;
  margin-bottom: 12px;
  font-size: 28px;
  line-height: 1.15;
}

.advantage-list p {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.engagement-band {
  width: 100%;
  padding: 108px max(20px, calc((100vw - var(--max)) / 2));
  background: var(--paper);
  color: var(--paper-ink);
}

.engagement-band .eyebrow {
  color: #27857c;
}

.engagement-inner {
  width: 100%;
  margin: 0 auto;
}

.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 48px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.engagement-grid article {
  min-width: 0;
  padding: 34px 34px 36px 0;
}

.engagement-grid article + article {
  padding-left: 34px;
  border-left: 1px solid var(--line-dark);
}

.engagement-grid span {
  display: block;
  margin-bottom: 42px;
  color: #27857c;
  font-size: 12px;
  font-weight: 900;
}

.engagement-grid h3 {
  margin-bottom: 14px;
  font-size: 28px;
  line-height: 1.12;
}

.engagement-grid p {
  margin: 0;
  color: var(--paper-muted);
}

.activation-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: clamp(46px, 7vw, 92px);
  align-items: start;
}

.activation-copy > h2 {
  max-width: 620px;
}

.activation-steps {
  margin-top: 44px;
  border-top: 1px solid var(--line);
}

.activation-steps article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.activation-steps > article > span {
  color: var(--copper);
  font-size: 12px;
  font-weight: 900;
}

.activation-steps h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.activation-steps p {
  margin: 0;
  color: var(--muted);
}

.vertical-panel {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(152, 217, 255, .2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(80, 212, 197, .12), rgba(214, 155, 86, .08)),
    var(--bg-lift);
  box-shadow: var(--shadow);
}

.vertical-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--blue), var(--copper));
}

.vertical-panel h3 {
  max-width: 430px;
  margin-bottom: 16px;
  font-size: 32px;
  line-height: 1.08;
}

.vertical-panel > p:not(.eyebrow) {
  color: var(--muted);
}

.vertical-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.vertical-list span {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 4px;
  background: rgba(255, 255, 255, .055);
  color: rgba(247, 245, 239, .88);
  font-size: 13px;
  font-weight: 780;
}

.faq-band {
  width: 100%;
  padding: 108px max(20px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0a141d;
}

.faq-inner {
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
  gap: clamp(46px, 7vw, 96px);
}

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

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

.faq-list summary {
  position: relative;
  padding: 24px 42px 24px 0;
  cursor: pointer;
  color: var(--ink);
  font-size: 18px;
  font-weight: 820;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 21px;
  right: 4px;
  color: var(--teal);
  font-size: 24px;
  font-weight: 500;
}

.faq-list details[open] summary::after {
  content: "\2212";
}

.faq-list details p {
  max-width: 720px;
  margin: -4px 42px 24px 0;
  color: var(--muted);
}

.capability-band {
  width: 100%;
  max-width: none;
  padding: 108px max(20px, calc((100vw - var(--max)) / 2));
  background: var(--paper);
  color: var(--paper-ink);
}

.capability-band .eyebrow,
.page-hero .eyebrow {
  color: #27857c;
}

.capability-grid,
.service-matrix,
.values-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 44px;
}

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

.capability-grid article,
.service-matrix article,
.values-grid article,
.contact-grid article {
  min-height: 292px;
  min-width: 0;
  padding: 26px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: var(--paper-2);
}

.service-matrix article,
.values-grid article,
.contact-grid article {
  min-height: 280px;
  background: rgba(255, 255, 255, .055);
  border-color: var(--line);
}

.card-kicker,
.service-matrix span {
  display: inline-block;
  margin-bottom: 38px;
  color: #27857c;
  font-weight: 900;
  font-size: 12px;
}

.capability-grid h3,
.service-matrix h2,
.values-grid h2,
.contact-grid h2,
.model-list h3 {
  margin-bottom: 14px;
  font-size: 22px;
  line-height: 1.13;
}

.capability-grid p {
  margin-bottom: 0;
  color: var(--paper-muted);
  line-height: 1.62;
}

.service-matrix p,
.values-grid p,
.contact-grid p,
.model-list p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}

.text-link {
  display: inline-flex;
  margin-top: 30px;
  color: #0f5f59;
  text-decoration: none;
  font-weight: 850;
}

.tech-section {
  align-items: center;
}

.partner-fit-panel {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(152, 217, 255, .2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(80, 212, 197, .12), rgba(214, 155, 86, .08)),
    var(--bg-lift);
  box-shadow: var(--shadow);
}

.partner-fit-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--blue), var(--copper));
}

.partner-fit-panel > * {
  position: relative;
}

.partner-fit-panel.large {
  min-height: 500px;
  display: grid;
  align-content: center;
}

.partner-fit-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.partner-fit-steps article {
  min-height: 210px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .055);
}

.partner-fit-steps span,
.quality-loop span {
  display: block;
  margin-bottom: 18px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.partner-fit-steps h3 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 24px;
}

.partner-fit-steps p {
  margin: 0;
  color: rgba(247, 245, 239, .74);
  line-height: 1.55;
}

.quality-loop {
  display: grid;
  grid-template-columns: minmax(120px, 170px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-top: 16px;
  padding: 22px;
  border: 1px solid rgba(80, 212, 197, .28);
  border-radius: 8px;
  background: rgba(80, 212, 197, .08);
}

.quality-loop span {
  margin-bottom: 0;
}

.quality-loop p {
  max-width: 760px;
  margin: 0;
  color: rgba(247, 245, 239, .82);
  font-size: 18px;
  line-height: 1.48;
}

.channels-section {
  padding-top: 24px;
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 36px;
}

.channel-grid span {
  min-height: 86px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .055);
  color: rgba(247, 245, 239, .9);
  font-weight: 850;
}

.operating-model {
  width: 100%;
  max-width: none;
  padding: 108px max(20px, calc((100vw - var(--max)) / 2));
  background: #0a141d;
}

.model-list {
  display: grid;
  gap: 1px;
  margin-top: 44px;
  border: 1px solid var(--line);
  background: var(--line);
}

.model-list article {
  display: grid;
  grid-template-columns: 88px 270px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  padding: 30px;
  background: #0a141d;
}

.model-list span {
  color: var(--copper);
  font-weight: 900;
}

.trust-section {
  align-items: center;
}

.trust-list {
  display: grid;
  gap: 12px;
}

.trust-list p {
  margin: 0;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .055);
  color: rgba(247, 245, 239, .86);
  font-weight: 780;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  margin-bottom: 90px;
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(80, 212, 197, .12), rgba(214, 155, 86, .1)),
    var(--bg-lift);
}

.contact-band h2 {
  max-width: 780px;
  margin-bottom: 18px;
}

.contact-band p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 34px clamp(20px, 4vw, 54px);
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: var(--muted);
}

.site-footer p {
  max-width: 460px;
  margin: 12px 0 0;
  font-size: 14px;
}

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

.site-footer a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--ink);
}

.footer-brand {
  color: var(--ink);
}

.page-main {
  min-height: 70vh;
}

.page-hero {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 112px 0 74px;
}

.page-hero h1 {
  max-width: 950px;
  margin-bottom: 22px;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 20px;
}

.contact-hero .button {
  margin-top: 18px;
}

.contact-form-section {
  display: grid;
  grid-template-columns: minmax(280px, 390px) minmax(0, 1fr);
  gap: clamp(44px, 7vw, 94px);
  align-items: start;
  padding-top: 38px;
}

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

.contact-brief > h2 {
  margin-bottom: 24px;
}

.contact-brief > p:not(.eyebrow):not(.direct-contact) {
  color: var(--muted);
  font-size: 17px;
}

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

.brief-list div {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.brief-list span {
  color: var(--copper);
  font-size: 11px;
  font-weight: 900;
}

.brief-list p {
  margin: 0;
  color: rgba(247, 245, 239, .88);
  font-weight: 760;
}

.direct-contact {
  margin-top: 30px;
  color: var(--muted);
}

.direct-contact a {
  color: var(--teal);
  font-weight: 820;
  text-decoration: none;
}

.contact-form-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(152, 217, 255, .2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(80, 212, 197, .1), rgba(214, 155, 86, .06)),
    var(--bg-lift);
  box-shadow: var(--shadow);
}

.contact-form-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--blue), var(--copper));
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 16px;
}

.form-field {
  display: grid;
  gap: 9px;
  min-width: 0;
}

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

.form-field > span {
  color: rgba(247, 245, 239, .9);
  font-size: 13px;
  font-weight: 820;
}

.form-field small {
  margin-left: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 6px;
  outline: 0;
  background: rgba(7, 13, 19, .72);
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  line-height: 1.4;
}

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

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(170, 181, 187, .65);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(80, 212, 197, .12);
}

.consent-field {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  margin-top: 24px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.consent-field input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--teal);
}

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

.form-submit-row p {
  max-width: 290px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.form-submit-row .button:disabled {
  cursor: wait;
  opacity: .65;
  transform: none;
}

.form-status {
  min-height: 22px;
  margin: 16px 0 0;
  color: var(--teal);
  font-size: 13px;
  font-weight: 760;
}

.form-status.is-error {
  color: #ffb69f;
}

.thanks-main {
  min-height: 72vh;
  display: grid;
  place-items: center;
  padding: 120px 20px 72px;
}

.thanks-panel {
  width: min(760px, 100%);
  padding: clamp(34px, 7vw, 72px);
  border: 1px solid rgba(152, 217, 255, .2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(80, 212, 197, .12), rgba(214, 155, 86, .08)),
    var(--bg-lift);
  box-shadow: var(--shadow);
}

.thanks-panel h1 {
  margin-bottom: 24px;
  font-size: clamp(44px, 7vw, 76px);
}

.thanks-panel p:not(.eyebrow) {
  max-width: 590px;
  color: var(--muted);
  font-size: 18px;
}

.thanks-panel .button {
  margin-top: 18px;
}

.tech-depth {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: 48px;
  align-items: center;
}

.tech-copy p {
  color: var(--muted);
  font-size: 17px;
}

.values-grid,
.contact-grid,
.service-matrix {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 0;
}

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

.legal-page {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0 110px;
}

.legal-page h1 {
  max-width: 760px;
  font-size: 64px;
}

.legal-page h2 {
  margin: 44px 0 12px;
  font-size: 24px;
}

.legal-page p {
  color: var(--muted);
  font-size: 17px;
}

.legal-page a {
  color: var(--blue);
}

.legal-footer {
  align-items: center;
}

@media (max-width: 1040px) {
  h1 {
    font-size: 72px;
  }

  .section h2,
  .page-hero h1 {
    font-size: 48px;
  }

  .metric-strip,
  .delivery-strip,
  .capability-grid,
  .capability-grid.three,
  .channel-grid,
  .values-grid,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-section,
  .advantage-section,
  .activation-section,
  .faq-inner,
  .tech-section,
  .trust-section,
  .tech-depth,
  .contact-form-section,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .advantage-intro {
    position: static;
  }

  .contact-brief {
    position: static;
  }

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

  .engagement-grid article,
  .engagement-grid article + article {
    padding: 28px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .engagement-grid article:last-child {
    border-bottom: 0;
  }

  .engagement-grid span {
    margin-bottom: 24px;
  }

  .contact-band {
    justify-items: start;
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-grid;
    gap: 4px;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .06);
    color: var(--ink);
  }

  .nav-toggle span:not(.sr-only) {
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .site-nav {
    position: fixed;
    inset: 73px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(13, 23, 32, .98);
    box-shadow: var(--shadow);
  }

  body.nav-open .site-nav[data-nav] {
    display: flex;
  }

  .legal-nav {
    position: static;
    display: flex;
    flex-direction: row;
    border: 0;
    box-shadow: none;
    padding: 0;
    background: transparent;
  }

  .hero-status {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-status span {
    padding: 12px 8px;
    text-align: center;
    font-size: 11px;
  }

  .model-list article {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .model-list article p {
    grid-column: 2;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand {
    font-size: 18px;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-mark::before {
    inset: 5px;
    border-width: 3px;
  }

  .brand-mark::after {
    left: 5px;
    right: 5px;
    top: 16px;
  }

  .mark-core {
    left: 13px;
    top: 13px;
  }

  .hero {
    min-height: 790px;
  }

  .hero-media img {
    object-position: 68% center;
  }

  .hero-content {
    width: auto;
    margin-left: 17px;
    margin-right: 17px;
    padding: 136px 0 168px;
  }

  h1 {
    max-width: 340px;
    font-size: 42px;
    line-height: 1;
  }

  .hero-copy {
    max-width: 340px;
    font-size: 18px;
  }

  .eyebrow {
    font-size: 11px;
    line-height: 1.3;
  }

  .section h2,
  .page-hero h1 {
    font-size: 38px;
  }

  .legal-page h1 {
    font-size: 44px;
  }

  .hero-status {
    bottom: 18px;
    grid-template-columns: repeat(2, 1fr);
    width: auto;
    left: 17px;
    right: 17px;
    transform: none;
  }

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

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

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

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

  .form-submit-row p {
    max-width: none;
  }

  .metric-strip,
  .delivery-strip,
  .capability-grid,
  .capability-grid.three,
  .service-matrix,
  .channel-grid,
  .values-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .delivery-strip {
    width: auto;
    margin: 0 17px;
  }

  .delivery-strip article {
    min-height: 0;
    padding: 22px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .delivery-strip article:last-child {
    border-bottom: 0;
  }

  .section,
  .page-hero,
  .legal-page {
    width: auto;
    margin-left: 17px;
    margin-right: 17px;
  }

  .section {
    padding: 78px 0;
  }

  .page-hero {
    padding-top: 84px;
  }

  .capability-band,
  .engagement-band,
  .faq-band,
  .operating-model {
    padding: 78px 17px;
  }

  .partner-fit-panel,
  .partner-fit-panel.large {
    min-height: auto;
    padding: 22px;
  }

  .partner-fit-steps {
    grid-template-columns: 1fr;
  }

  .partner-fit-steps article {
    min-height: auto;
  }

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

  .contact-band {
    padding: 34px 22px;
    margin-bottom: 60px;
  }

  .site-footer {
    flex-direction: column;
  }

  .legal-nav {
    display: none;
  }
}
