:root {
  color-scheme: dark;
  --ink: #f3efe5;
  --muted: #aaa59d;
  --dim: #706d68;
  --base: #0b0b0c;
  --base-2: #141415;
  --base-3: #19191b;
  --line: rgba(243, 239, 229, 0.14);
  --line-strong: rgba(243, 239, 229, 0.25);
  --accent: #ef6a5b;
  --accent-dark: #4d1e1a;
  --paper: #f3efe5;
  --paper-ink: #171616;
  --paper-muted: #625f59;
  --shell: min(1180px, calc(100vw - 40px));
  --radius: 3px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--base);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--accent);
  color: var(--base);
  font-weight: 750;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(11, 11, 12, 0.94);
}

.product-subnav {
  border-bottom: 1px solid var(--line);
  background: var(--base-2);
}

.product-subnav-inner {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 26px;
  overflow-x: auto;
  scrollbar-width: none;
}

.product-subnav-inner::-webkit-scrollbar {
  display: none;
}

.product-subnav a {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  text-decoration: none;
}

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

.product-subnav a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
}

.nav-wrap {
  min-height: 78px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 760;
  letter-spacing: -0.015em;
  text-decoration: none;
}

.brand-mark {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 2.2;
}

nav {
  display: flex;
  gap: 30px;
}

nav a {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
  text-decoration: none;
}

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

nav a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
}

.button {
  width: max-content;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 12px 18px;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  background: var(--accent);
  color: #140b0a;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(239, 106, 91, 0.16);
}

.button-small {
  min-height: 40px;
  justify-self: end;
  padding: 8px 14px;
  background: transparent;
  color: var(--ink);
}

.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: clamp(52px, 8vw, 120px);
  padding-block: 92px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 52% 0 calc(50% - 50vw);
  background-image: linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, black, transparent 94%);
  opacity: 0.32;
}

.hero > *,
.page-hero > *,
.contact-page > * {
  min-width: 0;
}

.eyebrow,
.section-label,
.model-kicker {
  margin: 0 0 24px;
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.71rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(239, 106, 91, 0.55);
}

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

h1,
h2 {
  font-weight: 740;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

h1 {
  max-width: 790px;
  margin-bottom: 30px;
  font-size: clamp(3.7rem, 6.6vw, 6.9rem);
}

.hero-lede {
  max-width: 690px;
  margin-bottom: 38px;
  color: #c1bdb5;
  font-size: clamp(1.08rem, 1.5vw, 1.35rem);
  line-height: 1.55;
}

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

.text-link {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
  text-decoration-color: var(--accent-dark);
  text-underline-offset: 5px;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--ink);
  text-decoration-color: var(--accent);
}

.operating-model {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(155deg, rgba(25, 25, 27, 0.98), rgba(12, 12, 13, 0.98));
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.24);
}

.model-head {
  padding: 25px 24px 22px;
  border-bottom: 1px solid var(--line);
}

.model-kicker {
  margin-bottom: 9px;
}

.model-head h2 {
  max-width: 380px;
  margin: 0;
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.model-flow {
  margin: 0;
  padding: 0;
  list-style: none;
}

.model-flow li {
  min-height: 87px;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-content: center;
  gap: 0 13px;
  padding: 15px 24px;
  border-bottom: 1px solid var(--line);
}

.model-flow li:last-child {
  border-bottom: 0;
}

.model-flow span {
  grid-row: span 2;
  color: var(--dim);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.65rem;
  padding-top: 2px;
}

.model-flow strong,
.model-flow small {
  display: block;
}

.model-flow strong {
  font-size: 0.91rem;
}

.model-flow small {
  color: var(--dim);
  font-size: 0.73rem;
}

.signal-strip {
  border-block: 1px solid var(--line);
  background: var(--base-2);
}

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

.signal-grid p {
  margin: 0;
  padding: 19px 20px;
  border-right: 1px solid var(--line);
  color: #bbb6ae;
  font-size: 0.72rem;
  font-weight: 680;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.signal-grid p:first-child {
  border-left: 1px solid var(--line);
}

.signal-grid span {
  margin-right: 12px;
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.section {
  padding-block: 130px;
}

.page-hero {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: clamp(52px, 9vw, 140px);
  padding-block: 100px;
  position: relative;
}

.page-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 56% 0 calc(50% - 50vw);
  background-image: linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, black, transparent 94%);
  opacity: 0.3;
}

.page-hero h1 {
  font-size: clamp(3.5rem, 6vw, 6.4rem);
}

.page-hero-aside {
  padding: 30px;
  border-left: 1px solid var(--accent);
}

.page-hero-aside p {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.08rem;
}

.product-heading,
.section-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(48px, 9vw, 135px);
  align-items: end;
  margin-bottom: 76px;
}

.section h2 {
  margin-bottom: 0;
  font-size: clamp(2.8rem, 5vw, 5.35rem);
}

.product-name {
  margin-bottom: 14px;
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-heading > p,
.section-heading > p {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 1.04rem;
}

.compact-heading {
  align-items: start;
}

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

.path-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: background-color 160ms ease, transform 160ms ease;
}

.path-card:hover,
.path-card:focus-visible {
  background: var(--base-2);
  transform: translateY(-3px);
}

.path-card span {
  margin-bottom: 60px;
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.path-card h3 {
  margin-bottom: 12px;
  font-size: 1.55rem;
  letter-spacing: -0.03em;
}

.path-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.path-card strong {
  margin-top: auto;
  color: var(--ink);
  font-size: 0.78rem;
}

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

.capability-grid article {
  min-height: 275px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability-grid .capability-wide {
  min-height: 220px;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 90px minmax(180px, 0.65fr) minmax(280px, 1.35fr);
  align-items: center;
  gap: 20px;
}

.article-index,
.principle-list > article > span {
  display: block;
  margin-bottom: 62px;
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.72rem;
}

.capability-wide .article-index {
  margin-bottom: 0;
}

.capability-grid h3,
.principle-list h3 {
  margin-bottom: 14px;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.capability-wide h3,
.capability-wide p {
  margin-bottom: 0;
}

.capability-grid p,
.principle-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.disclosure {
  max-width: 760px;
  margin: 34px 0 0 auto;
  padding-left: 18px;
  border-left: 2px solid var(--accent);
  color: var(--dim);
  font-size: 0.79rem;
}

.section-light {
  width: 100%;
  --ink: var(--paper-ink);
  --muted: var(--paper-muted);
  --dim: #514e49;
  --line: rgba(23, 22, 22, 0.17);
  --line-strong: rgba(23, 22, 22, 0.3);
  background: var(--paper);
  color: var(--paper-ink);
}

.section-light .section-label {
  color: #a4362d;
}

.section-light .section-heading > p {
  color: var(--paper-muted);
}

.principle-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(23, 22, 22, 0.17);
  border-left: 1px solid rgba(23, 22, 22, 0.17);
}

.principle-list article {
  min-height: 245px;
  padding: 30px;
  border-right: 1px solid rgba(23, 22, 22, 0.17);
  border-bottom: 1px solid rgba(23, 22, 22, 0.17);
}

.principle-list > article > span {
  margin-bottom: 42px;
  color: #a4362d;
}

.principle-list p {
  max-width: 480px;
  color: var(--paper-muted);
}

.company-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(60px, 10vw, 150px);
}

.company-grid p {
  color: var(--muted);
  font-size: 1.04rem;
}

.company-grid p + p {
  margin-top: 25px;
}

.closing {
  min-height: 330px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 60px;
  margin-bottom: 110px;
  background: var(--accent);
  color: #160b0a;
}

.closing .eyebrow {
  color: #65231d;
}

.closing h2 {
  max-width: 730px;
  margin: 0;
  font-size: clamp(2.4rem, 4.5vw, 4.7rem);
}

.button-dark {
  flex: 0 0 auto;
  border-color: var(--base);
  background: var(--base);
  color: var(--ink);
}

.site-footer {
  border-top: 1px solid var(--line);
}

.footer-grid {
  min-height: 130px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.footer-grid p {
  margin: 0;
  color: var(--dim);
  font-size: 0.75rem;
}

.footer-grid p:last-child {
  justify-self: end;
}

.not-found {
  min-height: calc(100vh - 209px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  align-items: center;
  gap: 70px;
  padding-block: 80px;
}

.not-found-code {
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: clamp(6rem, 18vw, 13rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.contact-page {
  min-height: calc(100vh - 209px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  align-items: center;
  gap: clamp(60px, 10vw, 150px);
  padding-block: 100px;
}

.contact-page h1 {
  font-size: clamp(3.6rem, 6.3vw, 6.7rem);
}

.contact-panel {
  padding: 38px;
  border: 1px solid var(--line-strong);
  background: var(--base-2);
}

.contact-panel h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1;
  overflow-wrap: anywhere;
}

.contact-panel > p:not(.model-kicker),
.contact-panel small {
  color: var(--muted);
}

.contact-panel .button {
  margin-block: 16px 28px;
}

.contact-panel small {
  display: block;
  font-size: 0.74rem;
}

.hero-studio {
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.88fr);
}

.studio-map {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: linear-gradient(145deg, rgba(27, 27, 29, 0.98), rgba(10, 10, 11, 0.98));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

.studio-map::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -80px;
  top: -80px;
  border: 1px solid rgba(239, 106, 91, 0.24);
  border-radius: 50%;
  box-shadow: 0 0 70px rgba(239, 106, 91, 0.1);
}

.studio-map-head {
  padding: 28px 26px 24px;
  border-bottom: 1px solid var(--line);
}

.studio-map-head .model-kicker {
  margin-bottom: 10px;
}

.studio-map-head h2 {
  max-width: 420px;
  margin: 0;
  font-size: clamp(1.7rem, 2.8vw, 2.45rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.studio-map-flow {
  margin: 0;
  padding: 0;
  list-style: none;
}

.studio-map-flow li {
  min-height: 92px;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 16px;
  padding: 17px 26px;
  border-bottom: 1px solid var(--line);
}

.studio-map-flow li:last-child {
  border-bottom: 0;
}

.studio-map-flow li > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--dim);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.66rem;
}

.studio-map-flow li.is-live > span {
  border-color: var(--accent);
  background: var(--accent);
  color: #160b0a;
}

.studio-map-flow strong,
.studio-map-flow small {
  display: block;
}

.studio-map-flow strong {
  margin-bottom: 3px;
  font-size: 0.92rem;
}

.studio-map-flow small {
  color: var(--dim);
  font-size: 0.73rem;
}

.feature-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 430px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(135deg, var(--base-3), var(--base));
  color: var(--ink);
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease;
}

.feature-panel:hover,
.feature-panel:focus-visible {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.feature-panel-copy {
  display: flex;
  flex-direction: column;
  padding: clamp(34px, 5vw, 64px);
  border-right: 1px solid var(--line);
}

.card-kicker,
.platform-status {
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.feature-panel-identity {
  display: flex;
  align-items: center;
  gap: 16px;
}

.feature-panel-identity img {
  width: 48px;
  height: 48px;
}

.feature-panel h3 {
  max-width: 600px;
  margin: 55px 0 18px;
  font-size: clamp(2.3rem, 4vw, 4.4rem);
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.feature-panel-copy p {
  max-width: 590px;
  color: var(--muted);
  font-size: 1.02rem;
}

.feature-panel-copy strong {
  margin-top: auto;
  font-size: 0.8rem;
}

.mini-pipeline {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mini-pipeline li {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 22px 32px;
  border-bottom: 1px solid var(--line);
  font-size: 1.05rem;
  font-weight: 720;
}

.mini-pipeline li:last-child {
  border-bottom: 0;
  background: rgba(239, 106, 91, 0.08);
}

.mini-pipeline span {
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.68rem;
}

.platform-card-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  border-top: 1px solid rgba(23, 22, 22, 0.18);
  border-left: 1px solid rgba(23, 22, 22, 0.18);
}

.platform-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(30px, 4vw, 48px);
  border-right: 1px solid rgba(23, 22, 22, 0.18);
  border-bottom: 1px solid rgba(23, 22, 22, 0.18);
  color: var(--paper-ink);
  text-decoration: none;
}

.platform-card-active {
  background: #ebe5da;
  transition: background-color 160ms ease, transform 160ms ease;
}

.platform-card-active:hover,
.platform-card-active:focus-visible {
  background: #e4d8ca;
  transform: translateY(-3px);
}

.platform-card-research {
  background: transparent;
}

.platform-card .platform-status {
  color: #a4362d;
}

.platform-card h3 {
  margin: 60px 0 16px;
  font-size: clamp(2.3rem, 4vw, 4.1rem);
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.platform-card p {
  max-width: 500px;
  color: var(--paper-muted);
}

.platform-card strong {
  font-size: 0.78rem;
}

.page-hero-tight {
  min-height: 570px;
}

.portfolio-product {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(50px, 9vw, 130px);
  align-items: end;
}

.portfolio-product-copy h2 {
  max-width: 780px;
  margin-bottom: 30px;
}

.portfolio-product-copy > p:not(.product-name) {
  max-width: 700px;
  margin-bottom: 34px;
  color: var(--paper-muted);
  font-size: 1.05rem;
}

.portfolio-product-meta {
  border-top: 1px solid rgba(23, 22, 22, 0.2);
}

.portfolio-product-meta div {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(23, 22, 22, 0.2);
}

.portfolio-product-meta span {
  color: var(--paper-muted);
  font-size: 0.72rem;
}

.portfolio-product-meta strong {
  font-size: 0.8rem;
}

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

.principle-list-dark article {
  border-color: var(--line);
}

.principle-list-dark > article > span {
  color: var(--accent);
}

.principle-list-dark p {
  color: var(--muted);
}

.product-hero {
  min-height: 735px;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(360px, 0.84fr);
  align-items: center;
  gap: clamp(54px, 9vw, 130px);
  padding-block: 100px;
  position: relative;
}

.product-hero::before,
.platform-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 54% 0 calc(50% - 50vw);
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, black, transparent 94%);
  opacity: 0.28;
}

.product-hero h1 {
  max-width: 820px;
  font-size: clamp(3.6rem, 6.4vw, 6.8rem);
}

.agencyflow-lockup {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.agencyflow-lockup img {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
}

.agencyflow-lockup strong,
.agencyflow-lockup span {
  display: block;
}

.agencyflow-lockup strong {
  color: var(--ink);
  font-size: 1.15rem;
  letter-spacing: -0.025em;
}

.agencyflow-lockup span {
  margin-top: 5px;
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.agencyflow-lockup-light strong {
  color: var(--paper-ink);
}

.readiness-card {
  border: 1px solid var(--line-strong);
  background: linear-gradient(145deg, rgba(27, 27, 29, 0.98), rgba(10, 10, 11, 0.98));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.3);
}

.readiness-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 28px 28px 20px;
}

.readiness-top span,
.readiness-top strong {
  display: block;
}

.readiness-top span,
.readiness-foot span {
  color: var(--dim);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.readiness-top strong {
  margin-top: 5px;
  font-size: 1.05rem;
}

.readiness-top b {
  color: var(--accent);
  font-size: 2.25rem;
  line-height: 1;
}

.readiness-meter {
  height: 5px;
  margin: 0 28px 24px;
  background: rgba(243, 239, 229, 0.08);
}

.readiness-meter span {
  width: 80%;
  height: 100%;
  display: block;
  background: var(--accent);
}

.readiness-card ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.readiness-card li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px 28px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

.readiness-card li span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 800;
}

.readiness-card li.is-ready span {
  color: #9dd7b1;
}

.readiness-card li.needs-attention {
  color: var(--ink);
  background: rgba(239, 106, 91, 0.07);
}

.readiness-card li.needs-attention span {
  border-color: var(--accent);
  color: var(--accent);
}

.readiness-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
}

.readiness-foot strong {
  color: var(--accent);
  font-size: 0.75rem;
}

.dashboard-preview {
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, var(--base-2), #0f0f10);
}

.dashboard-preview-bar,
.dashboard-preview-head,
.dashboard-preview-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.dashboard-preview-bar {
  min-height: 66px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--line);
}

.dashboard-preview-brand,
.dashboard-preview-status {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dashboard-preview-brand {
  font-size: 0.82rem;
  font-weight: 800;
}

.dashboard-preview-mark {
  width: 26px;
  height: 26px;
  border-radius: 7px;
}

.dashboard-preview-status {
  color: var(--muted);
  font-size: 0.72rem;
}

.dashboard-preview-status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8fcea5;
}

.dashboard-preview-content {
  padding: clamp(24px, 5vw, 54px);
}

.dashboard-preview-head {
  align-items: end;
  margin-bottom: 28px;
}

.dashboard-preview-head h3 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.2rem);
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.dashboard-preview-head p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.dashboard-preview-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 24px;
  border: 1px solid var(--line);
}

.dashboard-preview-metrics div {
  padding: 20px;
  border-right: 1px solid var(--line);
}

.dashboard-preview-metrics div:last-child {
  border-right: 0;
}

.dashboard-preview-metrics span,
.dashboard-preview-cell span {
  display: block;
  color: var(--dim);
  font-size: 0.62rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.dashboard-preview-metrics strong {
  display: block;
  margin-top: 10px;
  font-size: 1.6rem;
}

.dashboard-preview-list {
  border: 1px solid var(--line);
}

.dashboard-preview-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr 1.2fr;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.dashboard-preview-row:last-child {
  border-bottom: 0;
}

.dashboard-preview-cell strong,
.dashboard-preview-cell b {
  display: block;
  margin-top: 4px;
  font-size: 0.78rem;
}

.dashboard-preview-cell b {
  color: #8fcea5;
}

.dashboard-preview-cell b.attention {
  color: var(--accent);
}

.preview-note {
  margin: 16px 0 0;
  color: var(--dim);
  font-size: 0.72rem;
}

.price-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
  gap: clamp(50px, 9vw, 120px);
  align-items: start;
}

.price-card {
  padding: clamp(30px, 5vw, 52px);
  border: 1px solid var(--line);
  background: var(--base-2);
}

.price-card-light {
  border-color: rgba(23, 22, 22, 0.18);
  background: #ebe5da;
}

.price-kicker {
  margin: 0;
  color: var(--accent);
  font: 700 0.7rem ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.price-card-light .price-kicker {
  color: #a4362d;
}

.price-value {
  margin: 22px 0 8px;
  font-size: clamp(3.6rem, 8vw, 6.5rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.price-card > p:not(.price-kicker) {
  color: var(--muted);
}

.price-card-light > p:not(.price-kicker) {
  color: var(--paper-muted);
}

.included-list {
  margin: 30px 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.price-card-light .included-list {
  border-color: rgba(23, 22, 22, 0.18);
}

.included-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.84rem;
}

.price-card-light .included-list li {
  border-color: rgba(23, 22, 22, 0.18);
}

.faq-list {
  max-width: 900px;
  margin-left: auto;
  border-top: 1px solid var(--line);
}

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

.faq-list summary {
  position: relative;
  padding: 26px 48px 26px 0;
  cursor: pointer;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 750;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 500;
}

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

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

.application-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1.1fr);
  gap: clamp(50px, 9vw, 120px);
  align-items: start;
}

.application-aside {
  position: sticky;
  top: 130px;
}

.application-aside h1 {
  margin: 16px 0 26px;
  font-size: clamp(3.2rem, 6vw, 6rem);
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.application-aside > p:not(.eyebrow) {
  color: var(--muted);
}

.application-steps {
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.application-steps li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8rem;
}

.application-steps span {
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.pilot-form {
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(23, 22, 22, 0.18);
  background: var(--paper);
  color: var(--paper-ink);
}

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

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

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

.form-field label,
.consent-field {
  font-size: 0.76rem;
  font-weight: 750;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(23, 22, 22, 0.28);
  border-radius: 0;
  background: #fffdf8;
  color: var(--paper-ink);
  font: inherit;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #a4362d;
  outline: 3px solid rgba(164, 54, 45, 0.17);
  outline-offset: 1px;
}

.consent-field {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 11px;
  align-items: start;
  color: var(--paper-muted);
  font-weight: 500;
}

.consent-field input {
  width: 17px;
  height: 17px;
  margin-top: 3px;
}

.consent-field a {
  color: var(--paper-ink);
}

.pilot-form .button {
  margin-top: 26px;
}

.form-status {
  min-height: 26px;
  margin: 18px 0 0;
  color: var(--paper-muted);
  font-size: 0.8rem;
}

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

.form-status.is-success {
  color: #27643c;
  font-weight: 700;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(23, 22, 22, 0.18);
  border-left: 1px solid rgba(23, 22, 22, 0.18);
}

.trust-grid article {
  min-height: 250px;
  padding: 30px;
  border-right: 1px solid rgba(23, 22, 22, 0.18);
  border-bottom: 1px solid rgba(23, 22, 22, 0.18);
}

.trust-grid span {
  color: #a4362d;
  font: 700 0.68rem ui-monospace, SFMono-Regular, Menlo, monospace;
}

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

.trust-grid p {
  margin: 0;
  color: var(--paper-muted);
  font-size: 0.86rem;
}

.launch-grid article {
  min-height: 290px;
}

.text-link-dark {
  color: var(--paper-muted);
  text-decoration-color: rgba(164, 54, 45, 0.4);
}

.text-link-dark:hover,
.text-link-dark:focus-visible {
  color: var(--paper-ink);
  text-decoration-color: #a4362d;
}

.platform-spotlight {
  display: grid;
  grid-template-columns: minmax(180px, 0.36fr) minmax(0, 1.64fr);
  gap: clamp(40px, 8vw, 110px);
  align-items: center;
  padding: clamp(34px, 6vw, 74px);
  border: 1px solid rgba(23, 22, 22, 0.18);
  color: var(--paper-ink);
  text-decoration: none;
  transition: background-color 160ms ease, transform 160ms ease;
}

.platform-spotlight:hover,
.platform-spotlight:focus-visible {
  background: #e9e2d7;
  transform: translateY(-3px);
}

.platform-monogram,
.platform-hero-mark {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  color: #a4362d;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.08em;
}

.platform-spotlight h2 {
  margin: 36px 0 20px;
}

.platform-spotlight p {
  max-width: 760px;
  color: var(--paper-muted);
  font-size: 1.05rem;
}

.platform-spotlight strong {
  font-size: 0.8rem;
}

.platform-hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1.45fr);
  align-items: center;
  gap: clamp(50px, 9vw, 130px);
  padding-block: 95px;
  position: relative;
}

.platform-hero-mark {
  max-width: 360px;
  color: var(--accent);
}

.platform-hero h1 {
  max-width: 850px;
  font-size: clamp(3.4rem, 6vw, 6.4rem);
}

.app-listing {
  min-height: 270px;
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr) auto;
  align-items: center;
  gap: 38px;
  padding: 38px;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease;
}

.app-listing:hover,
.app-listing:focus-visible {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.app-listing-index {
  color: var(--dim);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 2.3rem;
}

.app-listing-logo {
  width: 88px;
  height: 88px;
  border-radius: 21px;
}

.app-listing h3 {
  margin: 22px 0 12px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.app-listing p {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
}

.app-listing-action {
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 760;
}

.support-product {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  padding: clamp(34px, 5vw, 60px);
  border: 1px solid rgba(23, 22, 22, 0.18);
}

.support-product h2 {
  margin: 36px 0 16px;
}

.support-product p {
  max-width: 700px;
  margin: 0;
  color: var(--paper-muted);
}

.legal-hero {
  min-height: 460px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 70px;
  padding-block: clamp(80px, 11vw, 150px) clamp(58px, 8vw, 100px);
}

.legal-hero h1 {
  max-width: 850px;
  margin: 18px 0 0;
  font-size: clamp(3.4rem, 8vw, 7.6rem);
  letter-spacing: -0.07em;
  line-height: 0.88;
}

.legal-summary {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.legal-summary p {
  margin: 0;
  color: var(--muted);
}

.legal-summary p + p {
  margin-top: 18px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(190px, 0.32fr) minmax(0, 1fr);
  gap: clamp(50px, 8vw, 120px);
  padding-block: clamp(64px, 9vw, 120px);
}

.legal-nav {
  align-self: start;
  position: sticky;
  top: 150px;
  display: grid;
  gap: 12px;
}

.legal-nav strong {
  margin-bottom: 10px;
  color: var(--dim);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-nav a {
  color: var(--muted);
  font-size: 0.78rem;
  text-decoration: none;
}

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

.legal-content {
  max-width: 850px;
}

.legal-content section {
  padding-block: 0 52px;
  scroll-margin-top: 130px;
}

.legal-content section + section {
  padding-top: 52px;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0 0 22px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.legal-content h3 {
  margin: 30px 0 12px;
  font-size: 1rem;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.78;
}

.legal-content p {
  margin: 0 0 18px;
}

.legal-content ul {
  margin: 0 0 20px;
  padding-left: 22px;
}

.legal-content a {
  color: var(--ink);
}

.legal-callout {
  margin: 8px 0 28px;
  padding: 24px 26px;
  border: 1px solid var(--line-strong);
  color: var(--ink);
}

.policy-table {
  width: 100%;
  margin: 24px 0 30px;
  border-collapse: collapse;
  font-size: 0.78rem;
}

.policy-table th,
.policy-table td {
  padding: 16px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.policy-table th {
  color: var(--ink);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.policy-table td {
  color: var(--muted);
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.legal-links a {
  color: var(--dim);
  text-decoration: none;
}

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

.footer-main {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) minmax(420px, 0.9fr);
  gap: 70px;
  padding-block: 68px 52px;
}

.footer-intro p {
  max-width: 380px;
  margin: 22px 0 0;
  color: var(--dim);
  font-size: 0.82rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-links strong,
.footer-links a {
  display: block;
  font-size: 0.74rem;
}

.footer-links strong {
  margin-bottom: 16px;
  color: var(--ink);
}

.footer-links a {
  margin-top: 10px;
  color: var(--dim);
  text-decoration: none;
}

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

.footer-bottom {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin: 0;
  color: var(--dim);
  font-size: 0.7rem;
}

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

:focus-visible {
  outline: 3px solid #8ebeff;
  outline-offset: 4px;
}

@media (max-width: 940px) {
  .nav-wrap {
    grid-template-columns: 1fr auto;
    padding-top: 16px;
  }

  nav {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    justify-content: space-between;
    gap: 20px;
    padding: 13px 0 16px;
    border-top: 1px solid var(--line);
    overflow-x: auto;
  }

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

  .hero-studio,
  .product-hero,
  .platform-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .studio-map,
  .readiness-card {
    max-width: 650px;
  }

  .platform-hero-mark {
    width: 220px;
  }

  .page-hero,
  .contact-page,
  .legal-hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .legal-summary {
    max-width: 680px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .legal-nav {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-bottom: 34px;
    border-bottom: 1px solid var(--line);
  }

  .legal-nav strong {
    grid-column: 1 / -1;
  }

  .operating-model {
    max-width: 640px;
  }

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

  .capability-grid .capability-wide {
    grid-column: auto;
    display: block;
    min-height: 275px;
  }

  .capability-wide .article-index {
    margin-bottom: 62px;
  }

  .capability-wide h3 {
    margin-bottom: 14px;
  }

  .product-heading,
  .section-heading,
  .company-grid,
  .portfolio-product {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .feature-panel,
  .platform-card-grid {
    grid-template-columns: 1fr;
  }

  .feature-panel-copy {
    min-height: 360px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .platform-spotlight {
    grid-template-columns: 150px 1fr;
  }

  .app-listing {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .app-listing-logo {
    width: 72px;
    height: 72px;
  }

  .app-listing-action {
    grid-column: 2;
  }

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

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

  .not-found {
    grid-template-columns: 1fr;
  }

  .product-subnav {
    overflow: hidden;
  }

  .product-subnav-inner {
    padding-inline: 0;
  }

  .price-layout,
  .application-layout {
    grid-template-columns: 1fr;
  }

  .application-aside {
    position: static;
  }

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

  .dashboard-preview-head {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .site-header .button-small {
    display: none;
  }

  .nav-wrap {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 12px;
  }

  .brand {
    gap: 8px;
    font-size: 0.82rem;
  }

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

  nav {
    display: grid;
    grid-template-columns: repeat(4, max-content);
    gap: 0;
    justify-content: space-between;
    margin: 0;
    width: 100%;
    padding: 0;
    overflow: visible;
  }

  nav a {
    flex: 0 0 auto;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    font-size: 0.68rem;
    letter-spacing: -0.01em;
    touch-action: manipulation;
  }

  nav a[aria-current="page"] {
    text-underline-offset: 5px;
  }

  .product-subnav {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    border-top: 0;
  }

  .product-subnav-inner {
    justify-content: flex-start;
    gap: 22px;
  }

  .product-subnav a {
    min-height: 52px;
    font-size: 0.7rem;
  }

  .hero {
    gap: 38px;
    padding-block: 54px 60px;
  }

  .product-hero,
  .platform-hero {
    gap: 38px;
    padding-block: 58px 64px;
  }

  .product-hero h1,
  .platform-hero h1 {
    font-size: clamp(2.55rem, 11.2vw, 3.65rem);
    line-height: 0.97;
  }

  .platform-hero-mark {
    width: 120px;
    font-size: 2.4rem;
  }

  .page-hero,
  .contact-page {
    gap: 30px;
    padding-block: 56px 62px;
  }

  .page-hero h1,
  .contact-page h1 {
    font-size: clamp(2.4rem, 10.8vw, 3.45rem);
    line-height: 0.98;
  }

  .page-hero-aside {
    padding: 4px 0 4px 20px;
  }

  .page-hero-aside p {
    margin-bottom: 24px;
    font-size: 1rem;
  }

  .page-hero-aside .button,
  .contact-panel .button {
    width: 100%;
    text-align: center;
  }

  .contact-panel {
    padding: 24px;
  }

  h1 {
    font-size: clamp(2.55rem, 11.2vw, 3.65rem);
    line-height: 0.97;
  }

  .hero-lede {
    margin-bottom: 30px;
    font-size: 1.02rem;
  }

  .hero-actions {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

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

  .operating-model {
    margin-inline: 0;
  }

  .studio-map-head {
    padding: 22px 20px 19px;
  }

  .studio-map-flow li {
    min-height: 78px;
    grid-template-columns: 40px 1fr;
    padding: 14px 20px;
  }

  .studio-map-flow li > span {
    width: 36px;
    height: 36px;
  }

  .model-head {
    padding: 21px 20px 18px;
  }

  .model-flow li {
    min-height: 74px;
    padding: 13px 20px;
  }

  .capability-grid,
  .principle-list,
  .path-grid {
    grid-template-columns: 1fr;
  }

  .feature-panel {
    min-height: 0;
  }

  .feature-panel-copy {
    min-height: 340px;
    padding: 28px;
  }

  .feature-panel h3,
  .platform-card h3 {
    margin-top: 42px;
    font-size: clamp(2.25rem, 10vw, 3.2rem);
  }

  .mini-pipeline li {
    min-height: 70px;
    padding: 16px 24px;
  }

  .platform-card-grid {
    border-left: 0;
  }

  .platform-card {
    min-height: 310px;
    padding: 28px;
    border-left: 1px solid rgba(23, 22, 22, 0.18);
  }

  .portfolio-product-meta div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .readiness-top,
  .readiness-card li,
  .readiness-foot {
    padding-inline: 22px;
  }

  .readiness-meter {
    margin-inline: 22px;
  }

  .dashboard-preview-content {
    padding: 22px;
  }

  .dashboard-preview-bar {
    padding-inline: 18px;
  }

  .dashboard-preview-status {
    font-size: 0;
  }

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

  .dashboard-preview-metrics div:nth-child(2) {
    border-right: 0;
  }

  .dashboard-preview-metrics div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .dashboard-preview-row,
  .form-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

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

  .pilot-form {
    padding: 24px;
  }

  .platform-spotlight {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .platform-monogram {
    width: 110px;
  }

  .platform-spotlight h2 {
    margin-top: 42px;
  }

  .app-listing {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px;
  }

  .app-listing-action {
    grid-column: 1;
  }

  .support-product {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px;
  }

  .footer-main {
    gap: 42px;
    padding-block: 46px 38px;
  }

  .footer-links {
    gap: 18px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding-block: 22px;
  }

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

  .legal-hero h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .legal-summary {
    padding-left: 20px;
  }

  .policy-table,
  .policy-table tbody,
  .policy-table tr,
  .policy-table th,
  .policy-table td {
    display: block;
  }

  .policy-table tr + tr {
    margin-top: 16px;
  }

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

  .signal-grid p {
    min-height: 60px;
    display: flex;
    align-items: center;
    padding: 13px 12px;
    border-bottom: 1px solid var(--line);
    font-size: 0.64rem;
  }

  .section {
    padding-block: 74px;
  }

  .product-heading,
  .section-heading {
    gap: 20px;
    margin-bottom: 42px;
  }

  .section h2 {
    font-size: clamp(2.25rem, 10vw, 3.2rem);
    line-height: 0.98;
  }

  .section-heading > p,
  .product-heading > p {
    font-size: 0.98rem;
  }

  .path-card {
    min-height: 230px;
    padding: 25px;
  }

  .path-card span {
    margin-bottom: 38px;
  }

  .capability-grid article,
  .capability-grid .capability-wide {
    min-height: 0;
    padding: 26px;
  }

  .article-index,
  .capability-wide .article-index {
    margin-bottom: 38px;
  }

  .principle-list article {
    min-height: 0;
    padding: 26px;
  }

  .principle-list > article > span {
    margin-bottom: 36px;
  }

  .disclosure {
    margin-top: 26px;
  }

  .closing {
    width: var(--shell);
    min-height: 0;
    gap: 30px;
    margin-bottom: 64px;
    padding: 38px 24px;
  }

  .closing h2 {
    font-size: clamp(2.15rem, 9.7vw, 3rem);
    line-height: 0.98;
  }

  .closing .button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-block: 36px;
  }

  .footer-grid p:last-child {
    justify-self: start;
  }
}

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

  nav a {
    font-size: 0.61rem;
  }

  .page-hero h1,
  .contact-page h1,
  h1 {
    font-size: 2.25rem;
  }

  .button {
    gap: 10px;
    padding-inline: 14px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
