@charset "UTF-8";

:root {
  --ink: #0b0d0c;
  --ink-soft: #121512;
  --graphite: #1a1e1b;
  --graphite-2: #252a26;
  --ivory: #f2efe5;
  --ivory-2: #e8e4d8;
  --paper: #faf8f1;
  --signal: #d2ff45;
  --signal-dark: #263000;
  --violet: #9b88ff;
  --white: #ffffff;
  --muted-dark: #777e76;
  --muted-light: #a7ada5;
  --line-dark: rgba(255, 255, 255, 0.13);
  --line-light: rgba(11, 13, 12, 0.16);
  --danger: #ff6b5e;
  --success: #6bdc8b;
  --font-sans: Inter, "Segoe UI Variable", "Segoe UI", Helvetica, Arial, sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --shell: min(1380px, calc(100vw - 64px));
  --header-height: 84px;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 30px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  background: var(--ink);
}

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

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--ink);
  background: var(--signal);
}

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

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

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

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

p,
h1,
h2,
h3,
h4,
ul,
ol,
dl,
dd {
  margin-top: 0;
}

ul,
ol {
  padding-left: 0;
}

button {
  border: 0;
}

:focus-visible {
  outline: 3px solid var(--violet);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--signal);
  border-radius: 8px;
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

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

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

.site-header.is-scrolled,
.site-header.menu-visible {
  background: rgba(11, 13, 12, 0.88);
  border-color: var(--line-dark);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: grid;
  grid-template-columns: 34px auto;
  grid-template-rows: 21px 12px;
  align-items: center;
  column-gap: 10px;
  width: max-content;
}

.brand-mark {
  position: relative;
  display: block;
  grid-row: 1 / 3;
  width: 34px;
  height: 34px;
  overflow: hidden;
  background: var(--signal);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.brand-mark i {
  position: absolute;
  left: 7px;
  width: 20px;
  height: 7px;
  background: var(--ink);
  border-radius: 999px;
}

.brand-mark i:first-child {
  top: 8px;
  transform: translateX(-3px);
}

.brand-mark i:last-child {
  bottom: 8px;
  transform: translateX(3px);
}

.brand-word {
  align-self: end;
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0.11em;
  line-height: 1;
}

.brand small {
  align-self: start;
  color: var(--muted-light);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 42px);
  font-size: 14px;
  font-weight: 650;
}

.main-navigation > a:not(.nav-cta) {
  position: relative;
  color: #d5dad3;
}

.main-navigation > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--signal);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--ease-out);
}

.main-navigation > a:not(.nav-cta):hover::after,
.main-navigation > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  color: var(--ink);
  background: var(--signal);
  border: 1px solid var(--signal);
  border-radius: 999px;
  font-weight: 800;
  transition: color 200ms ease, background-color 200ms ease, transform 200ms var(--ease-out);
}

.nav-cta span,
.button span,
.footer-cta-block a span {
  margin-left: 10px;
  transition: transform 220ms var(--ease-out);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  color: var(--signal);
  background: transparent;
  transform: translateY(-1px);
}

.nav-cta:hover span,
.button:hover span,
.footer-cta-block a:hover span {
  transform: translate(3px, -3px);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
}

.menu-toggle i {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 220ms ease;
}

.menu-toggle[aria-expanded="true"] i:first-of-type {
  transform: translateY(3px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] i:last-of-type {
  transform: translateY(-3px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: calc(var(--header-height) + clamp(60px, 9vh, 110px)) 0 0;
  color: var(--white);
  background:
    radial-gradient(circle at 68% 38%, rgba(155, 136, 255, 0.11), transparent 27%),
    radial-gradient(circle at 12% 80%, rgba(210, 255, 69, 0.07), transparent 24%),
    var(--ink);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(to bottom, black 0%, transparent 82%);
  pointer-events: none;
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
  pointer-events: none;
  mix-blend-mode: soft-light;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(430px, 0.96fr);
  gap: clamp(42px, 5vw, 84px);
  align-items: center;
  min-height: min(690px, calc(100svh - 220px));
}

.eyebrow,
.section-kicker,
.mono-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  color: #c5cbc3;
}

.eyebrow-dot {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--signal);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(210, 255, 69, 0.12);
}

.hero h1 {
  max-width: 840px;
  margin-bottom: 30px;
  font-size: clamp(52px, 5.8vw, 94px);
  font-weight: 760;
  letter-spacing: -0.067em;
  line-height: 0.94;
  text-wrap: balance;
}

.text-signal {
  color: var(--signal);
}

.hero-lede {
  max-width: 720px;
  margin-bottom: 34px;
  color: #b8beb7;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease, transform 220ms var(--ease-out);
}

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

.button-primary {
  color: var(--ink);
  background: var(--signal);
  border-color: var(--signal);
  box-shadow: 0 12px 40px rgba(210, 255, 69, 0.13);
}

.button-primary:hover,
.button-primary:focus-visible {
  color: var(--signal);
  background: transparent;
}

.button-ghost {
  color: var(--white);
  background: transparent;
  border-color: var(--line-dark);
}

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

.button-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
}

.button-outline-light:hover,
.button-outline-light:focus-visible {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.hero-note {
  margin: 18px 0 0;
  color: #7f877f;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.03em;
}

.hero-visual {
  min-width: 0;
  perspective: 1200px;
}

.commerce-lab {
  position: relative;
  width: min(100%, 650px);
  margin-inline: auto;
  overflow: hidden;
  background: #0f1210;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: rotateY(-3deg) rotateX(1.5deg);
  transition: transform 500ms var(--ease-out);
}

.commerce-lab:hover {
  transform: rotateY(-1deg) rotateX(0.5deg) translateY(-3px);
}

.lab-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
  padding: 0 17px 0 20px;
  border-bottom: 1px solid var(--line-dark);
}

.lab-status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #c6ccc4;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.07em;
}

.lab-status span {
  width: 7px;
  height: 7px;
  background: var(--signal);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(210, 255, 69, 0.75);
}

.lab-tabs {
  display: flex;
  padding: 3px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.lab-tab {
  min-height: 30px;
  padding: 0 12px;
  color: #8d948c;
  background: transparent;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.06em;
}

.lab-tab.is-active {
  color: var(--ink);
  background: var(--signal);
}

.lab-canvas {
  --lens-x: 72%;
  --lens-y: 48%;
  --lens-size: 145px;
  position: relative;
  aspect-ratio: 1.06;
  min-height: 480px;
  overflow: hidden;
  cursor: crosshair;
}

.system-layer,
.result-layer {
  position: absolute;
  inset: 0;
}

.system-layer {
  background:
    radial-gradient(circle at 50% 51%, rgba(210, 255, 69, 0.07), transparent 24%),
    #0e110f;
}

.system-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at 50% 50%, black, transparent 82%);
}

.system-label {
  position: absolute;
  color: #515851;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.label-a { top: 7%; left: 7%; }
.label-b { top: 7%; right: 7%; }
.label-c { bottom: 7%; left: 7%; }
.label-d { right: 7%; bottom: 7%; }

.node {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 128px;
  padding: 10px 12px;
  color: #aeb5ad;
  background: rgba(19, 23, 20, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.04em;
}

.node i {
  display: block;
  width: 8px;
  height: 8px;
  background: var(--violet);
  border-radius: 2px;
}

.node-a { top: 18%; left: 9%; }
.node-b { top: 18%; right: 8%; }
.node-c { right: 8%; bottom: 17%; }
.node-d { bottom: 17%; left: 9%; }

.connector {
  position: absolute;
  z-index: 1;
  border-color: rgba(210, 255, 69, 0.35);
  border-style: dashed;
}

.connector-a {
  top: 24%;
  left: 31%;
  width: 39%;
  height: 26%;
  border-width: 1px 1px 0 0;
}

.connector-b {
  top: 50%;
  right: 29%;
  width: 21%;
  height: 28%;
  border-width: 0 1px 1px 0;
}

.connector-c {
  bottom: 23%;
  left: 29%;
  width: 25%;
  height: 28%;
  border-width: 0 0 1px 1px;
}

.system-core {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 148px;
  height: 148px;
  color: var(--ink);
  background: var(--signal);
  border: 11px solid rgba(210, 255, 69, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(210, 255, 69, 0.4), 0 0 60px rgba(210, 255, 69, 0.12);
  transform: translate(-50%, -50%);
}

.system-core span {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.15em;
}

.system-core strong {
  font-size: 15px;
  letter-spacing: -0.03em;
}

.result-layer {
  overflow: hidden;
  background: linear-gradient(145deg, #eae6db, #f8f5ec);
  clip-path: circle(var(--lens-size) at var(--lens-x) var(--lens-y));
  transition: clip-path 420ms var(--ease-out);
}

.commerce-lab.is-result .result-layer {
  clip-path: circle(150% at 50% 50%);
}

.commerce-lab.is-system .result-layer {
  clip-path: circle(0 at 50% 50%);
}

.demo-browser {
  position: absolute;
  inset: 8% 6% 9%;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(11, 13, 12, 0.13);
  border-radius: 14px;
  box-shadow: 0 25px 55px rgba(24, 27, 24, 0.18);
}

.demo-browser-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 34px;
  padding: 0 12px;
  background: #e4e0d4;
  border-bottom: 1px solid rgba(11, 13, 12, 0.08);
}

.demo-browser-bar > span {
  width: 6px;
  height: 6px;
  background: #a8a499;
  border-radius: 50%;
}

.demo-browser-bar small {
  margin-left: auto;
  color: #77756e;
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.06em;
}

.demo-product {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  height: calc(100% - 34px);
}

.demo-photo {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 60% 35%, rgba(155, 136, 255, 0.32), transparent 28%),
    linear-gradient(145deg, #c9c3f5, #8d7be8);
}

.demo-photo > span {
  position: absolute;
  top: 13px;
  left: 13px;
  padding: 5px 8px;
  color: var(--ink);
  background: var(--signal);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.demo-object {
  position: relative;
  width: 55%;
  aspect-ratio: 0.74;
  background: linear-gradient(160deg, #252928 2%, #111312 70%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 46% 46% 19% 19% / 15% 15% 10% 10%;
  box-shadow: 18px 24px 40px rgba(41, 30, 86, 0.34), inset 8px 0 20px rgba(255, 255, 255, 0.06);
  transform: rotate(5deg);
}

.demo-object::before {
  position: absolute;
  top: -9%;
  left: 26%;
  width: 48%;
  height: 14%;
  background: #1a1d1b;
  border-radius: 8px 8px 2px 2px;
  content: "";
}

.demo-object i {
  position: absolute;
  top: 22%;
  left: 50%;
  width: 35%;
  height: 9%;
  background: var(--signal);
  border-radius: 999px;
  transform: translateX(-50%);
}

.demo-info {
  display: flex;
  flex-direction: column;
  padding: 11% 9%;
}

.demo-info > small {
  margin-bottom: 11px;
  color: #7e7b74;
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.1em;
}

.demo-info h2 {
  margin-bottom: 14px;
  font-size: clamp(18px, 2vw, 27px);
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.demo-rating {
  margin-bottom: 13px;
  color: #5e4be0;
  font-size: 8px;
  letter-spacing: 0.05em;
}

.demo-rating span {
  margin-left: 5px;
  color: #77756f;
  font-family: var(--font-mono);
  font-size: 6px;
}

.demo-info p {
  color: #68665f;
  font-size: 9px;
  line-height: 1.55;
}

.demo-buy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(11, 13, 12, 0.11);
}

.demo-buy strong {
  font-size: 13px;
}

.demo-buy span {
  padding: 9px 10px;
  color: var(--ivory);
  background: var(--ink);
  border-radius: 999px;
  font-size: 7px;
  font-weight: 800;
}

.metric-chip {
  position: absolute;
  z-index: 3;
  min-width: 115px;
  padding: 9px 11px;
  color: var(--white);
  background: rgba(11, 13, 12, 0.91);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 9px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  font-family: var(--font-mono);
}

.metric-chip small,
.metric-chip strong {
  display: block;
}

.metric-chip small {
  margin-bottom: 3px;
  color: var(--signal);
  font-size: 6px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.metric-chip strong {
  font-size: 7px;
  font-weight: 600;
}

.metric-one { top: 11%; right: 2%; }
.metric-two { bottom: 8%; left: 2%; }

.lens-cursor {
  position: absolute;
  z-index: 5;
  top: var(--lens-y);
  left: var(--lens-x);
  display: grid;
  place-items: center;
  width: calc(var(--lens-size) * 2);
  height: calc(var(--lens-size) * 2);
  border: 1px solid rgba(210, 255, 69, 0.72);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(210, 255, 69, 0.05), inset 0 0 35px rgba(210, 255, 69, 0.06);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 200ms ease;
}

.lens-cursor::before,
.lens-cursor::after {
  position: absolute;
  background: var(--signal);
  content: "";
}

.lens-cursor::before { top: 50%; left: -9px; width: 18px; height: 1px; }
.lens-cursor::after { top: -9px; left: 50%; width: 1px; height: 18px; }

.lens-cursor span {
  position: absolute;
  right: 16px;
  bottom: 24px;
  padding: 5px 8px;
  color: var(--ink);
  background: var(--signal);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.commerce-lab.is-result .lens-cursor,
.commerce-lab.is-system .lens-cursor {
  opacity: 0;
}

.lab-caption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  padding: 14px 20px 15px;
  color: #747c74;
  border-top: 1px solid var(--line-dark);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.04em;
}

.lab-caption span {
  color: var(--signal);
  text-transform: uppercase;
}

.proof-rail {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto 1fr;
  gap: 14px;
  align-items: center;
  margin-top: clamp(60px, 9vh, 100px);
  padding: 25px 0 28px;
  border-top: 1px solid var(--line-dark);
}

.proof-rail span {
  color: var(--signal);
  font-family: var(--font-mono);
  font-size: 9px;
}

.proof-rail p {
  margin: 0;
  color: #a9b0a8;
  font-size: 12px;
}

.section {
  position: relative;
  padding-block: clamp(92px, 11vw, 170px);
}

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

.section-dark,
.faq-section {
  color: var(--white);
  background: var(--ink);
}

.section-signal {
  background: var(--signal);
}

.section-heading {
  margin-bottom: clamp(54px, 7vw, 100px);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: clamp(30px, 7vw, 120px);
}

.section-kicker {
  margin-top: 10px;
  color: #646a63;
}

.section-kicker-light {
  color: #878e86;
}

.section-heading h2,
.metrics-layout h2,
.honest-card h2,
.faq-intro h2,
.contact-copy h2,
.page-hero h1,
.legal-page h1 {
  margin-bottom: 28px;
  font-size: clamp(42px, 5.3vw, 78px);
  font-weight: 740;
  letter-spacing: -0.065em;
  line-height: 0.98;
  text-wrap: balance;
}

.section-heading > div > p {
  max-width: 690px;
  margin: 0;
  color: #666b65;
  font-size: clamp(17px, 1.35vw, 20px);
}

.section-dark .section-heading > div > p {
  color: #999f98;
}

.roadmap-card {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(40px, 6vw, 95px);
  padding: clamp(30px, 4vw, 62px);
  color: var(--white);
  background: var(--ink-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.mono-label {
  margin-bottom: 16px;
  color: #737a73;
}

.roadmap-intro h3 {
  margin-bottom: 22px;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: -0.05em;
  line-height: 1.03;
}

.roadmap-intro > p:last-child {
  margin-bottom: 0;
  color: #979e96;
}

.roadmap-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  margin: 0;
  list-style: none;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
}

.roadmap-flow li {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 230px;
  padding: 20px;
  border-right: 1px solid var(--line-dark);
}

.roadmap-flow li:last-child {
  border-right: 0;
}

.roadmap-flow li::after {
  position: absolute;
  top: 24px;
  right: -5px;
  z-index: 2;
  width: 9px;
  height: 9px;
  background: var(--signal);
  border-radius: 50%;
  content: "";
}

.roadmap-flow li:last-child::after {
  display: none;
}

.roadmap-flow span {
  position: absolute;
  top: 16px;
  left: 18px;
  color: var(--signal);
  font-family: var(--font-mono);
  font-size: 9px;
}

.roadmap-flow strong {
  margin-bottom: 5px;
  font-size: 16px;
}

.roadmap-flow small {
  color: #7e857e;
  font-size: 10px;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(45px, 6vw, 86px);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.principle {
  min-height: 330px;
  padding: 35px clamp(24px, 3vw, 45px) 40px 0;
  border-right: 1px solid var(--line-light);
}

.principle + .principle {
  padding-left: clamp(24px, 3vw, 45px);
}

.principle:last-child {
  border-right: 0;
}

.principle-index {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  margin-bottom: 80px;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 10px;
}

.principle h3 {
  margin-bottom: 15px;
  font-size: 25px;
  letter-spacing: -0.04em;
}

.principle p {
  margin: 0;
  color: #626761;
  font-size: 14px;
}

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

.service-row {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) 72px;
  gap: 35px;
  align-items: center;
  padding: clamp(36px, 5vw, 72px) 0;
  border-bottom: 1px solid var(--line-dark);
}

.service-number {
  align-self: start;
  padding-top: 6px;
  color: #596059;
  font-family: var(--font-mono);
  font-size: 11px;
}

.service-main {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(260px, 0.78fr) minmax(270px, 0.8fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
}

.service-main .mono-label {
  grid-column: 1;
  margin-bottom: -14px;
  color: var(--signal);
}

.service-main h3 {
  grid-column: 1;
  margin: 0;
  font-size: clamp(30px, 3vw, 46px);
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.service-main > p:not(.mono-label) {
  grid-column: 2;
  grid-row: 1 / 3;
  margin: 0;
  color: #9ca39b;
}

.tag-list {
  display: flex;
  grid-column: 3;
  grid-row: 1 / 3;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  list-style: none;
}

.tag-list li {
  padding: 8px 12px;
  color: #b5bbb4;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.round-link {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  color: var(--signal);
  border: 1px solid rgba(210, 255, 69, 0.38);
  border-radius: 50%;
  font-size: 21px;
  transition: color 220ms ease, background-color 220ms ease, transform 220ms var(--ease-out);
}

.round-link:hover,
.round-link:focus-visible {
  color: var(--ink);
  background: var(--signal);
  transform: rotate(8deg) scale(1.04);
}

.metrics-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.64fr) minmax(0, 1.36fr);
  gap: clamp(50px, 8vw, 130px);
  align-items: start;
}

.metrics-layout h2 {
  margin-bottom: 0;
}

.section-signal .section-kicker {
  color: #4c5d0b;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(11, 13, 12, 0.35);
}

.metric-grid > div {
  position: relative;
  min-height: 126px;
  padding: 24px 22px 24px 48px;
  border-right: 1px solid rgba(11, 13, 12, 0.35);
  border-bottom: 1px solid rgba(11, 13, 12, 0.35);
}

.metric-grid > div:nth-child(even) {
  border-right: 0;
}

.metric-grid span {
  position: absolute;
  top: 29px;
  left: 0;
  color: #586d0d;
  font-family: var(--font-mono);
  font-size: 9px;
}

.metric-grid strong {
  display: block;
  max-width: 290px;
  font-size: clamp(19px, 1.8vw, 26px);
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.process-timeline {
  position: relative;
  margin: 0;
  list-style: none;
}

.process-timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 47px;
  width: 1px;
  background: var(--line-light);
  content: "";
}

.process-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: clamp(30px, 7vw, 110px);
  padding: 0 0 clamp(55px, 7vw, 95px);
}

.process-timeline li:last-child {
  padding-bottom: 0;
}

.process-marker {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  background: var(--ivory);
  border: 1px solid var(--line-light);
  border-radius: 50%;
}

.process-marker::after {
  width: 13px;
  height: 13px;
  background: var(--signal);
  border: 3px solid var(--ink);
  border-radius: 50%;
  content: "";
}

.process-marker span {
  position: absolute;
  top: 9px;
  color: #6c716b;
  font-family: var(--font-mono);
  font-size: 8px;
}

.process-timeline li > div:last-child {
  display: grid;
  grid-template-columns: 0.62fr 1fr;
  column-gap: clamp(30px, 6vw, 100px);
  align-items: start;
  padding-top: 14px;
}

.process-timeline .mono-label {
  grid-column: 1;
  margin-bottom: 14px;
}

.process-timeline h3 {
  grid-column: 1;
  margin: 0;
  font-size: clamp(27px, 3vw, 44px);
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.process-timeline li > div:last-child > p:last-child {
  grid-column: 2;
  grid-row: 1 / 3;
  max-width: 650px;
  margin: 0;
  color: #626761;
}

.honest-section {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 20%, rgba(155, 136, 255, 0.18), transparent 26%),
    #17131f;
}

.honest-section::before {
  position: absolute;
  inset: -50% -15%;
  background-image: repeating-linear-gradient(117deg, transparent 0 36px, rgba(255, 255, 255, 0.027) 36px 37px);
  content: "";
  transform: rotate(-5deg);
}

.honest-card {
  position: relative;
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr) auto;
  gap: clamp(35px, 6vw, 90px);
  align-items: center;
}

.honest-card h2 {
  max-width: 820px;
  margin-bottom: 20px;
}

.honest-card p:last-child {
  max-width: 800px;
  margin: 0;
  color: #b1aeb9;
  font-size: 18px;
}

.honest-stamp {
  display: grid;
  place-items: center;
  width: 138px;
  height: 138px;
  color: var(--ink);
  background: var(--signal);
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
  transform: rotate(-9deg);
}

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.fit-card {
  padding: clamp(30px, 4vw, 58px);
  border-radius: var(--radius-lg);
}

.fit-card-positive {
  color: var(--white);
  background: var(--ink);
}

.fit-card-neutral {
  background: var(--ivory-2);
  border: 1px solid var(--line-light);
}

.fit-card-positive .mono-label {
  color: var(--signal);
}

.check-list,
.cross-list,
.contact-promise {
  margin: 0;
  list-style: none;
}

.check-list li,
.cross-list li {
  position: relative;
  padding: 18px 0 18px 34px;
  border-bottom: 1px solid;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.4;
}

.check-list li {
  border-color: var(--line-dark);
}

.cross-list li {
  border-color: var(--line-light);
}

.check-list li::before,
.cross-list li::before {
  position: absolute;
  top: 20px;
  left: 0;
  font-family: var(--font-mono);
  font-weight: 800;
}

.check-list li::before {
  color: var(--signal);
  content: "✓";
}

.cross-list li::before {
  color: #777c76;
  content: "—";
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.66fr) minmax(0, 1.34fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.faq-intro h2 {
  font-size: clamp(42px, 4.3vw, 68px);
}

.faq-intro > p:last-child {
  max-width: 450px;
  color: #8f968e;
}

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

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

.faq-list summary {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 24px;
  gap: 16px;
  align-items: center;
  min-height: 91px;
  padding: 17px 0;
  cursor: pointer;
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 650;
  list-style: none;
}

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

.faq-list summary span {
  color: #667066;
  font-family: var(--font-mono);
  font-size: 9px;
}

.faq-list summary i,
.faq-list summary i::after {
  display: block;
  width: 14px;
  height: 1px;
  background: var(--signal);
}

.faq-list summary i {
  position: relative;
}

.faq-list summary i::after {
  position: absolute;
  content: "";
  transform: rotate(90deg);
  transition: transform 200ms ease;
}

.faq-list details[open] summary i::after {
  transform: rotate(0);
}

.faq-list details > p {
  max-width: 760px;
  margin: -5px 40px 0 58px;
  padding: 0 0 31px;
  color: #a0a79f;
}

.contact-section {
  background: var(--signal);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(440px, 1.18fr);
  gap: clamp(55px, 9vw, 145px);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.contact-copy .section-kicker {
  color: #52640e;
}

.contact-copy > p:not(.section-kicker) {
  max-width: 600px;
  margin-bottom: 40px;
  color: #3b470f;
  font-size: 18px;
}

.contact-promise {
  border-top: 1px solid rgba(11, 13, 12, 0.27);
}

.contact-promise li {
  display: flex;
  gap: 22px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(11, 13, 12, 0.27);
  font-size: 14px;
  font-weight: 700;
}

.contact-promise span {
  color: #5a6a17;
  font-family: var(--font-mono);
  font-size: 9px;
}

.contact-form-card {
  padding: clamp(28px, 4.5vw, 64px);
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 85px rgba(61, 76, 7, 0.23);
}

.contact-form-card h3,
.contact-page-form h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.045em;
}

.form-intro {
  margin-bottom: 30px;
  color: #8f968e;
  font-size: 14px;
}

.lead-form,
.contact-form {
  display: grid;
  gap: 22px;
}

.form-grid,
.contact-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field,
.form-field,
.contact-form__field {
  display: grid;
  gap: 8px;
}

.field-full,
.form-field-full,
.contact-form__field--message {
  grid-column: 1 / -1;
}

.field label,
.form-field label,
.contact-form__field label {
  color: #c9cfc7;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea,
.form-field input,
.form-field select,
.form-field textarea,
.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea,
.lead-form input:not([type="checkbox"]):not([type="radio"]),
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 13px 15px;
  color: var(--white);
  background: #151916;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 9px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field textarea,
.form-field textarea,
.contact-form__field textarea,
.lead-form textarea {
  min-height: 125px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus,
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--signal);
  box-shadow: 0 0 0 3px rgba(210, 255, 69, 0.12);
}

.field input::placeholder,
.field textarea::placeholder,
.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder,
.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: #626862;
}

.field-hint,
.form-hint {
  margin: -3px 0 0;
  color: #737a73;
  font-size: 11px;
}

.checkbox-field,
.consent-field,
.contact-form__consent {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  color: #8f968e;
  font-size: 11px;
}

.checkbox-field input,
.consent-field input,
.contact-form__consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--signal);
}

.checkbox-field a,
.consent-field a,
.contact-form__consent a {
  color: var(--signal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.field-validation-error,
.validation-message,
.text-danger,
.validation-summary-errors {
  color: #ff9a90;
  font-size: 11px;
}

.validation-summary-errors ul {
  margin: 0 0 15px;
  padding-left: 18px;
}

.input-validation-error {
  border-color: var(--danger) !important;
}

.honeypot,
.form-trap {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.submit-button,
.contact-form__submit,
.lead-form button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 24px;
  color: var(--ink);
  background: var(--signal);
  border: 1px solid var(--signal);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 850;
  transition: color 200ms ease, background-color 200ms ease, transform 200ms var(--ease-out);
}

.submit-button:hover,
.contact-form__submit:hover,
.lead-form button[type="submit"]:hover {
  color: var(--signal);
  background: transparent;
  transform: translateY(-2px);
}

.form-footnote {
  margin: -6px 0 0;
  color: #626862;
  font-family: var(--font-mono);
  font-size: 9px;
}

.form-success,
.success-panel {
  padding: 28px;
  color: var(--ink);
  background: var(--signal);
  border-radius: var(--radius);
}

.form-success h2,
.success-panel h2 {
  margin-bottom: 10px;
  font-size: 32px;
  letter-spacing: -0.04em;
}

.form-success p,
.success-panel p {
  margin-bottom: 0;
}

.site-footer {
  padding: 82px 0 22px;
  color: var(--white);
  background: #080a09;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.35fr 0.72fr 0.72fr 1fr;
  gap: clamp(30px, 6vw, 90px);
  padding-bottom: 76px;
}

.brand-footer {
  grid-template-rows: 32px;
  margin-bottom: 25px;
}

.brand-footer .brand-mark {
  grid-row: 1;
}

.brand-footer .brand-word {
  align-self: center;
}

.footer-brand-block p {
  max-width: 360px;
  margin: 0;
  color: #858c84;
  font-size: 14px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-column h2 {
  margin-bottom: 13px;
  color: #626962;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-column a {
  color: #bbc1ba;
  font-size: 13px;
  transition: color 180ms ease;
}

.footer-column a:hover {
  color: var(--signal);
}

.footer-cta-block {
  align-self: start;
  padding: 25px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
}

.footer-cta-block p {
  margin-bottom: 18px;
  color: #7c837b;
  font-size: 12px;
}

.footer-cta-block a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--signal);
  font-size: 18px;
  font-weight: 750;
  letter-spacing: -0.025em;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-top: 20px;
  color: #555c55;
  border-top: 1px solid var(--line-dark);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom > div {
  display: flex;
  gap: 23px;
}

.footer-bottom a:hover {
  color: var(--white);
}

.footer-signature {
  color: #747b74;
}

.mobile-contact-bar {
  display: none;
}

/* Internal service and legal pages */
.page-hero,
.service-hero,
.contact-page-hero,
.legal-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-height) + 95px) 0 100px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 25%, rgba(155, 136, 255, 0.14), transparent 28%),
    var(--ink);
}

.page-hero::before,
.service-hero::before,
.contact-page-hero::before,
.legal-hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent);
}

.page-hero .shell,
.service-hero .shell,
.contact-page-hero .shell,
.legal-hero .shell {
  position: relative;
}

.breadcrumb,
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 55px;
  color: #737b73;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.05em;
  list-style: none;
  text-transform: uppercase;
}

.breadcrumb a:hover,
.breadcrumbs a:hover {
  color: var(--signal);
}

.breadcrumb li + li::before,
.breadcrumbs li + li::before {
  margin-right: 8px;
  color: #4e554e;
  content: "/";
}

.page-hero-grid,
.service-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  gap: clamp(45px, 9vw, 150px);
  align-items: end;
}

.page-hero h1,
.service-hero h1,
.contact-page-hero h1,
.legal-hero h1 {
  max-width: 980px;
  margin-bottom: 25px;
  font-size: clamp(52px, 7vw, 108px);
}

.page-hero-lede,
.service-hero-lede,
.lead {
  max-width: 680px;
  margin: 0;
  color: #aeb5ad;
  font-size: clamp(18px, 1.6vw, 23px);
}

.hero-aside,
.service-hero-aside {
  padding: 25px 0 8px;
  border-top: 1px solid var(--line-dark);
}

.hero-aside p,
.service-hero-aside p {
  margin-bottom: 20px;
  color: #969d95;
}

.content-section,
.service-section,
.legal-content,
.contact-page-section {
  padding-block: clamp(80px, 10vw, 150px);
  background: var(--ivory);
}

.content-section-dark,
.service-section-dark {
  color: var(--white);
  background: var(--ink);
}

.content-split,
.service-content-grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(50px, 9vw, 150px);
}

.content-split h2,
.service-section h2,
.contact-page-section h2 {
  font-size: clamp(38px, 4.6vw, 68px);
  letter-spacing: -0.06em;
  line-height: 1;
}

.content-prose {
  max-width: 830px;
}

.content-prose p,
.content-prose li,
.legal-content p,
.legal-content li {
  color: #5f655f;
  font-size: 17px;
}

.content-prose h2,
.content-prose h3,
.legal-content h2,
.legal-content h3 {
  margin-top: 54px;
  margin-bottom: 18px;
  letter-spacing: -0.04em;
}

.content-prose h3,
.legal-content h2 {
  font-size: 28px;
}

.benefit-grid,
.feature-grid,
.service-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 65px;
  border-top: 1px solid var(--line-light);
}

.benefit-card,
.feature-card,
.service-benefit {
  min-height: 285px;
  padding: 32px 32px 38px 0;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.benefit-card + .benefit-card,
.feature-card + .feature-card,
.service-benefit + .service-benefit {
  padding-left: 32px;
}

.benefit-card:last-child,
.feature-card:last-child,
.service-benefit:last-child {
  border-right: 0;
}

.benefit-card span,
.feature-card span,
.service-benefit span {
  display: block;
  margin-bottom: 60px;
  color: #6a706a;
  font-family: var(--font-mono);
  font-size: 9px;
}

.benefit-card h3,
.feature-card h3,
.service-benefit h3 {
  margin-bottom: 12px;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.benefit-card p,
.feature-card p,
.service-benefit p {
  margin: 0;
  color: #626861;
  font-size: 14px;
}

.service-steps,
.steps-list {
  margin: 55px 0 0;
  list-style: none;
  border-top: 1px solid currentColor;
  border-color: var(--line-light);
}

.service-steps li,
.steps-list li {
  display: grid;
  grid-template-columns: 80px minmax(230px, 0.8fr) minmax(0, 1.2fr);
  gap: 35px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-light);
}

.service-steps span,
.steps-list span {
  color: #6b716b;
  font-family: var(--font-mono);
  font-size: 9px;
}

.service-steps h3,
.steps-list h3 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.035em;
}

.service-steps p,
.steps-list p {
  margin: 0;
  color: #626861;
}

.page-cta,
.service-cta {
  padding-block: clamp(78px, 10vw, 145px);
  color: var(--ink);
  background: var(--signal);
}

.page-cta-inner,
.service-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 45px;
  align-items: end;
}

.page-cta h2,
.service-cta h2 {
  max-width: 940px;
  margin: 0;
  font-size: clamp(42px, 6vw, 88px);
  letter-spacing: -0.067em;
  line-height: 0.96;
}

.page-cta .button,
.service-cta .button {
  color: var(--white);
  background: var(--ink);
}

.contact-page-section {
  min-height: 68vh;
}

.contact-page-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(440px, 1.28fr);
  gap: clamp(50px, 9vw, 140px);
}

.contact-page-form {
  padding: clamp(28px, 4vw, 58px);
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius-lg);
}

.legal-content .shell,
.legal-page .shell {
  max-width: 920px;
}

.legal-content ul {
  padding-left: 24px;
}

/* Contact page */
.contact-page {
  padding-top: var(--header-height);
  background: var(--ink);
}

.contact-page__header {
  width: var(--shell);
  margin-inline: auto;
  padding: clamp(65px, 9vw, 125px) 0 clamp(80px, 10vw, 145px);
  color: var(--white);
}

.contact-page__eyebrow {
  margin-bottom: 24px;
  color: var(--signal);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-page__header h1 {
  max-width: 1120px;
  margin-bottom: 28px;
  font-size: clamp(52px, 7.2vw, 108px);
  font-weight: 750;
  letter-spacing: -0.068em;
  line-height: 0.94;
}

.contact-page__header > p:last-child {
  max-width: 700px;
  margin: 0;
  color: #aab1a9;
  font-size: clamp(17px, 1.5vw, 21px);
}

.contact-page__form {
  display: grid;
  grid-template-columns: minmax(230px, 0.45fr) minmax(440px, 1fr);
  gap: clamp(45px, 8vw, 125px);
  width: 100%;
  margin: 0;
  padding: clamp(75px, 9vw, 130px) max(calc((100vw - 1380px) / 2), 32px);
  color: var(--white);
  background: #151916;
}

.contact-page__form > h2 {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 62px);
  letter-spacing: -0.055em;
  line-height: 1;
}

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

.contact-success {
  min-height: 58vh;
  padding: clamp(85px, 10vw, 150px) max(calc((100vw - 1380px) / 2), 32px);
  color: var(--ink);
  background: var(--signal);
}

.contact-success__eyebrow {
  color: #50610e;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-success h2 {
  margin-bottom: 18px;
  font-size: clamp(48px, 7vw, 98px);
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.contact-success p:not(.contact-success__eyebrow) {
  max-width: 660px;
  font-size: 19px;
}

.contact-success a {
  display: inline-flex;
  margin-top: 20px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  font-weight: 800;
}

/* SEO service pages */
.service-page,
.legal-page {
  padding-top: var(--header-height);
  background: var(--ink);
}

.service-page > .breadcrumbs,
.legal-page > .breadcrumbs {
  width: var(--shell);
  margin: 0 auto;
  padding-top: 48px;
}

.service-page > .breadcrumbs ol,
.legal-page > .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0;
  padding: 0;
  color: #737b73;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.05em;
  list-style: none;
  text-transform: uppercase;
}

.service-page > .breadcrumbs li + li::before,
.legal-page > .breadcrumbs li + li::before {
  margin-right: 8px;
  color: #4e554e;
  content: "/";
}

.service-page > .breadcrumbs a:hover,
.legal-page > .breadcrumbs a:hover {
  color: var(--signal);
}

.service-page > .hero {
  min-height: 0;
  padding: 56px 0 clamp(86px, 10vw, 145px);
  background:
    radial-gradient(circle at 84% 24%, rgba(155, 136, 255, 0.15), transparent 26%),
    var(--ink);
}

.service-page > .hero::before {
  background-size: 64px 64px;
}

.service-page .hero-content,
.legal-page > .page-header {
  position: relative;
  z-index: 1;
  width: var(--shell);
  margin-inline: auto;
}

.service-page .hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(300px, 0.72fr);
  column-gap: clamp(45px, 8vw, 130px);
}

.service-page .hero-content > .eyebrow {
  grid-column: 1 / -1;
}

.service-page .hero h1 {
  grid-column: 1;
  margin: 0;
  font-size: clamp(52px, 7vw, 106px);
  line-height: 0.94;
}

.service-page .hero .lead {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  margin: 0;
  padding-top: 24px;
  color: #aeb5ad;
  border-top: 1px solid var(--line-dark);
  font-size: clamp(17px, 1.5vw, 21px);
}

.service-page .hero .actions {
  grid-column: 2;
  grid-row: 3;
  margin-top: 28px;
}

.service-page > .section,
.legal-page > .section {
  padding-block: clamp(82px, 9vw, 135px);
  color: var(--ink);
  background: var(--ivory);
}

.service-page > .section:nth-of-type(even),
.legal-page > .section:nth-of-type(even) {
  background: var(--paper);
}

.service-page > .section > *,
.legal-page > .section > * {
  width: var(--shell);
  margin-right: auto;
  margin-left: auto;
}

.service-page .section-header,
.legal-page .section-header {
  display: grid;
  grid-template-columns: minmax(170px, 0.34fr) minmax(0, 1fr);
  gap: clamp(35px, 7vw, 110px);
  align-items: start;
  margin-bottom: clamp(45px, 6vw, 82px);
}

.service-page .section-header .eyebrow,
.legal-page .section-header .eyebrow {
  margin: 9px 0 0;
  color: #656b65;
  font-size: 9px;
}

.service-page .section-header h2,
.legal-page .section-header h2,
.legal-page > .section > h2 {
  margin: 0;
  font-size: clamp(39px, 5vw, 72px);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.service-page > .section > p,
.legal-page > .section > p {
  max-width: min(850px, var(--shell));
  color: #5f655f;
  font-size: clamp(16px, 1.35vw, 19px);
}

.service-page .feature-list,
.legal-page .feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
  margin-top: 45px;
  list-style: none;
  border-top: 1px solid var(--line-light);
}

.service-page .feature-list li,
.legal-page .feature-list li {
  position: relative;
  padding: 21px 0 21px 32px;
  color: #4f554f;
  border-bottom: 1px solid var(--line-light);
}

.service-page .feature-list li::before,
.legal-page .feature-list li::before {
  position: absolute;
  top: 23px;
  left: 0;
  color: #57690d;
  font-family: var(--font-mono);
  font-size: 10px;
  content: "↗";
}

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

.service-page .card,
.legal-page .card {
  min-height: 260px;
  padding: clamp(25px, 3vw, 42px);
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.service-page .card::before,
.legal-page .card::before {
  display: block;
  width: 12px;
  height: 12px;
  margin-bottom: 70px;
  background: var(--signal);
  border: 3px solid var(--ink);
  border-radius: 50%;
  content: "";
}

.service-page .card h3,
.legal-page .card h3 {
  margin-bottom: 12px;
  font-size: 23px;
  letter-spacing: -0.04em;
}

.service-page .card p,
.legal-page .card p {
  margin: 0;
  color: #626862;
  font-size: 14px;
}

.service-page .process-list {
  counter-reset: service-step;
  margin: 0 auto;
  list-style: none;
  border-top: 1px solid var(--line-light);
}

.service-page .process-list li {
  counter-increment: service-step;
  display: grid;
  grid-template-columns: 80px minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: 35px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line-light);
}

.service-page .process-list li::before {
  color: #6b716b;
  font-family: var(--font-mono);
  font-size: 9px;
  content: "0" counter(service-step);
}

.service-page .process-list h3 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.035em;
}

.service-page .process-list p {
  margin: 0;
  color: #616761;
}

.service-page .benefit-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
}

.service-page .benefit-list article {
  min-height: 260px;
  padding: 36px 34px 38px 0;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.service-page .benefit-list article + article {
  padding-left: 34px;
}

.service-page .benefit-list article:last-child {
  border-right: 0;
}

.service-page .benefit-list article::before {
  display: block;
  margin-bottom: 70px;
  color: #667066;
  font-family: var(--font-mono);
  font-size: 9px;
  content: "BENEFIT / +";
}

.service-page .benefit-list h3 {
  margin-bottom: 12px;
  font-size: 23px;
  letter-spacing: -0.04em;
}

.service-page .benefit-list p {
  margin: 0;
  color: #616761;
  font-size: 14px;
}

.service-page > .section.faq-section,
.legal-page > .section.faq-section {
  color: var(--white);
  background: var(--ink);
}

.service-page .faq-section .section-header .eyebrow,
.legal-page .faq-section .section-header .eyebrow {
  color: #7d857d;
}

.service-page .faq-section .faq-list,
.legal-page .faq-section .faq-list {
  max-width: var(--shell);
  margin-inline: auto;
}

.service-page .faq-item summary,
.legal-page .faq-item summary {
  display: block;
  min-height: 0;
  padding: 28px 55px 28px 0;
}

.service-page .faq-item summary::after,
.legal-page .faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  color: var(--signal);
  content: "+";
  transform: translateY(-50%);
}

.service-page .faq-item[open] summary::after,
.legal-page .faq-item[open] summary::after {
  content: "−";
}

.service-page .faq-item > p,
.legal-page .faq-item > p {
  margin: -5px 55px 0 0;
  padding-bottom: 30px;
}

.service-page > .cta-section,
.legal-page > .cta-section {
  padding-block: clamp(82px, 10vw, 145px);
  color: var(--ink);
  background: var(--signal);
}

.service-page .cta-content,
.legal-page .cta-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 25px clamp(35px, 7vw, 110px);
  align-items: end;
  width: var(--shell);
  margin-inline: auto;
}

.service-page .cta-content .eyebrow,
.legal-page .cta-content .eyebrow {
  grid-column: 1 / -1;
  margin: 0;
  color: #536510;
}

.service-page .cta-content h2,
.legal-page .cta-content h2 {
  grid-column: 1;
  max-width: 970px;
  margin: 0;
  font-size: clamp(42px, 6vw, 88px);
  letter-spacing: -0.067em;
  line-height: 0.96;
}

.service-page .cta-content > p:not(.eyebrow),
.legal-page .cta-content > p:not(.eyebrow) {
  grid-column: 1;
  max-width: 720px;
  margin: 0;
  color: #39450d;
  font-size: 17px;
}

.service-page .cta-content .button,
.legal-page .cta-content .button {
  grid-column: 2;
  grid-row: 2 / 4;
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

/* Privacy page */
.legal-page > .page-header {
  padding: 56px 0 clamp(86px, 10vw, 135px);
  color: var(--white);
}

.legal-page > .page-header .eyebrow {
  color: #929990;
}

.legal-page > .page-header h1 {
  max-width: 980px;
  margin-bottom: 24px;
  font-size: clamp(54px, 7vw, 106px);
  letter-spacing: -0.067em;
  line-height: 0.95;
}

.legal-page > .page-header .lead {
  max-width: 760px;
  color: #aab1a9;
  font-size: 20px;
}

.legal-page > .section > h2 {
  max-width: 930px;
  margin-bottom: 28px;
  font-size: clamp(34px, 4vw, 56px);
}

.legal-page > .section > ul:not(.feature-list) {
  padding-left: 22px;
}

.legal-page > .section a:not(.button) {
  text-decoration: underline;
  text-decoration-color: #849d21;
  text-underline-offset: 4px;
}

.error-page {
  display: grid;
  place-items: center;
  min-height: 80vh;
  padding: 130px 24px 80px;
  color: var(--white);
  background: var(--ink);
  text-align: center;
}

.error-page h1 {
  margin-bottom: 15px;
  color: var(--signal);
  font-size: clamp(80px, 16vw, 200px);
  letter-spacing: -0.08em;
  line-height: 0.8;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 720ms var(--ease-out), transform 720ms var(--ease-out);
}

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

[data-reveal][data-reveal-delay="2"] {
  transition-delay: 180ms;
}

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

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

  .hero-grid {
    grid-template-columns: 1fr 0.86fr;
    gap: 38px;
  }

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

  .lab-canvas {
    min-height: 430px;
  }

  .lab-canvas {
    --lens-size: 115px;
  }

  .system-core {
    width: 124px;
    height: 124px;
  }

  .node {
    min-width: 108px;
    padding: 8px;
  }

  .service-main {
    grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  }

  .tag-list {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .service-main > p:not(.mono-label) {
    grid-column: 2;
  }

  .honest-card {
    grid-template-columns: 110px minmax(0, 1fr);
  }

  .honest-stamp {
    width: 105px;
    height: 105px;
  }

  .honest-card .button {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 74px;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: block;
  }

  .main-navigation {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 100px 24px 36px;
    background: rgba(11, 13, 12, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 230ms ease, transform 230ms var(--ease-out);
  }

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

  .main-navigation > a:not(.nav-cta) {
    padding: 17px 0;
    border-bottom: 1px solid var(--line-dark);
    font-size: clamp(25px, 7vw, 42px);
    font-weight: 700;
    letter-spacing: -0.04em;
  }

  .main-navigation .nav-cta {
    margin-top: 28px;
    min-height: 58px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 70px);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

  .hero-visual {
    width: min(100%, 680px);
    margin: 18px auto 0;
  }

  .commerce-lab {
    transform: none;
  }

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

  .proof-rail {
    grid-template-columns: auto 1fr auto 1fr;
  }

  .split-heading,
  .metrics-layout,
  .faq-layout,
  .contact-layout,
  .content-split,
  .service-content-grid,
  .contact-page-layout {
    grid-template-columns: 1fr;
  }

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

  .roadmap-card {
    grid-template-columns: 1fr;
  }

  .roadmap-flow li {
    min-height: 185px;
  }

  .principles-grid,
  .benefit-grid,
  .feature-grid,
  .service-benefits {
    grid-template-columns: 1fr;
  }

  .principle,
  .principle + .principle,
  .benefit-card,
  .benefit-card + .benefit-card,
  .feature-card,
  .feature-card + .feature-card,
  .service-benefit,
  .service-benefit + .service-benefit {
    min-height: auto;
    padding: 32px 0;
    border-right: 0;
  }

  .principle-index,
  .benefit-card span,
  .feature-card span,
  .service-benefit span {
    margin-bottom: 35px;
  }

  .service-row {
    grid-template-columns: 50px minmax(0, 1fr) 62px;
    gap: 20px;
  }

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

  .service-main .mono-label,
  .service-main h3,
  .service-main > p:not(.mono-label),
  .tag-list {
    grid-column: 1;
    grid-row: auto;
  }

  .service-main .mono-label {
    margin-bottom: -10px;
  }

  .process-timeline li > div:last-child {
    grid-template-columns: 1fr;
  }

  .process-timeline .mono-label,
  .process-timeline h3,
  .process-timeline li > div:last-child > p:last-child {
    grid-column: 1;
    grid-row: auto;
  }

  .process-timeline h3 {
    margin-bottom: 15px;
  }

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

  .faq-intro,
  .contact-copy {
    position: static;
  }

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

  .page-hero-grid,
  .service-hero-grid {
    grid-template-columns: 1fr;
  }

  .service-page .hero-content {
    grid-template-columns: 1fr;
  }

  .service-page .hero h1,
  .service-page .hero .lead,
  .service-page .hero .actions {
    grid-column: 1;
    grid-row: auto;
  }

  .service-page .hero .lead {
    max-width: 760px;
    margin-top: 34px;
  }

  .service-page .section-header,
  .legal-page .section-header {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-page .card-grid,
  .legal-page .card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-page .benefit-list {
    grid-template-columns: 1fr;
  }

  .service-page .benefit-list article,
  .service-page .benefit-list article + article {
    min-height: auto;
    padding: 32px 0;
    border-right: 0;
  }

  .service-page .benefit-list article::before {
    margin-bottom: 35px;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: calc(100% - 32px);
    --radius-lg: 22px;
  }

  body {
    font-size: 15px;
  }

  .brand {
    grid-template-columns: 30px auto;
  }

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

  .brand-mark i {
    left: 6px;
    width: 18px;
    height: 6px;
  }

  .brand-word {
    font-size: 13px;
  }

  .hero {
    min-height: 0;
    padding-top: calc(var(--header-height) + 52px);
  }

  .eyebrow {
    align-items: flex-start;
    margin-bottom: 22px;
    font-size: 9px;
    line-height: 1.5;
  }

  .eyebrow-dot {
    flex: 0 0 auto;
    margin-top: 3px;
  }

  .hero h1 {
    margin-bottom: 23px;
    font-size: clamp(43px, 13.2vw, 62px);
    line-height: 0.97;
  }

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

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

  .button {
    width: 100%;
  }

  .hero-note {
    line-height: 1.5;
  }

  .hero-visual {
    margin-top: 4px;
  }

  .lab-topbar {
    padding: 0 11px;
  }

  .lab-status {
    font-size: 8px;
  }

  .lab-canvas {
    min-height: 380px;
    cursor: default;
  }

  .result-layer {
    clip-path: circle(0 at 50% 50%);
  }

  .lens-cursor {
    display: none;
  }

  .node {
    min-width: 95px;
    font-size: 7px;
  }

  .node-a,
  .node-d { left: 4%; }
  .node-b,
  .node-c { right: 4%; }

  .system-core {
    width: 112px;
    height: 112px;
  }

  .demo-browser {
    inset: 6% 4% 8%;
  }

  .demo-product {
    grid-template-columns: 1fr;
    grid-template-rows: 52% 48%;
  }

  .demo-info {
    padding: 7%;
  }

  .demo-info p,
  .demo-rating {
    display: none;
  }

  .demo-info h2 {
    margin-bottom: 8px;
    font-size: 19px;
  }

  .metric-chip {
    display: none;
  }

  .lab-caption {
    display: none;
  }

  .proof-rail {
    grid-template-columns: auto 1fr;
    gap: 11px 13px;
    margin-top: 54px;
  }

  .section {
    padding-block: 84px;
  }

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

  .split-heading {
    gap: 20px;
  }

  .section-heading h2,
  .metrics-layout h2,
  .honest-card h2,
  .faq-intro h2,
  .contact-copy h2,
  .page-hero h1,
  .legal-page h1 {
    font-size: clamp(39px, 11vw, 56px);
  }

  .roadmap-card {
    padding: 26px;
  }

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

  .roadmap-flow li {
    min-height: 150px;
    border-bottom: 1px solid var(--line-dark);
  }

  .roadmap-flow li:nth-child(2) {
    border-right: 0;
  }

  .roadmap-flow li:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .roadmap-flow li::after {
    display: none;
  }

  .service-row {
    grid-template-columns: 32px minmax(0, 1fr);
  }

  .service-number {
    font-size: 8px;
  }

  .round-link {
    grid-column: 2;
    width: 54px;
    height: 54px;
  }

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

  .metric-grid > div,
  .metric-grid > div:nth-child(even) {
    min-height: 100px;
    border-right: 0;
  }

  .process-timeline::before {
    left: 25px;
  }

  .process-timeline li {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 22px;
  }

  .process-marker {
    width: 52px;
    height: 52px;
  }

  .process-marker span {
    top: -20px;
  }

  .honest-card {
    grid-template-columns: 1fr;
  }

  .honest-stamp {
    width: 86px;
    height: 86px;
    font-size: 10px;
  }

  .honest-card .button {
    grid-column: 1;
  }

  .fit-card {
    padding: 26px;
  }

  .faq-list summary {
    grid-template-columns: 28px minmax(0, 1fr) 18px;
    gap: 10px;
    min-height: 80px;
  }

  .faq-list details > p {
    margin-left: 38px;
  }

  .contact-form-card,
  .contact-page-form {
    padding: 25px;
  }

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

  .field-full,
  .form-field-full {
    grid-column: 1;
  }

  .footer-top {
    grid-template-columns: 1fr;
    padding-bottom: 55px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-signature {
    display: none;
  }

  .mobile-contact-bar {
    position: fixed;
    z-index: 90;
    right: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
    left: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 54px;
    padding: 0 20px;
    color: var(--ink);
    background: var(--signal);
    border: 1px solid rgba(11, 13, 12, 0.25);
    border-radius: 999px;
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.28);
    font-weight: 850;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-contact-bar.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
  }

  .site-footer {
    padding-bottom: 92px;
  }

  .page-hero,
  .service-hero,
  .contact-page-hero,
  .legal-hero {
    padding: calc(var(--header-height) + 55px) 0 70px;
  }

  .breadcrumb,
  .breadcrumbs {
    margin-bottom: 35px;
  }

  .page-hero h1,
  .service-hero h1,
  .contact-page-hero h1,
  .legal-hero h1 {
    font-size: clamp(45px, 13vw, 66px);
  }

  .service-steps li,
  .steps-list li {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
  }

  .service-steps p,
  .steps-list p {
    grid-column: 2;
  }

  .page-cta-inner,
  .service-cta-inner {
    grid-template-columns: 1fr;
  }

  .service-page,
  .legal-page {
    padding-top: var(--header-height);
  }

  .contact-page__header h1 {
    font-size: clamp(45px, 13vw, 66px);
  }

  .contact-page__form {
    padding-right: 16px;
    padding-left: 16px;
  }

  .service-page > .breadcrumbs,
  .legal-page > .breadcrumbs {
    padding-top: 34px;
  }

  .service-page > .hero {
    padding-top: 34px;
  }

  .service-page .hero h1,
  .legal-page > .page-header h1 {
    font-size: clamp(44px, 13vw, 66px);
  }

  .service-page .feature-list,
  .legal-page .feature-list,
  .service-page .card-grid,
  .legal-page .card-grid {
    grid-template-columns: 1fr;
  }

  .service-page .card,
  .legal-page .card {
    min-height: auto;
  }

  .service-page .card::before,
  .legal-page .card::before {
    margin-bottom: 42px;
  }

  .service-page .process-list li {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
  }

  .service-page .process-list p {
    grid-column: 2;
  }

  .service-page .cta-content,
  .legal-page .cta-content {
    grid-template-columns: 1fr;
  }

  .service-page .cta-content .eyebrow,
  .service-page .cta-content h2,
  .service-page .cta-content > p:not(.eyebrow),
  .service-page .cta-content .button,
  .legal-page .cta-content .eyebrow,
  .legal-page .cta-content h2,
  .legal-page .cta-content > p:not(.eyebrow),
  .legal-page .cta-content .button {
    grid-column: 1;
    grid-row: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .commerce-lab {
    transform: none;
  }
}

@media print {
  .site-header,
  .site-footer,
  .mobile-contact-bar,
  .hero-visual,
  .hero-noise {
    display: none !important;
  }

  body,
  .hero,
  .section,
  .faq-section {
    color: #000 !important;
    background: #fff !important;
  }

  a {
    text-decoration: underline;
  }
}
