@font-face {
  font-family: "Geist";
  src: url("assets/fonts/Geist-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Happy Times";
  src: url("assets/fonts/happy-times-at-the-ikob.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

:root {
  --white: #ffffff;
  --panel: #f7faff;
  --panel-2: #f5f8fb;
  --ink: #222222;
  --muted: #56616d;
  --muted-2: #7a838b;
  --line: #dce4ec;
  --line-strong: #c8d4df;
  --brand-blue: #78c0ff;
  --product-navy: #00114e;
  --product-magenta: #cb1356;
  --faq-blue: #dcedfb;
  --hero-overlay: rgba(31, 31, 31, .62);
  --footer-ink: #111111;
  --green: #edf7ed;
  --blue: #eaf2fa;
  --yellow: #fff7e6;
  --pink: #f7e8ee;
  --purple: #f3ebf5;
  --peach: #f5e7e2;
  --black: #1f1f1f;
  --focus: #78c0ff;
  --radius-sm: 3px;
  --radius-md: 7px;
  --radius-lg: 10px;
  --shadow-dropdown: 0 3px 24px rgba(0, 0, 0, .12);
  --shadow-lift: 0 2px 6px rgba(0, 0, 0, .07);
  --shell: min(1180px, calc(100% - 48px));
  --wide: min(1400px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id],
main [id] {
  scroll-margin-top: 104px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Geist", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  font-weight: 450;
  line-height: 1.35;
  letter-spacing: 0;
}

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

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

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

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--focus) 55%, transparent);
  outline-offset: 3px;
}

.site-header {
  width: 100%;
  min-height: 78px;
  margin: 0 auto;
  padding-inline: max(24px, calc((100vw - 1400px) / 2));
  display: flex;
  align-items: center;
  gap: 28px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 190px;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
  color: #303234;
  font-size: 15px;
  font-weight: 620;
}

.main-nav > a,
.nav-trigger {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav-group {
  position: relative;
}

.nav-trigger,
.menu-toggle {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: 0;
}

.nav-trigger::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-3px);
}

.nav-dropdown {
  width: min(444px, calc(100vw - 32px));
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  display: grid;
  gap: 2px;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 28px rgba(36, 34, 32, .08);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.nav-group:hover .nav-dropdown,
.nav-group.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-dropdown a {
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: start;
  gap: 16px;
  padding: 11px 12px;
  border-radius: var(--radius-md);
  color: var(--muted);
}

.nav-dropdown a:hover {
  background: color-mix(in srgb, var(--brand-blue) 14%, var(--white));
  color: var(--ink);
}

.wordmark {
  width: auto;
  max-width: 150px;
  max-height: 32px;
}

.nav-dropdown .wordmark {
  width: 96px;
  max-width: 96px;
  max-height: 22px;
  object-fit: contain;
  object-position: left center;
}

.nav-dropdown a span {
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 520;
  line-height: 1.35;
}

.nav-dropdown a:hover span {
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  transition: background .2s ease, color .2s ease, transform .2s ease;
  white-space: nowrap;
}

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

.button-dark,
.button-primary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

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

.button-on-dark {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.button-glass {
  color: var(--white);
  background: rgba(255, 255, 255, .12);
}

.button-light:hover {
  background: color-mix(in srgb, var(--brand-blue) 13%, var(--white));
  border-color: color-mix(in srgb, var(--brand-blue) 38%, var(--line));
}

.button-small {
  min-height: 38px;
  padding: 8px 12px;
  font-size: 14px;
  gap: 18px;
}

.button-text {
  min-height: auto;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
}

.eyebrow-pill {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.sg-hero,
.sg-section {
  width: var(--shell);
  margin: 0 auto;
}

.sg-hero {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, .68fr);
  align-items: center;
  gap: 56px;
  padding: 78px 0 56px;
}

.sg-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(64px, 12vw, 154px);
  font-weight: 620;
  line-height: .82;
  letter-spacing: 0;
}

.sg-hero p {
  max-width: 720px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 25px);
}

.sg-section {
  padding: 72px 0;
}

.sg-section-head {
  max-width: 860px;
  margin-bottom: 28px;
}

.sg-section-head h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 620;
  line-height: .98;
  letter-spacing: 0;
}

.sg-section-head p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.logo-spec-grid,
.color-grid,
.pillar-grid,
.form-spec-grid,
.token-grid {
  display: grid;
  gap: 16px;
}

.logo-spec-grid {
  grid-template-columns: 1.3fr repeat(3, 1fr);
}

.logo-spec {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  background: var(--panel-2);
  border-radius: var(--radius-lg);
}

.logo-spec span,
.color-swatch span,
.scale-grid span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.primary-logo img {
  width: 230px;
}

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

.color-swatch {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  background: var(--swatch);
  border-radius: var(--radius-lg);
}

.color-swatch strong {
  font-size: 15px;
}

.component-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.ai-box {
  width: max-content;
  max-width: 100%;
  margin-top: 18px;
  padding: 16px;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-lg);
}

.ai-box span {
  display: block;
  margin-bottom: 10px;
  font-weight: 650;
}

.ai-box div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ai-box a {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
}

.ai-box img {
  width: 27px;
  height: 27px;
  object-fit: contain;
}

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

.scale-grid article {
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  background: var(--panel-2);
  border-radius: var(--radius-lg);
}

.scale-grid p {
  margin: 0;
}

.scale-h1,
.scale-h2,
.scale-h3 {
  font-family: "Happy Times", Georgia, serif;
  font-weight: 400;
}

.scale-h1 {
  font-size: 52px;
  line-height: .95;
}

.scale-h2 {
  font-size: 40px;
  line-height: 1;
}

.scale-h3 {
  font-size: 26px;
}

.scale-h4 {
  font-size: 23px;
  font-weight: 600;
}

.scale-h5 {
  font-size: 24px;
  font-weight: 700;
}

.scale-h6 {
  font-size: 18px;
  font-weight: 700;
}

.scale-wide {
  grid-column: span 3;
}

.scale-wide p,
.scale-wide small {
  max-width: 760px;
}

.spacing-grid {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 10px;
  align-items: end;
}

.spacing-grid span {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.spacing-grid span::before {
  content: "";
  display: block;
  height: var(--size);
  background: var(--black);
  border-radius: var(--radius-sm);
}

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

.token-grid article,
.rule-grid article,
.pillar-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.token-grid h3,
.rule-grid h3,
.pillar-card h3,
.contact-form h3,
.impact-card h3 {
  margin: 0 0 12px;
  font-size: 23px;
  line-height: 1.12;
}

.token-grid p,
.rule-grid p,
.pillar-card p,
.impact-card p,
.contact-form p {
  margin: 0 0 10px;
  color: var(--muted);
}

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

.pillar-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
}

.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 32px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  font-feature-settings: "liga";
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 40;
}

.icon-mark {
  width: max-content;
  margin-bottom: auto;
  padding: 0;
  color: rgba(36, 34, 32, .28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pillar-card > .icon-mark .material-symbols-outlined {
  font-size: 42px;
}

.pillar-card h3 {
  margin-top: 46px;
}

.tone-green {
  background: var(--green);
}

.tone-blue {
  background: var(--blue);
}

.tone-yellow {
  background: var(--yellow);
}

.tone-pink {
  background: var(--pink);
}

.impact-card {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 18px;
  background: var(--panel);
  border-radius: var(--radius-lg);
}

.impact-card img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.impact-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.impact-card h3 {
  max-width: 640px;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 620;
  letter-spacing: 0;
}

.impact-card p {
  max-width: 560px;
  margin-bottom: 22px;
  font-size: 18px;
}

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

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: var(--panel-2);
  border-radius: var(--radius-lg);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 650;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--line-strong);
  box-shadow: 0 2px 6px rgba(0, 0, 0, .07);
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form label span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.choice {
  grid-template-columns: 18px 1fr;
  align-items: center;
}

.choice input {
  width: 18px;
  min-height: 18px;
  padding: 0;
}

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

.rulebook-grid,
.anatomy-grid,
.usage-grid,
.layout-demo,
.do-dont-grid,
.story-rules,
.product-rule-grid,
.icon-grid,
.checklist-grid {
  display: grid;
  gap: 16px;
}

.rulebook-grid,
.usage-grid,
.layout-demo,
.story-rules,
.product-rule-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

.rulebook-card,
.anatomy-grid article,
.usage-grid article,
.layout-demo article,
.do-dont-grid article,
.story-rules article,
.product-rule-grid article {
  padding: 24px;
  background: var(--panel-2);
  border-radius: var(--radius-lg);
}

.rulebook-card.priority {
  background: var(--black);
  color: var(--white);
}

.rulebook-card span,
.anatomy-grid span,
.layout-demo span {
  display: inline-flex;
  width: max-content;
  margin-bottom: 34px;
  padding: 5px 9px;
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}

.rulebook-card.priority span {
  background: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .72);
}

.rulebook-card h3,
.anatomy-grid h3,
.usage-grid h3,
.layout-demo h3,
.do-dont-grid h3,
.story-rules h3,
.product-rule-grid h3 {
  margin: 0 0 12px;
  font-size: 23px;
  line-height: 1.12;
}

.rulebook-card p,
.anatomy-grid p,
.usage-grid p,
.layout-demo p,
.do-dont-grid p,
.story-rules p,
.product-rule-grid p,
.logo-spec p,
.color-swatch p {
  margin: 0;
  color: var(--muted);
}

.rulebook-card.priority p {
  color: rgba(255, 255, 255, .72);
}

.code-sample {
  margin: 18px 0 0;
  padding: 20px;
  overflow: auto;
  background: var(--panel-2);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  font-size: 14px;
  line-height: 1.5;
}

code {
  padding: 2px 5px;
  background: rgba(0, 0, 0, .06);
  border-radius: var(--radius-sm);
  font-size: .94em;
}

.code-sample code {
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.spec-table {
  display: grid;
  gap: 8px;
  margin-top: 20px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.spec-table > div {
  display: grid;
  grid-template-columns: .55fr 1.15fr 1.4fr;
  gap: 16px;
  padding: 14px 16px;
  background: var(--white);
}

.spec-table > div:nth-child(odd) {
  background: var(--panel-2);
}

.spec-table span {
  color: var(--muted);
}

.layout-demo article {
  min-height: 210px;
}

.layout-demo strong {
  display: block;
  margin: 0 0 12px;
  font-size: 34px;
  line-height: 1;
}

.product-rule-grid article {
  min-height: 240px;
}

.product-rule-grid .wordmark {
  margin-bottom: 44px;
}

.story-rules {
  margin-top: 16px;
}

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

.token-panel {
  display: grid;
  gap: 18px;
}

.token-panel h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.3;
}

.token-list {
  display: grid;
}

.token-spec {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) max-content;
  gap: 18px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.token-spec:last-child {
  border-bottom: 0;
}

.token-visual {
  width: 76px;
  height: 48px;
  display: block;
  background: var(--panel);
  box-shadow: inset 0 0 0 1px var(--line);
}

.token-spec h4 {
  margin: 0 0 4px;
  font-size: 18px;
  line-height: 1.2;
}

.token-spec p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.4;
}

.token-spec code {
  justify-self: end;
  white-space: nowrap;
}

.shadow-token-none {
  background: var(--white);
}

.shadow-token-lift {
  background: var(--white);
  box-shadow: var(--shadow-lift), inset 0 0 0 1px var(--line);
}

.shadow-token-dropdown {
  background: var(--white);
  box-shadow: var(--shadow-dropdown), inset 0 0 0 1px var(--line);
}

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

.icon-grid article {
  min-height: 138px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  background: var(--panel-2);
  border-radius: var(--radius-lg);
}

.icon-grid .material-symbols-outlined {
  margin-bottom: auto;
  color: rgba(36, 34, 32, .32);
  font-size: 34px;
}

.icon-grid strong {
  font-size: 14px;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.icon-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.checklist-grid label {
  min-height: 64px;
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--panel-2);
  border-radius: var(--radius-lg);
  color: var(--ink);
  font-weight: 610;
}

.checklist-grid input {
  width: 18px;
  height: 18px;
  accent-color: var(--black);
}

.logo-spec p,
.color-swatch p {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.35;
}

.site-footer {
  width: var(--wide);
  margin: 64px auto 24px;
}

.site-footer .ai-box {
  background: var(--faq-blue);
  color: var(--ink);
  border-color: transparent;
}

.site-footer .ai-box span {
  color: var(--ink);
}

.site-footer .ai-box a {
  background: transparent;
  border-radius: 0;
  overflow: visible;
}

.site-footer .ai-box img,
.ai-box-preview img {
  border-radius: 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 70px;
  padding: 48px 0;
}

.footer-logo img {
  width: 182px;
}

.footer-main nav {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-main h2 {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-main nav[aria-label="Explore"] h2 {
  font-weight: 500;
  font-variation-settings: "wght" 500;
}

.footer-main nav a {
  color: var(--ink);
  font-weight: 560;
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  padding: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

.footer-contact {
  grid-column: 1;
  grid-row: 1;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  justify-self: start;
}

.footer-copyright {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  text-align: right;
}

.footer-bottom a {
  color: var(--ink);
  font-weight: 400;
  text-decoration: none;
}

.footer-bottom .linkedin {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.linkedin img {
  width: 16px;
  height: 16px;
  display: block;
  margin-left: 0;
}

main {
  overflow: hidden;
}

.hero,
.page-hero,
.section-intro,
.statement,
.card-grid,
.logo-section,
.feature-section,
.story-band,
.story-grid,
.founder-grid,
.faq-section,
.closing-cta,
.solution-list,
.story-hero,
.story-section,
.back-link,
.contact-shell,
.legal-flow {
  width: var(--wide);
  margin-left: auto;
  margin-right: auto;
}

.hero {
  padding: 72px 0 96px;
}

.split-hero,
.product-hero,
.feature-section,
.story-hero,
.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 72px;
  align-items: center;
}

.product-hero {
  grid-template-columns: minmax(0, .88fr) minmax(0, .72fr);
}

.hero-copy {
  display: grid;
  justify-items: start;
  gap: 24px;
}

.hero-copy .wordmark {
  max-width: 190px;
  max-height: 38px;
  margin-bottom: 8px;
}

.hero h1,
.page-hero h1,
.story-hero h1 {
  margin: 0;
  max-width: 920px;
  font-family: "Happy Times", Georgia, serif;
  font-size: clamp(56px, 8vw, 112px);
  font-weight: 400;
  line-height: .96;
  letter-spacing: 0;
}

.product-hero h1,
.story-hero h1 {
  font-size: clamp(50px, 6vw, 86px);
}

.hero h1 em,
.section-intro h2 em {
  font-style: italic;
}

.hero p,
.page-hero p,
.story-hero > div > p:not(.eyebrow),
.section-intro p,
.statement p,
.feature-section p,
.closing-cta p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.45;
}

.hero-image,
.feature-section > img,
.story-hero-image {
  width: 100%;
  aspect-ratio: 1.34 / 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.product-hero .hero-image {
  padding: 28px;
  object-fit: contain;
  background: var(--panel-2);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.logo-section {
  display: grid;
  gap: 28px;
  padding: 0 0 96px;
  text-align: center;
}

.logo-section p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
}

.logo-strip {
  --logo-gap: 72px;
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo-strip::before,
.logo-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: clamp(72px, 12vw, 180px);
  pointer-events: none;
}

.logo-strip::before {
  left: 0;
  background: linear-gradient(90deg, var(--white) 0%, rgba(255, 255, 255, .92) 24%, rgba(255, 255, 255, 0) 100%);
}

.logo-strip::after {
  right: 0;
  background: linear-gradient(270deg, var(--white) 0%, rgba(255, 255, 255, .92) 24%, rgba(255, 255, 255, 0) 100%);
}

.logo-track {
  display: flex;
  position: relative;
  z-index: 1;
  width: max-content;
  animation: logo-marquee 32s linear infinite;
  will-change: transform;
}

.logo-set {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: var(--logo-gap);
  padding-right: var(--logo-gap);
}

.logo-strip:hover .logo-track {
  animation-play-state: paused;
}

.logo-strip img {
  flex: 0 0 auto;
  max-width: 118px;
  max-height: 44px;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

@keyframes logo-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-track {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    animation: none;
  }

  .logo-set {
    flex-wrap: wrap;
    justify-content: center;
    padding-right: 0;
  }

  .logo-set[aria-hidden="true"] {
    display: none;
  }
}

.section-intro,
.page-hero {
  padding: 96px 0 48px;
}

.section-intro-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.section-intro h2,
.statement h2,
.feature-section h2,
.faq-section h2,
.closing-cta h2 {
  margin: 0;
  max-width: 1040px;
  font-family: "Happy Times", Georgia, serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: 0;
}

.section-intro p {
  margin-top: 22px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.card-grid.compact,
.product-grid,
.founder-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.solution-grid,
.use-case-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.five-grid {
  width: 100%;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 40px;
}

.card {
  min-height: 240px;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 24px;
  background: var(--panel-2);
  border-radius: var(--radius-lg);
}

.card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 25px;
  font-weight: 720;
  line-height: 1.16;
  letter-spacing: 0;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

.card > .material-symbols-outlined {
  margin-bottom: 24px;
  color: rgba(36, 34, 32, .32);
  font-size: 38px;
}

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

.card-ink h3,
.card-ink p {
  color: var(--white);
}

.card-ink .eyebrow {
  color: rgba(255, 255, 255, .64);
}

.card-image {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.product-card,
.founder-card,
.story-card {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lift);
}

.product-card {
  padding: 16px;
}

.product-card .card-image {
  padding: 18px;
  object-fit: contain;
  background: var(--panel-2);
}

.product-card h3,
.product-card p,
.product-card .button-text {
  margin-left: 8px;
  margin-right: 8px;
}

.statement {
  display: grid;
  gap: 24px;
  justify-items: center;
  padding: 112px 0;
  text-align: center;
}

.statement h2 {
  max-width: 960px;
}

.statement p {
  max-width: 760px;
}

.operating-loop {
  justify-items: stretch;
  text-align: left;
}

.operating-loop h2 {
  max-width: 1180px;
}

.story-band {
  padding: 112px 0 0;
}

.story-band .section-intro {
  width: 100%;
  padding-top: 0;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.story-grid.library {
  padding-bottom: 96px;
}

.story-card {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 16px;
  border-radius: var(--radius-lg);
  transition: transform .2s ease, box-shadow .2s ease;
}

.story-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-dropdown);
}

.story-card > img:first-child {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.story-card span {
  width: max-content;
  padding: 4px 10px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 560;
  line-height: 1.2;
}

.story-card h2,
.story-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.18;
  letter-spacing: 0;
}

.story-card b {
  align-self: end;
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.founder-card {
  padding: 16px;
}

.founder-card .card-image {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.founder-card h3,
.founder-card p {
  margin-left: 8px;
  margin-right: 8px;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(220px, .36fr) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
  padding: 112px 0 0;
}

.faq-section h2 {
  font-size: clamp(42px, 5vw, 66px);
}

.closing-cta {
  display: grid;
  justify-items: start;
  gap: 24px;
  margin-top: 112px;
  padding: 48px;
  background: var(--panel);
  border-radius: var(--radius-lg);
}

.closing-cta h2 {
  max-width: 980px;
}

.closing-cta .fine-print {
  margin-top: 8px;
  font-size: 14px;
}

.page-hero {
  display: grid;
  justify-items: center;
  text-align: center;
}

.page-hero h1 {
  max-width: 1000px;
}

.page-hero p {
  margin-top: 24px;
}

.solution-list {
  display: grid;
  gap: 24px;
}

.solution-card {
  display: grid;
  grid-template-columns: minmax(260px, .46fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
}

.solution-card > img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.solution-card h2 {
  max-width: 780px;
  margin: 0 0 14px;
  font-family: "Happy Times", Georgia, serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.08;
}

.solution-card p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

.powered {
  display: block;
  margin: 24px 0 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: .08em;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  align-items: center;
}

.feature-section {
  padding: 96px 0;
}

.feature-section:nth-of-type(even) {
  background: transparent;
}

.feature-section h2 {
  margin-bottom: 20px;
}

.back-link {
  display: block;
  width: var(--wide);
  padding: 34px 0 0;
  color: var(--muted);
  font-weight: 620;
}

.story-hero {
  padding: 48px 0 72px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.stat-grid div {
  padding: 16px;
  background: var(--panel-2);
  border-radius: var(--radius-lg);
}

.stat-grid strong,
.stat-grid span {
  display: block;
}

.stat-grid strong {
  margin-bottom: 6px;
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(220px, .32fr) minmax(0, 1fr);
  gap: 72px;
  padding: 72px 0;
}

.story-section h2 {
  position: sticky;
  top: 24px;
  align-self: start;
  margin: 0;
  font-family: "Happy Times", Georgia, serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.08;
}

.intro-story ul,
.story-flow {
  display: grid;
  gap: 16px;
}

.story-flow {
  align-content: start;
  padding: 24px;
  background: var(--panel-2);
  border-radius: var(--radius-lg);
}

.story-section p,
.story-section li {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

.story-section h3 {
  margin: 12px 0 0;
  font-size: 23px;
  line-height: 1.2;
}

.data-line {
  color: var(--ink) !important;
  font-weight: 720;
}

.contact-shell {
  padding: 72px 0 96px;
  grid-template-columns: minmax(0, 780px);
  justify-content: center;
}

.contact-shell .contact-form {
  background: var(--panel-2);
}

.contact-form h2 {
  margin: 0;
  font-family: "Happy Times", Georgia, serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.08;
}

.legal-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding: 0 0 96px;
}

.legal-flow > article {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 24px;
  background: var(--panel-2);
  border-radius: var(--radius-lg);
}

.legal-flow h2 {
  margin: 0;
  font-family: "Happy Times", Georgia, serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.08;
}

.legal-flow h3 {
  margin: 28px 0 6px;
  font-size: 23px;
  line-height: 1.2;
}

.legal-flow p {
  max-width: 900px;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.legal-flow > h2 {
  margin: 0 0 10px;
  font-family: "Happy Times", Georgia, serif;
  font-size: 54px;
  font-weight: 400;
}

.legal-page .legal-flow:not(:has(article)) {
  grid-template-columns: minmax(0, 900px);
  justify-content: center;
}

/* Style guide page must demonstrate the system it documents. */
.style-guide-page {
  --guide-left: minmax(280px, .33fr);
  --guide-gap: 72px;
}

  .style-guide-page .sg-hero {
  min-height: 0;
  display: block;
  width: var(--wide);
  padding: 48px 0 72px;
  text-align: left;
}

.style-guide-page .sg-hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: "Happy Times", Georgia, serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 1;
}

.style-guide-page .sg-hero p {
  max-width: 780px;
  margin: 18px 0 0;
  font-size: 18px;
  line-height: 1.45;
}

.style-guide-page .sg-section {
  width: var(--wide);
  display: grid;
  grid-template-columns: var(--guide-left) minmax(0, 1fr);
  column-gap: var(--guide-gap);
  row-gap: 24px;
  align-items: start;
  padding: 0;
}

.style-guide-page .sg-section-head {
  max-width: none;
  margin: 0;
}

.style-guide-page .sg-section-head h2 {
  margin: 0;
  font-family: "Geist", ui-sans-serif, system-ui, sans-serif;
  font-size: 23px;
  font-weight: 650;
  line-height: 1.3;
}

.style-guide-page .sg-section-head p:not(.eyebrow) {
  max-width: 340px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.35;
}

.style-guide-page .sg-section > :not(.sg-section-head) {
  grid-column: 2;
}

.style-guide-page .rulebook-grid,
.style-guide-page .logo-spec-grid,
.style-guide-page .color-grid,
.style-guide-page .font-system-grid,
.style-guide-page .usage-grid,
.style-guide-page .layout-demo,
.style-guide-page .story-rules,
.style-guide-page .product-rule-grid,
.style-guide-page .icon-grid,
.style-guide-page .checklist-grid {
  gap: 18px;
}

.style-guide-page .sg-section + .sg-section {
  margin-top: 112px;
}

.style-guide-page .rulebook-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.style-guide-page .rulebook-card.priority {
  min-height: 0;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
}

.style-guide-page .rulebook-card.priority span {
  background: var(--black);
  color: var(--white);
}

.style-guide-page .rulebook-card.priority p {
  color: var(--muted);
}

.style-guide-page .logo-spec-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.style-guide-page .logo-spec {
  min-height: 220px;
  background: var(--white);
}

.color-system,
.color-family {
  display: grid;
  gap: 28px;
}

.color-system {
  gap: 56px;
}

.color-family-head {
  display: grid;
  grid-template-columns: minmax(180px, .28fr) minmax(0, 1fr);
  gap: 24px;
  align-items: baseline;
}

.color-family-head h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.3;
}

.color-family-head p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.4;
}

.style-guide-page .color-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.style-guide-page .color-grid-support {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: calc(50% - 12px);
}

.style-guide-page .color-swatch {
  min-height: 0;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 0;
  background: transparent !important;
  border-radius: 0;
}

.style-guide-page .color-swatch::before {
  content: "";
  display: block;
  width: 100%;
  height: 112px;
  margin-bottom: 0;
  background: var(--swatch);
  border-radius: var(--radius-md);
}

.style-guide-page .color-swatch.swatch-border::before {
  box-shadow: inset 0 0 0 1px var(--line);
}

.style-guide-page .color-swatch strong {
  font-size: 16px;
  line-height: 1.2;
}

.style-guide-page .color-swatch p {
  margin-top: 0;
  font-size: 15px;
  line-height: 1.35;
}

.style-guide-page .eyebrow {
  display: none;
}

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

.font-system-grid article {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 0;
  background: var(--white);
  border-radius: 0;
}

.font-system-grid span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.font-system-grid h3 {
  margin: 0;
  font-size: 64px;
  line-height: 1;
}

.font-geist {
  font-family: "Geist", ui-sans-serif, system-ui, sans-serif;
  font-weight: 650;
}

.font-happy {
  font-family: "Happy Times", Georgia, serif;
  font-weight: 400;
}

.font-system-grid p {
  margin: 0;
  color: var(--muted);
}

.type-sample-grid {
  display: grid;
  gap: 24px;
  justify-items: start;
  padding: 6px 0;
}

.type-sample-grid h1,
.type-sample-grid h2,
.type-sample-grid h3 {
  margin: 0;
  font-family: "Happy Times", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
}

.type-sample-grid h1 {
  font-size: 64px;
  line-height: 1;
}

.type-sample-grid h2 {
  font-size: 45px;
  line-height: 1.15;
}

.type-sample-grid h3 {
  font-size: 32px;
  line-height: 1.25;
}

.type-sample-grid h4 {
  margin: 4px 0 0;
  font-size: 23px;
  font-weight: 680;
  line-height: 1.3;
}

.text-pair {
  display: grid;
  grid-template-columns: minmax(120px, max-content) minmax(120px, max-content);
  gap: clamp(28px, 4vw, 52px);
  align-items: baseline;
  color: var(--muted);
}

.text-pair a {
  color: var(--ink);
  font-weight: 680;
  text-decoration: none;
}

.text-pair a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.large-text {
  font-size: 23px;
  line-height: 1.3;
}

.body-text {
  font-size: 16px;
  line-height: 1.35;
}

.small-text {
  font-size: 14px;
  line-height: 1.35;
}

.button-reference-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}

.button-reference-grid .button {
  width: auto;
}

.button-reference-grid .button:has(.material-symbols-outlined),
.button:has(.material-symbols-outlined) {
  gap: 24px;
}

.button .material-symbols-outlined {
  font-size: 21px;
  font-variation-settings: "FILL" 0, "wght" 420, "GRAD" 0, "opsz" 24;
}

.style-guide-page .spacing-grid {
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 12px;
}

.style-guide-page .spacing-grid span {
  min-height: 108px;
  padding: 0 0 2px;
}

.spacing-rules {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.spacing-rules article {
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.spacing-rules h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.1;
}

.spacing-rules p {
  margin: 0;
  color: var(--muted);
}

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

.component-catalogue article {
  min-height: 172px;
  display: grid;
  grid-template-columns: minmax(96px, .34fr) minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  gap: 16px 24px;
  padding: 0 0 18px;
  background: transparent;
  border-bottom: 1px solid var(--line);
}

.component-catalogue span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.35;
}

.component-catalogue h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.3;
}

.component-catalogue p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.42;
}

.component-catalogue code {
  grid-column: 2;
  width: max-content;
  max-width: 100%;
}

.component-sample-stack {
  display: grid;
  gap: 48px;
}

.component-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.style-guide-page #cards .component-card-grid {
  margin-bottom: 24px;
}

.article-card {
  display: grid;
  gap: 18px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
}

.article-card img {
  width: 100%;
  aspect-ratio: 1.6 / 1;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.article-card span {
  width: max-content;
  padding: 4px 10px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  font-size: 14px;
  line-height: 1.2;
}

.article-card h4 {
  margin: 0;
  font-size: 23px;
  line-height: 1.3;
}

.faq-component {
  display: grid;
  grid-template-columns: minmax(180px, .42fr) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.faq-aside {
  display: grid;
  gap: 24px;
}

.faq-aside h3 {
  font-family: "Happy Times", Georgia, serif;
  font-size: 45px;
  font-weight: 400;
  line-height: 1.15;
}

.faq-aside p {
  margin: 0;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  background: var(--faq-blue);
  border-radius: var(--radius-lg);
}

.faq-item button {
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  font-weight: 680;
}

.faq-item button:not(:has(.material-symbols-outlined))::after {
  content: "+";
  flex: 0 0 auto;
  font-size: 28px;
  font-weight: 420;
  line-height: 1;
}

.faq-item .material-symbols-outlined {
  font-size: 25px;
}

.faq-answer {
  display: none;
  padding: 0 24px 22px;
  color: var(--muted);
}

.faq-answer p {
  margin: 0;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.faq-item.is-open button:not(:has(.material-symbols-outlined))::after {
  transform: rotate(45deg);
}

.faq-item.is-open button .material-symbols-outlined {
  transform: rotate(45deg);
}

.action-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px;
  background: var(--faq-blue);
  border-radius: var(--radius-lg);
}

.action-strip h3 {
  margin: 0 0 6px;
}

.action-strip p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.style-guide-page .anatomy-grid article,
.style-guide-page .usage-grid article,
.style-guide-page .layout-demo article,
.style-guide-page .do-dont-grid article,
.style-guide-page .story-rules article,
.style-guide-page .product-rule-grid article,
.style-guide-page .checklist-grid label {
  border-radius: var(--radius-lg);
}

.style-guide-page .font-system-grid article,
.style-guide-page .anatomy-grid article,
.style-guide-page .usage-grid article,
.style-guide-page .layout-demo article,
.style-guide-page .do-dont-grid article,
.style-guide-page .story-rules article,
.style-guide-page .product-rule-grid article,
.style-guide-page .spacing-rules article,
.style-guide-page .icon-grid article,
.style-guide-page .impact-card {
  background: var(--white);
}

.style-guide-page .impact-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lift);
}

.style-guide-page .contact-form {
  padding: 0;
  background: var(--white);
}

.form-reference-stack {
  display: grid;
  gap: 48px;
  align-items: start;
}

.form-reference-stack h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.35;
}

.form-demo-field {
  display: grid;
  gap: 12px;
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.35;
}

.form-demo-control {
  width: 100%;
  min-height: 44px;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  font-size: 16px;
  line-height: 1.35;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.form-demo-control:focus {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-lift);
  outline: none;
}

.form-demo-control::placeholder {
  color: var(--muted-2);
}

.form-demo-textarea {
  min-height: 180px;
  resize: vertical;
}

.field-hint {
  margin: -36px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.form-reference-selectables {
  gap: 24px;
}

.selectable-demo {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.35;
}

.selectable-demo input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--focus);
}

.style-guide-page .faq-item,
.style-guide-page .action-strip {
  background: var(--faq-blue);
}

.footer-system-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding: 24px;
  color: var(--white);
  background: var(--black);
  border-radius: var(--radius-lg);
}

.footer-system-preview h3 {
  margin: 0 0 6px;
  color: var(--white);
  font-size: 23px;
  line-height: 1.3;
}

.footer-system-preview p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, .68);
}

.footer-system-preview .ai-box {
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.footer-system-preview .ai-box span {
  color: var(--white);
}

@media (max-width: 980px) {
  .site-header {
    min-height: 70px;
  }

  .brand img {
    width: 154px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    display: none;
    margin: 0;
    padding: 16px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-dropdown);
  }

  body.nav-open .main-nav {
    display: grid;
    gap: 8px;
  }

  .header-cta {
    display: none;
  }

  .nav-dropdown {
    width: auto;
    position: static;
    visibility: visible;
    opacity: 1;
    transform: none;
    box-shadow: none;
    margin-top: 8px;
  }

  .nav-dropdown a {
    grid-template-columns: 96px 1fr;
    align-items: start;
    gap: 12px;
  }

  .sg-hero,
  .impact-card,
  .footer-main,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .sg-hero {
    min-height: 0;
    gap: 28px;
    padding-top: 48px;
  }

  .logo-spec-grid,
  .color-grid,
  .scale-grid,
  .pillar-grid,
  .rule-grid,
  .form-spec-grid,
  .rulebook-grid,
  .anatomy-grid,
  .usage-grid,
  .layout-demo,
  .do-dont-grid,
  .story-rules,
  .product-rule-grid,
  .icon-grid,
  .checklist-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .scale-wide {
    grid-column: span 2;
  }

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

  .footer-bottom p,
  .footer-bottom p:nth-child(2) {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
    text-align: left;
  }

  .footer-bottom .footer-contact {
    grid-row: 1;
  }

  .footer-bottom .footer-copyright {
    grid-row: 2;
  }
}

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

  .site-header {
    padding-inline: 16px;
  }

  .sg-hero h1 {
    font-size: 64px;
  }

  .sg-section {
    padding: 48px 0;
  }

  .logo-spec-grid,
  .color-grid,
  .scale-grid,
  .pillar-grid,
  .rule-grid,
  .form-spec-grid,
  .rulebook-grid,
  .anatomy-grid,
  .usage-grid,
  .layout-demo,
  .do-dont-grid,
  .story-rules,
  .product-rule-grid,
  .icon-grid,
  .checklist-grid {
    grid-template-columns: 1fr;
  }

  .spec-table > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

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

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

  .component-row {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .style-guide-page {
    --guide-gap: 28px;
  }

  .style-guide-page .sg-hero,
  .style-guide-page .sg-section {
    grid-template-columns: 1fr;
  }

.style-guide-page .sg-hero {
    padding: 44px 0 64px;
  }

  .style-guide-page .sg-section {
    gap: 22px;
    padding: 0;
  }

  .style-guide-page .sg-section-head {
    position: static;
  }

  .style-guide-page .sg-section-head p:not(.eyebrow) {
    max-width: 720px;
  }

  .style-guide-page .sg-section > :not(.sg-section-head) {
    grid-column: 1;
  }

  .spacing-rules {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) and (min-width: 761px) {
  .style-guide-page #cards .component-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .style-guide-page .pillar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .style-guide-page .icon-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .faq-component {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .token-system {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .style-guide-page .rulebook-grid,
  .style-guide-page .logo-spec-grid,
  .style-guide-page .color-grid,
  .style-guide-page .font-system-grid,
  .style-guide-page .usage-grid,
  .style-guide-page .layout-demo,
  .style-guide-page .story-rules,
  .style-guide-page .product-rule-grid,
  .style-guide-page .icon-grid,
  .style-guide-page .checklist-grid,
  .component-catalogue,
  .component-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .color-family-head {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .style-guide-page .color-grid-support {
    max-width: none;
  }

  .style-guide-page .spacing-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .faq-component {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

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

@media (max-width: 640px) {
  .style-guide-page .sg-hero h1 {
    font-size: 64px;
    line-height: 1;
  }

  .style-guide-page .rulebook-grid,
  .style-guide-page .logo-spec-grid,
  .style-guide-page .color-grid,
  .style-guide-page .font-system-grid,
  .style-guide-page .usage-grid,
  .style-guide-page .layout-demo,
  .style-guide-page .story-rules,
  .style-guide-page .product-rule-grid,
  .style-guide-page .icon-grid,
  .style-guide-page .checklist-grid,
  .style-guide-page .anatomy-grid,
  .style-guide-page .do-dont-grid,
  .component-catalogue,
  .token-system {
    grid-template-columns: 1fr;
  }

  .component-catalogue article {
    grid-template-columns: 1fr;
  }

  .component-catalogue code {
    grid-column: 1;
  }

  .token-spec {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .token-visual {
    width: 56px;
    height: 40px;
  }

  .token-spec code {
    grid-column: 2;
    justify-self: start;
  }

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

  .style-guide-page .spacing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .button-reference-grid {
    align-items: stretch;
  }

  .button-reference-grid .button {
    width: 100%;
  }

  .text-pair {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 1180px) {
  .card-grid,
  .story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 980px) {
  .site-header > .button {
    display: none;
  }

  .hero,
  .page-hero,
  .section-intro,
  .statement,
  .feature-section,
  .story-band,
  .faq-section,
  .closing-cta {
    padding-top: 72px;
  }

  .split-hero,
  .product-hero,
  .feature-section,
  .story-hero,
  .contact-shell,
  .solution-card,
  .story-section,
  .faq-section,
  .legal-flow {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero {
    padding-bottom: 72px;
  }

  .story-section h2 {
    position: static;
  }

  .section-intro-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-main {
    gap: 36px;
  }
}

@media (max-width: 640px) {
  .hero h1,
  .page-hero h1,
  .story-hero h1 {
    font-size: 56px;
  }

  .section-intro h2,
  .statement h2,
  .feature-section h2,
  .faq-section h2,
  .closing-cta h2,
  .solution-card h2,
  .story-section h2 {
    font-size: 42px;
  }

  .hero p,
  .page-hero p,
  .story-hero > div > p:not(.eyebrow),
  .section-intro p,
  .statement p,
  .feature-section p,
  .closing-cta p,
  .card p,
  .solution-card p,
  .story-section p,
  .story-section li {
    font-size: 16px;
  }

  .card-grid,
  .card-grid.compact,
  .product-grid,
  .solution-grid,
  .use-case-grid,
  .founder-grid,
  .story-grid,
  .five-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .card,
  .closing-cta,
  .story-flow {
    padding: 20px;
  }

  .logo-strip {
    --logo-gap: 42px;
  }
}

/* Style guide presentation: centered title, utility rows, flat swatches. */
.style-guide-page {
  --wide: min(1366px, calc(100% - 74px));
  --guide-left: 321px;
  --guide-gap: 72px;
}

.style-guide-page main {
  display: flex;
  flex-direction: column;
}

.style-guide-page .sg-hero {
  order: 0;
  width: var(--wide);
  padding: 96px 0;
  text-align: center;
}

.style-guide-page .sg-hero h1 {
  max-width: none;
  font-family: "Happy Times", Georgia, serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 1;
}

.style-guide-page .sg-hero p {
  max-width: 720px;
  margin: 24px auto 0;
}

.style-guide-page .sg-section {
  width: var(--wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: var(--guide-left) minmax(0, 1fr);
  column-gap: var(--guide-gap);
  row-gap: 24px;
  align-items: start;
  padding: 0;
}

.style-guide-page .sg-section + .sg-section,
.style-guide-page .sg-section {
  margin-top: 96px;
}

.style-guide-page #colors {
  order: 1;
  margin-top: 0;
}

.style-guide-page #typography {
  order: 2;
}

.style-guide-page #buttons {
  order: 3;
}

.style-guide-page #forms {
  order: 4;
}

.style-guide-page #form-selectables {
  order: 5;
}

.style-guide-page #font-system {
  order: 6;
}

.style-guide-page #components {
  order: 7;
}

.style-guide-page #header-footer {
  order: 8;
}

.style-guide-page #faq-cta {
  order: 9;
}

.style-guide-page #layout {
  order: 10;
}

.style-guide-page #spacing {
  order: 11;
}

.style-guide-page #radii {
  order: 12;
}

.style-guide-page #icons {
  order: 13;
}

.style-guide-page #cards {
  order: 14;
}

.style-guide-page #impact-stories {
  order: 15;
}

.style-guide-page #products {
  order: 16;
}

.style-guide-page #tone-language {
  order: 17;
}

.style-guide-page #quick-rules {
  order: 18;
}

.style-guide-page #page-anatomy {
  order: 19;
}

.style-guide-page #logos {
  order: 20;
}

.style-guide-page #qa {
  order: 21;
}

.style-guide-page .sg-section-head h2 {
  font-family: "Geist", ui-sans-serif, system-ui, sans-serif;
  font-size: 23px;
  font-weight: 650;
  line-height: 1.3;
}

.style-guide-page .sg-section-head p:not(.eyebrow) {
  max-width: 310px;
  margin-top: 14px;
  color: rgba(36, 34, 32, .72);
  font-size: 16px;
  line-height: 1.35;
}

.style-guide-page .sg-section > :not(.sg-section-head) {
  grid-column: 2;
}

.style-guide-page .color-system {
  gap: 48px;
}

.style-guide-page .color-family {
  gap: 16px;
}

.style-guide-page .color-family-head {
  display: block;
}

.style-guide-page .color-family-head h3 {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.35;
}

.style-guide-page .color-family-head p {
  max-width: 760px;
  font-size: 14px;
  line-height: 1.45;
}

.style-guide-page .color-grid,
.style-guide-page .color-grid-support {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: none;
}

.style-guide-page .color-grid-support .color-swatch:nth-child(n + 3) {
  display: none;
}

.style-guide-page .color-swatch {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 0;
  background: transparent !important;
  border-radius: 0;
}

.style-guide-page .color-swatch::before {
  width: 100%;
  justify-self: stretch;
  height: 100px;
  border-radius: 0;
}

.style-guide-page .color-swatch span {
  margin-top: 10px;
  color: rgba(36, 34, 32, .72);
  font-size: 14px;
  font-weight: 500;
}

.style-guide-page .color-swatch strong {
  font-size: 13px;
  font-weight: 650;
  line-height: 1.2;
}

.style-guide-page .color-swatch p {
  max-width: 210px;
  color: rgba(36, 34, 32, .62);
  font-size: 13px;
  line-height: 1.35;
}

.style-guide-page .rulebook-card.priority,
.style-guide-page .logo-spec,
.style-guide-page .font-system-grid article,
.style-guide-page .anatomy-grid article,
.style-guide-page .usage-grid article,
.style-guide-page .layout-demo article,
.style-guide-page .do-dont-grid article,
.style-guide-page .story-rules article,
.style-guide-page .product-rule-grid article,
.style-guide-page .spacing-rules article,
.style-guide-page .icon-grid article,
.style-guide-page .checklist-grid label {
  border-color: var(--line);
  border-radius: var(--radius-md);
}

@media (max-width: 980px) {
  .style-guide-page {
    --wide: min(100% - 48px, 1366px);
    --guide-left: minmax(0, 1fr);
    --guide-gap: 28px;
  }

  .style-guide-page .sg-section {
    grid-template-columns: 1fr;
  }

  .style-guide-page .sg-section > :not(.sg-section-head) {
    grid-column: 1;
  }

  .style-guide-page .sg-section-head p:not(.eyebrow) {
    max-width: 720px;
  }

  .style-guide-page .color-grid,
  .style-guide-page .color-grid-support {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .style-guide-page {
    --wide: min(100% - 32px, 1366px);
  }

  .style-guide-page .sg-hero {
    padding: 64px 0 72px;
  }

  .style-guide-page .sg-section + .sg-section,
  .style-guide-page .sg-section {
    margin-top: 72px;
  }

  .style-guide-page #colors {
    margin-top: 0;
  }

  .style-guide-page .color-grid,
  .style-guide-page .color-grid-support {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .style-guide-page .color-swatch::before {
    border-radius: 0;
  }
}

/* ATP site-wide finishing pass: one shared system across runtime pages. */
:root {
  --section-y: clamp(72px, 8vw, 112px);
  --section-y-tight: clamp(48px, 6vw, 80px);
  --grid-gap: clamp(18px, 2.2vw, 28px);
}

.site-header {
  min-height: 76px;
  background: rgba(255, 255, 255, .97);
  box-shadow: none;
}

.main-nav {
  color: var(--ink);
  font-size: 14px;
  font-weight: 620;
}

.site-header > .button,
.header-cta {
  min-height: 46px;
  padding-inline: 17px;
  font-size: 14px;
}

.button {
  border-radius: var(--radius-md);
  box-shadow: none;
}

.button-dark,
.button-primary,
.button-on-dark {
  box-shadow: none;
}

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

.button-dark:hover,
.button-primary:hover {
  background: #2c2c2c;
  border-color: #2c2c2c;
}

.button-text:hover {
  transform: none;
}

.hero,
.page-hero {
  padding-top: clamp(64px, 7vw, 104px);
  padding-bottom: clamp(72px, 8vw, 112px);
}

.split-hero,
.product-hero {
  gap: clamp(42px, 6vw, 84px);
}

.hero-copy {
  gap: 22px;
}

.hero h1,
.page-hero h1,
.story-hero h1 {
  color: var(--ink);
}

.hero p,
.page-hero p,
.story-hero > div > p:not(.eyebrow),
.section-intro p,
.statement p,
.feature-section p,
.closing-cta p,
.card p,
.solution-card p,
.story-section p,
.story-section li {
  color: var(--muted);
}

.hero-image,
.feature-section > img,
.story-hero-image,
.card-image,
.solution-card > img,
.story-card > img:first-child {
  border-radius: var(--radius-lg);
}

.product-hero .hero-image {
  min-height: 420px;
  padding: clamp(20px, 4vw, 42px);
  background: var(--panel);
}

.logo-section {
  padding-bottom: var(--section-y);
}

.section-intro,
.statement,
.feature-section,
.story-band,
.faq-section,
.closing-cta {
  padding-top: var(--section-y);
}

.section-intro {
  padding-bottom: clamp(28px, 4vw, 48px);
}

.section-intro-row {
  align-items: flex-end;
}

.card-grid,
.card-grid.compact,
.product-grid,
.solution-grid,
.use-case-grid,
.founder-grid,
.story-grid,
.five-grid,
.stat-grid,
.solution-list {
  gap: var(--grid-gap);
}

.card,
.legal-flow > article,
.stat-grid div,
.story-flow {
  background: var(--panel-2);
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: none;
}

.card {
  min-height: 248px;
  padding: clamp(22px, 2.4vw, 30px);
}

.card h3 {
  font-size: clamp(22px, 2vw, 27px);
  font-weight: 700;
}

.card > .material-symbols-outlined,
.icon-mark,
.icon-grid .material-symbols-outlined {
  color: rgba(34, 34, 34, .28);
}

.product-card,
.founder-card,
.story-card,
.solution-card,
.article-card,
.impact-card {
  background: var(--white);
  border: 0;
  box-shadow: none;
}

.product-card {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 0;
}

.product-card .card-image {
  padding: clamp(18px, 3vw, 28px);
  background: var(--panel);
}

.product-card h3,
.product-card p,
.product-card .button-text {
  margin-left: 0;
  margin-right: 0;
}

.product-card:hover,
.story-card:hover,
.solution-card:hover,
.article-card:hover {
  box-shadow: var(--shadow-lift);
}

.statement {
  padding-bottom: var(--section-y-tight);
}

.statement > div {
  width: 100%;
  display: grid;
  justify-items: center;
  gap: 22px;
}

.statement .card-grid {
  width: 100%;
  margin-top: 18px;
  text-align: left;
}

.feature-section {
  align-items: center;
  gap: clamp(36px, 6vw, 72px);
}

.feature-section > img {
  aspect-ratio: 1.45 / 1;
  background: var(--panel);
}

.feature-section > div {
  display: grid;
  gap: 20px;
  align-content: center;
}

.feature-section h2 {
  margin-bottom: 0;
}

.story-band {
  padding-bottom: 0;
}

.story-card {
  padding: 0;
}

.story-card > img:first-child,
.story-card span,
.story-card h2,
.story-card h3,
.story-card p,
.story-card b,
.story-card .wordmark {
  margin-left: 0;
  margin-right: 0;
}

.story-card span {
  border: 0;
  background: var(--panel-2);
}

.solution-card {
  grid-template-columns: minmax(280px, .48fr) minmax(0, 1fr);
  padding: 0;
}

.solution-card > div {
  padding: clamp(12px, 2vw, 24px) clamp(8px, 2vw, 20px) clamp(12px, 2vw, 24px) 0;
}

.powered {
  color: var(--muted);
  letter-spacing: 0;
  text-transform: none;
}

.faq-section {
  grid-template-columns: minmax(220px, .34fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 72px);
}

.faq-item {
  background: var(--faq-blue);
  border: 0;
  box-shadow: none;
}

.faq-item + .faq-item {
  margin-top: 0;
}

.faq-item button {
  min-height: 68px;
  padding: 20px 24px;
}

.closing-cta {
  margin-top: var(--section-y);
  padding: clamp(28px, 4vw, 48px);
  background: var(--faq-blue);
  box-shadow: none;
}

.contact-shell {
  padding-top: 0;
}

.contact-form {
  background: var(--panel);
  border: 0;
  box-shadow: none;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.form-demo-control {
  border: 1px solid var(--line);
  box-shadow: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.form-demo-control:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand-blue) 24%, transparent);
}

.legal-flow {
  gap: var(--grid-gap);
}

.legal-flow > article .button {
  justify-self: start;
}

.site-footer {
  margin-top: var(--section-y);
}

.footer-main {
  gap: clamp(42px, 8vw, 92px);
}

.footer-main h2 {
  letter-spacing: .04em;
}

@media (min-width: 981px) {
  .embark-page .feature-section:nth-of-type(odd),
  .consult-page .feature-section:nth-of-type(odd),
  .reflect-page .feature-section:nth-of-type(odd) {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  }
}

@media (max-width: 980px) {
  .site-header {
    min-height: 70px;
    padding-inline: 24px;
  }

  body.nav-open::before {
    content: "";
    position: fixed;
    inset: 70px 0 0;
    z-index: 90;
    background: rgba(255, 255, 255, .96);
  }

  .main-nav {
    top: 76px;
    left: 24px;
    right: 24px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-dropdown);
    z-index: 101;
  }

  body.nav-open .main-nav {
    gap: 6px;
  }

  .main-nav > a,
  .nav-trigger {
    min-height: 42px;
  }

  .split-hero,
  .product-hero,
  .feature-section,
  .story-hero,
  .contact-shell,
  .solution-card,
  .story-section,
  .faq-section,
  .legal-flow {
    gap: 32px;
  }

  .product-hero .hero-image {
    min-height: 320px;
  }

  .solution-card > div {
    padding: 0;
  }

  .solution-card {
    gap: 18px;
  }

  .footer-main {
    padding-bottom: 28px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-inline: 16px;
  }

  .main-nav {
    left: 16px;
    right: 16px;
  }

  .hero,
  .page-hero {
    padding-top: 48px;
    padding-bottom: 64px;
  }

  .hero h1,
  .page-hero h1,
  .story-hero h1 {
    font-size: clamp(48px, 16vw, 62px);
  }

  .product-hero h1,
  .section-intro h2,
  .statement h2,
  .feature-section h2,
  .faq-section h2,
  .closing-cta h2,
  .solution-card h2,
  .story-section h2 {
    font-size: clamp(36px, 12vw, 46px);
  }

  .button-row,
  .button-row .button,
  .closing-cta .button,
  .contact-form .button {
    width: 100%;
  }

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

  .button-row .button {
    justify-content: space-between;
    min-width: 0;
    max-width: 100%;
  }

  .product-hero .hero-image {
    min-height: 220px;
  }

  .split-hero,
  .product-hero {
    min-height: auto;
    padding: 32px 18px;
    gap: 28px;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero h1,
  .product-hero h1,
  .page-hero h1,
  .story-hero h1 {
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero-image,
  .product-hero .hero-image {
    max-height: 320px;
  }

  .code-sample,
  .code-sample code {
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .faq-item button {
    padding: 18px 18px;
  }

  .footer-main {
    padding-top: 36px;
  }
}

/* ATP structure lock: ATP colors and content, ATP spacing/component discipline. */
:root {
  --atp-container: min(1414px, calc(100vw - 48px));
  --atp-reading: min(1180px, calc(100vw - 48px));
  --atp-section: 96px;
  --atp-section-mobile: 72px;
  --atp-gap: 24px;
  --atp-radius-card: 10px;
  --atp-radius-control: 7px;
  --atp-border: 1px solid var(--line);
  --atp-shadow-card: 0 1px 4px rgba(0, 0, 0, .09);
  --atp-shadow-hover: 0 6px 12px rgba(0, 0, 0, .09);
}

html {
  scroll-padding-top: 88px;
}

body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  letter-spacing: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 99;
  min-height: 70px;
  padding: 0 max(24px, calc((100vw - 1414px) / 2 + 24px));
  background: rgba(255, 255, 255, .98);
  border-bottom: 0;
  box-shadow: none;
}

.brand img {
  width: 190px;
  max-height: 48px;
  object-fit: contain;
}

.main-nav {
  gap: 24px;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 600;
}

.main-nav > a,
.nav-trigger {
  min-height: 42px;
  padding: 0;
  color: var(--ink);
}

.nav-dropdown {
  width: min(520px, calc(100vw - 48px));
  padding: 10px;
  border: var(--atp-border);
  border-radius: var(--atp-radius-card);
  background: var(--white);
  box-shadow: var(--shadow-dropdown);
}

.nav-dropdown a {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  min-height: 58px;
  padding: 10px 12px;
  border-radius: var(--atp-radius-control);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.nav-dropdown a:hover {
  background: var(--panel);
}

.nav-dropdown .wordmark {
  width: 112px;
  max-width: 112px;
  max-height: 24px;
}

.button,
.site-header > .button,
.header-cta {
  min-height: 46px;
  padding: 12px 16px;
  gap: 24px;
  border-radius: var(--atp-radius-control);
  border: var(--atp-border);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 650;
  letter-spacing: 0;
  box-shadow: none;
}

.button-dark,
.button-primary {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

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

.button-text {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--atp-shadow-card);
}

.button-text:hover {
  transform: none;
  box-shadow: none;
}

.hero,
.page-hero,
.section-intro,
.statement,
.feature-section,
.card-grid,
.story-band,
.story-grid,
.solution-list,
.faq-section,
.closing-cta,
.contact-shell,
.legal-flow,
.story-section,
.story-hero,
.back-link {
  width: var(--atp-container);
  max-width: var(--atp-container);
  margin-left: auto;
  margin-right: auto;
}

.page-hero {
  padding: var(--atp-section) 24px 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.page-hero h1,
.hero h1,
.story-hero h1,
.sg-hero h1 {
  font-family: var(--serif);
  font-size: clamp(58px, 6.4vw, 96px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0;
}

.page-hero p,
.hero p,
.story-hero p,
.section-intro p,
.statement p,
.feature-section p,
.closing-cta p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.35;
  font-weight: 500;
}

.split-hero,
.product-hero {
  min-height: 650px;
  margin-top: 24px;
  margin-bottom: var(--atp-section);
  padding: 60px 48px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1fr);
  align-items: end;
  gap: 48px;
  border-radius: var(--atp-radius-card);
  background: var(--panel);
  overflow: hidden;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  max-width: 700px;
}

.hero-copy .wordmark {
  width: min(260px, 70vw);
}

.hero-image,
.product-hero .hero-image {
  width: 100%;
  height: 100%;
  min-height: 460px;
  max-height: 560px;
  padding: 0;
  border-radius: var(--atp-radius-card);
  background: var(--white);
  object-fit: cover;
  box-shadow: none;
}

.logo-section {
  width: var(--atp-container);
  max-width: var(--atp-container);
  padding: 0 0 var(--atp-section);
}

.logo-section p {
  margin-bottom: 36px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.35;
  text-align: center;
}

.section-intro,
.statement {
  padding: var(--atp-section) 0 0;
  display: grid;
  gap: 24px;
}

.section-intro h2,
.statement h2,
.feature-section h2,
.faq-section h2,
.closing-cta h2,
.story-band h2,
.style-guide-page .sg-section-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 4.8vw, 72px);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: 0;
}

.section-intro-row {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
}

.section-intro-row .button {
  justify-self: end;
}

.card-grid,
.product-grid,
.story-grid,
.solution-list,
.founder-grid,
.comparison-grid,
.use-case-grid,
.five-grid,
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--atp-gap);
}

.card,
.product-card,
.story-card,
.solution-card,
.article-card,
.impact-card,
.legal-flow > article,
.style-guide-page .rulebook-card.priority,
.style-guide-page .logo-spec,
.style-guide-page .font-system-grid article,
.style-guide-page .anatomy-grid article,
.style-guide-page .usage-grid article,
.style-guide-page .layout-demo article,
.style-guide-page .do-dont-grid article,
.style-guide-page .story-rules article,
.style-guide-page .product-rule-grid article,
.style-guide-page .spacing-rules article,
.style-guide-page .icon-grid article,
.style-guide-page .checklist-grid label,
.component-catalogue article {
  border: var(--atp-border);
  border-radius: var(--atp-radius-card);
  background: var(--white);
  box-shadow: var(--atp-shadow-card);
}

.card,
.legal-flow > article,
.style-guide-page .rulebook-card.priority,
.style-guide-page .logo-spec,
.style-guide-page .font-system-grid article,
.style-guide-page .anatomy-grid article,
.style-guide-page .usage-grid article,
.style-guide-page .layout-demo article,
.style-guide-page .do-dont-grid article,
.style-guide-page .story-rules article,
.style-guide-page .product-rule-grid article,
.style-guide-page .spacing-rules article,
.style-guide-page .icon-grid article,
.style-guide-page .checklist-grid label,
.component-catalogue article {
  padding: 36px;
}

.tone-green,
.tone-blue,
.tone-yellow,
.tone-pink,
.tone-purple,
.tone-peach {
  border: 0;
  box-shadow: none;
}

.card h3,
.product-card h3,
.story-card h2,
.story-card h3,
.solution-card h2,
.article-card h4,
.impact-card h3,
.legal-flow h2,
.component-catalogue h3 {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(23px, 2vw, 31px);
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0;
}

.card p,
.product-card p,
.story-card p,
.solution-card p,
.article-card p,
.impact-card p,
.legal-flow p,
.component-catalogue p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.35;
}

.card-image,
.product-card .card-image,
.story-card > img:first-child,
.solution-card > img,
.article-card img,
.impact-card > img,
.feature-section > img {
  width: 100%;
  border-radius: var(--atp-radius-card);
  object-fit: cover;
  background: var(--panel);
}

.product-card,
.story-card,
.solution-card,
.article-card {
  padding: 18px 18px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.product-card:hover,
.story-card:hover,
.solution-card:hover,
.article-card:hover {
  transform: translateY(-9px);
  box-shadow: var(--atp-shadow-hover);
}

.product-card .card-image,
.story-card > img:first-child,
.solution-card > img,
.article-card img {
  aspect-ratio: 1.6 / 1;
  margin: 0;
}

.product-card .button-text,
.story-card b,
.solution-card .powered,
.article-card span,
.story-card span,
.impact-card span {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 28px;
  padding: 2px 12px;
  border: var(--atp-border);
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.product-card .button-text {
  color: var(--ink);
  font-weight: 650;
}

.story-card .wordmark,
.solution-card .wordmark {
  max-width: 150px;
  max-height: 48px;
}

.story-card .story-products {
  display: grid;
  align-items: start;
  gap: 8px;
  width: 100%;
  max-width: 100%;
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.story-card .story-products-label {
  display: block;
  width: fit-content;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 560;
}

.story-card .story-product-pills {
  display: flex;
  width: 100%;
  min-height: auto;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.story-card .story-product-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 7px 12px;
  border: var(--atp-border);
  border-radius: var(--atp-radius-control);
  background: var(--white);
  box-shadow: none;
}

.story-card .story-products .wordmark {
  width: auto;
  max-width: 88px;
  max-height: 20px;
  object-fit: contain;
  object-position: left center;
}

.story-card h3 {
  font-size: clamp(27px, 2.2vw, 36px);
  line-height: 1.18;
}

.solution-list {
  padding: 0 0 var(--atp-section);
}

.solution-card {
  grid-template-columns: none;
}

.solution-card > div {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0;
}

.logo-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.feature-section {
  margin-top: 24px;
  margin-bottom: 24px;
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  border: var(--atp-border);
  border-radius: var(--atp-radius-card);
  background: var(--white);
  box-shadow: var(--atp-shadow-card);
}

.feature-section > img {
  aspect-ratio: 1.55 / 1;
  min-height: 360px;
}

.feature-section > div {
  padding: 18px 18px 18px 12px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.statement > div {
  max-width: 100%;
}

.statement .card-grid {
  margin-top: 36px;
}

.faq-section {
  padding: var(--atp-section) 0;
  display: grid;
  grid-template-columns: minmax(240px, 323px) minmax(0, 902px);
  justify-content: space-between;
  align-items: start;
  gap: 24px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 0;
  border-radius: var(--atp-radius-card);
  background: var(--faq-blue);
  box-shadow: none;
  overflow: hidden;
}

.faq-item button {
  min-height: 76px;
  padding: 18px 24px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 650;
}

.faq-answer {
  padding: 0 24px 24px;
}

.closing-cta {
  margin-top: var(--atp-section);
  margin-bottom: var(--atp-section);
  padding: 72px 24px 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--white);
  text-align: center;
  box-shadow: none;
}

.closing-cta h2,
.closing-cta p {
  color: var(--white);
}

.closing-cta p {
  opacity: .82;
}

.contact-page main {
  width: var(--atp-container);
  max-width: var(--atp-container);
  margin: 0 auto;
  padding: var(--atp-section) 0;
  display: grid;
  grid-template-columns: minmax(220px, 555px) minmax(0, 1fr);
  align-items: start;
  gap: 48px;
}

.contact-page .page-hero {
  width: auto;
  max-width: none;
  margin: 0;
  padding: 0;
  align-items: flex-start;
  text-align: left;
}

.contact-page .page-hero h1 {
  max-width: 555px;
  font-size: clamp(54px, 5vw, 76px);
}

.contact-page .page-hero p {
  max-width: 555px;
}

.contact-page .contact-hero-image {
  width: min(100%, 555px);
  height: clamp(220px, 21vw, 300px);
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: var(--atp-radius-card);
}

.contact-page .contact-shell {
  width: auto;
  max-width: none;
  padding: 0;
}

.contact-form {
  padding: 36px;
  border: 0;
  border-radius: var(--atp-radius-card);
  background: var(--panel);
  box-shadow: none;
}

.contact-form h2 {
  margin-bottom: 24px;
  font-family: var(--sans);
  font-size: clamp(28px, 3vw, 45px);
  line-height: 1.15;
  font-weight: 700;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 650;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.form-demo-control {
  min-height: 54px;
  padding: 12px 16px;
  border: var(--atp-border);
  border-radius: var(--atp-radius-control);
  background: var(--white);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.35;
  box-shadow: none;
}

.contact-form textarea {
  min-height: 180px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.form-demo-control:focus {
  outline: 0;
  border-color: color-mix(in srgb, var(--brand-blue) 65%, var(--line));
  box-shadow: 0 2px 6px rgba(0, 0, 0, .07);
}

.site-footer {
  margin-top: 0;
  padding: 72px max(24px, calc((100vw - 1414px) / 2 + 24px));
  background: var(--white);
}

.footer-main {
  width: 100%;
  max-width: 1414px;
  padding: 0 0 72px;
  gap: 84px;
}

.footer-main h2 {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: none;
}

.ai-box {
  border-radius: var(--atp-radius-card);
  background: var(--faq-blue);
}

.style-guide-page main {
  width: var(--atp-container);
  max-width: var(--atp-container);
  margin: 0 auto;
  padding: 0;
}

.style-guide-page .sg-hero {
  width: 100%;
  max-width: none;
  padding: var(--atp-section) 0 72px;
}

.style-guide-page .sg-hero > div {
  max-width: 1120px;
}

.style-guide-page .sg-hero p {
  max-width: 1050px;
  color: var(--muted);
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.3;
  font-weight: 500;
}

.style-guide-page .sg-section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: var(--atp-section) 0;
  display: grid;
  grid-template-columns: minmax(220px, 350px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(48px, 8vw, 120px);
  border-top: 1px solid rgba(0, 0, 0, .06);
}

.style-guide-page .sg-section + .sg-section {
  margin-top: 0;
}

.style-guide-page .sg-section-head {
  max-width: 350px;
  position: sticky;
  top: 96px;
}

.style-guide-page .sg-section-head h2 {
  font-family: var(--sans);
  font-size: clamp(28px, 3vw, 45px);
  line-height: 1.15;
  font-weight: 700;
}

.style-guide-page .sg-section-head p:not(.eyebrow) {
  margin-top: 24px;
  max-width: 350px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.35;
}

.style-guide-page .sg-section > :not(.sg-section-head) {
  max-width: 100%;
}

.style-guide-page .color-system {
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.style-guide-page .color-family {
  display: grid;
  grid-template-columns: minmax(180px, 280px) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.style-guide-page .color-family-head h3 {
  margin: 0 0 12px;
  font-size: 23px;
  line-height: 1.3;
}

.style-guide-page .color-family-head p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.35;
}

.style-guide-page .color-grid,
.style-guide-page .color-grid-support {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}

.style-guide-page .color-swatch {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.style-guide-page .color-swatch::before {
  height: 132px;
  margin-bottom: 18px;
  border-radius: var(--atp-radius-card);
  border: 0;
}

.style-guide-page .color-swatch.swatch-border::before {
  border: 1px solid rgba(0, 0, 0, .08);
}

.style-guide-page .color-swatch span,
.style-guide-page .color-swatch strong,
.style-guide-page .color-swatch p {
  display: block;
  margin: 0 0 12px;
}

.style-guide-page .color-swatch span {
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
}

.style-guide-page .color-swatch strong {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.25;
  font-weight: 800;
}

.style-guide-page .color-swatch p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.35;
}

.style-guide-page .rulebook-grid,
.style-guide-page .logo-spec-grid,
.style-guide-page .font-system-grid,
.style-guide-page .anatomy-grid,
.style-guide-page .usage-grid,
.style-guide-page .layout-demo,
.style-guide-page .story-rules,
.style-guide-page .product-rule-grid,
.style-guide-page .spacing-rules,
.style-guide-page .icon-grid,
.style-guide-page .checklist-grid,
.component-catalogue {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.style-guide-page .rulebook-card.priority {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
}

.style-guide-page .rulebook-card.priority span {
  min-width: 64px;
  min-height: 54px;
  padding: 10px 18px;
  border-radius: var(--atp-radius-card);
  background: var(--ink);
  color: var(--white);
  font-size: 24px;
  line-height: 1.35;
}

.style-guide-page .rulebook-card.priority h3 {
  margin-top: auto;
}

.style-guide-page .type-sample-grid {
  display: grid;
  justify-items: start;
  gap: 36px;
}

.style-guide-page .type-sample-grid h1,
.style-guide-page .type-sample-grid h2,
.style-guide-page .type-sample-grid h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1;
}

.style-guide-page .type-sample-grid h1 {
  font-size: clamp(72px, 8vw, 128px);
}

.style-guide-page .type-sample-grid h2 {
  font-size: clamp(56px, 6vw, 86px);
}

.style-guide-page .type-sample-grid h3 {
  font-size: clamp(40px, 4vw, 62px);
}

.style-guide-page .type-sample-grid h4,
.style-guide-page .text-pair {
  font-family: var(--sans);
}

.style-guide-page .text-pair {
  display: flex;
  align-items: baseline;
  gap: 36px;
}

.style-guide-page .button-reference-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.style-guide-page .impact-card {
  max-width: 520px;
  padding: 18px 18px 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.style-guide-page .impact-card > img {
  aspect-ratio: 1.6 / 1;
}

.style-guide-page .impact-card > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.style-guide-page .form-reference-stack,
.style-guide-page .component-sample-stack {
  display: grid;
  gap: 36px;
}

.style-guide-page .footer-system-preview,
.style-guide-page .action-strip {
  padding: 36px;
  border-radius: var(--atp-radius-card);
  background: var(--panel);
}

.code-sample {
  border-radius: var(--atp-radius-control);
  background: var(--panel);
}

@media (max-width: 1180px) {
  .split-hero,
  .product-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    align-items: start;
  }

  .hero-image,
  .product-hero .hero-image {
    min-height: 360px;
  }

  .contact-page main,
  .style-guide-page .sg-section,
  .style-guide-page .color-family {
    grid-template-columns: 1fr;
  }

  .style-guide-page .sg-section-head {
    position: static;
    max-width: 760px;
  }
}

@media (max-width: 980px) {
  :root {
    --atp-container: min(100% - 32px, 1414px);
    --atp-reading: min(100% - 32px, 1180px);
  }

  .site-header {
    padding-inline: 16px;
  }

  .brand img {
    width: 154px;
  }

  .main-nav {
    top: 70px;
    left: 16px;
    right: 16px;
    gap: 8px;
    border: var(--atp-border);
    border-radius: var(--atp-radius-card);
    background: var(--white);
    box-shadow: var(--shadow-dropdown);
  }

  .nav-dropdown {
    width: 100%;
    padding: 8px;
    box-shadow: none;
  }

  .nav-dropdown a {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .split-hero,
  .product-hero {
    margin-top: 16px;
    margin-bottom: var(--atp-section-mobile);
    padding: 36px 24px;
  }

  .section-intro,
  .statement,
  .faq-section,
  .style-guide-page .sg-section {
    padding-top: var(--atp-section-mobile);
    padding-bottom: var(--atp-section-mobile);
  }

  .feature-section {
    grid-template-columns: 1fr;
  }

  .feature-section > img {
    min-height: 280px;
  }

  .faq-section {
    grid-template-columns: 1fr;
  }

  .contact-page main {
    padding: var(--atp-section-mobile) 0;
  }

  .site-footer {
    padding: var(--atp-section-mobile) 16px;
  }
}

@media (max-width: 640px) {
  :root {
    --atp-container: calc(100% - 28px);
    --atp-reading: calc(100% - 28px);
  }

  .page-hero,
  .style-guide-page .sg-hero {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .page-hero h1,
  .hero h1,
  .story-hero h1,
  .sg-hero h1 {
    font-size: clamp(48px, 15vw, 62px);
  }

  .section-intro h2,
  .statement h2,
  .feature-section h2,
  .faq-section h2,
  .closing-cta h2,
  .story-band h2,
  .style-guide-page .sg-section-head h2 {
    font-size: clamp(34px, 11vw, 46px);
  }

  .split-hero,
  .product-hero {
    padding: 28px 18px;
    border-radius: var(--atp-radius-card);
  }

  .hero-image,
  .product-hero .hero-image {
    min-height: 260px;
  }

  .card,
  .legal-flow > article,
  .style-guide-page .rulebook-card.priority,
  .style-guide-page .logo-spec,
  .style-guide-page .font-system-grid article,
  .style-guide-page .anatomy-grid article,
  .style-guide-page .usage-grid article,
  .style-guide-page .layout-demo article,
  .style-guide-page .do-dont-grid article,
  .style-guide-page .story-rules article,
  .style-guide-page .product-rule-grid article,
  .style-guide-page .spacing-rules article,
  .style-guide-page .icon-grid article,
  .style-guide-page .checklist-grid label,
  .component-catalogue article,
  .contact-form {
    padding: 24px;
  }

  .product-card,
  .story-card,
  .solution-card,
  .article-card,
  .style-guide-page .impact-card {
    padding: 14px 14px 24px;
  }

  .style-guide-page .rulebook-card.priority {
    min-height: auto;
    gap: 32px;
  }

  .style-guide-page .rulebook-card.priority h3 {
    margin-top: 0;
  }

  .closing-cta {
    padding: 56px 20px 64px;
  }
}

/* Font correction lock: Geist is UI/content, Happy Times is display only. */
:root {
  --sans: "Geist", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --serif: "Happy Times", Georgia, serif;
}

body,
button,
input,
select,
textarea,
.main-nav,
.nav-trigger,
.nav-dropdown,
.button,
.page-hero p,
.hero p,
.story-hero p,
.section-intro p,
.statement p,
.feature-section p,
.faq-section p,
.closing-cta p,
.card,
.product-card,
.story-card,
.solution-card,
.article-card,
.impact-card,
.contact-form,
.site-footer,
.style-guide-page .sg-section-head p:not(.eyebrow),
.style-guide-page .color-family-head,
.style-guide-page .color-swatch,
.style-guide-page .font-system-grid p,
.style-guide-page .rulebook-card p,
.style-guide-page .component-catalogue,
.style-guide-page .usage-grid,
.style-guide-page .layout-demo,
.style-guide-page .story-rules,
.style-guide-page .product-rule-grid,
.style-guide-page .spacing-rules {
  font-family: var(--sans);
}

.hero h1,
.page-hero h1,
.story-hero h1,
.style-guide-page .sg-hero h1,
.style-guide-page .type-sample-grid h1,
.style-guide-page .type-sample-grid h2,
.style-guide-page .type-sample-grid h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
}

.section-intro h2,
.statement h2,
.story-band h2,
.faq-section h2,
.closing-cta h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
}

.feature-section h2,
.product-card h3,
.story-card h2,
.story-card h3,
.solution-card h2,
.article-card h4,
.impact-card h3,
.card h3,
.legal-flow h2,
.contact-form h2,
.component-catalogue h3,
.style-guide-page .sg-section-head h2,
.style-guide-page .rulebook-card.priority h3,
.style-guide-page .logo-spec h3,
.style-guide-page .font-system-grid h3:not(.font-happy),
.style-guide-page .anatomy-grid h3,
.style-guide-page .usage-grid h3,
.style-guide-page .layout-demo h3,
.style-guide-page .do-dont-grid h3,
.style-guide-page .story-rules h3,
.style-guide-page .product-rule-grid h3,
.style-guide-page .spacing-rules h3,
.style-guide-page .icon-grid h3,
.style-guide-page .checklist-grid h3,
.style-guide-page .color-family-head h3,
.style-guide-page .text-pair,
.style-guide-page .type-sample-grid h4 {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: 0;
}

.style-guide-page .font-happy {
  font-family: var(--serif);
  font-weight: 400;
}

.style-guide-page .font-geist {
  font-family: var(--sans);
}

/* ATP visual identity restoration on reference-sized cards. */
.home-page .comparison-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-page .comparison-grid .card {
  min-height: 300px;
  position: relative;
  overflow: hidden;
  padding: 86px 36px 36px;
  border: 1px solid color-mix(in srgb, var(--product-magenta) 24%, var(--line));
  border-radius: var(--atp-radius-card);
  box-shadow: var(--atp-shadow-card);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .62), rgba(255, 255, 255, .24)),
    var(--pink);
}

.home-page .comparison-grid .card:not(.card-ink)::before {
  content: "×";
  position: absolute;
  top: 28px;
  left: 36px;
  z-index: 1;
  display: grid;
  width: 58px;
  height: 36px;
  place-items: center;
  clip-path: polygon(0 0, 100% 0, 82% 50%, 100% 100%, 0 100%);
  background: var(--product-magenta);
  color: var(--white);
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}

.home-page .comparison-grid .card:not(.card-ink)::after {
  content: "×";
  position: absolute;
  right: 18px;
  bottom: -42px;
  color: color-mix(in srgb, var(--product-magenta) 13%, transparent);
  font-size: 168px;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

.home-page .comparison-grid .card-ink {
  border-color: color-mix(in srgb, #118653 34%, var(--line));
  background:
    radial-gradient(circle at 86% 80%, rgba(17, 134, 83, .18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, .66), rgba(255, 255, 255, .18)),
    var(--green);
  color: var(--ink);
}

.home-page .comparison-grid .card-ink::before {
  content: "✓";
  position: absolute;
  top: 28px;
  left: 36px;
  z-index: 1;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  background: #118653;
  color: var(--white);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.home-page .comparison-grid .card-ink::after {
  content: "✓";
  position: absolute;
  right: 12px;
  bottom: -46px;
  color: rgba(17, 134, 83, .16);
  font-size: 176px;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

.home-page .comparison-grid .card h3,
.home-page .comparison-grid .card p,
.home-page .comparison-grid .card-ink h3,
.home-page .comparison-grid .card-ink p {
  color: var(--ink);
  font-family: var(--sans);
}

.home-page .comparison-grid .card p {
  color: var(--muted);
}

.home-page .comparison-grid .eyebrow {
  width: fit-content;
  margin: 0 0 18px;
  padding: 2px 12px;
  border: 1px solid color-mix(in srgb, var(--product-navy) 18%, transparent);
  border-radius: 999px;
  background: rgba(255, 255, 255, .55);
  color: var(--product-navy);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.home-page .solution-grid .card {
  min-height: 390px;
  padding: 36px;
  border: var(--atp-border);
  border-radius: var(--atp-radius-card);
  box-shadow: var(--atp-shadow-card);
}

.home-page .solution-grid .card:nth-child(1) {
  background: var(--green);
}

.home-page .solution-grid .card:nth-child(2) {
  background: var(--blue);
}

.home-page .solution-grid .card:nth-child(3) {
  background: var(--yellow);
}

.home-page .solution-grid .card:nth-child(4) {
  background: var(--pink);
}

.home-page .solution-grid .card:nth-child(5) {
  background: var(--purple);
}

.home-page .solution-grid .card:nth-child(6) {
  background: var(--peach);
}

.home-page .solution-grid .card h3 {
  font-family: var(--sans);
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: 1.18;
  font-weight: 750;
}

.home-page .solution-grid .card p {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 520;
}

.home-page .solution-grid .material-symbols-outlined {
  color: rgba(0, 17, 78, .22);
  font-size: 42px;
}

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

.founder-card,
.home-page .founder-card.card {
  min-height: 560px;
  padding: 18px 18px 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border: var(--atp-border);
  border-radius: var(--atp-radius-card);
  background: var(--white);
  box-shadow: var(--atp-shadow-card);
}

.founder-card .card-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 0;
  border-radius: var(--atp-radius-card);
  background-color: var(--panel);
  object-fit: contain;
}

.founder-card:nth-child(1) .card-image {
  background-color: color-mix(in srgb, var(--blue) 62%, white);
}

.founder-card:nth-child(2) .card-image {
  background-color: color-mix(in srgb, var(--yellow) 46%, white);
}

.founder-card:nth-child(3) .card-image {
  background-color: color-mix(in srgb, var(--purple) 62%, white);
}

.founder-card h3 {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(28px, 2.5vw, 42px);
  line-height: 1.14;
  font-weight: 780;
  letter-spacing: 0;
}

.founder-card p {
  margin: 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: clamp(17px, 1.5vw, 23px);
  line-height: 1.35;
  font-weight: 560;
}

@media (max-width: 1180px) {
  .home-page .comparison-grid,
  .founder-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .home-page .comparison-grid,
  .founder-grid {
    grid-template-columns: 1fr;
  }

  .home-page .comparison-grid .card,
  .home-page .solution-grid .card,
  .founder-card,
  .home-page .founder-card.card {
    min-height: auto;
  }
}

/* Solutions interaction: old ATP behavior, shared sizing. */
.solutions .solutions-tab-section {
  width: var(--atp-container);
  max-width: var(--atp-container);
  margin: 0 auto;
  padding: var(--atp-section) 0 0;
}

.solutions .solutions-page-heading {
  max-width: 820px;
  margin: 0 auto 72px;
  text-align: center;
}

.solutions .solutions-page-heading h1 {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(58px, 6.4vw, 96px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0;
}

.solutions .solutions-page-heading p {
  margin: 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.35;
  font-weight: 500;
}

.solutions .solutions-tab-list {
  display: grid;
  gap: 24px;
}

.solutions .solutions-tab-list > article {
  border: var(--atp-border);
  border-radius: var(--atp-radius-card);
  background: var(--white);
  box-shadow: var(--atp-shadow-card);
  overflow: hidden;
}

.solutions .solution-trigger {
  width: 100%;
  min-height: 230px;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(320px, .32fr) minmax(0, 1fr);
  align-items: stretch;
  border: 0;
  background: var(--panel);
  color: var(--ink);
  text-align: left;
}

.solutions .solutions-tab-list > article:nth-child(1) .solution-trigger,
.solutions .solutions-tab-list > article:nth-child(1).is-open {
  background: var(--green);
}

.solutions .solutions-tab-list > article:nth-child(2) .solution-trigger,
.solutions .solutions-tab-list > article:nth-child(2).is-open {
  background: var(--blue);
}

.solutions .solutions-tab-list > article:nth-child(3) .solution-trigger,
.solutions .solutions-tab-list > article:nth-child(3).is-open {
  background: var(--yellow);
}

.solutions .solutions-tab-list > article:nth-child(4) .solution-trigger,
.solutions .solutions-tab-list > article:nth-child(4).is-open {
  background: var(--pink);
}

.solutions .solutions-tab-list > article:nth-child(5) .solution-trigger,
.solutions .solutions-tab-list > article:nth-child(5).is-open {
  background: var(--purple);
}

.solutions .solutions-tab-list > article:nth-child(6) .solution-trigger,
.solutions .solutions-tab-list > article:nth-child(6).is-open {
  background: var(--peach);
}

.solutions .solution-marker {
  min-height: 230px;
  height: 100%;
  display: block;
  overflow: hidden;
}

.solutions .solution-marker img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
}

.solutions .solution-copy {
  padding: 42px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.solutions .solution-title {
  max-width: 880px;
  font-family: var(--sans);
  font-size: clamp(26px, 2.7vw, 42px);
  line-height: 1.12;
  font-weight: 760;
  letter-spacing: 0;
}

.solutions .solution-summary {
  max-width: 840px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: clamp(17px, 1.55vw, 23px);
  line-height: 1.35;
  font-weight: 520;
}

.solutions .solution-products {
  margin-top: 6px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.solutions .solution-products-label {
  margin-right: 2px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 760;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.solutions .solution-product-chip {
  min-height: 54px;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--atp-radius-control);
  background: rgba(255, 255, 255, .86);
}

.solutions .solution-product-chip img {
  width: auto;
  height: 28px;
  max-width: 150px;
}

.solutions .solution-detail {
  background: rgba(255, 255, 255, .74);
}

.solutions .solution-detail-copy {
  padding: 48px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(0, 0, 0, .08);
}

.solutions .solution-detail-copy > div {
  min-height: 230px;
  padding: 36px 48px;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.solutions .solution-detail-copy > div:nth-child(odd) {
  border-right: 1px solid rgba(0, 0, 0, .08);
}

.solutions .solution-detail-copy > div:nth-child(n + 3) {
  border-bottom: 0;
}

.solutions .solution-detail-copy h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(23px, 2vw, 31px);
  line-height: 1.3;
  font-weight: 750;
}

.solutions .solution-detail-copy h3::before {
  display: block;
  margin: 0 0 16px;
  color: color-mix(in srgb, var(--muted) 50%, white);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: .14em;
}

.solutions .solution-detail-copy > div:nth-child(1) h3::before {
  content: "01";
}

.solutions .solution-detail-copy > div:nth-child(2) h3::before {
  content: "02";
}

.solutions .solution-detail-copy > div:nth-child(3) h3::before {
  content: "03";
}

.solutions .solution-detail-copy > div:nth-child(4) h3::before {
  content: "04";
}

.solutions .solution-detail-copy p {
  margin: 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.45;
  font-weight: 500;
}

.solutions .product-wordmark-inline {
  display: inline-block;
  width: auto;
  height: 22px;
  max-width: 126px;
  margin: 0 2px -5px;
  vertical-align: baseline;
}

.solutions .closing-cta {
  margin-top: 96px;
}

@media (max-width: 980px) {
  .solutions .solutions-tab-section {
    padding-top: var(--atp-section-mobile);
  }

  .solutions .solutions-page-heading {
    margin-bottom: 48px;
  }

  .solutions .solution-trigger {
    grid-template-columns: 1fr;
  }

  .solutions .solution-marker {
    min-height: 210px;
    height: clamp(210px, 40vw, 320px);
  }

  .solutions .solution-copy {
    padding: 32px;
  }

  .solutions .solution-detail-copy {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .solutions .solution-detail-copy > div {
    min-height: auto;
    padding: 28px 8px;
    border-right: 0 !important;
  }

  .solutions .solution-detail-copy > div:nth-child(n + 3) {
    border-bottom: 1px solid rgba(0, 0, 0, .08);
  }

  .solutions .solution-detail-copy > div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .solutions .solutions-page-heading h1 {
    font-size: clamp(48px, 15vw, 62px);
  }

  .solutions .solution-marker {
    height: 210px;
    min-height: 210px;
  }

  .solutions .solution-copy {
    padding: 24px;
  }

  .solutions .solution-product-chip {
    min-height: 46px;
    padding: 8px 12px;
  }

  .solutions .solution-products-label {
    width: 100%;
  }
}

/* Homepage structure pass: ATP rhythm, ATP color/content system. */
.home-page {
  --home-section: 96px;
  --home-section-mobile: 72px;
}

.home-page .hero,
.home-page .logo-section,
.home-page main > .section-intro,
.home-page main > .statement,
.home-page main > .card-grid,
.home-page .story-band,
.home-page .faq-section,
.home-page .closing-cta,
.impact-stories-page .page-hero,
.impact-stories-page .story-grid.library {
  width: var(--atp-container);
  max-width: var(--atp-container);
  margin-left: auto;
  margin-right: auto;
}

.home-page .split-hero {
  margin-top: 24px;
  margin-bottom: var(--home-section);
}

.home-page .logo-section {
  padding: 0 0 var(--home-section);
}

.home-page main > .section-intro {
  padding: var(--home-section) 0 48px;
}

.section-intro.centered-intro {
  justify-items: center;
  text-align: center;
}

.section-intro.centered-intro h2,
.section-intro.centered-intro p {
  margin-left: auto;
  margin-right: auto;
}

.home-page main > .statement {
  padding: var(--home-section) 0 56px;
}

.home-page main > .section-intro + .card-grid,
.home-page main > .statement + .card-grid {
  margin-bottom: var(--home-section);
}

.home-page .section-intro-row {
  align-items: flex-start;
}

.home-page .section-intro-row .button {
  margin-top: 4px;
  flex: 0 0 auto;
}

.home-page .operating-loop {
  padding: var(--home-section) 0;
  gap: 48px;
}

.home-page .operating-loop .five-grid {
  margin-top: 0;
}

.home-page .story-band {
  padding: 0 0 var(--home-section);
}

.home-page .story-band .section-intro {
  width: 100%;
  max-width: none;
  padding: 0 0 72px;
}

.home-page .story-band .story-grid,
.impact-stories-page .story-grid.library {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.home-page .story-band .story-grid {
  width: 100%;
  max-width: none;
}

.impact-stories-page .story-grid.library {
  width: var(--atp-container);
  max-width: var(--atp-container);
}

.home-page .story-card,
.impact-stories-page .story-card {
  min-height: 100%;
  padding: 18px 18px 30px;
  gap: 24px;
}

.home-page .story-card > img:first-child,
.impact-stories-page .story-card > img:first-child {
  aspect-ratio: 1.6 / 1;
}

.home-page .story-card h2,
.home-page .story-card h3,
.impact-stories-page .story-card h2,
.impact-stories-page .story-card h3 {
  font-size: clamp(23px, 1.72vw, 31px);
  line-height: 1.24;
  font-weight: 740;
}

.home-page .story-card .story-products,
.impact-stories-page .story-card .story-products {
  margin-top: auto;
}

.home-page .story-card b,
.impact-stories-page .story-card b {
  min-height: 38px;
  margin-top: 0;
  padding: 8px 12px;
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid color-mix(in srgb, var(--brand-blue) 68%, var(--white));
  border-radius: var(--atp-radius-control);
  background: color-mix(in srgb, var(--brand-blue) 12%, var(--white));
  color: var(--product-navy);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 540;
  text-decoration: none;
  box-shadow: none;
}

.home-page .story-card b::after,
.impact-stories-page .story-card b::after {
  content: "\2192";
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1;
  font-weight: 650;
}

.home-page .story-card:hover b,
.impact-stories-page .story-card:hover b {
  border-color: color-mix(in srgb, var(--brand-blue) 88%, var(--white));
  background: color-mix(in srgb, var(--brand-blue) 18%, var(--white));
}

.home-page .founder-grid {
  margin-bottom: var(--home-section);
}

.home-page .faq-section {
  margin-top: 0;
}

.home-page .closing-cta {
  margin-top: var(--home-section);
}

@media (min-width: 981px) and (max-width: 1180px) {
  .home-page .split-hero {
    grid-template-columns: minmax(0, .92fr) minmax(360px, .95fr);
    min-height: 600px;
    align-items: end;
  }

  .home-page .hero-image {
    min-height: 380px;
  }
}

@media (max-width: 1180px) {
  .home-page .story-band .story-grid,
  .impact-stories-page .story-grid.library {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .home-page .story-band .story-grid,
  .impact-stories-page .story-grid.library {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .home-page .split-hero,
  .home-page .logo-section,
  .home-page main > .section-intro,
  .home-page main > .statement,
  .home-page .operating-loop,
  .home-page .story-band {
    margin-bottom: 0;
    padding-bottom: var(--home-section-mobile);
  }

  .home-page main > .section-intro {
    padding-bottom: 36px;
  }

  .home-page .story-band .section-intro {
    padding-bottom: 44px;
  }

  .home-page .section-intro-row {
    gap: 24px;
  }
}

/* Type scale correction: reference-sized, ATP-branded. */
.hero h1,
.page-hero h1,
.story-hero h1,
.style-guide-page .sg-hero h1 {
  font-size: 64px;
  line-height: 1;
}

.product-hero h1,
.story-hero h1,
.contact-page .page-hero h1,
.solutions .solutions-page-heading h1 {
  font-size: 64px;
  line-height: 1;
}

.section-intro h2,
.statement h2,
.feature-section h2,
.faq-section h2,
.closing-cta h2,
.story-band h2,
.style-guide-page .sg-section-head h2 {
  font-size: 45px;
  line-height: 1.15;
}

.hero p,
.page-hero p,
.story-hero p,
.section-intro p,
.statement p,
.feature-section p,
.closing-cta p,
.solutions .solutions-page-heading p {
  font-size: 23px;
  line-height: 1.3;
}

.card h3,
.product-card h3,
.story-card h2,
.story-card h3,
.solution-card h2,
.article-card h4,
.impact-card h3,
.legal-flow h2,
.component-catalogue h3 {
  font-size: 23px;
  line-height: 1.3;
}

.card p,
.product-card p,
.story-card p,
.solution-card p,
.article-card p,
.impact-card p,
.legal-flow p,
.component-catalogue p {
  font-size: 16px;
  line-height: 1.35;
}

.home-page .solution-grid .card h3 {
  font-size: 23px;
  line-height: 1.3;
}

.home-page .solution-grid .card p {
  font-size: 16px;
  line-height: 1.35;
}

.home-page .story-card h2,
.home-page .story-card h3,
.impact-stories-page .story-card h2,
.impact-stories-page .story-card h3 {
  font-size: 23px;
  line-height: 1.3;
}

.founder-card h3 {
  font-size: 32px;
  line-height: 1.25;
}

.founder-card p {
  font-size: 16px;
  line-height: 1.35;
}

.solutions .solution-title {
  font-size: 32px;
  line-height: 1.25;
}

.solutions .solution-summary,
.solutions .solution-detail-copy p {
  font-size: 16px;
  line-height: 1.35;
}

.solutions .solution-detail-copy h3 {
  font-size: 23px;
  line-height: 1.3;
}

@media (max-width: 991px) {
  .hero h1,
  .page-hero h1,
  .story-hero h1,
  .style-guide-page .sg-hero h1,
  .product-hero h1,
  .contact-page .page-hero h1,
  .solutions .solutions-page-heading h1 {
    font-size: 58px;
  }

  .section-intro h2,
  .statement h2,
  .feature-section h2,
  .faq-section h2,
  .closing-cta h2,
  .story-band h2,
  .style-guide-page .sg-section-head h2 {
    font-size: 42px;
  }
}

@media (max-width: 767px) {
  .hero h1,
  .page-hero h1,
  .story-hero h1,
  .style-guide-page .sg-hero h1,
  .product-hero h1,
  .contact-page .page-hero h1,
  .solutions .solutions-page-heading h1 {
    font-size: 54px;
  }

  .section-intro h2,
  .statement h2,
  .feature-section h2,
  .faq-section h2,
  .closing-cta h2,
  .story-band h2,
  .style-guide-page .sg-section-head h2 {
    font-size: 36px;
  }

  .hero p,
  .page-hero p,
  .story-hero p,
  .section-intro p,
  .statement p,
  .feature-section p,
  .closing-cta p,
  .solutions .solutions-page-heading p {
    font-size: 20px;
    line-height: 1.35;
  }

  .founder-card h3,
  .solutions .solution-title {
    font-size: 24px;
  }
}

@media (max-width: 479px) {
  .hero h1,
  .page-hero h1,
  .story-hero h1,
  .style-guide-page .sg-hero h1,
  .product-hero h1,
  .contact-page .page-hero h1,
  .solutions .solutions-page-heading h1 {
    font-size: 39px;
    line-height: 1.15;
  }

  .section-intro h2,
  .statement h2,
  .feature-section h2,
  .faq-section h2,
  .closing-cta h2,
  .story-band h2,
  .style-guide-page .sg-section-head h2 {
    font-size: 28px;
  }

  .card h3,
  .product-card h3,
  .story-card h2,
  .story-card h3,
  .solution-card h2,
  .article-card h4,
  .impact-card h3,
  .legal-flow h2,
  .component-catalogue h3,
  .solutions .solution-detail-copy h3 {
    font-size: 21px;
  }

  .founder-card h3,
  .solutions .solution-title {
    font-size: 21px;
  }

  .card p,
  .product-card p,
  .story-card p,
  .solution-card p,
  .article-card p,
  .impact-card p,
  .legal-flow p,
  .component-catalogue p,
  .solutions .solution-summary,
  .solutions .solution-detail-copy p {
    font-size: 15px;
  }
}

/* Supporting copy stays calm and regular, not bold. */
.hero p,
.page-hero p,
.story-hero p,
.product-hero p,
.section-intro p,
.statement p,
.feature-section p,
.closing-cta p,
.contact-page .page-hero p,
.solutions .solutions-page-heading p,
.card p,
.product-card p,
.story-card p,
.solution-card p,
.article-card p,
.impact-card p,
.legal-flow p,
.component-catalogue p,
.founder-card p,
.home-page .solution-grid .card p {
  font-weight: 400;
  font-variation-settings: "wght" 400;
}

/* Homepage comparison: flat contrast block, no badges or heavy framing. */
.home-page .comparison-grid > .card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 300px;
  padding: 38px 36px;
  border: 0;
  border-radius: var(--atp-radius-card);
  background-color: var(--pink);
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, .62), rgba(255, 255, 255, .18));
  box-shadow: none;
}

.home-page .comparison-grid > .card > * {
  position: relative;
  z-index: 2;
}

.home-page .comparison-grid > .card:not(.card-ink)::before,
.home-page .comparison-grid > .card.card-ink::before {
  content: none;
  display: none;
}

.home-page .comparison-grid > .card:not(.card-ink)::before {
  content: none;
}

.home-page .comparison-grid > .card:not(.card-ink)::after,
.home-page .comparison-grid > .card.card-ink::after {
  position: absolute;
  right: 18px;
  bottom: -46px;
  z-index: 1;
  display: block;
  font-family: var(--sans);
  font-size: 174px;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

.home-page .comparison-grid > .card:not(.card-ink)::after {
  content: "×";
  color: rgba(203, 19, 86, .28);
}

.home-page .comparison-grid > .card.card-ink {
  border: 0;
  background-color: var(--green);
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, .64), rgba(255, 255, 255, .18));
  box-shadow: none;
  color: var(--ink);
}

.home-page .comparison-grid > .card.card-ink::before {
  content: none;
}

.home-page .comparison-grid > .card.card-ink::after {
  content: "✓";
  color: rgba(17, 134, 83, .32);
}

.home-page .comparison-grid > .card h3,
.home-page .comparison-grid > .card p,
.home-page .comparison-grid > .card.card-ink h3,
.home-page .comparison-grid > .card.card-ink p {
  color: inherit;
}

.home-page .comparison-grid > .card p,
.home-page .comparison-grid > .card.card-ink p {
  color: var(--muted);
}

.home-page .comparison-grid > .card.card-ink .eyebrow {
  display: none;
}

@media (max-width: 760px) {
  .home-page .comparison-grid > .card {
    padding: 30px 26px;
  }
}

/* Compact product entry button. */
.product-card .button-enter {
  position: relative;
  width: 40px;
  min-width: 40px;
  min-height: 40px;
  margin-top: auto;
  padding: 0;
  gap: 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--atp-radius-control);
  background: var(--white);
  color: var(--product-navy);
  font-size: 14px;
  font-weight: 680;
  line-height: 1;
  text-decoration: none;
  box-shadow: none;
  overflow: hidden;
}

.product-card .button-enter::before {
  content: none;
}

.product-card .button-enter .material-symbols-outlined {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: transparent;
  color: currentColor;
  font-size: 20px;
  line-height: 1;
}

.product-card .button-enter:hover {
  border-color: color-mix(in srgb, var(--product-magenta) 48%, var(--line));
  background: color-mix(in srgb, var(--product-magenta) 8%, var(--white));
  color: var(--product-magenta);
  box-shadow: none;
}

.product-card .product-wordmark {
  width: auto;
  max-width: 180px;
  height: 34px;
  margin: 0;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.product-card-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.product-card-link:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--brand-blue) 72%, var(--white));
  outline-offset: 4px;
}

.home-page .product-card .card-image {
  padding: 0;
  object-fit: cover;
  object-position: center center;
}

.home-page .pillar-home-grid .card > .material-symbols-outlined {
  font-size: 42px;
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 40;
}

.home-page .pillar-home-grid .tone-green > .material-symbols-outlined {
  color: #d89a16;
}

.home-page .pillar-home-grid .tone-blue > .material-symbols-outlined {
  color: var(--product-magenta);
}

.home-page .pillar-home-grid .tone-yellow > .material-symbols-outlined {
  color: #4f9f68;
}

.home-page .pillar-home-grid .tone-pink > .material-symbols-outlined {
  color: #4f8fc5;
}

.home-page .solutions-heading-row .section-intro-copy {
  max-width: 900px;
}

.home-page .comparison-intro .section-intro-copy {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.home-page .comparison-intro h2,
.home-page .comparison-intro p {
  margin-left: auto;
  margin-right: auto;
}

.home-page .comparison-intro p {
  max-width: 860px;
}

.home-page .solutions-heading-row .button {
  align-self: start;
  font-weight: 500;
  font-variation-settings: "wght" 500;
}

@media (max-width: 767px) {
  .home-page .solutions-heading-row .button {
    justify-self: start;
    margin-top: 0;
  }
}

/* Homepage solution cards: compact, clickable, and color-preserving. */
.home-page .solution-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  max-width: min(1040px, var(--atp-container));
}

.home-page .solution-grid .card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
  transition:
    transform .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}

.home-page .solution-grid .card:hover {
  transform: translateY(-9px);
  border-color: color-mix(in srgb, var(--brand-blue) 24%, var(--line));
  box-shadow: var(--atp-shadow-hover);
}

.home-page .solution-grid .card:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--brand-blue) 72%, var(--white));
  outline-offset: 4px;
}

.home-page .solution-grid .material-symbols-outlined {
  width: 34px;
  height: 34px;
  margin-bottom: 8px;
  display: block;
  overflow: hidden;
  color: rgba(0, 17, 78, .24);
  font-size: 34px;
  line-height: 1;
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 36;
}

.home-page .solution-grid .solution-svg-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 8px;
  display: block;
  color: rgba(0, 17, 78, .24);
  fill: currentColor;
  flex: 0 0 auto;
}

.home-page .solution-grid .card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, .66), rgba(255, 255, 255, .12));
}

.home-page .solution-grid .card:nth-child(1) {
  background-color: var(--green);
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, .64), rgba(255, 255, 255, .14));
}

.home-page .solution-grid .card:nth-child(2) {
  background-color: var(--blue);
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, .62), rgba(255, 255, 255, .12));
}

.home-page .solution-grid .card:nth-child(3) {
  background-color: var(--yellow);
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, .58), rgba(255, 255, 255, .10));
}

.home-page .solution-grid .card:nth-child(4) {
  background-color: var(--pink);
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, .60), rgba(255, 255, 255, .10));
}

.home-page .solution-grid .card:nth-child(5) {
  background-color: var(--purple);
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, .62), rgba(255, 255, 255, .12));
}

.home-page .solution-grid .card:nth-child(6) {
  background-color: var(--peach);
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, .60), rgba(255, 255, 255, .10));
}

.home-page .solution-grid .card:nth-child(1) .solution-svg-icon {
  color: #2f8a55;
}

.home-page .solution-grid .card:nth-child(2) .solution-svg-icon {
  color: #3a7fba;
}

.home-page .solution-grid .card:nth-child(3) .solution-svg-icon {
  color: #d89a16;
}

.home-page .solution-grid .card:nth-child(4) .solution-svg-icon {
  color: var(--product-magenta);
}

.home-page .solution-grid .card:nth-child(5) .material-symbols-outlined {
  color: #7a5aa6;
}

.home-page .solution-grid .card:nth-child(6) .solution-svg-icon {
  color: #bd6d52;
}

.home-page .solution-grid .card h3 {
  max-width: 11.8em;
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(21px, 1.55vw, 25px);
  line-height: 1.22;
  font-weight: 720;
  letter-spacing: 0;
}

.home-page .solution-grid .card p {
  max-width: 24em;
  margin: auto 0 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 15.5px;
  line-height: 1.4;
  font-weight: 400;
  font-variation-settings: "wght" 400;
}

@media (max-width: 991px) {
  .home-page .solution-grid {
    max-width: var(--atp-container);
  }

  .home-page .solution-grid .card {
    min-height: 240px;
    padding: 24px;
  }
}

@media (max-width: 767px) {
  .home-page .solution-grid {
    grid-template-columns: 1fr;
  }

  .home-page .solution-grid .card {
    min-height: 0;
    padding: 22px;
  }

.home-page .solution-grid .card h3 {
    max-width: none;
    font-size: 21px;
  }
}

/* Operating loop statement: centered lead-in, cards stay structured below. */
.home-page .operating-loop > h2,
.home-page .operating-loop > p {
  justify-self: center;
  text-align: center;
}

.home-page .operating-loop > h2 {
  max-width: 760px;
}

.home-page .operating-loop > p {
  max-width: 900px;
  margin: -18px auto 0;
}

.home-page .expertise-intro {
  padding: var(--home-section) 0 48px;
}

.home-page .expertise-intro > h2,
.home-page .expertise-intro > p {
  justify-self: center;
  text-align: center;
}

.home-page .expertise-intro > h2 {
  max-width: 760px;
}

.home-page .expertise-intro > p {
  max-width: 900px;
  margin: -18px auto 0;
}

.home-page .process-timeline {
  position: relative;
  isolation: isolate;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 42px);
  margin-top: 22px;
  padding-top: 0;
}

.home-page .process-timeline::before {
  content: "";
  position: absolute;
  top: 48px;
  left: 0;
  right: 0;
  z-index: 0;
  height: 1px;
  background: var(--line-strong);
}

.home-page .process-step {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 12px;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.home-page .process-number {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--muted) 52%, var(--line));
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
}

.home-page .process-step h3 {
  margin: 20px 0 0;
  font-family: var(--sans);
  font-size: clamp(21px, 1.7vw, 28px);
  font-weight: 560;
  line-height: 1.18;
  letter-spacing: 0;
}

.home-page .process-step p {
  max-width: 270px;
  margin: 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 400;
  font-variation-settings: "wght" 400;
}

@media (max-width: 991px) {
  .home-page .process-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 34px;
  }

  .home-page .process-timeline::before {
    content: none;
  }
}

@media (max-width: 560px) {
  .home-page .process-timeline {
    grid-template-columns: 1fr;
  }
}

/* ATP-branded process rail: compact signal-to-impact progression. */
.home-page .process-timeline {
  gap: 0;
  margin-top: 24px;
  padding: 30px;
  border-radius: var(--atp-radius-card);
  background: var(--white);
  box-shadow: none;
}

.home-page .process-timeline::before {
  top: 53px;
  left: 52px;
  right: 52px;
  height: 2px;
  background:
    linear-gradient(90deg,
      var(--product-navy) 0%,
      var(--brand-blue) 45%,
      var(--product-magenta) 100%);
  opacity: .36;
}

.home-page .process-step {
  align-content: start;
  justify-items: start;
  gap: 10px;
  padding: 4px 18px 0;
  text-align: left;
}

.home-page .process-number {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: var(--atp-radius-control);
  background: var(--product-navy);
  color: var(--white);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 720;
  font-variation-settings: "wght" 720;
}

.home-page .process-icon {
  width: 22px;
  height: 22px;
  display: block;
  fill: currentColor;
}

.home-page .process-step:nth-child(2) .process-number,
.home-page .process-step:nth-child(4) .process-number {
  background: color-mix(in srgb, var(--product-navy) 86%, var(--brand-blue));
}

.home-page .process-step:nth-child(3) .process-number {
  background: color-mix(in srgb, var(--brand-blue) 72%, var(--product-navy));
}

.home-page .process-step:nth-child(5) .process-number {
  background: var(--product-magenta);
}

.home-page .process-step h3 {
  margin: 20px 0 0;
  color: var(--ink);
  font-size: clamp(19px, 1.45vw, 24px);
  font-weight: 680;
  font-variation-settings: "wght" 680;
}

.home-page .process-step p {
  max-width: 220px;
  color: var(--muted);
  font-size: 15.5px;
}

@media (max-width: 991px) {
  .home-page .process-timeline {
    gap: 18px;
    padding: 26px;
  }

  .home-page .process-step {
    padding: 0;
  }
}

@media (max-width: 560px) {
  .home-page .process-timeline {
    gap: 22px;
  }
}

/* Metrics intro: editorial statement paired with explanatory copy. */
.home-page .metrics-intro {
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: clamp(48px, 8vw, 120px);
}

.home-page .metrics-intro h2 {
  max-width: 540px;
  font-size: 45px;
  line-height: 1.15;
}

.home-page .metrics-intro h2 em,
.home-page .metrics-intro p em {
  font-style: italic;
}

.home-page .metrics-intro h2 sup {
  font-family: var(--sans);
  font-size: .28em;
  vertical-align: super;
}

.home-page .metrics-intro p {
  max-width: 720px;
  margin: 0;
  align-self: start;
  color: var(--muted);
  font-size: 23px;
  line-height: 1.3;
}

@media (max-width: 991px) {
  .home-page .metrics-intro {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .home-page .metrics-intro h2,
  .home-page .metrics-intro p {
    max-width: 860px;
  }
}

/* Homepage use-case cards: flat pastel gradients, no border or shadow. */
.home-page .use-case-grid > .card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 270px;
  padding: 38px 36px;
  border: 0;
  background-color: var(--green);
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, .68), rgba(255, 255, 255, .2));
  box-shadow: none;
}

.home-page .use-case-grid > .card:nth-child(2) {
  background-color: var(--blue);
}

.home-page .use-case-grid > .card:nth-child(3) {
  background-color: var(--yellow);
}

.home-page .use-case-grid > .card:nth-child(4) {
  background-color: var(--pink);
}

.home-page .use-case-grid > .card > * {
  position: relative;
  z-index: 2;
}

.home-page .use-case-grid .use-case-svg-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  display: block;
  fill: currentColor;
}

.home-page .use-case-grid > .card h3 {
  min-height: 90px;
}

.home-page main > .metrics-intro + .use-case-grid {
  margin-bottom: 38px;
}

.home-page .use-case-grid > .card:nth-child(1) .use-case-svg-icon {
  color: #4f9f68;
}

.home-page .use-case-grid > .card:nth-child(2) .use-case-svg-icon {
  color: #4f8fc5;
}

.home-page .use-case-grid > .card:nth-child(3) .use-case-svg-icon {
  color: #d89a16;
}

.home-page .use-case-grid > .card:nth-child(4) .use-case-svg-icon {
  color: var(--product-magenta);
}

.home-page .metrics-footnote {
  width: var(--atp-container);
  max-width: var(--atp-container);
  margin: 0 auto var(--home-section);
  color: color-mix(in srgb, var(--muted) 72%, var(--white));
  font-size: 11px;
  line-height: 1.35;
  font-weight: 400;
}

/* Homepage founder profiles: old ATP open treatment. */
.home-page .founder-grid {
  width: var(--atp-container);
  max-width: var(--atp-container);
  margin: 0 auto var(--home-section);
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(48px, 7vw, 120px);
}

.home-page .founder-card,
.home-page .founder-card.card {
  min-height: 0;
  padding: 0 8px;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 20px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.home-page .founder-photo {
  position: relative;
  width: clamp(230px, 23vw, 330px);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  margin: 0 auto clamp(32px, 4vw, 56px);
}

.home-page .founder-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 82%;
  height: 82%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  opacity: .9;
  pointer-events: none;
}

.home-page .founder-card .card-image,
.home-page .founder-card .founder-portrait {
  position: relative;
  z-index: 1;
  width: 58%;
  height: 58%;
  aspect-ratio: 1 / 1;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  object-fit: cover;
  box-shadow: none;
}

.home-page .founder-linkedin {
  position: absolute;
  right: 17%;
  bottom: 12%;
  z-index: 2;
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 4px;
  background: transparent;
  box-shadow: none;
}

.home-page .founder-linkedin img {
  width: 100%;
  height: 100%;
  display: block;
}

.home-page .founder-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 23px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
}

.home-page .founder-card p {
  max-width: 420px;
  margin: 0 auto;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 23px;
  line-height: 1.3;
  font-weight: 400;
  text-align: center;
}

@media (max-width: 980px) {
  .home-page .founder-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .home-page .founder-photo {
    width: min(70vw, 310px);
    margin-bottom: 28px;
  }

  .home-page .founder-card p {
    max-width: 680px;
  }
}

@media (max-width: 767px) {
  .home-page .founder-card p {
    font-size: 20px;
    line-height: 1.35;
  }
}

@media (max-width: 479px) {
  .home-page .founder-card h3 {
    font-size: 21px;
  }
}

/* Homepage hero: old ATP image-led opening panel. */
.home-page .split-hero {
  position: relative;
  min-height: clamp(620px, 48vw, 920px);
  margin-top: 24px;
  margin-bottom: var(--home-section);
  padding: clamp(56px, 6.4vw, 104px);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  border: 0;
  border-radius: var(--atp-radius-card);
  background: var(--ink);
  overflow: hidden;
  isolation: isolate;
}

.home-page .split-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(20, 18, 24, .76) 0%, rgba(20, 18, 24, .58) 35%, rgba(20, 18, 24, .22) 70%, rgba(20, 18, 24, .10) 100%),
    linear-gradient(0deg, rgba(20, 18, 24, .44), rgba(20, 18, 24, .10));
  pointer-events: none;
}

.home-page .split-hero .hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  border-radius: inherit;
  background: transparent;
  object-fit: cover;
  object-position: center center;
}

.home-page .split-hero .hero-copy {
  position: relative;
  z-index: 2;
  max-width: min(920px, 100%);
  gap: 26px;
  color: var(--white);
  text-shadow:
    0 3px 12px rgba(0, 0, 0, .58),
    0 12px 34px rgba(0, 0, 0, .42);
}

.home-page .split-hero h1 {
  max-width: 920px;
  color: var(--white);
  font-size: clamp(54px, 5.6vw, 92px);
  line-height: .98;
}

.home-page .split-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(18px, 1.45vw, 25px);
  line-height: 1.36;
  font-weight: 400;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, .72),
    0 10px 26px rgba(0, 0, 0, .48);
}

.home-page .split-hero .button-row {
  margin-top: 26px;
  gap: 16px;
  text-shadow: none;
}

.home-page .split-hero .button-light {
  border-color: rgba(255, 255, 255, .92);
  background: var(--white);
  color: var(--ink);
}

.home-page .split-hero .button-dark {
  border-color: rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .06);
  color: var(--white);
}

.home-page .split-hero .button-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, .92);
}

.home-page .split-hero .button-dark:hover {
  border-color: rgba(255, 255, 255, .58);
  background: rgba(255, 255, 255, .12);
}

@media (max-width: 760px) {
  .home-page .split-hero {
    min-height: 620px;
    padding: 42px 24px;
    align-items: flex-end;
  }

  .home-page .split-hero::before {
    background:
      linear-gradient(0deg, rgba(20, 18, 24, .82) 0%, rgba(20, 18, 24, .62) 48%, rgba(20, 18, 24, .16) 100%);
  }

  .home-page .split-hero h1 {
    font-size: clamp(42px, 12vw, 58px);
  }
}

/* Product menu: each row reveals its own product color on hover/focus. */
.nav-dropdown a {
  transition: background-color .18s ease, color .18s ease;
}

.nav-dropdown a[href="reflect.html"] {
  background: linear-gradient(90deg, rgba(234, 242, 250, .52), rgba(234, 242, 250, .20));
}

.nav-dropdown a[href="embark.html"] {
  background: linear-gradient(90deg, rgba(255, 247, 230, .56), rgba(255, 247, 230, .20));
}

.nav-dropdown a[href="consult.html"] {
  background: linear-gradient(90deg, rgba(247, 232, 238, .56), rgba(247, 232, 238, .20));
}

.nav-dropdown a[href="reflect.html"]:hover,
.nav-dropdown a[href="reflect.html"]:focus-visible {
  background: linear-gradient(90deg, rgba(234, 242, 250, .96), rgba(234, 242, 250, .56));
}

.nav-dropdown a[href="embark.html"]:hover,
.nav-dropdown a[href="embark.html"]:focus-visible {
  background: linear-gradient(90deg, rgba(255, 247, 230, .98), rgba(255, 247, 230, .58));
}

.nav-dropdown a[href="consult.html"]:hover,
.nav-dropdown a[href="consult.html"]:focus-visible {
  background: linear-gradient(90deg, rgba(247, 232, 238, .98), rgba(247, 232, 238, .58));
}

/* Homepage closing CTA: tightened after removing the outcomes footnote. */
.home-page .closing-cta {
  padding-bottom: 72px;
}

/* Solutions page: use the same compact card UX as the homepage Solutions section. */
.solutions .solutions-tab-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 32px;
  max-width: min(1040px, var(--atp-container));
  margin-inline: auto;
}

.solutions .solutions-tab-list > article {
  display: flex;
  flex-direction: column;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.solutions .solutions-tab-list > article.is-open {
  grid-column: 1 / -1;
}

.solutions .solution-trigger {
  height: 100%;
  min-height: 270px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  border: var(--atp-border);
  border-radius: var(--atp-radius-card);
  background-color: var(--green);
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, .64), rgba(255, 255, 255, .14));
  box-shadow: var(--atp-shadow-card);
  color: var(--ink);
  cursor: pointer;
  transition:
    transform .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}

.solutions .solution-trigger:hover,
.solutions .solution-trigger:focus-visible,
.solutions .solutions-tab-list > article.is-open .solution-trigger {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--brand-blue) 24%, var(--line));
  box-shadow: var(--atp-shadow-hover);
}

.solutions .solutions-tab-list > article:nth-child(1) .solution-trigger,
.solutions .solutions-tab-list > article:nth-child(1).is-open {
  background-color: transparent;
}

.solutions .solutions-tab-list > article:nth-child(1) .solution-trigger {
  background-color: var(--green);
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, .64), rgba(255, 255, 255, .14));
}

.solutions .solutions-tab-list > article:nth-child(2) .solution-trigger,
.solutions .solutions-tab-list > article:nth-child(2).is-open {
  background-color: transparent;
}

.solutions .solutions-tab-list > article:nth-child(2) .solution-trigger {
  background-color: var(--blue);
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, .62), rgba(255, 255, 255, .12));
}

.solutions .solutions-tab-list > article:nth-child(3) .solution-trigger,
.solutions .solutions-tab-list > article:nth-child(3).is-open {
  background-color: transparent;
}

.solutions .solutions-tab-list > article:nth-child(3) .solution-trigger {
  background-color: var(--yellow);
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, .58), rgba(255, 255, 255, .10));
}

.solutions .solutions-tab-list > article:nth-child(4) .solution-trigger,
.solutions .solutions-tab-list > article:nth-child(4).is-open {
  background-color: transparent;
}

.solutions .solutions-tab-list > article:nth-child(4) .solution-trigger {
  background-color: var(--pink);
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, .60), rgba(255, 255, 255, .10));
}

.solutions .solutions-tab-list > article:nth-child(5) .solution-trigger,
.solutions .solutions-tab-list > article:nth-child(5).is-open {
  background-color: transparent;
}

.solutions .solutions-tab-list > article:nth-child(5) .solution-trigger {
  background-color: var(--purple);
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, .62), rgba(255, 255, 255, .12));
}

.solutions .solutions-tab-list > article:nth-child(6) .solution-trigger,
.solutions .solutions-tab-list > article:nth-child(6).is-open {
  background-color: transparent;
}

.solutions .solutions-tab-list > article:nth-child(6) .solution-trigger {
  background-color: var(--peach);
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, .60), rgba(255, 255, 255, .10));
}

.solutions .solution-marker {
  width: 38px;
  height: 38px;
  min-height: 0;
  margin-bottom: 8px;
  display: block;
  overflow: visible;
  color: #2f8a55;
  flex: 0 0 auto;
}

.solutions .solution-marker img {
  display: none;
}

.solutions .solution-marker .solution-svg-icon {
  width: 38px;
  height: 38px;
  display: block;
  fill: currentColor;
}

.solutions .solution-marker .material-symbols-outlined.solution-svg-icon {
  font-size: 38px;
}

.solutions .solutions-tab-list > article:nth-child(2) .solution-marker {
  color: #3a7fba;
}

.solutions .solutions-tab-list > article:nth-child(3) .solution-marker {
  color: #d89a16;
}

.solutions .solutions-tab-list > article:nth-child(4) .solution-marker {
  color: var(--product-magenta);
}

.solutions .solutions-tab-list > article:nth-child(5) .solution-marker {
  color: #7a5aa6;
}

.solutions .solutions-tab-list > article:nth-child(6) .solution-marker {
  color: #bd6d52;
}

.solutions .solution-copy {
  min-height: 100%;
  padding: 0;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
}

.solutions .solution-title {
  max-width: 11.8em;
  font-family: var(--sans);
  font-size: 23px;
  line-height: 1.3;
  font-weight: 720;
  letter-spacing: 0;
}

.solutions .solution-summary {
  max-width: 25em;
  margin-top: auto;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 400;
  font-variation-settings: "wght" 400;
}

.solutions .solution-products {
  margin-top: 2px;
  gap: 8px;
}

.solutions .solution-products-label {
  width: 100%;
  margin: 0;
  font-size: 11px;
  letter-spacing: .06em;
}

.solutions .solution-product-chip {
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid color-mix(in srgb, var(--line) 76%, transparent);
  border-radius: var(--atp-radius-control);
  background: rgba(255, 255, 255, .72);
}

.solutions .solution-product-chip img {
  height: 20px;
  max-width: 112px;
}

.solutions .solution-detail {
  margin-top: 18px;
  border-radius: var(--atp-radius-card);
  background: var(--white);
  box-shadow: none;
  overflow: hidden;
}

.solutions .solution-detail-copy {
  padding: 36px;
  border: var(--atp-border);
  border-radius: inherit;
}

@media (max-width: 980px) {
  .solutions .solutions-tab-list {
    grid-template-columns: 1fr;
    max-width: var(--atp-container);
  }

  .solutions .solutions-tab-list > article.is-open {
    grid-column: auto;
  }

  .solutions .solution-trigger {
    min-height: 240px;
    padding: 24px;
  }
}

@media (max-width: 640px) {
  .solutions .solution-trigger {
    min-height: 0;
    padding: 22px;
  }

  .solutions .solution-title {
    max-width: none;
    font-size: 21px;
  }

  .solutions .solution-detail-copy {
    padding: 24px;
  }
}

/* Solutions page repair: compact cards stay clean, selected card opens into a full-width detail panel. */
.solutions .solutions-tab-list {
  align-items: start;
}

.solutions .solutions-tab-list > article {
  min-width: 0;
  scroll-margin-top: 110px;
}

.solutions .solution-trigger {
  height: auto;
  min-height: 360px;
  overflow: hidden;
}

.solutions .solution-copy {
  width: 100%;
}

.solutions .solution-summary {
  margin-top: auto;
}

.solutions .solution-products {
  margin-top: 12px;
}

.solutions .solutions-tab-list > article.is-open {
  display: grid;
  border: var(--atp-border);
  border-radius: var(--atp-radius-card);
  background: var(--white);
  box-shadow: none;
  overflow: hidden;
}

.solutions .solutions-tab-list > article.is-open .solution-trigger {
  min-height: 0;
  padding: 34px 40px;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  column-gap: 28px;
  align-items: start;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform: none;
}

.solutions .solutions-tab-list > article.is-open .solution-trigger:hover,
.solutions .solutions-tab-list > article.is-open .solution-trigger:focus-visible {
  transform: none;
  box-shadow: none;
}

.solutions .solutions-tab-list > article.is-open .solution-marker {
  width: 44px;
  height: 44px;
  margin: 0;
}

.solutions .solutions-tab-list > article.is-open .solution-marker .solution-svg-icon {
  width: 44px;
  height: 44px;
}

.solutions .solutions-tab-list > article.is-open .solution-marker .material-symbols-outlined.solution-svg-icon {
  font-size: 44px;
}

.solutions .solutions-tab-list > article.is-open .solution-copy {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.2fr);
  gap: 18px 40px;
}

.solutions .solutions-tab-list > article.is-open .solution-title {
  max-width: 18em;
}

.solutions .solutions-tab-list > article.is-open .solution-summary {
  max-width: 38em;
  margin-top: 4px;
}

.solutions .solutions-tab-list > article.is-open .solution-products {
  grid-column: 2;
  margin-top: 0;
}

.solutions .solutions-tab-list > article.is-open .solution-detail {
  margin-top: 0;
  border-top: var(--atp-border);
  border-radius: 0;
  background: rgba(255, 255, 255, .86);
  overflow: hidden;
}

.solutions .solutions-tab-list > article.is-open .solution-detail-copy {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 0;
  border-radius: 0;
}

.solutions .solution-detail-copy > div {
  min-height: 220px;
  padding: 38px 44px;
}

@media (max-width: 980px) {
  .solutions .solution-trigger {
    min-height: 320px;
  }

  .solutions .solutions-tab-list > article.is-open .solution-trigger {
    grid-template-columns: 1fr;
    row-gap: 18px;
    padding: 28px;
  }

  .solutions .solutions-tab-list > article.is-open .solution-copy {
    grid-template-columns: 1fr;
  }

  .solutions .solutions-tab-list > article.is-open .solution-products {
    grid-column: auto;
  }

  .solutions .solutions-tab-list > article.is-open .solution-detail-copy {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .solutions .solution-trigger {
    min-height: 0;
  }

  .solutions .solutions-tab-list > article.is-open .solution-trigger {
    padding: 24px;
  }

  .solutions .solution-detail-copy > div {
    min-height: 0;
    padding: 28px 24px;
  }
}

/* Navbar lock: tablet widths should keep the real nav, not the phone drawer. */
@media (min-width: 761px) and (max-width: 980px) {
  body.nav-open::before {
    content: none;
  }

  .site-header {
    min-height: 70px;
    padding-inline: 24px;
  }

  .menu-toggle {
    display: none;
  }

  .main-nav,
  body.nav-open .main-nav {
    width: auto;
    position: static;
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-group {
    width: auto;
    position: relative;
  }

  .nav-dropdown {
    width: min(520px, calc(100vw - 48px));
    max-width: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    right: auto;
    margin-top: 0;
    transform: translate(-50%, 6px);
    opacity: 0;
    visibility: hidden;
    box-shadow: var(--shadow-dropdown);
  }

  .nav-group:hover .nav-dropdown,
  .nav-group.is-open .nav-dropdown {
    transform: translate(-50%, 0);
    opacity: 1;
    visibility: visible;
  }

  .nav-dropdown a {
    grid-template-columns: 112px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
  }

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

@media (max-width: 760px) {
  .main-nav {
    left: 16px;
    right: 16px;
    width: auto;
    max-width: none;
    box-sizing: border-box;
    overflow-y: auto;
    max-height: calc(100dvh - 88px);
  }

  .nav-group,
  .nav-dropdown {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
  }

  .nav-trigger {
    width: 100%;
    justify-content: flex-start;
  }

  .nav-dropdown {
    position: static;
    left: auto;
    right: auto;
    transform: none;
    opacity: 1;
    visibility: visible;
  }

  .nav-dropdown a {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }
}

/* Reflect page redesign: scoped to the body sections after the hero. */
.reflect-page .reflect-section {
  width: var(--wide);
  margin: 0 auto;
  padding: var(--section-y) 0;
}

.reflect-page .product-hero + .reflect-section {
  padding-top: var(--section-y-tight);
}

.reflect-page .reflect-section-head {
  display: grid;
  justify-items: center;
  gap: 22px;
  text-align: center;
}

.reflect-page .reflect-section h2,
.reflect-page .reflect-dark-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
}

.reflect-page .reflect-section h2 {
  max-width: 1040px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.06;
}

.reflect-page .reflect-section p {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.45;
  font-weight: 460;
}

.reflect-page .reflect-mark {
  display: inline-block;
  padding: .02em .14em .1em;
  border-radius: 8px;
}

.reflect-page .reflect-mark-measure {
  background: #edcdc8;
}

.reflect-page .reflect-mark-move {
  background: #edf7ed;
}

.reflect-page .reflect-dark-card {
  margin-top: clamp(48px, 5vw, 72px);
  min-height: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 28px;
  padding: clamp(48px, 6vw, 80px);
  background: var(--black);
  border-radius: 8px;
  text-align: center;
}

.reflect-page .reflect-dark-card h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 18px;
  color: var(--white);
  font-size: clamp(42px, 4.8vw, 68px);
  line-height: 1.03;
}

.reflect-page .reflect-dark-card p {
  max-width: 820px;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.48;
}

.reflect-page .reflect-logo-card {
  display: inline-flex;
  align-items: center;
  padding: 10px 12px 9px;
  background: var(--white);
  border-radius: 8px;
}

.reflect-page .reflect-logo-card img {
  width: clamp(180px, 16vw, 250px);
  height: auto;
}

.reflect-page .reflect-inline-wordmark,
.reflect-page .reflect-heading-wordmark {
  display: inline-block;
  width: 4.65em;
  height: auto;
  margin: 0 .18em -.09em 0;
  vertical-align: baseline;
}

.reflect-page .reflect-heading-wordmark {
  width: 4.25em;
  margin: 0 .16em -.07em;
}

.reflect-page .reflect-rhythm {
  display: grid;
  gap: clamp(42px, 5vw, 64px);
}

.reflect-page .reflect-rhythm .reflect-section-head p {
  max-width: 1040px;
}

.reflect-page .reflect-diagram-image {
  width: min(1060px, 100%);
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.reflect-page .reflect-tile-grid {
  display: grid;
  gap: var(--grid-gap);
}

.reflect-page .reflect-three-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 40px;
}

.reflect-page .reflect-outcome-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 40px;
}

.reflect-page .reflect-tile {
  min-height: 240px;
  padding: 24px;
  border-radius: 8px;
  display: grid;
  align-content: start;
  gap: 16px;
}

.reflect-page .reflect-outcome-grid .reflect-tile {
  min-height: 170px;
  gap: 12px;
}

.reflect-page .reflect-tile-green {
  background: #edf7ed;
}

.reflect-page .reflect-tile-blue {
  background: #dcedfb;
}

.reflect-page .reflect-tile-yellow {
  background: #fff5c9;
}

.reflect-page .reflect-tile-pink {
  background: #e5cdd7;
}

.reflect-page .reflect-tile h3,
.reflect-page .reflect-use-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 25px;
  line-height: 1.16;
  font-weight: 720;
  letter-spacing: 0;
}

.reflect-page .reflect-tile p,
.reflect-page .reflect-use-card p {
  max-width: none;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.45;
  font-weight: 450;
}

.reflect-page .reflect-card-icon {
  width: 34px;
  height: 34px;
  position: relative;
  color: rgba(34, 34, 34, .28);
}

.reflect-page .reflect-card-icon::before,
.reflect-page .reflect-card-icon::after {
  content: "";
  position: absolute;
  border-color: currentColor;
}

.reflect-page .reflect-card-icon::before {
  inset: 6px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.reflect-page .reflect-card-icon::after {
  width: 18px;
  height: 18px;
  left: 10px;
  top: 10px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: rotate(45deg);
}

.reflect-page .reflect-icon-culture::before {
  box-shadow: -12px 8px 0 -7px currentColor, 12px 8px 0 -7px currentColor;
}

.reflect-page .reflect-icon-capability::after {
  width: 10px;
  height: 18px;
  left: 14px;
  top: 9px;
  border: 0;
  border-left: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: none;
}

.reflect-page .reflect-icon-commitment::before {
  border-radius: 8px;
  transform: rotate(45deg);
}

.reflect-page .reflect-icon-leadership::before {
  border-radius: 8px;
}

.reflect-page .reflect-icon-quality::before {
  border-radius: 0;
  border-width: 0 0 3px 0;
  box-shadow: 0 -8px 0 currentColor, 0 8px 0 currentColor;
}

.reflect-page .reflect-icon-execution::before {
  border-style: dashed;
}

.reflect-page .reflect-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  align-items: center;
  gap: clamp(42px, 6vw, 84px);
}

.reflect-page .reflect-split > img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
  border-radius: 8px;
}

.reflect-page .reflect-split-action {
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.12fr);
}

.reflect-page .reflect-split-action > img {
  aspect-ratio: 1.38 / 1;
}

.reflect-page .reflect-split > div {
  display: grid;
  gap: 22px;
}

.reflect-page .reflect-split h2 {
  max-width: 640px;
  font-size: clamp(42px, 5vw, 64px);
}

.reflect-page .reflect-split p {
  max-width: 680px;
}

.reflect-page .reflect-check-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 500;
}

.reflect-page .reflect-check-list li {
  display: flex;
  align-items: center;
  gap: 14px;
}

.reflect-page .reflect-check-list li::before {
  content: "";
  width: 16px;
  height: 9px;
  border-left: 3px solid #448451;
  border-bottom: 3px solid #448451;
  transform: rotate(-45deg);
}

.reflect-page .reflect-use-cases .reflect-section-head {
  max-width: 1040px;
  margin: 0 auto;
}

.reflect-page .reflect-use-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--grid-gap);
}

.reflect-page .reflect-use-card {
  display: grid;
  gap: 18px;
}

.reflect-page .reflect-use-card img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
  border-radius: 8px;
}

.reflect-page .reflect-use-card h3,
.reflect-page .reflect-use-card p {
  padding-inline: 0;
}

@media (max-width: 1100px) {
  .reflect-page .reflect-section {
    width: min(100% - 48px, 980px);
  }

  .reflect-page .reflect-three-grid,
  .reflect-page .reflect-outcome-grid,
  .reflect-page .reflect-use-grid {
    grid-template-columns: 1fr 1fr;
  }

  .reflect-page .reflect-split,
  .reflect-page .reflect-split-action {
    grid-template-columns: 1fr;
  }

  .reflect-page .reflect-split-action > div {
    order: 2;
  }
}

@media (max-width: 680px) {
  .reflect-page .reflect-section {
    width: min(100% - 32px, 620px);
    padding: 58px 0;
  }

  .reflect-page .product-hero + .reflect-section {
    padding-top: 64px;
  }

  .reflect-page .reflect-section h2 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .reflect-page .reflect-section p,
  .reflect-page .reflect-tile p,
  .reflect-page .reflect-use-card p {
    font-size: 18px;
  }

  .reflect-page .reflect-dark-card {
    min-height: 0;
    padding: 36px 24px;
  }

  .reflect-page .reflect-dark-card h3 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .reflect-page .reflect-dark-card p {
    font-size: 18px;
  }

  .reflect-page .reflect-logo-card img {
    width: 180px;
  }

  .reflect-page .reflect-three-grid,
  .reflect-page .reflect-outcome-grid,
  .reflect-page .reflect-use-grid {
    grid-template-columns: 1fr;
  }

  .reflect-page .reflect-tile {
    min-height: 0;
    padding: 28px;
  }

  .reflect-page .reflect-split > img,
  .reflect-page .reflect-split-action > img,
  .reflect-page .reflect-use-card img {
    aspect-ratio: 1.45 / 1;
  }

  .reflect-page .reflect-use-card h3,
  .reflect-page .reflect-use-card p {
    padding-inline: 0;
  }
}

/* Embark page redesign: scoped to the body sections after the hero. */
.embark-page .embark-section {
  width: var(--wide);
  margin: 0 auto;
  padding: var(--section-y) 0;
}

.embark-page .product-hero + .embark-section {
  padding-top: var(--section-y-tight);
}

.embark-page .embark-section-head {
  display: grid;
  justify-items: center;
  gap: 22px;
  text-align: center;
}

.embark-page .embark-section h2,
.embark-page .embark-dark-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
}

.embark-page .embark-section h2 {
  max-width: 1040px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.06;
}

.embark-page .embark-section p {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.45;
  font-weight: 460;
}

.embark-page .embark-mark {
  display: inline-block;
  padding: .02em .14em .1em;
  border-radius: 8px;
}

.embark-page .embark-mark-late {
  background: #edcdc8;
}

.embark-page .embark-mark-early {
  background: #fff5c9;
}

.embark-page .embark-dark-card {
  margin-top: clamp(48px, 5vw, 72px);
  min-height: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 28px;
  padding: clamp(48px, 6vw, 80px);
  background: var(--black);
  border-radius: 8px;
  text-align: center;
}

.embark-page .embark-dark-card h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 18px;
  max-width: 980px;
  color: var(--white);
  font-size: clamp(40px, 4.7vw, 64px);
  line-height: 1.03;
}

.embark-page .embark-dark-card p {
  max-width: 820px;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.48;
}

.embark-page .embark-logo-card {
  display: inline-flex;
  align-items: center;
  padding: 10px 12px 9px;
  background: var(--white);
  border-radius: 8px;
}

.embark-page .embark-logo-card img {
  width: clamp(180px, 16vw, 250px);
  height: auto;
}

.embark-page .embark-inline-wordmark {
  display: inline-block;
  width: 4.65em;
  height: auto;
  margin: 0 .18em -.09em 0;
  vertical-align: baseline;
}

.embark-page .embark-framework {
  display: grid;
  gap: clamp(42px, 5vw, 64px);
}

.embark-page .embark-framework-image {
  width: min(1120px, 100%);
  margin: 0 auto;
  aspect-ratio: 5 / 2;
  object-fit: contain;
}

.embark-page .embark-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  align-items: center;
  gap: clamp(42px, 6vw, 84px);
}

.embark-page .embark-split-effort {
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.12fr);
}

.embark-page .embark-split > img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  border-radius: 8px;
}

.embark-page .embark-split-effort > img {
  aspect-ratio: 1.9 / 1;
}

.embark-page .embark-split > div {
  display: grid;
  gap: 22px;
}

.embark-page .embark-split h2 {
  max-width: 680px;
  font-size: clamp(42px, 5vw, 64px);
}

.embark-page .embark-split p {
  max-width: 680px;
}

.embark-page .embark-tile-grid {
  display: grid;
  gap: var(--grid-gap);
}

.embark-page .embark-outcome-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 40px;
}

.embark-page .embark-tile {
  min-height: 170px;
  padding: 24px;
  border-radius: 8px;
  display: grid;
  align-content: start;
  gap: 14px;
}

.embark-page .embark-tile-green {
  background: #edf7ed;
}

.embark-page .embark-tile-blue {
  background: #dcedfb;
}

.embark-page .embark-tile-yellow {
  background: #fff5c9;
}

.embark-page .embark-tile-pink {
  background: #e5cdd7;
}

.embark-page .embark-tile h3,
.embark-page .embark-use-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 25px;
  line-height: 1.16;
  font-weight: 720;
  letter-spacing: 0;
}

.embark-page .embark-tile p,
.embark-page .embark-use-card p {
  max-width: none;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.45;
  font-weight: 450;
}

.embark-page .embark-card-icon {
  width: 34px;
  height: 34px;
  position: relative;
  color: rgba(34, 34, 34, .28);
}

.embark-page .embark-card-icon::before,
.embark-page .embark-card-icon::after {
  content: "";
  position: absolute;
}

.embark-page .embark-icon-plus::before,
.embark-page .embark-icon-plus::after {
  left: 18px;
  top: 8px;
  width: 3px;
  height: 24px;
  background: currentColor;
}

.embark-page .embark-icon-plus::after {
  transform: rotate(90deg);
}

.embark-page .embark-icon-people::before {
  inset: 7px;
  border: 3px solid currentColor;
  border-radius: 50%;
  box-shadow: -12px 8px 0 -7px currentColor, 12px 8px 0 -7px currentColor;
}

.embark-page .embark-icon-gears::before,
.embark-page .embark-icon-gears::after {
  width: 16px;
  height: 16px;
  border: 3px dotted currentColor;
  border-radius: 50%;
}

.embark-page .embark-icon-gears::before {
  left: 7px;
  top: 6px;
}

.embark-page .embark-icon-gears::after {
  right: 4px;
  bottom: 5px;
}

.embark-page .embark-icon-speed::before {
  left: 5px;
  top: 11px;
  width: 26px;
  height: 18px;
  border: 3px solid currentColor;
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
}

.embark-page .embark-icon-speed::after {
  left: 18px;
  top: 16px;
  width: 14px;
  height: 3px;
  background: currentColor;
  transform: rotate(-35deg);
  transform-origin: left center;
}

.embark-page .embark-use-cases .embark-section-head {
  max-width: 1040px;
  margin: 0 auto;
}

.embark-page .embark-use-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--grid-gap);
}

.embark-page .embark-use-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border-radius: 8px;
}

.embark-page .embark-use-card img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
}

.embark-page .embark-use-card > div {
  min-height: 220px;
  display: grid;
  align-content: start;
  gap: 20px;
  padding: 28px;
}

.embark-page .embark-use-pink > div {
  background: #e5cdd7;
}

.embark-page .embark-use-blue > div {
  background: #dcedfb;
}

.embark-page .embark-use-green > div {
  background: #edf7ed;
}

@media (max-width: 980px) {
  .embark-page .embark-section {
    width: min(100% - 48px, 900px);
  }

  .embark-page .embark-outcome-grid,
  .embark-page .embark-use-grid {
    grid-template-columns: 1fr 1fr;
  }

  .embark-page .embark-split,
  .embark-page .embark-split-effort {
    grid-template-columns: 1fr;
  }

  .embark-page .embark-split-effort > div {
    order: 2;
  }
}

@media (max-width: 680px) {
  .embark-page .embark-section {
    width: min(100% - 32px, 620px);
    padding: 58px 0;
  }

  .embark-page .product-hero + .embark-section {
    padding-top: 64px;
  }

  .embark-page .embark-section h2 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .embark-page .embark-section p,
  .embark-page .embark-tile p,
  .embark-page .embark-use-card p {
    font-size: 18px;
  }

  .embark-page .embark-dark-card {
    min-height: 0;
    padding: 36px 24px;
  }

  .embark-page .embark-dark-card h3 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .embark-page .embark-dark-card p {
    font-size: 18px;
  }

  .embark-page .embark-logo-card img {
    width: 180px;
  }

  .embark-page .embark-framework-image {
    width: 100%;
    max-width: 100%;
    transform: none;
  }

  .embark-page .embark-framework {
    overflow: hidden;
  }

  .embark-page .embark-outcome-grid,
  .embark-page .embark-use-grid {
    grid-template-columns: 1fr;
  }

  .embark-page .embark-tile {
    min-height: 0;
    padding: 24px;
  }

  .embark-page .embark-split > img,
  .embark-page .embark-split-effort > img {
    aspect-ratio: 1.45 / 1;
  }

  .embark-page .embark-use-card > div {
    min-height: 0;
    gap: 24px;
    padding: 24px;
  }
}

/* ATP Consult page redesign */
.consult-page .consult-section {
  width: var(--wide);
  margin: 0 auto;
  padding: var(--section-y) 0;
}

.consult-page .product-hero + .consult-section {
  padding-top: var(--section-y-tight);
}

.consult-page .consult-section h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.06;
  font-weight: 400;
  letter-spacing: 0;
}

.consult-page .consult-section p {
  margin: 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 20px;
  line-height: 1.45;
  font-weight: 460;
}

.consult-page .consult-split {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(42px, 6vw, 84px);
}

.consult-page .consult-split h2,
.consult-page .consult-priority-copy h2 {
  font-family: var(--sans);
  font-size: clamp(40px, 4vw, 58px);
  line-height: 1.12;
  font-weight: 520;
}

.consult-page .consult-split > div {
  display: grid;
  gap: 28px;
}

.consult-page .consult-split > img {
  width: 100%;
  aspect-ratio: 1.34 / 1;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.consult-page .consult-section-head {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  gap: 22px;
  text-align: center;
}

.consult-page .consult-section-head p {
  max-width: 760px;
  margin: 0 auto;
}

.consult-page .consult-tile-grid {
  display: grid;
  gap: var(--grid-gap);
}

.consult-page .consult-system-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 40px;
}

.consult-page .consult-tile {
  min-height: 220px;
  padding: 24px;
  border-radius: 8px;
  display: grid;
  align-content: start;
  gap: 16px;
}

.consult-page .consult-tile-green {
  background: #edf7ed;
}

.consult-page .consult-tile-blue {
  background: #dcedfb;
}

.consult-page .consult-tile-pink {
  background: #e5cdd7;
}

.consult-page .consult-tile-yellow {
  background: #fff5c9;
}

.consult-page .consult-tile h3,
.consult-page .consult-use-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 25px;
  line-height: 1.16;
  font-weight: 720;
  letter-spacing: 0;
}

.consult-page .consult-tile p,
.consult-page .consult-use-card p {
  max-width: none;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.45;
  font-weight: 450;
}

.consult-page .consult-card-icon {
  width: 34px;
  height: 34px;
  position: relative;
  color: rgba(34, 34, 34, .26);
}

.consult-page .consult-card-icon::before,
.consult-page .consult-card-icon::after {
  content: "";
  position: absolute;
}

.consult-page .consult-icon-people::before {
  left: 15px;
  top: 7px;
  width: 12px;
  height: 12px;
  border: 3px solid currentColor;
  border-radius: 50%;
  box-shadow: -14px 8px 0 -4px currentColor, 14px 8px 0 -4px currentColor;
}

.consult-page .consult-icon-people::after {
  left: 8px;
  top: 23px;
  width: 26px;
  height: 10px;
  border: 3px solid currentColor;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom: 0;
}

.consult-page .consult-icon-star::before {
  left: 6px;
  top: 6px;
  width: 24px;
  height: 24px;
  border: 4px solid currentColor;
  clip-path: polygon(50% 0, 62% 31%, 96% 35%, 70% 56%, 78% 90%, 50% 72%, 22% 90%, 30% 56%, 4% 35%, 38% 31%);
}

.consult-page .consult-icon-talent::before {
  inset: 5px;
  border: 3px solid currentColor;
  border-radius: 50%;
  box-shadow: -11px 10px 0 -7px currentColor, 11px 10px 0 -7px currentColor;
}

.consult-page .consult-icon-talent::after {
  left: 12px;
  top: 17px;
  width: 18px;
  height: 13px;
  border: 3px solid currentColor;
  border-radius: 12px;
}

.consult-page .consult-icon-gears::before,
.consult-page .consult-icon-gears::after {
  width: 17px;
  height: 17px;
  border: 3px dotted currentColor;
  border-radius: 50%;
}

.consult-page .consult-icon-gears::before {
  left: 7px;
  top: 7px;
}

.consult-page .consult-icon-gears::after {
  right: 5px;
  bottom: 6px;
}

.consult-page .consult-priorities {
  display: grid;
  grid-template-columns: minmax(280px, .38fr) minmax(0, .62fr);
  gap: clamp(42px, 6vw, 84px);
  align-items: start;
}

.consult-page .consult-priority-copy {
  display: grid;
  gap: 28px;
  position: sticky;
  top: 120px;
}

.consult-page .consult-priority-copy p {
  max-width: 560px;
}

.consult-page .consult-priority-panel {
  display: grid;
  gap: 24px;
}

.consult-page .consult-priority-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(15, 24, 38, .09);
}

.consult-page .consult-priority-list li {
  min-height: 118px;
  display: grid;
  grid-template-columns: 64px minmax(190px, .55fr) minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(15, 24, 38, .09);
}

.consult-page .consult-priority-list span {
  color: #b6b9cd;
  font-family: var(--serif);
  font-size: clamp(38px, 3vw, 52px);
  line-height: 1;
  font-weight: 400;
}

.consult-page .consult-priority-list h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(20px, 1.3vw, 24px);
  line-height: 1.2;
  font-weight: 560;
  letter-spacing: 0;
}

.consult-page .consult-priority-list p {
  color: var(--muted);
  font-size: clamp(17px, 1.1vw, 20px);
  line-height: 1.35;
}

.consult-page .consult-challenge-link {
  min-height: 104px;
  padding: 24px;
  border-radius: 8px;
  background: #1f1f1f;
  color: #fff;
  display: grid;
  grid-template-columns: 42px minmax(180px, .5fr) minmax(240px, 1fr) 28px;
  gap: 18px;
  align-items: center;
  text-decoration: none;
}

.consult-page .consult-challenge-link span {
  color: rgba(255, 255, 255, .78);
  font-family: var(--sans);
  font-size: 32px;
  line-height: 1;
  font-weight: 300;
}

.consult-page .consult-challenge-link strong,
.consult-page .consult-challenge-link em {
  font-family: var(--sans);
  font-size: clamp(18px, 1.25vw, 22px);
  line-height: 1.2;
  font-style: normal;
  letter-spacing: 0;
}

.consult-page .consult-challenge-link strong {
  color: #fff;
  font-weight: 650;
}

.consult-page .consult-challenge-link em {
  color: rgba(255, 255, 255, .62);
  font-weight: 500;
}

.consult-page .consult-model-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 40px;
}

.consult-page .consult-model-card {
  min-height: 220px;
  padding: 24px;
  border-radius: 8px;
  display: grid;
  align-content: space-between;
  gap: 24px;
}

.consult-page .consult-model-card > img,
.consult-page .consult-model-stack img {
  width: clamp(138px, 10vw, 170px);
  max-width: 100%;
  height: auto;
  display: block;
}

.consult-page .consult-model-stack {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.consult-page .consult-model-stack span {
  margin-left: 6px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 28px;
  line-height: .5;
  font-weight: 520;
}

.consult-page .consult-model-card p {
  color: var(--muted);
  font-size: 18px;
}

.consult-page .consult-use-cases .consult-section-head {
  max-width: 1040px;
}

.consult-page .consult-use-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--grid-gap);
}

.consult-page .consult-use-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border-radius: 8px;
}

.consult-page .consult-use-card img {
  width: 100%;
  aspect-ratio: 1.58 / 1;
  object-fit: cover;
  display: block;
}

.consult-page .consult-use-card > div {
  min-height: 220px;
  padding: 28px;
  display: grid;
  align-content: start;
  gap: 20px;
}

.consult-page .consult-use-pink > div {
  background: #e5cdd7;
}

.consult-page .consult-use-blue > div {
  background: #dcedfb;
}

.consult-page .consult-use-green > div {
  background: #edf7ed;
}

@media (max-width: 980px) {
  .consult-page .consult-section {
    width: min(100% - 48px, 900px);
  }

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

  .consult-page .consult-split,
  .consult-page .consult-priorities {
    grid-template-columns: 1fr;
  }

  .consult-page .consult-priority-copy {
    position: static;
    gap: 36px;
  }

  .consult-page .consult-use-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .consult-page .consult-section {
    width: min(100% - 32px, 620px);
    padding: 58px 0;
  }

  .consult-page .product-hero + .consult-section {
    padding-top: 64px;
  }

  .consult-page .consult-section h2,
  .consult-page .consult-split h2,
  .consult-page .consult-priority-copy h2 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .consult-page .consult-section p,
  .consult-page .consult-tile p,
  .consult-page .consult-use-card p {
    font-size: 18px;
  }

  .consult-page .consult-split,
  .consult-page .consult-section-head {
    gap: 28px;
  }

  .consult-page .consult-split > div {
    gap: 28px;
  }

  .consult-page .consult-system-grid,
  .consult-page .consult-model-grid,
  .consult-page .consult-use-grid {
    grid-template-columns: 1fr;
  }

  .consult-page .consult-tile,
  .consult-page .consult-model-card {
    min-height: 0;
    padding: 24px;
  }

  .consult-page .consult-priority-list li {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px;
  }

  .consult-page .consult-priority-list,
  .consult-page .consult-priority-list li:nth-child(5) {
    grid-template-columns: 1fr;
  }

  .consult-page .consult-priority-icon {
    width: 32px;
    height: 32px;
  }

  .consult-page .consult-priority-list h3 {
    font-size: 24px;
  }

  .consult-page .consult-priority-list p {
    font-size: 18px;
  }

  .consult-page .consult-challenge-link {
    min-height: 0;
    padding: 24px;
    grid-template-columns: 1fr auto;
    gap: 16px 24px;
  }

  .consult-page .consult-challenge-link strong,
  .consult-page .consult-challenge-link em {
    grid-column: 1 / -1;
    font-size: 20px;
  }

  .consult-page .consult-challenge-link span:first-child {
    grid-row: 1;
  }

  .consult-page .consult-challenge-link span:last-child {
    grid-row: 1;
    justify-self: end;
  }

  .consult-page .consult-model-card > img,
  .consult-page .consult-model-stack img {
    width: 170px;
  }

  .consult-page .consult-use-card > div {
    min-height: 0;
    gap: 24px;
    padding: 24px;
  }
}

/* Reflect page polish: align scale and spacing to the ATP style guide without changing content or section order. */
.reflect-page .reflect-section {
  width: min(1180px, calc(100% - 64px));
  padding: clamp(64px, 7vw, 96px) 0;
}

.reflect-page .product-hero + .reflect-section {
  padding-top: clamp(56px, 6vw, 82px);
}

.reflect-page .reflect-section-head {
  gap: 18px;
}

.reflect-page .reflect-section h2 {
  max-width: 860px;
  font-size: clamp(34px, 3.25vw, 45px);
  line-height: 1.15;
}

.reflect-page .reflect-section p {
  max-width: 860px;
  font-size: clamp(17px, 1.35vw, 19px);
  line-height: 1.48;
  font-weight: 400;
  font-variation-settings: "wght" 400;
}

.reflect-page .reflect-intro .reflect-section-head {
  gap: 22px;
}

.reflect-page .reflect-intro h2 {
  max-width: 860px;
  font-size: clamp(34px, 3.25vw, 45px);
}

.reflect-page .reflect-mark {
  padding: .015em .13em .09em;
  border-radius: var(--atp-radius-control);
}

.reflect-page .reflect-dark-card {
  max-width: 1060px;
  margin: clamp(42px, 4.6vw, 60px) auto 0;
  gap: 22px;
  padding: clamp(44px, 5vw, 64px);
  border-radius: var(--atp-radius-card);
}

.reflect-page .reflect-dark-card h3 {
  max-width: 720px;
  font-size: clamp(34px, 3.25vw, 45px);
  line-height: 1.15;
}

.reflect-page .reflect-dark-card p {
  max-width: 720px;
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.5;
  font-weight: 400;
}

.reflect-page .reflect-logo-card {
  padding: 9px 12px 8px;
  border-radius: var(--atp-radius-control);
}

.reflect-page .reflect-logo-card img {
  width: clamp(150px, 13vw, 210px);
}

.reflect-page .reflect-inline-wordmark,
.reflect-page .reflect-heading-wordmark {
  width: auto;
  height: .78em;
  max-width: 7.8rem;
  margin: 0 .18em -.08em 0;
}

.reflect-page .reflect-inline-wordmark {
  height: 1.35em;
  max-width: 12rem;
  margin: 0 .24em 0 0;
  vertical-align: -.28em;
}

.reflect-page .reflect-heading-wordmark {
  height: .92em;
  max-width: 11.25rem;
  margin: 0 .18em -.12em;
}

.reflect-page .reflect-rhythm {
  gap: clamp(34px, 4vw, 48px);
}

.reflect-page .reflect-diagram-image {
  width: min(960px, 100%);
  max-height: 620px;
}

.reflect-page .reflect-three-grid,
.reflect-page .reflect-outcome-grid,
.reflect-page .reflect-use-grid {
  margin-top: 34px;
}

.reflect-page .reflect-tile {
  min-height: 220px;
  padding: clamp(24px, 2.6vw, 34px);
  gap: 14px;
  border-radius: var(--atp-radius-card);
}

.reflect-page .reflect-outcome-grid .reflect-tile {
  min-height: 160px;
}

.reflect-page .reflect-tile h3,
.reflect-page .reflect-use-card h3 {
  font-size: clamp(23px, 2vw, 28px);
  line-height: 1.16;
}

.reflect-page .reflect-tile p,
.reflect-page .reflect-use-card p {
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.45;
  font-weight: 400;
}

.reflect-page .reflect-card-icon {
  width: 30px;
  height: 30px;
  color: rgba(34, 34, 34, .32);
}

.reflect-page .reflect-split {
  width: min(1180px, calc(100% - 64px));
  gap: clamp(36px, 5vw, 68px);
}

.reflect-page .reflect-split > img {
  aspect-ratio: 1.7 / 1;
  border-radius: var(--atp-radius-card);
}

.reflect-page .reflect-split h2 {
  max-width: 560px;
  font-size: clamp(34px, 3.25vw, 45px);
  line-height: 1.15;
}

.reflect-page .reflect-split p {
  max-width: 620px;
}

.reflect-page .reflect-split > div {
  gap: 18px;
}

.reflect-page .reflect-check-list {
  gap: 14px;
  font-size: 17px;
  font-weight: 500;
}

.reflect-page .reflect-use-card {
  gap: 16px;
}

.reflect-page .reflect-use-card img {
  aspect-ratio: 1.65 / 1;
  border-radius: var(--atp-radius-card);
}

@media (max-width: 1100px) {
  .reflect-page .reflect-section,
  .reflect-page .reflect-split {
    width: min(100% - 48px, 980px);
  }
}

@media (max-width: 680px) {
  .reflect-page .reflect-section,
  .reflect-page .reflect-split {
    width: min(100% - 32px, 620px);
    padding: 56px 0;
  }

  .reflect-page .product-hero + .reflect-section {
    padding-top: 58px;
  }

  .reflect-page .reflect-section h2,
  .reflect-page .reflect-intro h2,
  .reflect-page .reflect-split h2,
  .reflect-page .reflect-dark-card h3 {
    font-size: clamp(34px, 10vw, 42px);
  }

  .reflect-page .reflect-dark-card {
    padding: 34px 22px;
  }

  .reflect-page .reflect-logo-card img {
    width: 154px;
  }

  .reflect-page .reflect-inline-wordmark,
  .reflect-page .reflect-heading-wordmark {
    max-width: 7.75rem;
  }

  .reflect-page .reflect-tile {
    min-height: 0;
    padding: 24px;
  }
}

/* Product page scale lock: keep Reflect, Embark, and Consult on the homepage type/spacing system. */
.reflect-page .reflect-section,
.embark-page .embark-section,
.consult-page .consult-section {
  width: min(1180px, calc(100% - 64px));
  padding: clamp(72px, 7vw, 96px) 0;
}

.reflect-page .product-hero + .reflect-section,
.embark-page .product-hero + .embark-section,
.consult-page .product-hero + .consult-section {
  padding-top: clamp(56px, 6vw, 78px);
}

.reflect-page .reflect-section-head,
.embark-page .embark-section-head,
.consult-page .consult-section-head {
  max-width: 920px;
  gap: 18px;
}

.embark-page .embark-section-head {
  margin-left: auto;
  margin-right: auto;
  justify-items: center;
  text-align: center;
}

.embark-page .embark-section-head h2,
.embark-page .embark-section-head p {
  margin-left: auto;
  margin-right: auto;
}

.reflect-page .reflect-section-head {
  margin-left: auto;
  margin-right: auto;
  justify-items: center;
  text-align: center;
}

.reflect-page .reflect-section-head h2,
.reflect-page .reflect-section-head p {
  margin-left: auto;
  margin-right: auto;
}

.consult-page .consult-section-head {
  margin-left: auto;
  margin-right: auto;
  justify-items: center;
  text-align: center;
}

.consult-page .consult-section-head h2,
.consult-page .consult-section-head p {
  margin-left: auto;
  margin-right: auto;
}

.reflect-page .reflect-section h2,
.reflect-page .reflect-intro h2,
.reflect-page .reflect-split h2,
.reflect-page .reflect-dark-card h3,
.embark-page .embark-section h2,
.embark-page .embark-split h2,
.embark-page .embark-dark-card h3,
.consult-page .consult-section h2,
.consult-page .consult-split h2,
.consult-page .consult-priority-copy h2 {
  font-size: 45px;
  line-height: 1.15;
}

.reflect-page .reflect-section h2,
.embark-page .embark-section h2,
.consult-page .consult-section h2 {
  max-width: 880px;
}

.reflect-page .reflect-split h2,
.embark-page .embark-split h2,
.consult-page .consult-split h2,
.consult-page .consult-priority-copy h2 {
  max-width: 560px;
}

.reflect-page .reflect-section p,
.embark-page .embark-section p,
.consult-page .consult-section p {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.45;
  font-weight: 400;
  font-variation-settings: "wght" 400;
}

.reflect-page .reflect-dark-card h3,
.embark-page .embark-dark-card h3 {
  display: grid;
  justify-items: center;
  align-items: center;
  gap: 20px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.reflect-page .reflect-dark-card h3 > span:last-child,
.embark-page .embark-dark-card h3 > span:last-child {
  display: block;
}

.reflect-page .reflect-logo-card,
.embark-page .embark-logo-card {
  margin-left: auto;
  margin-right: auto;
}

.reflect-page .reflect-logo-card img,
.embark-page .embark-logo-card img {
  width: clamp(170px, 14vw, 220px);
}

.embark-page .product-hero {
  background: linear-gradient(90deg, rgba(255, 247, 230, .98), rgba(255, 247, 230, .64));
}

.consult-page .product-hero {
  background: linear-gradient(90deg, rgba(247, 232, 238, .98), rgba(247, 232, 238, .64));
}

.reflect-page .reflect-tile-grid,
.embark-page .embark-tile-grid,
.consult-page .consult-tile-grid,
.consult-page .consult-use-grid,
.embark-page .embark-use-grid,
.reflect-page .reflect-use-grid {
  gap: var(--atp-gap);
}

.reflect-page .reflect-three-grid,
.reflect-page .reflect-outcome-grid,
.reflect-page .reflect-use-grid,
.embark-page .embark-outcome-grid,
.embark-page .embark-use-grid,
.consult-page .consult-system-grid,
.consult-page .consult-model-grid,
.consult-page .consult-use-grid {
  margin-top: 34px;
}

.reflect-page .reflect-tile,
.embark-page .embark-tile,
.consult-page .consult-tile,
.consult-page .consult-model-card {
  min-height: 210px;
  padding: 26px;
  gap: 14px;
  border-radius: var(--atp-radius-card);
}

.reflect-page .reflect-tile h3,
.reflect-page .reflect-use-card h3,
.embark-page .embark-tile h3,
.embark-page .embark-use-card h3,
.consult-page .consult-tile h3,
.consult-page .consult-use-card h3 {
  font-size: clamp(21px, 1.55vw, 25px);
  line-height: 1.22;
  font-weight: 720;
}

.reflect-page .reflect-tile p,
.reflect-page .reflect-use-card p,
.embark-page .embark-tile p,
.embark-page .embark-use-card p,
.consult-page .consult-tile p,
.consult-page .consult-use-card p,
.consult-page .consult-model-card p {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  font-variation-settings: "wght" 400;
}

.consult-page .consult-split {
  gap: clamp(40px, 5vw, 64px);
}

.consult-page .consult-split > div,
.embark-page .embark-split > div,
.reflect-page .reflect-split > div {
  gap: 18px;
}

.consult-page .consult-split > img,
.embark-page .embark-split > img,
.reflect-page .reflect-split > img {
  border-radius: var(--atp-radius-card);
}

.consult-page .consult-system-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--atp-gap);
  margin-top: 34px;
}

.consult-page .consult-system-grid .consult-tile {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 270px;
  padding: 36px;
  display: grid;
  align-content: start;
  gap: 16px;
  border: 0;
  border-radius: var(--atp-radius-card);
  background-image: linear-gradient(180deg, rgba(255, 255, 255, .68), rgba(255, 255, 255, .2));
  box-shadow: none;
}

.consult-page .consult-system-grid .consult-tile > * {
  position: relative;
  z-index: 2;
}

.consult-page .consult-system-grid .consult-card-icon {
  width: 42px;
  height: 42px;
  margin: 0 0 4px;
  display: block;
  fill: currentColor;
}

.consult-page .consult-system-grid .consult-tile-green .consult-card-icon {
  color: #4f9f68;
}

.consult-page .consult-system-grid .consult-tile-blue .consult-card-icon {
  color: #4f8fc5;
}

.consult-page .consult-system-grid .consult-tile-pink .consult-card-icon {
  color: var(--product-magenta);
}

.consult-page .consult-system-grid .consult-tile-yellow .consult-card-icon {
  color: #d89a16;
}

.consult-page .consult-system-grid .consult-tile h3 {
  min-height: 0;
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 25px;
  line-height: 1.16;
  font-weight: 720;
  letter-spacing: 0;
}

.consult-page .consult-system-grid .consult-tile p {
  max-width: none;
  margin: 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.45;
  font-weight: 400;
  font-variation-settings: "wght" 400;
}

.consult-page .consult-diagnosis {
  position: relative;
  isolation: isolate;
  grid-template-columns: minmax(0, .98fr) minmax(0, 1.02fr);
  gap: clamp(42px, 5vw, 62px);
  padding-top: clamp(82px, 8vw, 112px);
  padding-bottom: clamp(82px, 8vw, 112px);
}

.consult-page .consult-diagnosis::before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 50%;
  z-index: -2;
  width: 100vw;
  transform: translateX(-50%);
  background:
    linear-gradient(90deg, rgba(247, 232, 238, .64), rgba(250, 247, 242, .82) 52%, rgba(237, 247, 237, .42));
}

.consult-page .consult-diagnosis::after {
  display: none;
}

.consult-page .consult-diagnosis > div {
  position: relative;
  max-width: 560px;
  padding-left: 0;
}

.consult-page .consult-diagnosis > div::before {
  display: none;
}

.consult-page .consult-diagnosis h2 {
  max-width: 620px;
  font-size: clamp(40px, 3.6vw, 52px);
  line-height: 1.1;
  font-weight: 720;
  text-wrap: balance;
}

.consult-page .consult-diagnosis p {
  max-width: 530px;
  color: #4f5966;
  font-size: clamp(17px, 1.25vw, 19px);
  line-height: 1.5;
}

.consult-page .consult-diagnosis > img {
  aspect-ratio: 1.25 / 1;
  min-height: 380px;
  object-position: center;
  box-shadow: 0 28px 70px rgba(31, 24, 28, .18);
  outline: 1px solid rgba(31, 24, 28, .08);
}

.consult-page .consult-priorities {
  grid-template-columns: minmax(320px, .34fr) minmax(0, .66fr);
  gap: clamp(44px, 5vw, 68px);
}

.consult-page .consult-priority-copy {
  gap: 20px;
}

.consult-page .consult-priority-copy h2 {
  max-width: 600px;
  font-family: var(--serif);
  font-size: clamp(42px, 4vw, 56px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0;
  text-wrap: balance;
}

.consult-page .consult-priority-copy p {
  max-width: 500px;
  color: #4f5966;
  font-size: clamp(17px, 1.18vw, 19px);
  line-height: 1.5;
}

.consult-page .consult-priority-panel {
  gap: 18px;
}

.consult-page .consult-priority-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  border-top: 0;
}

.consult-page .consult-priority-list li {
  min-height: 188px;
  grid-template-columns: 1fr;
  align-content: start;
  align-items: start;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(15, 24, 38, .08);
  border-radius: var(--atp-radius-card);
  background: #fbfaf7;
}

.consult-page .consult-priority-list li:nth-child(5) {
  grid-column: 1 / -1;
  min-height: 148px;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 12px;
}

.consult-page .consult-priority-list li:nth-child(5) h3 {
  max-width: none;
}

.consult-page .consult-priority-icon {
  width: 34px;
  height: 34px;
  display: block;
  color: #7a808c;
  fill: currentColor;
  opacity: .82;
}

.consult-page .consult-priority-list h3 {
  max-width: 14ch;
  font-size: 23px;
  line-height: 1.16;
  font-weight: 720;
}

.consult-page .consult-priority-list p {
  max-width: 36ch;
  color: #4f5966;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 400;
  font-variation-settings: "wght" 400;
}

.consult-page .consult-challenge-link {
  min-height: 88px;
  padding: 20px 22px;
  grid-template-columns: 34px minmax(170px, .45fr) minmax(220px, 1fr) 28px;
  gap: 16px;
  border-radius: var(--atp-radius-card);
}

.consult-page .consult-challenge-link span {
  font-size: 26px;
}

.consult-page .consult-challenge-link strong,
.consult-page .consult-challenge-link em {
  font-size: 19px;
  line-height: 1.25;
}

.consult-page .consult-model-card > img,
.consult-page .consult-model-stack img {
  width: clamp(124px, 9vw, 148px);
}

.consult-page .consult-model-stack {
  gap: 8px;
}

.consult-page .consult-model-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--atp-gap);
  margin-top: 34px;
}

.consult-page .consult-model-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 238px;
  padding: 30px 30px;
  display: grid;
  grid-template-rows: minmax(98px, auto) auto;
  align-content: stretch;
  align-items: start;
  gap: 20px;
  border: 0;
  border-radius: var(--atp-radius-card);
  background-image: linear-gradient(180deg, rgba(255, 255, 255, .68), rgba(255, 255, 255, .2));
  box-shadow: none;
}

.consult-page .consult-model-card > img,
.consult-page .consult-model-stack {
  align-self: start;
}

.consult-page .consult-model-card > img {
  min-height: 98px;
  object-fit: contain;
  object-position: left top;
}

.consult-page .consult-model-card > img,
.consult-page .consult-model-stack img {
  width: clamp(108px, 7vw, 126px);
}

.consult-page .consult-model-stack {
  min-height: 98px;
  align-content: start;
  gap: 6px;
}

.consult-page .consult-model-stack span {
  margin-left: 5px;
  font-size: 22px;
  line-height: .6;
  font-weight: 650;
}

.consult-page .consult-model-card p {
  max-width: 24ch;
  min-height: 52px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
  font-weight: 400;
  font-variation-settings: "wght" 400;
}

.consult-page .consult-use-card > div {
  min-height: 190px;
  padding: 26px;
  gap: 16px;
}

.consult-page .consult-use-grid {
  gap: var(--atp-gap);
  margin-top: 34px;
}

.consult-page .consult-use-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 390px;
  padding: 26px;
  grid-template-rows: auto 1fr;
  border: 0;
  border-radius: var(--atp-radius-card);
  background-image: linear-gradient(180deg, rgba(255, 255, 255, .68), rgba(255, 255, 255, .2));
  box-shadow: none;
}

.consult-page .consult-use-pink {
  background-color: var(--pink);
}

.consult-page .consult-use-blue {
  background-color: var(--blue);
}

.consult-page .consult-use-green {
  background-color: var(--green);
}

.consult-page .consult-use-card img {
  aspect-ratio: 2.18 / 1;
  border-radius: var(--atp-radius-control);
  filter: saturate(.94) contrast(.98);
}

.consult-page .consult-use-card > div {
  min-height: 0;
  padding: 22px 2px 0;
  display: grid;
  align-content: start;
  gap: 14px;
  background: transparent;
}

.consult-page .consult-use-card h3 {
  max-width: 16ch;
  min-height: 58px;
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 25px;
  line-height: 1.16;
  font-weight: 720;
  letter-spacing: 0;
}

.consult-page .consult-use-card p {
  max-width: 31ch;
  margin: 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.45;
  font-weight: 400;
  font-variation-settings: "wght" 400;
}

@media (max-width: 980px) {
  .reflect-page .reflect-section,
  .embark-page .embark-section,
  .consult-page .consult-section {
    width: min(100% - 48px, 980px);
  }

  .consult-page .consult-priorities {
    grid-template-columns: 1fr;
  }

  .consult-page .consult-diagnosis {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .consult-page .consult-diagnosis::after {
    display: none;
  }

  .consult-page .consult-diagnosis > div,
  .consult-page .consult-diagnosis h2,
  .consult-page .consult-diagnosis p {
    max-width: 100%;
  }

  .consult-page .consult-diagnosis > img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .consult-page .consult-priority-copy {
    position: static;
  }
}

@media (max-width: 991px) {
  .reflect-page .reflect-section h2,
  .reflect-page .reflect-intro h2,
  .reflect-page .reflect-split h2,
  .reflect-page .reflect-dark-card h3,
  .embark-page .embark-section h2,
  .embark-page .embark-split h2,
  .embark-page .embark-dark-card h3,
  .consult-page .consult-section h2,
  .consult-page .consult-split h2,
  .consult-page .consult-priority-copy h2 {
    font-size: 42px;
  }
}

@media (max-width: 760px) {
  .reflect-page .reflect-section,
  .embark-page .embark-section,
  .consult-page .consult-section {
    width: min(100% - 32px, 620px);
    padding: 58px 0;
  }

  .reflect-page .reflect-section h2,
  .reflect-page .reflect-intro h2,
  .reflect-page .reflect-split h2,
  .reflect-page .reflect-dark-card h3,
  .embark-page .embark-section h2,
  .embark-page .embark-split h2,
  .embark-page .embark-dark-card h3,
  .consult-page .consult-section h2,
  .consult-page .consult-split h2,
  .consult-page .consult-priority-copy h2 {
    font-size: clamp(31px, 9vw, 40px);
  }

  .reflect-page .reflect-tile,
  .embark-page .embark-tile,
  .consult-page .consult-tile,
  .consult-page .consult-model-card {
    min-height: 0;
    padding: 24px;
  }

  .consult-page .consult-priority-list li {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .consult-page .consult-challenge-link {
    grid-template-columns: 1fr auto;
  }

  .consult-page .consult-use-card > div {
    min-height: 0;
    padding: 24px;
  }
}

/* Keep button hover calm: lift only, no color wash. */
.button:hover {
  transform: translateY(-2px);
}

.button-light:hover,
.button-secondary:hover {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink);
}

.button-dark:hover,
.button-primary:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.button-on-dark:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

.button-glass:hover,
.home-page .split-hero .button-dark:hover {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .34);
  color: var(--white);
}

.home-page .split-hero .button-light:hover {
  background: var(--white);
  border-color: rgba(255, 255, 255, .92);
  color: var(--ink);
}

.product-card .button-enter:hover {
  transform: translateY(-2px);
  background: var(--white);
  border-color: var(--line-strong);
  color: var(--product-navy);
  box-shadow: none;
}

/* Keep the Embark framework graphic close to the intro without cropping the artwork. */
.embark-page .embark-framework {
  gap: 18px;
}

@media (min-width: 761px) {
  .embark-page .embark-framework-image {
    width: min(1320px, 100%);
    height: auto;
    max-height: none;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center;
  }
}

/* Founder profiles should stay quiet; bios were reading too large. */
.home-page .founder-card h3 {
  font-size: 20px;
  line-height: 1.25;
}

.home-page .founder-card p {
  max-width: 360px;
  font-size: 18px;
  line-height: 1.38;
}

/* Keep the open founder treatment, but stop the portrait area from reserving empty vertical space. */
.home-page .founder-card,
.home-page .founder-card.card {
  gap: 8px;
}

.home-page .founder-photo {
  height: clamp(170px, 15vw, 220px);
  aspect-ratio: auto;
  margin-bottom: 0;
}

.home-page .founder-linkedin {
  bottom: -2%;
}

@media (max-width: 767px) {
  .home-page .founder-card p {
    font-size: 17px;
  }
}

/* Homepage founder portraits: match the open reference treatment. */
.home-page .founder-grid {
  width: 100%;
  max-width: none;
  padding: clamp(22px, 3vw, 60px) clamp(36px, 4.4vw, 90px) 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(64px, 10vw, 220px);
  row-gap: clamp(56px, 7vw, 90px);
}

.home-page .founder-card,
.home-page .founder-card.card {
  padding: 0;
  gap: clamp(18px, 2vw, 28px);
  justify-items: center;
}

.home-page .founder-photo {
  width: clamp(240px, 16vw, 318px);
  height: auto;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}

.home-page .founder-mark {
  width: 100%;
  height: 100%;
  opacity: .32;
}

.home-page .founder-card .card-image,
.home-page .founder-card .founder-portrait {
  width: 63%;
  height: 63%;
  transform: translateY(4%);
}

.home-page .founder-linkedin {
  right: 10%;
  bottom: 1%;
  width: 30px;
  height: 30px;
}

@media (max-width: 980px) {
  .home-page .founder-grid {
    width: var(--atp-container);
    max-width: var(--atp-container);
    padding: 0;
    grid-template-columns: 1fr;
  }

  .home-page .founder-photo {
    width: min(72vw, 318px);
  }
}

/* Reflect 3Cs: match the homepage use-case card treatment. */
.reflect-page .reflect-three-grid {
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--atp-gap);
}

.reflect-page .reflect-three-grid .reflect-tile {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 300px;
  padding: 38px 36px;
  align-content: start;
  gap: 0;
  border: 0;
  border-radius: var(--atp-radius-card);
  background-color: var(--green);
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, .68), rgba(255, 255, 255, .2));
  box-shadow: none;
}

.reflect-page .reflect-three-grid .reflect-tile-blue {
  background-color: var(--blue);
}

.reflect-page .reflect-three-grid .reflect-tile-yellow {
  background-color: var(--yellow);
}

.reflect-page .reflect-three-grid .reflect-tile > * {
  position: relative;
  z-index: 2;
}

.reflect-page .reflect-three-grid .reflect-card-icon,
.reflect-page .reflect-three-grid .use-case-svg-icon {
  width: 42px;
  height: 42px;
  margin: 0 0 22px;
  display: block;
  fill: currentColor;
  color: #4f9f68;
}

.reflect-page .reflect-three-grid .reflect-tile-blue .reflect-card-icon,
.reflect-page .reflect-three-grid .reflect-tile-blue .use-case-svg-icon {
  color: #4f8fc5;
}

.reflect-page .reflect-three-grid .reflect-tile-yellow .reflect-card-icon,
.reflect-page .reflect-three-grid .reflect-tile-yellow .use-case-svg-icon {
  color: #d89a16;
}

.reflect-page .reflect-three-grid .reflect-card-icon::before,
.reflect-page .reflect-three-grid .reflect-card-icon::after {
  border-color: currentColor;
  background: transparent;
}

.reflect-page .reflect-three-grid .reflect-tile h3 {
  min-height: 82px;
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(27px, 2.15vw, 34px);
  line-height: 1.15;
  font-weight: 760;
  letter-spacing: 0;
}

.reflect-page .reflect-three-grid .reflect-tile p {
  max-width: 34ch;
  margin: 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.28;
  font-weight: 450;
}

@media (max-width: 980px) {
  .reflect-page .reflect-three-grid {
    grid-template-columns: 1fr;
  }

  .reflect-page .reflect-three-grid .reflect-tile {
    min-height: 0;
  }
}

/* Reflect outcomes: match the homepage FYI cards as a four-card row. */
.reflect-page .reflect-outcome-grid {
  width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--atp-gap);
}

.reflect-page .reflect-outcome-grid .reflect-tile {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 218px;
  padding: 30px 34px;
  align-content: start;
  gap: 0;
  border: 0;
  border-radius: var(--atp-radius-card);
  background-color: var(--green);
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, .68), rgba(255, 255, 255, .2));
  box-shadow: none;
}

.reflect-page .reflect-outcome-grid .reflect-tile-yellow {
  background-color: var(--yellow);
}

.reflect-page .reflect-outcome-grid .reflect-tile-blue {
  background-color: var(--blue);
}

.reflect-page .reflect-outcome-grid .reflect-tile-pink {
  background-color: var(--pink);
}

.reflect-page .reflect-outcome-grid .reflect-tile > * {
  position: relative;
  z-index: 2;
}

.reflect-page .reflect-outcome-grid .use-case-svg-icon {
  width: 42px;
  height: 42px;
  margin: 0 0 18px;
  display: block;
  fill: currentColor;
  color: #4f9f68;
}

.reflect-page .reflect-outcome-grid .reflect-tile-yellow .use-case-svg-icon {
  color: #d89a16;
}

.reflect-page .reflect-outcome-grid .reflect-tile-blue .use-case-svg-icon {
  color: #4f8fc5;
}

.reflect-page .reflect-outcome-grid .reflect-tile-pink .use-case-svg-icon {
  color: var(--product-magenta);
}

.reflect-page .reflect-outcome-grid .reflect-tile h3 {
  min-height: 52px;
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(25px, 1.9vw, 31px);
  line-height: 1.15;
  font-weight: 760;
  letter-spacing: 0;
}

.reflect-page .reflect-outcome-grid .reflect-tile p {
  max-width: 18ch;
  margin: 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.3;
  font-weight: 450;
}

@media (max-width: 1180px) {
  .reflect-page .reflect-outcome-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .reflect-page .reflect-outcome-grid {
    grid-template-columns: 1fr;
  }

  .reflect-page .reflect-outcome-grid .reflect-tile {
    min-height: 0;
  }
}

/* Reflect use cases: image-led cards with homepage spacing and type discipline. */
.reflect-page .reflect-use-grid {
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--atp-gap);
  align-items: stretch;
}

.reflect-page .reflect-use-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 520px;
  padding: 20px 20px 32px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  gap: 22px;
  border: 0;
  border-radius: var(--atp-radius-card);
  background-color: var(--green);
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, .74), rgba(255, 255, 255, .22));
  box-shadow: none;
}

.reflect-page .reflect-use-card:nth-child(2) {
  background-color: var(--blue);
}

.reflect-page .reflect-use-card:nth-child(3) {
  background-color: var(--pink);
}

.reflect-page .reflect-use-card > * {
  position: relative;
  z-index: 2;
}

.reflect-page .reflect-use-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.32 / 1;
  border-radius: var(--atp-radius-control);
  object-fit: cover;
  filter: saturate(.92) contrast(.98);
}

.reflect-page .reflect-use-card h3,
.reflect-page .reflect-use-card p {
  padding-inline: 0;
}

.reflect-page .reflect-use-card h3 {
  max-width: 11ch;
  margin-top: 8px;
  margin-bottom: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(27px, 2vw, 33px);
  line-height: 1.12;
  font-weight: 760;
  letter-spacing: 0;
}

.reflect-page .reflect-use-card p {
  max-width: 28ch;
  margin-top: 0;
  margin-bottom: 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.34;
  font-weight: 450;
}

@media (max-width: 1100px) {
  .reflect-page .reflect-use-grid {
    grid-template-columns: 1fr;
  }

  .reflect-page .reflect-use-card {
    min-height: 0;
    grid-template-columns: minmax(220px, .42fr) minmax(0, .58fr);
    grid-template-rows: auto auto;
    align-items: center;
  }

  .reflect-page .reflect-use-card img {
    grid-row: 1 / span 2;
  }
}

@media (max-width: 760px) {
  .reflect-page .reflect-use-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    padding: 18px 18px 28px;
  }

  .reflect-page .reflect-use-card img {
    grid-row: auto;
    width: 100%;
  }
}

/* Reflect body rhythm lock: homepage alignment, excluding nav, hero, FAQ, CTA, and footer. */
.reflect-page {
  --reflect-body-shell: var(--atp-reading);
  --reflect-body-copy: min(820px, 100%);
  --reflect-body-section: var(--home-section, var(--atp-section));
}

.reflect-page main > .reflect-section {
  width: var(--reflect-body-shell);
  max-width: var(--reflect-body-shell);
  margin: 0 auto var(--reflect-body-section);
  padding: 0;
}

.reflect-page .product-hero + .reflect-section {
  margin-top: var(--reflect-body-section);
  padding-top: 0;
}

.reflect-page .reflect-section-head {
  width: min(100%, 900px);
  max-width: 900px;
  margin: 0 auto clamp(30px, 3vw, 42px);
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.reflect-page .reflect-section-head h2,
.reflect-page .reflect-section h2,
.reflect-page .reflect-intro h2,
.reflect-page .reflect-split h2,
.reflect-page .reflect-dark-card h3 {
  max-width: 860px;
  margin: 0 auto;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(36px, 3.6vw, 56px);
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: 0;
}

.reflect-page .reflect-section-head p,
.reflect-page .reflect-section p,
.reflect-page .reflect-split p,
.reflect-page .reflect-dark-card p {
  max-width: var(--reflect-body-copy);
  margin: 0 auto;
  color: var(--muted);
  font-family: var(--sans);
  font-size: clamp(17px, 1.15vw, 19px);
  line-height: 1.44;
  font-weight: 430;
}

.reflect-page .reflect-intro .reflect-section-head {
  max-width: 920px;
}

.reflect-page .reflect-intro h2 {
  max-width: 900px;
  font-size: clamp(42px, 4.8vw, 64px);
  line-height: 1.08;
}

.reflect-page .reflect-intro .reflect-section-head > p {
  max-width: 760px;
}

.reflect-page .reflect-intro .reflect-mark {
  padding: 0 .12em .035em;
  border-radius: 6px;
  line-height: .98;
}

.reflect-page .reflect-split h2 {
  font-size: clamp(34px, 3vw, 48px);
}

.reflect-page .reflect-use-cases .reflect-section-head {
  max-width: 900px;
  margin-bottom: clamp(30px, 3vw, 42px);
}

.reflect-page .reflect-section-head > p {
  max-width: var(--reflect-body-copy);
}

.reflect-page .reflect-rhythm .reflect-section-head > p {
  max-width: 840px;
  font-size: clamp(17px, 1.1vw, 18px);
}

.reflect-page .reflect-rhythm .reflect-section-head h2 {
  max-width: 860px;
  font-size: clamp(40px, 4vw, 60px);
  line-height: 1.08;
}

.reflect-page .reflect-dark-card {
  width: min(100%, 980px);
  margin: clamp(28px, 3vw, 38px) auto 0;
  min-height: 0;
  padding: clamp(34px, 4vw, 48px);
  grid-template-columns: minmax(250px, .38fr) minmax(0, .62fr);
  place-items: stretch;
  align-items: center;
  gap: clamp(30px, 4vw, 54px);
  border-radius: var(--atp-radius-card);
}

.reflect-page .reflect-dark-card h3,
.reflect-page .reflect-dark-card p {
  text-align: left;
}

.reflect-page .reflect-dark-card h3 {
  max-width: 320px;
  margin: 0;
  display: grid;
  justify-items: start;
  justify-content: start;
  gap: 22px;
  color: var(--white);
  font-size: clamp(34px, 3.25vw, 48px);
  line-height: 1.08;
}

.reflect-page .reflect-dark-card p {
  max-width: 600px;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(17px, 1.22vw, 19px);
  line-height: 1.48;
}

.reflect-page .reflect-dark-card h3 > span:last-child {
  display: block;
}

.reflect-page .reflect-logo-card {
  justify-self: start;
  margin-left: 0;
  margin-right: 0;
  padding: 9px 12px 8px;
  border-radius: var(--atp-radius-control);
}

.reflect-page .reflect-logo-card img {
  width: clamp(158px, 13vw, 210px);
}

.reflect-page .reflect-rhythm {
  display: grid;
  justify-items: center;
}

.reflect-page .reflect-diagram-image {
  width: min(960px, 100%);
  margin: 0 auto;
  border-radius: var(--atp-radius-card);
}

.reflect-page .reflect-tile-grid,
.reflect-page .reflect-use-grid {
  margin-top: 0;
}

.reflect-page main > .reflect-split {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(30px, 3.6vw, 48px);
  padding: clamp(24px, 3vw, 36px);
  border-radius: var(--atp-radius-card);
  background: var(--panel);
}

.reflect-page .reflect-split > div {
  padding: clamp(18px, 2.6vw, 34px);
  display: grid;
  gap: 18px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.reflect-page .reflect-split h2,
.reflect-page .reflect-split p {
  max-width: 560px;
  margin-left: 0;
  margin-right: 0;
}

.reflect-page .reflect-split > img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  max-height: 430px;
  border-radius: var(--atp-radius-card);
  object-fit: cover;
}

.reflect-page .reflect-check-list {
  margin-top: 2px;
}

.reflect-page .reflect-three-grid,
.reflect-page .reflect-outcome-grid,
.reflect-page .reflect-use-grid {
  width: 100%;
}

.reflect-page .reflect-three-grid .reflect-tile h3 {
  min-height: 74px;
  font-size: clamp(26px, 2vw, 32px);
}

.reflect-page .reflect-three-grid .reflect-tile p {
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.34;
}

.reflect-page .reflect-outcome-grid .reflect-tile h3 {
  min-height: 62px;
  font-size: clamp(24px, 1.7vw, 29px);
}

.reflect-page .reflect-outcome-grid .reflect-tile p {
  font-size: clamp(17px, 1.1vw, 19px);
}

.reflect-page .reflect-use-card h3 {
  font-size: clamp(25px, 1.8vw, 30px);
}

.reflect-page .reflect-use-card p {
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.38;
}

.reflect-page .closing-cta {
  width: var(--reflect-body-shell);
  max-width: var(--reflect-body-shell);
  margin: var(--reflect-body-section) auto;
  padding: clamp(32px, 4.4vw, 52px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  justify-items: stretch;
  gap: clamp(24px, 4vw, 56px);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--atp-radius-card);
  background: linear-gradient(135deg, #1f1f1f 0%, #262626 100%);
  color: var(--white);
  text-align: left;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.reflect-page .closing-cta::before {
  content: "";
  position: absolute;
  top: 1px;
  left: clamp(22px, 4vw, 56px);
  right: clamp(22px, 4vw, 56px);
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, .34) 20%, rgba(255, 255, 255, .16) 55%, transparent 100%);
}

.reflect-page .closing-cta-copy,
.reflect-page .closing-cta .button-row {
  position: relative;
  z-index: 1;
}

.reflect-page .closing-cta-copy {
  display: grid;
  justify-items: start;
  gap: 14px;
}

.reflect-page .closing-cta-heading-wordmark {
  width: clamp(156px, 12vw, 210px);
  display: inline-block;
  margin: 0 .12em;
  padding: 7px 10px 6px;
  border-radius: var(--atp-radius-control);
  background: var(--white);
  vertical-align: -.15em;
}

.reflect-page .closing-cta h2 {
  max-width: 720px;
  color: var(--white);
  font-size: clamp(36px, 3.4vw, 52px);
  line-height: 1.06;
}

.reflect-page .closing-cta p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.4;
}

.reflect-page .closing-cta .button-row {
  justify-self: end;
  justify-content: flex-end;
  gap: 12px;
}

.reflect-page .closing-cta .button {
  min-height: 52px;
  padding: 12px 18px;
  border-radius: var(--atp-radius-control);
  font-weight: 680;
  box-shadow: none;
}

.reflect-page .closing-cta .button-light {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.reflect-page .closing-cta .button-dark {
  border-color: rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .08);
  color: var(--white);
}

@media (max-width: 980px) {
  .reflect-page {
    --reflect-body-shell: min(100% - 48px, 900px);
    --reflect-body-copy: min(100%, 720px);
    --reflect-body-section: var(--home-section-mobile, var(--atp-section-mobile));
  }

  .reflect-page main > .reflect-split,
  .reflect-page .reflect-split-action {
    grid-template-columns: 1fr;
  }

  .reflect-page .reflect-split-action > div {
    order: 2;
  }

  .reflect-page .reflect-split-action > img {
    order: 1;
  }

  .reflect-page .reflect-split h2,
  .reflect-page .reflect-split p {
    max-width: 100%;
  }

  .reflect-page .closing-cta {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .reflect-page .closing-cta-copy {
    justify-items: center;
  }

  .reflect-page .closing-cta .button-row {
    justify-self: center;
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .reflect-page {
    --reflect-body-shell: min(100% - 32px, 620px);
    --reflect-body-copy: 100%;
  }

  .reflect-page .reflect-section-head h2,
  .reflect-page .reflect-section h2,
  .reflect-page .reflect-intro h2,
  .reflect-page .reflect-split h2,
  .reflect-page .reflect-dark-card h3 {
    font-size: clamp(31px, 8.5vw, 40px);
  }

  .reflect-page .reflect-section-head p,
  .reflect-page .reflect-section p,
  .reflect-page .reflect-split p,
  .reflect-page .reflect-dark-card p {
    font-size: 16px;
  }

  .reflect-page .reflect-dark-card,
  .reflect-page .reflect-split > div {
    padding: 24px;
  }

  .reflect-page .reflect-dark-card {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: start;
    justify-items: start;
    overflow: hidden;
  }

  .reflect-page .reflect-dark-card h3,
  .reflect-page .reflect-dark-card p {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .reflect-page .reflect-dark-card p {
    overflow-wrap: normal;
    word-break: normal;
  }

  .reflect-page .closing-cta {
    padding: 30px 20px 34px;
  }
}

/* Embark body rhythm lock: match the polished Reflect system without changing Embark content. */
.embark-page {
  --embark-body-shell: var(--atp-reading);
  --embark-body-copy: min(820px, 100%);
  --embark-body-section: var(--home-section, var(--atp-section));
}

.embark-page main > .embark-section {
  width: var(--embark-body-shell);
  max-width: var(--embark-body-shell);
  margin: 0 auto var(--embark-body-section);
  padding: 0;
}

.embark-page .product-hero + .embark-section {
  margin-top: var(--embark-body-section);
  padding-top: 0;
}

.embark-page .embark-section-head {
  width: min(100%, 900px);
  max-width: 900px;
  margin: 0 auto clamp(30px, 3vw, 42px);
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.embark-page .embark-section-head h2,
.embark-page .embark-section h2,
.embark-page .embark-intro h2,
.embark-page .embark-split h2,
.embark-page .embark-dark-card h3 {
  max-width: 860px;
  margin: 0 auto;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(36px, 3.6vw, 56px);
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: 0;
}

.embark-page .embark-section-head p,
.embark-page .embark-section p,
.embark-page .embark-split p,
.embark-page .embark-dark-card p {
  max-width: var(--embark-body-copy);
  margin: 0 auto;
  color: var(--muted);
  font-family: var(--sans);
  font-size: clamp(17px, 1.15vw, 19px);
  line-height: 1.44;
  font-weight: 430;
}

.embark-page .embark-intro .embark-section-head {
  max-width: 920px;
}

.embark-page .embark-intro h2 {
  max-width: 900px;
  font-size: clamp(42px, 4.8vw, 64px);
  line-height: 1.08;
}

.embark-page .embark-intro .embark-section-head > p {
  max-width: 760px;
}

.embark-page .embark-intro .embark-mark {
  padding: 0 .12em .035em;
  border-radius: 6px;
  line-height: .98;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .34);
}

.embark-page .embark-intro .embark-mark-late {
  background:
    linear-gradient(135deg, rgba(237, 205, 200, .98) 0%, rgba(255, 245, 201, .74) 100%);
}

.embark-page .embark-intro .embark-mark-early {
  background:
    linear-gradient(135deg, rgba(255, 245, 201, .96) 0%, rgba(237, 205, 200, .62) 100%);
}

.embark-page .embark-split h2 {
  font-size: clamp(34px, 3vw, 48px);
}

.embark-page .embark-section-head > p {
  max-width: var(--embark-body-copy);
}

.embark-page .embark-framework .embark-section-head > p {
  max-width: 840px;
  font-size: clamp(17px, 1.1vw, 18px);
}

.embark-page .embark-framework .embark-section-head h2 {
  max-width: 860px;
  font-size: clamp(40px, 4vw, 60px);
  line-height: 1.08;
}

.embark-page .embark-dark-card {
  width: min(100%, 1040px);
  margin: clamp(28px, 3vw, 38px) auto 0;
  min-height: 0;
  padding: clamp(28px, 3.5vw, 42px);
  display: grid;
  grid-template-columns: minmax(330px, .48fr) minmax(0, .52fr);
  place-items: stretch;
  align-items: center;
  gap: clamp(28px, 4vw, 58px);
  border-radius: var(--atp-radius-card);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .04), transparent 38%),
    var(--black);
  text-align: left;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.embark-page .embark-dark-card-copy {
  display: grid;
  justify-items: start;
  gap: 18px;
}

.embark-page .embark-dark-card h3 {
  max-width: 460px;
  margin: 0;
  color: var(--white);
  font-size: clamp(34px, 3vw, 44px);
  line-height: 1.06;
}

.embark-page .embark-dark-card p {
  max-width: 560px;
  margin: 0;
  padding: clamp(22px, 2.8vw, 30px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--atp-radius-control);
  background: rgba(255, 255, 255, .055);
  color: rgba(255, 255, 255, .78);
  font-size: clamp(17px, 1.22vw, 19px);
  line-height: 1.48;
}

.embark-page .embark-logo-card {
  justify-self: start;
  padding: 8px 11px 7px;
  border-radius: var(--atp-radius-control);
  background: var(--white);
}

.embark-page .embark-logo-card img {
  width: clamp(142px, 11vw, 184px);
}

.embark-page .embark-intro .embark-dark-card {
  width: min(100%, 980px);
  padding: clamp(34px, 4vw, 48px);
  grid-template-columns: minmax(250px, .38fr) minmax(0, .62fr);
  gap: clamp(30px, 4vw, 54px);
  background: var(--black);
}

.embark-page .embark-intro .embark-dark-card-copy {
  max-width: 320px;
  justify-items: start;
  justify-content: start;
  gap: 22px;
}

.embark-page .embark-intro .embark-dark-card h3 {
  max-width: 320px;
  margin: 0;
  display: block;
  color: var(--white);
  text-align: left;
  font-size: clamp(34px, 3.25vw, 48px);
  line-height: 1.08;
}

.embark-page .embark-intro .embark-dark-card p {
  max-width: 600px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(17px, 1.22vw, 19px);
  line-height: 1.48;
}

.embark-page .embark-intro .embark-logo-card {
  justify-self: start;
  margin-left: 0;
  margin-right: 0;
  padding: 9px 12px 8px;
  border-radius: var(--atp-radius-control);
}

.embark-page .embark-intro .embark-logo-card img {
  width: clamp(158px, 13vw, 210px);
}

.embark-page .embark-inline-wordmark {
  width: auto;
  height: 1.35em;
  max-width: 12rem;
  margin: 0 .24em 0 0;
  display: inline-block;
  vertical-align: -.28em;
}

.embark-page .embark-heading-wordmark {
  width: clamp(156px, 12vw, 210px);
  display: inline-block;
  height: auto;
  margin: 0 .18em -.12em;
  vertical-align: baseline;
}

.embark-page .embark-framework {
  display: grid;
  justify-items: center;
  gap: clamp(34px, 4vw, 48px);
}

.embark-page .embark-framework-image {
  width: min(960px, 100%);
  margin: 0 auto;
  border-radius: var(--atp-radius-card);
}

.embark-page .embark-tile-grid,
.embark-page .embark-use-grid {
  margin-top: 0;
}

.embark-page main > .embark-split {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(30px, 3.6vw, 48px);
  padding: clamp(24px, 3vw, 36px);
  border-radius: var(--atp-radius-card);
  background: var(--panel);
}

.embark-page .embark-split > div {
  padding: clamp(18px, 2.6vw, 34px);
  display: grid;
  gap: 18px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.embark-page .embark-split h2,
.embark-page .embark-split p {
  max-width: 560px;
  margin-left: 0;
  margin-right: 0;
}

.embark-page .embark-split > img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  max-height: 430px;
  border-radius: var(--atp-radius-card);
  object-fit: cover;
}

.embark-page .embark-outcome-grid,
.embark-page .embark-use-grid {
  width: 100%;
}

.embark-page .embark-outcome-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--atp-gap);
}

.embark-page .embark-outcome-grid .embark-tile {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 218px;
  padding: 30px 34px;
  align-content: start;
  gap: 0;
  border: 0;
  border-radius: var(--atp-radius-card);
  background-color: var(--green);
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, .68), rgba(255, 255, 255, .2));
  box-shadow: none;
}

.embark-page .embark-outcome-grid .embark-tile-yellow {
  background-color: var(--yellow);
}

.embark-page .embark-outcome-grid .embark-tile-blue {
  background-color: var(--blue);
}

.embark-page .embark-outcome-grid .embark-tile-pink {
  background-color: var(--pink);
}

.embark-page .embark-outcome-grid .embark-tile > * {
  position: relative;
  z-index: 2;
}

.embark-page .embark-outcome-grid .use-case-svg-icon {
  width: 42px;
  height: 42px;
  margin: 0 0 18px;
  display: block;
  fill: currentColor;
  color: #4f9f68;
}

.embark-page .embark-outcome-grid .embark-tile-pink .use-case-svg-icon {
  color: var(--product-magenta);
}

.embark-page .embark-outcome-grid .embark-tile-blue .use-case-svg-icon {
  color: #4f8fc5;
}

.embark-page .embark-outcome-grid .embark-tile-yellow .use-case-svg-icon {
  color: #d89a16;
}

.embark-page .embark-outcome-grid .embark-tile h3 {
  min-height: 52px;
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(24px, 1.7vw, 29px);
  line-height: 1.15;
  font-weight: 760;
  letter-spacing: 0;
}

.embark-page .embark-outcome-grid .embark-tile p {
  max-width: 18ch;
  margin: 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: clamp(17px, 1.1vw, 19px);
  line-height: 1.3;
  font-weight: 450;
}

.embark-page .embark-use-cases .embark-section-head {
  max-width: 900px;
  margin-bottom: clamp(30px, 3vw, 42px);
}

.embark-page .embark-use-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--atp-gap);
  align-items: stretch;
}

.embark-page .embark-use-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 410px;
  padding: 18px 18px 24px;
  display: grid;
  grid-template-rows: auto auto auto;
  align-content: start;
  gap: 16px;
  border: 0;
  border-radius: var(--atp-radius-card);
  background-color: var(--green);
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, .74), rgba(255, 255, 255, .22));
  box-shadow: none;
}

.embark-page .embark-use-pink {
  background-color: var(--pink);
}

.embark-page .embark-use-blue {
  background-color: var(--blue);
}

.embark-page .embark-use-green {
  background-color: var(--green);
}

.embark-page .embark-use-card > * {
  position: relative;
  z-index: 2;
}

.embark-page .embark-use-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.85 / 1;
  border-radius: var(--atp-radius-control);
  object-fit: cover;
  filter: saturate(.92) contrast(.98);
}

.embark-page .embark-use-card h3 {
  max-width: none;
  min-height: 0;
  margin-top: 2px;
  margin-bottom: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 25px;
  line-height: 1.16;
  font-weight: 720;
  letter-spacing: 0;
}

.embark-page .embark-use-card p {
  max-width: none;
  margin-top: 0;
  margin-bottom: 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.38;
  font-weight: 400;
  font-variation-settings: "wght" 400;
}

@media (max-width: 1100px) {
  .embark-page .embark-use-card {
    min-height: 0;
    grid-template-columns: minmax(220px, .42fr) minmax(0, .58fr);
    grid-template-rows: auto auto;
    align-items: center;
  }

  .embark-page .embark-use-card img {
    grid-row: 1 / span 2;
  }
}

@media (max-width: 760px) {
  .embark-page .embark-use-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    padding: 18px 18px 28px;
  }

  .embark-page .embark-use-card img {
    grid-row: auto;
    width: 100%;
  }
}

.embark-page .closing-cta {
  width: var(--embark-body-shell);
  max-width: var(--embark-body-shell);
  margin: var(--embark-body-section) auto;
  padding: clamp(32px, 4.4vw, 52px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  justify-items: stretch;
  gap: clamp(24px, 4vw, 56px);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--atp-radius-card);
  background: linear-gradient(135deg, #1f1f1f 0%, #262626 100%);
  color: var(--white);
  text-align: left;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.embark-page .closing-cta::before {
  content: "";
  position: absolute;
  top: 1px;
  left: clamp(22px, 4vw, 56px);
  right: clamp(22px, 4vw, 56px);
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, .34) 20%, rgba(255, 255, 255, .16) 55%, transparent 100%);
}

.embark-page .closing-cta-copy,
.embark-page .closing-cta .button-row {
  position: relative;
  z-index: 1;
}

.embark-page .closing-cta-copy {
  display: grid;
  justify-items: start;
  gap: 14px;
}

.embark-page .closing-cta-heading-wordmark {
  width: clamp(156px, 12vw, 210px);
  display: inline-block;
  margin: 0 .12em;
  padding: 7px 10px 6px;
  border-radius: var(--atp-radius-control);
  background: var(--white);
  vertical-align: -.15em;
}

.embark-page .closing-cta h2 {
  max-width: 720px;
  color: var(--white);
  font-size: clamp(36px, 3.4vw, 52px);
  line-height: 1.06;
}

.embark-page .closing-cta p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.4;
}

.embark-page .closing-cta .button-row {
  justify-self: end;
  justify-content: flex-end;
  gap: 12px;
}

.embark-page .closing-cta .button {
  min-height: 52px;
  padding: 12px 18px;
  border-radius: var(--atp-radius-control);
  font-weight: 680;
  box-shadow: none;
}

.embark-page .closing-cta .button-light {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.embark-page .closing-cta .button-dark {
  border-color: rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .08);
  color: var(--white);
}

@media (max-width: 980px) {
  .embark-page {
    --embark-body-shell: min(100% - 48px, 900px);
    --embark-body-copy: min(100%, 720px);
    --embark-body-section: var(--home-section-mobile, var(--atp-section-mobile));
  }

  .embark-page main > .embark-split,
  .embark-page .embark-split-effort,
  .embark-page .closing-cta {
    grid-template-columns: 1fr;
  }

  .embark-page .embark-split-effort > div {
    order: 2;
  }

  .embark-page .embark-split-effort > img {
    order: 1;
  }

  .embark-page .embark-split h2,
  .embark-page .embark-split p {
    max-width: 100%;
  }

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

  .embark-page .embark-use-grid {
    grid-template-columns: 1fr;
  }

  .embark-page .closing-cta {
    justify-items: center;
    text-align: center;
  }

  .embark-page .closing-cta-copy {
    justify-items: center;
  }

  .embark-page .closing-cta .button-row {
    justify-self: center;
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .embark-page {
    --embark-body-shell: min(100% - 32px, 620px);
    --embark-body-copy: 100%;
  }

  .embark-page .embark-section-head h2,
  .embark-page .embark-section h2,
  .embark-page .embark-intro h2,
  .embark-page .embark-split h2,
  .embark-page .embark-dark-card h3 {
    font-size: clamp(31px, 8.5vw, 40px);
  }

  .embark-page .embark-section-head p,
  .embark-page .embark-section p,
  .embark-page .embark-split p,
  .embark-page .embark-dark-card p {
    font-size: 16px;
  }

  .embark-page .embark-dark-card,
  .embark-page .embark-split > div {
    padding: 24px;
  }

  .embark-page .embark-intro .embark-dark-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .embark-page .embark-intro .embark-dark-card-copy,
  .embark-page .embark-intro .embark-dark-card h3,
  .embark-page .embark-intro .embark-dark-card p {
    max-width: 100%;
  }

  .embark-page .embark-outcome-grid {
    grid-template-columns: 1fr;
  }

  .embark-page .embark-outcome-grid .embark-tile {
    min-height: 0;
  }

  .embark-page .closing-cta {
    padding: 30px 20px 34px;
  }
}

/* Compact CTAs for Solutions and Consult. */
.solutions .closing-cta,
.consult-page .closing-cta {
  width: min(1180px, calc(100% - 64px));
  margin: clamp(56px, 6vw, 78px) auto;
  padding: clamp(28px, 3.5vw, 42px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  justify-items: start;
  gap: clamp(24px, 4vw, 48px);
  border: 1px solid rgba(15, 24, 38, .08);
  border-radius: var(--atp-radius-card);
  background:
    linear-gradient(90deg, rgba(247, 232, 238, .72), rgba(250, 247, 242, .9) 54%, rgba(237, 247, 237, .54));
  color: var(--ink);
  text-align: left;
}

.solutions .closing-cta h2,
.consult-page .closing-cta h2 {
  grid-column: 1;
  max-width: 860px;
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(28px, 2.45vw, 36px);
  line-height: 1.08;
  font-weight: 720;
}

.solutions .closing-cta p,
.consult-page .closing-cta p {
  grid-column: 1;
  max-width: 720px;
  margin: 0;
  color: #4f5966;
  opacity: 1;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.45;
}

.solutions .closing-cta .button-row,
.consult-page .closing-cta .button-row {
  grid-column: 2;
  grid-row: 1 / span 2;
  justify-content: flex-end;
  align-self: center;
  gap: 12px;
}

.solutions .closing-cta .button-light,
.consult-page .closing-cta .button-light {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.consult-page .closing-cta .button-dark {
  border-color: rgba(15, 24, 38, .18);
  background: rgba(255, 255, 255, .72);
  color: var(--ink);
}

@media (max-width: 760px) {
  .solutions .closing-cta,
  .consult-page .closing-cta {
    width: min(100% - 32px, 620px);
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }

  .solutions .closing-cta .button-row,
  .consult-page .closing-cta .button-row {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
    align-self: start;
    justify-content: flex-start;
  }
}

.main-nav > .nav-static {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0;
  color: var(--ink);
  cursor: default;
  pointer-events: none;
}

.footer-main nav .nav-static {
  color: var(--ink);
  font-weight: 560;
  cursor: default;
  pointer-events: none;
}

.site-header .main-nav,
.site-header .nav-trigger,
.site-header .nav-static,
.site-header > .button,
.site-footer,
.site-footer h2,
.site-footer a,
.site-footer .footer-main nav a,
.site-footer .nav-static,
.site-footer .footer-main nav .nav-static,
.site-footer .ai-box span {
  font-weight: 400;
  font-variation-settings: "wght" 400;
}

.site-header .brand img {
  width: 252px;
  max-height: 62px;
}

@media (max-width: 760px) {
  .site-header .brand img {
    width: 210px;
    max-height: 56px;
  }
}

.site-header {
  min-height: 84px;
  padding-top: 8px;
  padding-bottom: 6px;
}

@media (max-width: 980px) {
  .site-header {
    min-height: 82px;
    padding-top: 8px;
    padding-bottom: 6px;
  }

  body.nav-open::before {
    inset: 82px 0 0;
  }

  .site-header .main-nav {
    top: 82px;
  }
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: 10000;
  pointer-events: none;
  transition:
    opacity .42s cubic-bezier(.2, .7, .2, 1),
    visibility .42s cubic-bezier(.2, .7, .2, 1);
}

body::before {
  inset: 0;
  background: var(--white);
  opacity: 1;
  visibility: visible;
}

body::after {
  top: 50%;
  left: 50%;
  width: min(420px, 72vw);
  aspect-ratio: 3013 / 2033;
  background: url("assets/atp-logo-stacked.png") center / contain no-repeat;
  filter: drop-shadow(0 14px 32px rgba(0, 17, 78, .08));
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
  animation: atp-loader-mark 1.15s cubic-bezier(.2, .7, .2, 1) infinite alternate;
}

body.site-loaded::before,
body.site-loaded::after {
  opacity: 0;
  visibility: hidden;
}

@keyframes atp-loader-mark {
  from {
    transform: translate(-50%, -50%) scale(.985);
  }

  to {
    transform: translate(-50%, -50%) scale(1.018);
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before,
  body::after {
    transition: none;
  }

  body::after {
    animation: none;
  }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  filter: blur(6px);
  transition:
    opacity .86s cubic-bezier(.16, 1, .3, 1),
    transform .86s cubic-bezier(.16, 1, .3, 1),
    filter .86s cubic-bezier(.16, 1, .3, 1);
  transition-delay: calc(var(--reveal-index, 0) * 18ms);
  will-change: opacity, transform, filter;
}

.reveal-on-scroll[data-reveal="left"] {
  transform: translate3d(0, 12px, 0);
}

.reveal-on-scroll[data-reveal="right"] {
  transform: translate3d(0, 12px, 0);
}

.reveal-on-scroll[data-reveal="card"] {
  transform: translate3d(0, 12px, 0);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
    will-change: auto;
  }
}

.home-page .process-timeline.process-timeline-ready::before {
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition:
    opacity .25s ease,
    transform 1.1s cubic-bezier(.2, .8, .2, 1);
}

.home-page .process-timeline.process-timeline-ready .process-step {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity .54s cubic-bezier(.2, .7, .2, 1),
    transform .54s cubic-bezier(.2, .7, .2, 1);
  transition-delay: calc(240ms + (var(--process-index, 0) * 145ms));
}

.home-page .process-timeline.process-timeline-ready .process-number {
  transform: scale(.78);
  transition:
    transform .56s cubic-bezier(.2, .8, .2, 1),
    box-shadow .56s cubic-bezier(.2, .8, .2, 1);
  transition-delay: calc(300ms + (var(--process-index, 0) * 145ms));
}

.home-page .process-timeline.process-timeline-ready .process-icon {
  opacity: 0;
  transform: scale(.72) rotate(-8deg);
  transform-origin: center;
  transition:
    opacity .36s ease,
    transform .56s cubic-bezier(.2, .8, .2, 1);
  transition-delay: calc(360ms + (var(--process-index, 0) * 145ms));
}

.home-page .process-timeline.process-timeline-ready.is-animated::before {
  opacity: .42;
  transform: scaleX(1);
}

.home-page .process-timeline.process-timeline-ready.is-animated .process-step {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.home-page .process-timeline.process-timeline-ready.is-animated .process-number {
  transform: scale(1);
  box-shadow: 0 10px 24px rgba(0, 17, 78, .13);
}

.home-page .process-timeline.process-timeline-ready.is-animated .process-icon {
  opacity: 1;
  transform: scale(1) rotate(0);
}

@media (prefers-reduced-motion: reduce) {
  .home-page .process-timeline.process-timeline-ready::before,
  .home-page .process-timeline.process-timeline-ready .process-step,
  .home-page .process-timeline.process-timeline-ready .process-number,
  .home-page .process-timeline.process-timeline-ready .process-icon {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.solutions .solutions-tab-list {
  align-items: stretch;
}

.solutions .solutions-tab-list > article:not(.is-open) {
  display: flex;
}

.solutions .solutions-tab-list > article:not(.is-open) .solution-trigger {
  height: 100%;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
  overflow: hidden;
}

.solutions .solutions-tab-list > article:not(.is-open) .solution-marker {
  margin-bottom: 0;
}

.solutions .solutions-tab-list > article:not(.is-open) .solution-copy {
  min-height: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.solutions .solutions-tab-list > article:not(.is-open) .solution-summary {
  margin-top: 2px;
  align-self: auto;
}

.solutions .solutions-tab-list > article:not(.is-open) .solution-products {
  width: 100%;
  margin-top: auto;
  padding-top: 14px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid color-mix(in srgb, var(--line) 74%, transparent);
  align-self: auto;
}

.solutions .solutions-tab-list > article:not(.is-open) .solution-products-label {
  width: auto;
  margin-right: 4px;
  font-size: 10px;
  letter-spacing: .08em;
}

.solutions .solutions-tab-list > article:not(.is-open) .solution-product-chip {
  min-height: 30px;
  padding: 5px 9px;
  background: rgba(255, 255, 255, .78);
}

.solutions .solutions-tab-list > article:not(.is-open) .solution-product-chip img {
  height: 18px;
  max-width: 104px;
}

@media (max-width: 980px) {
  .solutions .solutions-tab-list > article:not(.is-open) .solution-trigger {
    min-height: 350px;
  }
}

@media (max-width: 640px) {
  .solutions .solutions-tab-list > article:not(.is-open) .solution-trigger {
    min-height: 0;
  }
}

.solutions .closing-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  background: linear-gradient(135deg, #1f1f1f 0%, #262626 100%);
  color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.solutions .closing-cta::before {
  content: "";
  position: absolute;
  top: 1px;
  left: clamp(22px, 4vw, 56px);
  right: clamp(22px, 4vw, 56px);
  z-index: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, .34) 20%, rgba(255, 255, 255, .16) 55%, transparent 100%);
}

.solutions .closing-cta::after {
  content: none;
}

.solutions .closing-cta h2,
.solutions .closing-cta p,
.solutions .closing-cta .button-row {
  position: relative;
  z-index: 1;
}

.solutions .closing-cta h2 {
  color: var(--white);
}

.solutions .closing-cta p {
  color: rgba(255, 255, 255, .76);
}

.solutions .closing-cta .button-light {
  border-color: rgba(255, 255, 255, .88);
  background: var(--white);
  color: var(--ink);
}

.solutions .closing-cta .button-light:hover {
  border-color: var(--brand-blue);
  background: color-mix(in srgb, var(--brand-blue) 16%, var(--white));
  color: var(--ink);
}

/* Final responsive lock: prevent late page-specific rules from squeezing mobile grids. */
@media (max-width: 760px) {
  .consult-page .consult-system-grid,
  .consult-page .consult-model-grid,
  .consult-page .consult-use-grid,
  .consult-page .consult-priority-list {
    grid-template-columns: 1fr;
  }

  .consult-page .consult-system-grid .consult-tile,
  .consult-page .consult-model-card,
  .consult-page .consult-use-card {
    width: 100%;
    min-width: 0;
  }

  .consult-page .consult-system-grid .consult-tile h3,
  .consult-page .consult-system-grid .consult-tile p,
  .consult-page .consult-model-card p,
  .consult-page .consult-use-card h3,
  .consult-page .consult-use-card p {
    max-width: 100%;
  }
}

/* Final phone fixes: mobile menu CTA, homepage CTA pruning, and compact process rows. */
.site-header .main-nav > .nav-mobile-cta.button {
  display: none;
}

@media (max-width: 980px) {
  .site-header .main-nav {
    overflow: hidden auto;
  }

  .site-header .nav-group,
  .site-header .nav-dropdown {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .site-header .nav-group:hover .nav-dropdown,
  .site-header .nav-group.is-open .nav-dropdown,
  .site-header .nav-dropdown {
    left: auto;
    right: auto;
    transform: none;
  }

  .site-header .nav-dropdown {
    display: none;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
  }

  .site-header .nav-group.is-open .nav-dropdown {
    display: grid;
    margin-top: 8px;
    opacity: 1;
    visibility: visible;
  }

  .site-header .nav-dropdown a {
    width: 100%;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .site-header .nav-dropdown .wordmark {
    width: min(132px, 100%);
    max-width: 132px;
  }

  .site-header .nav-dropdown a span {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .site-header .main-nav > .nav-mobile-cta.button {
    width: 100%;
    min-height: 50px;
    margin-top: 12px;
    padding: 14px 18px;
    display: inline-flex;
    justify-content: center;
    border-color: var(--ink);
    background: var(--ink);
    color: var(--white);
  }
}

@media (max-width: 767px) {
  .home-page .solutions-heading-row > .button {
    display: none;
  }
}

@media (max-width: 760px) {
  .home-page .process-timeline,
  .home-page .process-timeline.process-timeline-ready {
    width: 100%;
    max-width: none;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 32px;
    padding: 10px 0 6px;
    background: transparent;
    border-radius: 0;
    overflow: visible;
  }

  .home-page .process-timeline::before,
  .home-page .process-timeline.process-timeline-ready::before {
    content: "";
    top: 40px;
    bottom: 40px;
    left: calc(clamp(56px, 13vw, 64px) / 2);
    right: auto;
    width: 2px;
    height: auto;
    background:
      linear-gradient(180deg,
        var(--product-navy) 0%,
        var(--brand-blue) 48%,
        var(--product-magenta) 100%);
    opacity: .36;
    transform: none;
    transform-origin: top center;
  }

  .home-page .process-timeline.process-timeline-ready::before {
    opacity: 0;
    transform: scaleY(0);
    transition:
      opacity .25s ease,
      transform 1.1s cubic-bezier(.2, .8, .2, 1);
  }

  .home-page .process-timeline.process-timeline-ready.is-animated::before {
    opacity: .42;
    transform: scaleY(1);
  }

  .home-page .process-step,
  .home-page .process-timeline.process-timeline-ready .process-step {
    width: 100%;
    display: grid;
    grid-template-columns: clamp(56px, 13vw, 64px) minmax(0, 1fr);
    column-gap: clamp(18px, 4.6vw, 24px);
    row-gap: 5px;
    align-items: center;
    justify-items: start;
    padding: 0 0 clamp(28px, 7vw, 40px);
    border-top: 0;
    text-align: left;
  }

  .home-page .process-step:last-child {
    padding-bottom: 0;
  }

  .home-page .process-number,
  .home-page .process-timeline.process-timeline-ready .process-number {
    grid-row: 1 / span 2;
    position: relative;
    z-index: 1;
    width: clamp(56px, 13vw, 64px);
    height: clamp(56px, 13vw, 64px);
    border-radius: 10px;
    box-shadow: 0 12px 28px rgba(0, 17, 78, .12);
  }

  .home-page .process-icon,
  .home-page .process-timeline.process-timeline-ready .process-icon {
    width: clamp(27px, 6vw, 32px);
    height: clamp(27px, 6vw, 32px);
  }

  .home-page .process-step h3 {
    margin: 2px 0 0;
    font-size: clamp(24px, 6vw, 30px);
    line-height: 1.15;
    font-weight: 700;
    font-variation-settings: "wght" 700;
  }

  .home-page .process-step p {
    max-width: 18em;
    margin: 0;
    font-size: clamp(17px, 4.4vw, 21px);
    line-height: 1.35;
  }
}

/* Final mobile CTA sizing: keep page CTA buttons compact instead of full-width. */
@media (max-width: 760px) {
  main .button-row {
    width: auto;
    align-items: flex-start;
    gap: 10px;
  }

  main .button-row .button,
  main .closing-cta .button,
  main .product-hero .button,
  main .split-hero .button {
    width: auto;
    max-width: 100%;
    min-height: 40px;
    align-self: flex-start;
    justify-content: center;
    gap: 10px;
    padding: 9px 13px;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.2;
    white-space: normal;
  }

  main .button .material-symbols-outlined {
    font-size: 18px;
  }

  .reflect-page main .closing-cta .button,
  .embark-page main .closing-cta .button,
  .consult-page main .closing-cta .button,
  .solutions main .closing-cta .button {
    width: auto;
    max-width: 100%;
    min-height: 40px;
    align-self: flex-start;
    justify-content: center;
    gap: 10px;
    padding: 9px 13px;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.2;
    white-space: normal;
  }
}
