@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/DMSans-VariableFont_opsz,wght.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 100 900;
}

@font-face {
  font-family: "DM Mono";
  src: url("assets/fonts/DMMono-Light.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: "DM Mono";
  src: url("assets/fonts/DMMono-Regular.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

:root {
  --bg: #030304;
  --bg-soft: #07070a;
  --ink: #f3f1ec;
  --muted: rgba(243, 241, 236, 0.66);
  --dim: rgba(243, 241, 236, 0.38);
  --line: rgba(243, 241, 236, 0.13);
  --line-strong: rgba(243, 241, 236, 0.22);
  --panel: rgba(13, 13, 17, 0.78);
  --accent: #9b4dff;
  --accent-soft: rgba(155, 77, 255, 0.18);
  --max: 80rem;
  --font-ui: "DM Sans", "ui-sans-serif", "system-ui";
  --font-mono: "DM Mono", monospace;
  font-synthesis-weight: none;
}

* {
  box-sizing: border-box;
  font-family: var(--font-ui);
}

html {
  scroll-behavior: smooth;
  background: #030304;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: normal;
  font-size: 16px;
  font-variation-settings: normal;
  line-height: 32px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  overscroll-behavior-y: none;
  background-color: #030304;
  background:
    linear-gradient(180deg, #030304 0, #030304 32rem, #050508 74rem, #030304 100%);
  color: var(--ink);
  font-size: 16px;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 18% 14%, rgba(155, 77, 255, 0.08), transparent 28rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 32rem);
}

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

img,
canvas {
  display: block;
}

.skip-link {
  position: fixed;
  top: calc(0.75rem + env(safe-area-inset-top));
  left: 0.75rem;
  z-index: 70;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--bg);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  box-shadow: 0 0.7rem 2rem rgba(0, 0, 0, 0.28);
}

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

.topbar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  min-height: 6.25rem;
  padding: 0 2.5rem;
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.428571;
  border-bottom: 0;
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  text-shadow: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.78rem;
  justify-self: start;
  color: rgba(243, 241, 236, 0.78);
}

.brand img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.brand-copy {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  line-height: 1.333333;
  white-space: nowrap;
}

.brand-name {
  color: #fff;
  font-family: var(--font-ui);
  font-size: inherit;
  font-weight: 900;
  letter-spacing: inherit;
  line-height: inherit;
  text-transform: uppercase;
}

.brand-descriptor {
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-ui);
  font-size: inherit;
  font-weight: 400;
  letter-spacing: inherit;
  line-height: inherit;
}

.main-nav {
  display: inline-flex;
  gap: 0;
  justify-self: center;
}

.main-nav a {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.428571;
  padding: 1.5rem;
  margin: 1rem 0;
}

.main-nav a,
.next-pill,
.hero-service-item {
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.hero-service-item:hover,
.hero-service-item:focus-visible {
  color: #fff;
  outline: none;
}

.top-status {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  justify-self: end;
  width: 100%;
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.625rem;
  font-weight: 600;
  line-height: 1;
}

.top-time {
  color: #fff;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: 0;
  line-height: 1;
}

.top-mode {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  place-items: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  line-height: 1;
}

.top-mode svg {
  display: block;
  width: 10px;
  height: 10px;
  fill: #fff;
  stroke: currentColor;
}

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

.stage {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #000;
  box-shadow: inset 0 -8rem 8rem rgba(3, 3, 4, 0.82);
}

.liquid,
.grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.liquid {
  z-index: 0;
}

.grain {
  z-index: 1;
  opacity: 1;
  background:
    radial-gradient(circle at 50% 47%, transparent 0 16rem, rgba(0, 0, 0, 0.08) 28rem, rgba(0, 0, 0, 0.74) 66rem),
    linear-gradient(90deg, rgba(0, 0, 0, 0.66), transparent 24%, transparent 78%, rgba(0, 0, 0, 0.68)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.48), transparent 24%, transparent 72%, rgba(0, 0, 0, 0.58));
}

.stage-center {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: min(100% - 1rem, 50rem);
  transform: translate(-50%, -50%);
  text-align: center;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.stage-center p {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: calc(100% - 2rem);
  min-height: 1.875rem;
  margin: 0 auto 1rem;
  padding: 0 1rem;
  border: 0;
  border-radius: 2rem;
  background: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  box-shadow: none;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: none;
}

.stage-center p span {
  color: var(--accent);
  font-family: inherit;
}

.stage-center h1 {
  margin: 0;
  color: #fff;
  font-family: var(--font-mono) !important;
  font-size: 3.25rem;
  font-weight: 300 !important;
  letter-spacing: 0;
  line-height: 1.2;
  text-wrap: balance;
  white-space: normal;
  text-shadow: none;
}

.stage.has-hover-preview .stage-center {
  opacity: 0;
  transform: translate(-50%, -47%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 62% 58%, rgba(155, 77, 255, 0.06), transparent 28rem),
    linear-gradient(90deg, rgba(3, 3, 4, 0.82) 0%, rgba(3, 3, 4, 0.54) 42%, rgba(3, 3, 4, 0.22) 100%);
  transition: opacity 180ms ease;
}

.stage.has-hover-preview .hero-overlay {
  opacity: 1;
}

.hero-overlay-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(20rem, 0.72fr);
  align-items: center;
  gap: 4rem;
  min-height: 100%;
  padding: 8.75rem 3.2rem 7rem;
}

.hero-overlay-title {
  margin: 0;
  max-width: 8ch;
  color: #fff;
  font-family: var(--font-mono);
  font-size: clamp(4rem, 7vw, 6.7rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: 0;
  text-shadow: none;
}

.hero-overlay-copy {
  justify-self: end;
  align-self: end;
  max-width: 26rem;
  margin-bottom: 5rem;
}

.hero-overlay-kicker {
  margin: 0 0 1.45rem;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-transform: none;
}

.hero-overlay-description {
  margin: 0;
  color: #fff;
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
}

.hero-services {
  position: absolute;
  z-index: 4;
  bottom: 2.5rem;
  left: 2.5rem;
  display: grid;
  width: min(17rem, calc(100vw - 7rem));
}

.hero-services-list {
  display: grid;
  justify-items: start;
  gap: 0;
}

.hero-service-item {
  display: inline-flex;
  align-items: center;
  gap: 0.76rem;
  margin: 0;
  border: 0;
  padding: 0.25rem 0;
  background: transparent;
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 2rem;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
}

.hero-service-item::before {
  flex: 0 0 auto;
  width: 1.1rem;
  height: 1px;
  background: rgba(243, 241, 236, 0.22);
  content: "";
  transition:
    width 180ms ease,
    background 180ms ease;
}

.hero-service-item.is-active {
  color: #fff;
  font-weight: 600;
}

.hero-service-item.is-active::before {
  width: 1.9rem;
  background: rgba(155, 77, 255, 0.9);
}

.next-pill {
  position: absolute;
  right: 2.5rem;
  bottom: 2.5rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.125rem;
  border: 1px solid #fff;
  border-radius: 2rem;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  padding: 0 1rem;
}

.next-pill span {
  font-family: inherit;
}

.next-pill-short {
  display: none;
}

.next-pill:hover,
.next-pill:focus-visible {
  background: var(--ink);
  color: var(--bg);
  outline: none;
  transform: translateY(-1px);
}

.section {
  --section-label-gap: 0.9rem;
  --section-content-gap: 4rem;
  --bg: #ffffff;
  --bg-soft: #ffffff;
  --ink: #09090c;
  --muted: rgba(9, 9, 12, 0.68);
  --dim: rgba(9, 9, 12, 0.42);
  --line: rgba(9, 9, 12, 0.1);
  --line-strong: rgba(9, 9, 12, 0.2);
  --panel: #f0f0f0;
  position: relative;
  scroll-margin-top: -1px;
  padding: 8rem 2.45rem;
  border-top: 0;
  color: var(--ink);
  background: #fff;
}

.section:nth-of-type(even) {
  background: #fff;
}

.section + .section {
  margin-top: -1px;
}

.section-mark {
  max-width: 70rem;
  margin: 0 auto var(--section-label-gap);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-head {
  max-width: 70rem;
  margin: 0 auto var(--section-content-gap);
}

.section-head.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.82fr);
  gap: 5rem;
  align-items: start;
}

.section h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: clamp(3rem, 5vw, 4.35rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.08;
}

.section-intro .section-head h2 {
  font-size: clamp(2.75rem, 3.45vw, 3.55rem);
  font-weight: 300;
  line-height: 1.04;
}

.method .section-head {
  max-width: 70rem;
  margin-bottom: var(--section-content-gap);
}

.method .section-head h2 {
  max-width: 70rem;
  font-size: clamp(2.75rem, 3.45vw, 3.55rem);
  font-weight: 300;
  line-height: 1.04;
}

.method .section-head p {
  font-size: clamp(1.02rem, 1.08vw, 1.22rem);
  font-weight: 400;
  line-height: 1.45;
}

.section-intro .section-head,
.system-grid {
  max-width: 70rem;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.section-intro .section-head p {
  font-size: clamp(1.02rem, 1.08vw, 1.22rem);
  font-weight: 400;
  line-height: 1.45;
}

.system-grid {
  --system-gap: 1.35rem;
  --system-peek: 3.75rem;
  --system-right-offset: 4.425rem;
  margin: 0 auto;
  display: grid;
  gap: var(--system-gap);
  overflow: visible;
}

.system-row {
  display: flex;
  gap: var(--system-gap);
  align-items: stretch;
  overflow-x: clip;
}

.system-card {
  position: relative;
  display: grid;
  grid-template-rows: 1fr 0fr;
  flex: 0 0 calc((100% - var(--system-gap)) / 2);
  min-height: 15.25rem;
  border: 0;
  background: var(--panel);
  color: var(--ink);
  overflow: hidden;
  transition:
    background 220ms ease,
    color 220ms ease,
    grid-template-rows 260ms ease,
    min-height 260ms ease,
    flex-basis 260ms ease,
    margin-left 260ms ease;
}

.system-card.is-wide {
  flex-basis: calc(100% - var(--system-peek) - var(--system-gap));
  background: var(--accent);
  color: #fff;
}

.system-card.is-closing {
  background: var(--panel);
  color: var(--ink);
}

.system-card.is-right.is-wide {
  transform: none;
}

.system-row.is-right-open .system-card:first-child {
  margin-left: calc(-50% + var(--system-right-offset));
}

.system-card.is-expanded {
  grid-template-rows: auto 1fr;
  min-height: 30.5rem;
}

.system-card-toggle {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 15.25rem;
  margin: 0;
  border: 0;
  padding: 1.55rem 1.65rem;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.system-card-icon {
  position: absolute;
  top: 1.55rem;
  right: 1.65rem;
  width: 1.25rem;
  height: 1.25rem;
  object-fit: contain;
  transition:
    opacity 160ms ease;
}

.system-card-icon-close {
  opacity: 0;
}

.system-card.is-wide .system-card-icon-expand {
  opacity: 0;
}

.system-card.is-wide .system-card-icon-close {
  opacity: 1;
}

.system-card-copy {
  max-width: 31rem;
  display: grid;
  grid-template-rows: auto auto;
  align-content: start;
  gap: 2.3rem;
  height: 100%;
  padding-top: 1.6rem;
}

.system-card.is-wide .system-card-copy {
  max-width: 64rem;
}

.system-card-copy span,
.method-grid span,
.outcome-list span {
  color: var(--dim);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.system-card-copy span {
  display: block;
  margin-bottom: 0;
  color: currentColor;
}

.method-grid h3,
.outcome-list h3 {
  margin: 0;
  color: var(--ink);
}

.system-card-copy p,
.method-grid p,
.offer-grid p,
.outcome-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.system-card-copy p {
  align-self: start;
  color: currentColor;
  font-family: var(--font-ui);
  font-size: clamp(1.42rem, 1.52vw, 1.72rem);
  font-weight: 400;
  line-height: 1.26;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 170ms ease,
    transform 190ms ease;
}

.system-card.is-wide:not(.is-expanded) .system-card-copy p,
.system-card.is-opening .system-card-copy p,
.system-card.is-closing .system-card-copy p {
  opacity: 0;
  transform: translateY(0.8rem);
}

.system-card-details {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.35rem;
  min-height: 0;
  padding: 0 1.65rem 1.9rem;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-0.6rem);
  transition:
    opacity 180ms ease 120ms,
    transform 200ms ease 120ms;
}

.system-card.is-expanded:not(.is-opening):not(.is-closing) .system-card-details {
  opacity: 1;
  transform: translateY(0);
}

.system-card.is-closing .system-card-details {
  opacity: 0;
  transform: translateY(0.8rem);
}

.system-card-details article {
  display: grid;
  align-content: start;
  gap: 1.25rem;
  min-height: 0;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
}

.system-card-details span {
  color: rgba(255, 255, 255, 0.95);
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 400;
}

.system-card-details p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.42;
}

.method-grid h3 {
  align-self: start;
  max-width: 10.5rem;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: clamp(1.1rem, 1.2vw, 1.42rem);
  font-weight: 400;
  line-height: 1.14;
}

.method-grid p {
  display: none;
}

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

.method-grid {
  display: grid;
  max-width: 70rem;
  margin: 0 auto;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  background: transparent;
}

.method-grid article {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 25.5rem;
  padding: 3rem 1.65rem 2.35rem;
  border-right: 1px solid var(--accent);
}

.method-grid article:first-child {
  border-left: 0;
}

.method-grid article:last-child {
  border-right: 0;
}

.method-grid span {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: clamp(1.25rem, 1.35vw, 1.65rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1;
}

.method-grid h3 {
  transform: translateY(12.7rem);
}

.offer-grid {
  display: grid;
  max-width: 70rem;
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.45rem 2rem;
}

.offer-grid article {
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  min-height: 18.75rem;
  padding: 2.35rem 1.5rem 1rem;
  border: 0;
  background: #fff;
  overflow: hidden;
}

.offer-number {
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: clamp(2.2rem, 2.6vw, 2.75rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1;
}

.offer-grid span {
  align-self: end;
  display: block;
  margin: 0 0 1rem;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.03rem;
  line-height: 1.35;
  text-transform: uppercase;
}

.offer-grid p {
  margin: 0;
  max-width: 22.95rem;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 400;
  letter-spacing: 0.03rem;
  line-height: 1.35;
}

.section.outcomes-cards {
  background: #f2f2f2;
}

.outcomes-cards .section-head {
  margin-bottom: var(--section-content-gap);
}

.outcomes-cards .section-head h2,
.services .section-head h2 {
  max-width: 42rem;
  font-family: var(--font-ui);
  font-size: 2.25rem;
  font-weight: 400;
  letter-spacing: 0.03rem;
  line-height: 1.2;
}

.services .section-head {
  margin-bottom: var(--section-content-gap);
}

.services .section-head h2 {
  max-width: 66rem;
  font-size: clamp(2.55rem, 3.4vw, 3.45rem);
  line-height: 1.32;
}

.services-table {
  display: grid;
  max-width: 70rem;
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(9, 9, 12, 0.24);
  border-right: 0;
  border-bottom: 0;
}

.services-table article {
  min-height: 13.75rem;
  padding: 2.15rem 1.85rem;
  border-right: 1px solid rgba(9, 9, 12, 0.24);
  border-bottom: 1px solid rgba(9, 9, 12, 0.24);
}

.services-table h3 {
  margin: 0 0 1.45rem;
  color: rgba(9, 9, 12, 0.46);
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.03rem;
  line-height: 1.35;
  text-transform: uppercase;
}

.services-table ul {
  display: grid;
  gap: 0.64rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.services-table li {
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.45;
}

.outcome-wrap {
  display: grid;
  max-width: var(--max);
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.92fr) minmax(22rem, 1fr);
  gap: 5rem;
  align-items: start;
}

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

.outcome-list article {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.5rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
}

.outcome-list h3 {
  font-size: 1.5rem;
  font-weight: 400;
}

.site-footer {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 74vh;
  scroll-margin-top: 0;
  padding: 0;
  border-top: 0;
  color: rgba(243, 241, 236, 0.78);
  background: #050506;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 400;
}

.site-footer::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(155, 77, 255, 0.08) 0 16%, transparent 16% 50%, rgba(155, 77, 255, 0.05) 50% 61%, transparent 61% 84%, rgba(155, 77, 255, 0.07) 84%),
    linear-gradient(180deg, rgba(16, 7, 22, 0.08), rgba(10, 4, 14, 0.5));
  content: "";
}

.footer-liquid,
.footer-grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.footer-liquid {
  z-index: 0;
}

.footer-grain {
  z-index: 1;
  opacity: 1;
  background:
    radial-gradient(circle at 50% 36%, transparent 0 9rem, rgba(0, 0, 0, 0.16) 18rem, rgba(0, 0, 0, 0.82) 62rem),
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), transparent 22%, transparent 78%, rgba(0, 0, 0, 0.74)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.34) 24%, rgba(0, 0, 0, 0.36) 72%, rgba(0, 0, 0, 0.68));
}

.footer-cta {
  position: relative;
  z-index: 2;
  display: grid;
  flex: 1;
  min-height: 34vh;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4rem;
  align-items: end;
  padding: clamp(4.2rem, 6.5vw, 6rem) clamp(2.45rem, 10vw, 8rem) 2.4rem;
  border-bottom: 1px solid rgba(243, 241, 236, 0.2);
}

.footer-cta h2 {
  max-width: 34rem;
  margin: 0;
  color: #fff;
  font-family: var(--font-mono) !important;
  font-size: clamp(3.15rem, 4.85vw, 5rem);
  font-weight: 300 !important;
  letter-spacing: 0;
  line-height: 1.06;
}

.footer-cta h2 span {
  display: block;
  font-family: inherit;
  white-space: nowrap;
}

.footer-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 2.2rem 0.75rem 0;
  color: rgba(255, 255, 255, 0.94);
  font-family: var(--font-ui);
  font-size: clamp(1.05rem, 1.35vw, 1.35rem);
  font-weight: 400;
  letter-spacing: 0.03rem;
  line-height: 1.2;
}

.footer-cta-arrow {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  color: currentColor;
  font-size: 0;
  line-height: 1;
}

.footer-cta-arrow-icon {
  display: block;
  width: 2rem;
  height: 2rem;
  overflow: visible;
}

.footer-cta-arrow-icon circle,
.footer-cta-arrow-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.footer-cta-arrow-icon path {
  stroke-linecap: butt;
  stroke-linejoin: miter;
}

.footer-main {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(13rem, 0.85fr) minmax(28rem, 1.2fr) minmax(15rem, 0.95fr);
  border-top: 1px solid rgba(243, 241, 236, 0.18);
  border-bottom: 1px solid rgba(243, 241, 236, 0.18);
  background: rgba(11, 6, 16, 0.58);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.footer-column {
  min-height: 7.2rem;
  padding: 1.85rem clamp(1rem, 4.8vw, 5.5rem);
  border-right: 1px solid rgba(243, 241, 236, 0.18);
}

.footer-column:last-child {
  border-right: 0;
}

.footer-column > span {
  display: block;
  margin-bottom: 1rem;
  color: rgba(243, 241, 236, 0.48);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.03rem;
  text-transform: uppercase;
}

.footer-column nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.45rem 2.25rem;
}

.footer-column nav[aria-label="Footer navigation"] {
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 100%;
  max-width: 34rem;
  margin: 0 auto;
  gap: 1.5rem;
}

.footer-column nav a {
  color: rgba(243, 241, 236, 0.92);
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
}

.footer-bottom {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  align-items: center;
  gap: 2rem;
  min-height: 3.35rem;
  padding: 0.85rem clamp(1rem, 4.2vw, 4.9rem);
  color: rgba(243, 241, 236, 0.76);
  background: rgba(11, 6, 16, 0.64);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
}

.footer-bottom > :nth-child(2) {
  justify-self: center;
}

.footer-bottom > :nth-child(3) {
  justify-self: end;
  text-align: right;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #fff;
  outline: none;
}

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

@media (max-width: 1080px) {
  .main-nav {
    gap: 0;
  }

  .stage-center h1 {
    font-size: 3.25rem;
  }

  .hero-overlay-shell {
    grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.7fr);
    gap: 2.6rem;
    padding: 8rem 2.45rem 7rem;
  }

  .hero-overlay-title {
    font-size: clamp(3.35rem, 7vw, 5rem);
  }

  .section h2 {
    font-size: 3.5rem;
  }

  .section-head.split,
  .outcome-wrap {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

  .method-grid article:nth-child(2) {
    border-right: 0;
  }

  .method-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .offer-grid article {
    min-height: 19.25rem;
  }

  .offer-grid p {
    max-width: 25ch;
    font-size: 1.2rem;
    line-height: 1.38;
  }

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

  .footer-column nav[aria-label="Footer navigation"] {
    max-width: none;
    margin: 0;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .footer-column {
    border-right: 0;
    border-bottom: 1px solid rgba(243, 241, 236, 0.18);
  }

  .footer-column:last-child {
    border-bottom: 0;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-bottom > :nth-child(2),
  .footer-bottom > :nth-child(3) {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  html,
  body {
    background: #030304;
  }

  body.menu-open {
    overflow: hidden;
  }

  body.service-preview-open .topbar {
    opacity: 0;
    pointer-events: none;
  }

  .topbar {
    position: absolute;
    grid-template-columns: 1fr auto;
    z-index: 50;
    gap: 1rem;
    min-height: auto;
    padding: calc(1.5rem + env(safe-area-inset-top)) 1rem 1.5rem;
    background: transparent;
    border-bottom: 0;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .topbar.has-open-menu {
    position: fixed;
  }

  .main-nav {
    display: none;
  }

  .top-status {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 80;
    display: block;
    justify-self: end;
    width: 2rem;
    height: 2rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--ink);
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.24rem;
    height: 2px;
    margin: 0;
    background: currentColor;
    transform: translate(-50%, -50%);
    transform-origin: center;
    transition:
      transform 160ms ease,
      opacity 160ms ease;
  }

  .menu-toggle span:first-child {
    transform: translate(-50%, calc(-50% - 0.4rem));
  }

  .menu-toggle span:last-child {
    transform: translate(-50%, calc(-50% + 0.4rem));
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .menu-toggle::before {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.24rem;
    height: 2px;
    margin: 0;
    background: currentColor;
    content: "";
    transform: translate(-50%, -50%);
    transform-origin: center;
    transition:
      transform 160ms ease,
      opacity 160ms ease;
  }

  .menu-toggle[aria-expanded="true"]::before {
    opacity: 0;
  }

  .mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: grid;
    grid-template-rows: 1fr auto;
    align-items: center;
    justify-items: center;
    min-height: 100svh;
    padding: calc(6.8rem + env(safe-area-inset-top)) 1.5rem calc(4.4rem + env(safe-area-inset-bottom));
    background:
      radial-gradient(circle at 68% 12%, rgba(130, 132, 155, 0.22), transparent 23rem),
      radial-gradient(circle at 22% 84%, rgba(130, 132, 155, 0.16), transparent 18rem),
      rgba(8, 8, 12, 0.9);
    -webkit-backdrop-filter: blur(22px);
    backdrop-filter: blur(22px);
    opacity: 0;
    pointer-events: none;
    transform: none;
    transition:
      opacity 180ms ease;
  }

  .mobile-nav.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-nav-links {
    display: grid;
    gap: 2.35rem;
    justify-items: center;
  }

  .mobile-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
    border-top: 0;
    color: rgba(243, 241, 236, 0.95);
    font-family: var(--font-ui);
    font-size: clamp(3rem, 14vw, 3.75rem);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.05;
  }

  .mobile-nav-status {
    display: inline-flex;
    align-items: center;
    gap: 0.62rem;
    color: rgba(243, 241, 236, 0.86);
    font-family: var(--font-ui);
    font-size: 0.88rem;
    font-weight: 600;
  }

  .mobile-nav-status span {
    display: inline-grid;
    place-items: center;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 999px;
    background: rgba(243, 241, 236, 0.16);
    color: rgba(243, 241, 236, 0.94);
    font-size: 0.82rem;
    line-height: 1;
  }

  .mobile-nav a:focus-visible,
  .menu-toggle:focus-visible {
    outline: 1px solid rgba(243, 241, 236, 0.58);
    outline-offset: 3px;
  }

  .brand {
    position: relative;
    z-index: 80;
    gap: 0.5rem;
  }

  .brand img {
    width: 25px;
    height: 25px;
  }

  .brand-copy {
    display: inline-flex;
    align-items: baseline;
    gap: 0.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    line-height: 1.333333;
    white-space: nowrap;
  }

  .brand-name {
    color: #fff;
    font-family: var(--font-ui);
    font-size: inherit;
    font-weight: 900;
    letter-spacing: inherit;
    line-height: inherit;
    text-transform: uppercase;
  }

  .brand-descriptor {
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-ui);
    font-size: inherit;
    font-weight: 400;
    letter-spacing: inherit;
    line-height: inherit;
  }

  .stage-center {
    width: calc(100% - 2rem);
    overflow: visible;
  }

  .stage-center h1 {
    font-size: 1.875rem;
    line-height: 1.15;
    white-space: normal;
  }

  .stage-center p {
    min-height: 1.875rem;
    padding: 0 1rem;
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    line-height: 1;
  }

  .hero-services {
    right: 1rem;
    bottom: 2.5rem;
    left: 1rem;
    width: auto;
  }

  .hero-overlay-shell {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr;
    align-content: start;
    gap: 1.9rem;
    padding: calc(7.6rem + env(safe-area-inset-top)) 1.35rem 12.5rem;
  }

  .hero-overlay {
    z-index: 3;
    background:
      radial-gradient(circle at 68% 12%, rgba(130, 132, 155, 0.22), transparent 23rem),
      radial-gradient(circle at 22% 84%, rgba(130, 132, 155, 0.16), transparent 18rem),
      rgba(8, 8, 12, 0.86);
    -webkit-backdrop-filter: blur(22px);
    backdrop-filter: blur(22px);
  }

  .hero-overlay-title {
    max-width: 100%;
    text-align: center;
    font-size: clamp(2.25rem, 8.8vw, 3.25rem);
    line-height: 1.08;
  }

  .hero-overlay-copy {
    display: contents;
  }

  .hero-overlay-kicker {
    justify-self: center;
    align-self: start;
    max-width: 100%;
    margin: 0;
    color: rgba(243, 241, 236, 0.88);
    font-family: var(--font-mono);
    font-size: clamp(0.92rem, 3.2vw, 1.15rem);
    letter-spacing: 0.16em;
    line-height: 1.5;
    text-align: center;
    text-transform: none;
  }

  .hero-overlay-description {
    justify-self: stretch;
    max-width: 100%;
    margin-top: 0.5rem;
    color: rgba(243, 241, 236, 0.9);
    font-family: var(--font-ui);
    font-size: 1rem;
    line-height: 1.45;
    text-align: left;
  }

  .hero-services-list {
    gap: 0;
  }

  .hero-service-item {
    font-family: var(--font-ui);
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    line-height: 2rem;
  }

  .next-pill {
    display: none;
  }

  .section {
    --section-label-gap: 0.6rem;
    --section-content-gap: 3.4rem;
    padding: 5.8rem 1rem;
    scroll-margin-top: -1px;
    border-top: 0;
    box-shadow: none;
  }

  .stage + .section,
  .section + .section {
    margin-top: -1px;
    border-top: 0;
  }

  .section h2,
  .section-intro .section-head h2,
  .method .section-head h2,
  .outcomes-cards .section-head h2,
  .services .section-head h2 {
    max-width: 100%;
    font-family: var(--font-ui);
    font-size: 2.25rem;
    font-weight: 400;
    letter-spacing: 0.03rem;
    line-height: 1.2;
  }

  .system-grid {
    display: grid;
    grid-template-columns: 1fr;
    overflow-x: visible;
  }

  .system-row {
    display: grid;
    grid-template-columns: 1fr;
    overflow-x: visible;
  }

  .system-row.is-right-open .system-card:first-child {
    margin-left: 0;
  }

  .section-mark {
    margin-bottom: var(--section-label-gap);
    font-size: 0.75rem;
    letter-spacing: 0.03rem;
  }

  .section-head,
  .section-intro .section-head,
  .method .section-head,
  .outcomes-cards .section-head,
  .services .section-head {
    margin-bottom: var(--section-content-gap);
  }

  .section-head.split {
    gap: 1.55rem;
  }

  .section-head p,
  .section-intro .section-head p {
    font-size: 1rem;
    line-height: 1.45;
  }

  .system-card,
  .system-card.is-wide,
  .system-card.is-expanded {
    flex-basis: auto;
    grid-column: auto;
    min-height: auto;
    transform: none;
  }

  .system-card {
    grid-template-rows: auto 0fr;
  }

  .system-card.is-expanded {
    grid-template-rows: auto 1fr;
  }

  .system-card-toggle {
    min-height: 14.5rem;
    padding: 1.55rem 1.35rem;
  }

  .system-card-icon {
    top: 1.35rem;
    right: 1.35rem;
    width: 1.18rem;
    height: 1.18rem;
  }

  .system-card-copy {
    gap: 2.05rem;
    max-width: 100%;
    padding-top: 2.35rem;
  }

  .system-card-copy p {
    font-size: 1.35rem;
    line-height: 1.28;
  }

  .system-card-details {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    padding: 0 1.35rem 1.55rem;
  }

  .system-card-details span {
    font-size: 1rem;
  }

  .system-card-details p {
    font-size: 0.92rem;
  }

  .method-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 1px;
    border: 0;
    background: rgba(9, 9, 12, 0.12);
  }

  .method-grid article,
  .method-grid article:nth-child(2) {
    position: relative;
    display: flex;
    min-height: auto;
    padding: 3rem 1.5rem 1rem;
    border: 0;
    background: #fff;
    flex-direction: column;
    gap: 10rem;
  }

  .method-grid article:nth-child(-n + 2) {
    border-bottom: 0;
  }

  .method-grid article:nth-child(even) {
    border-right: 0;
  }

  .method-grid article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .method-grid article:nth-child(odd)::after {
    position: absolute;
    top: 0;
    right: -1px;
    z-index: 2;
    width: 1px;
    height: calc(100% + 1px);
    background: var(--accent);
    content: "";
  }

  .method-grid article:nth-child(-n + 4)::before {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    z-index: 2;
    height: 1px;
    background: var(--accent);
    content: "";
  }

  .method-grid h3 {
    max-width: 100%;
    margin: 0;
    font-family: var(--font-ui);
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.03rem;
    line-height: 1.2;
    transform: none;
  }

  .method-grid span {
    font-size: 1.25rem;
    letter-spacing: 0.03rem;
    line-height: 1.15;
  }

  .offer-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .offer-grid article {
    min-height: 18.5rem;
    padding: 2.35rem 1.5rem 1rem;
  }

  .offer-grid p {
    max-width: 100%;
    font-size: 1.12rem;
    letter-spacing: 0.03rem;
    line-height: 1.3;
  }

  .services-table {
    grid-template-columns: 1fr;
  }

  .services-table article {
    min-height: auto;
    padding: 1.75rem 1.5rem 1.95rem;
  }

  .services-table h3 {
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
  }

  .services-table li {
    font-size: 1rem;
    line-height: 1.45;
  }

  .outcome-list article {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .outcome-list p {
    grid-column: 1;
  }

  .site-footer {
    font-size: 0.82rem;
  }

  .footer-cta {
    min-height: 32vh;
    grid-template-columns: 1fr;
    align-content: end;
    gap: 2rem;
    padding: 3.7rem 1rem 2rem;
  }

  .footer-cta h2 {
    max-width: 22rem;
    font-size: clamp(2.5rem, 10.8vw, 3.65rem);
    line-height: 1.06;
  }

  .footer-cta-link {
    justify-self: start;
    margin: 0;
    font-size: 1.18rem;
  }

  .footer-column {
    min-height: auto;
    padding: 1.35rem 1rem;
  }

  .footer-column nav {
    gap: 1rem 1.45rem;
  }

  .footer-bottom {
    gap: 0.65rem;
    padding: 1.15rem 1rem 1.35rem;
  }

  .footer-bottom > :nth-child(2),
  .footer-bottom > :nth-child(3) {
    justify-self: start;
    text-align: left;
  }
}
