:root {
  --color-page-bg: #f7f5f1;
  --color-ink: #18222f;
  --color-support: #6c7a89;
  --color-neutral: #d5cfc8;
  --color-accent: #ff3f8e;
  --color-deep-support: #2a2433;
  --color-surface-1: #fbfaf7;
  --color-surface-2: #f1ece4;
  --color-surface-dark: #2a2433;
  --color-border-subtle: #e5dfd9;
  --color-border-strong: #d7cfc8;
  --color-status-pass: #4a7c59;
  --color-status-pass-bg: #ebf2ec;
  --color-status-fail: #8b3a3a;
  --color-status-fail-bg: #f2e8e8;
  --color-success-soft: #f3eef3;
  --color-success-strong: #5e526b;
  --color-danger-soft: #f1ebe7;
  --color-danger-strong: #7a4a43;
  --max-width: 1200px;
  --content-width: 720px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-soft: 0 10px 24px rgba(24, 34, 47, 0.025);
  --transition: 180ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--color-page-bg);
  color: var(--color-ink);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

p,
li {
  font-size: 1rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

h1,
.section-heading h2,
.cta-panel h2 {
  font-family: "Source Serif 4", serif;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.6rem, 4.2vw, 4.4rem);
  max-width: 18ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  max-width: 18ch;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: -3rem;
  left: 1rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--color-ink);
  color: #fff;
  border-radius: 999px;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 245, 241, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-strong);
  transition:
    background-color var(--transition),
    border-color var(--transition),
    box-shadow 260ms ease;
}

.site-header__inner,
.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: transform var(--transition);
  max-width: min(18rem, 42vw);
}

.brand-mark__logo {
  display: block;
  width: 100%;
  max-width: 15rem;
  height: auto;
}

.brand-mark__text span:last-child,
.policy-meta,
.hero__note-label,
.offer-ladder__label,
.fit-card__label,
.proof-frame__label,
.process-step__number,
.diagnosis-card__index,
.eyebrow {
  color: var(--color-support);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.95rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  text-decoration: none;
  position: relative;
  transition: color var(--transition), transform var(--transition);
}

.site-nav a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.32rem;
  height: 1px;
  background: rgba(255, 63, 142, 0.58);
  transform: scaleX(0.35);
  transform-origin: left center;
  opacity: 0;
  transition:
    transform var(--transition),
    opacity var(--transition),
    background-color var(--transition);
}

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

.menu-toggle {
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid var(--color-border-strong);
  border-radius: 999px;
  background: var(--color-surface-1);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
  cursor: pointer;
}

.menu-toggle span {
  width: 1.1rem;
  height: 2px;
  background: var(--color-ink);
  border-radius: 999px;
  transition: transform var(--transition), opacity var(--transition);
}

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

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

.site-nav a:not(.button):hover::after,
.site-nav a:not(.button):focus-visible::after {
  transform: scaleX(1);
  opacity: 1;
}

.section {
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
}

.section--bordered {
  border-top: 1px solid var(--color-border-strong);
  border-bottom: 1px solid var(--color-border-strong);
}

.section--accent {
  background: var(--color-surface-2);
}

.section--policy {
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
}

.section-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.section-heading p {
  max-width: var(--content-width);
  color: rgba(24, 34, 47, 0.82);
}

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

.section-heading--tight {
  margin-bottom: 2rem;
}

.hero {
  padding-top: clamp(2.5rem, 5vw, 4.5rem);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}

.hero__content {
  display: grid;
  gap: 1.5rem;
  max-width: 60rem;
}

.hero__lede {
  max-width: 36rem;
  font-size: 1.2rem;
  color: rgba(24, 34, 47, 0.9);
}

.hero__support {
  max-width: 32rem;
  color: var(--color-support);
}

.hero__actions,
.cta-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.hero__note,
.diagnosis-card,
.offer-ladder__item,
.fit-card,
.policy-section,
.placeholder-frame,
.cta-panel {
  background: var(--color-surface-1);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.diagnosis-grid,
.offer-ladder,
.fit-grid {
  display: grid;
  gap: 1rem;
}

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

.diagnosis-card,
.offer-ladder__item,
.fit-card,
.policy-section {
  padding: 1.5rem;
}

.diagnosis-card {
  display: grid;
  gap: 1rem;
  position: relative;
  padding-top: 1.8rem;
}

.diagnosis-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 63, 142, 0.32);
}

.diagnosis-card__index {
  color: var(--color-support);
}

.explainer {
  display: grid;
  gap: 2rem;
}

.service-rows {
  display: grid;
  gap: 5.5rem;
  margin-top: 2rem;
}

.service-row {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 3rem;
  align-items: start;
}

.service-row--reverse {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.service-row--reverse .service-row__artifact {
  order: 2;
}

.service-row--reverse .service-row__text {
  order: 1;
}

.service-row__artifact,
.service-row__text {
  min-width: 0;
}

.service-row__text {
  display: grid;
  gap: 0.8rem;
  align-content: start;
  padding-top: 0.2rem;
}

.service-row__label {
  color: var(--color-support);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-row__notes {
  display: grid;
  gap: 0.5rem;
  padding-left: 1.1rem;
}

.artifact-frame {
  display: grid;
  gap: 0;
  max-width: 52rem;
  padding: 0;
  border-style: solid;
  border-color: rgba(24, 34, 47, 0.1);
  border-width: 0 1px 1px;
  border-radius: 0.72rem;
  background: var(--color-surface-1);
  box-shadow:
    0 12px 24px rgba(42, 36, 51, 0.06),
    0 2px 6px rgba(24, 34, 47, 0.03);
  overflow: hidden;
}

.artifact-frame__topline {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.08rem;
  padding: 0;
  margin-top: 0;
}

.artifact-frame__line {
  display: block;
  height: 2px;
  border-radius: 0;
}

.artifact-frame__line--dark {
  background: var(--color-surface-dark);
}

.artifact-frame__line--accent {
  width: var(--artifact-accent-line-width, 5.25rem);
  background: var(--color-accent);
  justify-self: end;
}

.artifact-frame__meta {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 0.9rem;
  align-items: center;
  padding: 0.85rem 1rem 0.8rem;
  border-bottom: 1px solid var(--color-border-strong);
  color: var(--color-support);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.artifact-frame__brand {
  color: var(--color-ink);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.artifact-frame__proof {
  padding-left: 0.9rem;
  border-left: 1px solid var(--color-border-strong);
}

.artifact-frame__category {
  justify-self: end;
  text-align: right;
}

.artifact-frame__shell {
  padding: 1.1rem;
}

.artifact-frame__image {
  width: 100%;
  border: 1px solid var(--color-border-subtle);
  border-radius: 0.6rem;
  background: var(--color-page-bg);
}

.artifact-frame--compact {
  max-width: 47rem;
}

.artifact-frame--compact .artifact-frame__meta {
  gap: 0.7rem;
  padding: 0.72rem 0.9rem 0.68rem;
  font-size: 0.64rem;
}

.artifact-frame--compact .artifact-frame__proof {
  padding-left: 0.7rem;
}

.artifact-frame--compact .artifact-frame__shell {
  padding: 0.9rem;
}

.artifact-frame--compact .artifact-frame__line--accent {
  width: var(--artifact-accent-line-width, 4.5rem);
}

.artifact-frame--feature {
  max-width: none;
}

.artifact-frame--feature .artifact-frame__meta {
  padding: 0.95rem 1.15rem 0.9rem;
  font-size: 0.76rem;
}

.artifact-frame--feature .artifact-frame__shell {
  padding: 1.15rem;
}

.artifact-frame--light-contrast {
  border-color: rgba(24, 34, 47, 0.14);
}

.artifact-frame--light-contrast .artifact-frame__meta {
  border-bottom-color: rgba(24, 34, 47, 0.14);
}

.artifact-frame--light-contrast .artifact-frame__shell {
  background: var(--color-surface-2);
}

@media (max-width: 1100px) {
  .artifact-frame {
    --artifact-accent-line-width: 3.5rem;
  }

  .artifact-frame__meta,
  .artifact-frame--feature .artifact-frame__meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    padding: 0.8rem 0.95rem 0.72rem;
  }

  .artifact-frame__brand,
  .artifact-frame__proof,
  .artifact-frame--feature .artifact-frame__proof {
    display: block;
    width: 100%;
    padding-left: 0;
    border-left: 0;
    font-size: 0.76rem;
    line-height: 1.3;
  }

  .artifact-frame__brand {
    margin-bottom: 0.1rem;
  }

  .artifact-frame__category,
  .artifact-frame--feature .artifact-frame__category {
    display: block;
    width: 100%;
    justify-self: start;
    text-align: left;
    font-size: 0.76rem;
    line-height: 1.35;
    text-wrap: pretty;
  }
}

@media (max-width: 1320px) {
  .artifact-frame--compact {
    --artifact-accent-line-width: 3.5rem;
  }

  .artifact-frame--compact .artifact-frame__meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    padding: 0.8rem 0.95rem 0.72rem;
  }

  .artifact-frame--compact .artifact-frame__proof {
    display: block;
    width: 100%;
    padding-left: 0 !important;
    margin-left: 0;
    text-indent: 0;
    border-left: 0 !important;
    font-size: 0.76rem;
    line-height: 1.3;
  }

  .artifact-frame--compact .artifact-frame__category {
    display: block;
    width: 100%;
    justify-self: start;
    text-align: left;
    font-size: 0.76rem;
    line-height: 1.35;
    text-wrap: pretty;
  }
}

.artifact-frame__image--light-contrast {
  background: #fff;
  border-color: rgba(24, 34, 47, 0.14);
  box-shadow:
    inset 0 0 0 1px rgba(247, 245, 241, 0.9),
    0 0 0 1px rgba(24, 34, 47, 0.03);
}

.artifact-canvas {
  min-height: 21rem;
  display: grid;
  border: 1px solid var(--color-border-subtle);
  border-radius: 0.85rem;
  overflow: hidden;
  background: linear-gradient(180deg, #1f1f24 0%, #17181d 100%);
  color: rgba(247, 245, 241, 0.86);
}

.artifact-canvas--audit {
  grid-template-columns: 0.52fr 1fr;
}

.artifact-canvas__sidebar {
  display: grid;
  align-content: start;
  gap: 0.45rem;
  padding: 1rem 0.8rem;
  background: linear-gradient(180deg, #18191e 0%, #14151a 100%);
  border-right: 1px solid rgba(247, 245, 241, 0.08);
}

.artifact-canvas__folder {
  display: block;
  padding: 0.4rem 0.55rem;
  border-radius: 0.45rem;
  color: rgba(247, 245, 241, 0.64);
  font-size: 0.82rem;
}

.artifact-canvas__folder--active {
  background: rgba(247, 245, 241, 0.08);
  color: rgba(247, 245, 241, 0.92);
}

.artifact-canvas__main {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: 1rem;
}

.artifact-canvas__main--full {
  min-height: 21rem;
}

.artifact-canvas__accent-rule {
  width: 4rem;
  height: 2px;
  border-radius: 999px;
  background: var(--color-accent);
}

.artifact-canvas__title {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(247, 245, 241, 0.96);
}

.artifact-canvas__rows {
  display: grid;
  gap: 0.7rem;
}

.artifact-canvas__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(247, 245, 241, 0.1);
  font-size: 0.9rem;
}

.artifact-canvas__flow {
  display: grid;
  gap: 0.65rem;
}

.artifact-canvas__flow span {
  display: block;
  padding: 0.85rem 0.9rem;
  border: 1px solid rgba(247, 245, 241, 0.12);
  border-radius: 0.8rem;
  background: rgba(247, 245, 241, 0.04);
  font-size: 0.92rem;
}

.artifact-canvas__flow i {
  display: block;
  width: 2rem;
  height: 2px;
  margin-left: 0.7rem;
  background: var(--color-accent);
  border-radius: 999px;
}

.artifact-canvas__stack {
  display: grid;
  gap: 0.6rem;
}

.artifact-canvas__stack-item {
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(247, 245, 241, 0.1);
  border-radius: 0.8rem;
  color: rgba(247, 245, 241, 0.72);
  font-size: 0.88rem;
}

.artifact-canvas__stack-item--accent {
  border-color: rgba(255, 63, 142, 0.35);
  color: rgba(247, 245, 241, 0.94);
}

.artifact-canvas__board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.artifact-canvas__board-col {
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

.artifact-canvas__board-col > span {
  color: rgba(247, 245, 241, 0.62);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.artifact-canvas__board-card {
  min-height: 5rem;
  padding: 0.8rem;
  border: 1px solid rgba(247, 245, 241, 0.1);
  border-radius: 0.85rem;
  background: rgba(247, 245, 241, 0.04);
  font-size: 0.9rem;
}

.artifact-canvas__board-card--accent {
  border-color: rgba(255, 63, 142, 0.32);
}

.process-layout,
.proof-layout {
  display: grid;
  gap: 1.5rem;
}

.process-visual,
.proof-frame {
  padding: 1.25rem;
}

.process-visual.artifact-frame,
.proof-frame.artifact-frame {
  padding: 0;
}

.proof-copy {
  display: grid;
  gap: 0.8rem;
}

.workflow-canvas {
  position: relative;
  min-height: auto;
  padding: 1.1rem 0 0;
}

.workflow-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
  z-index: 0;
}

.workflow-overlay path {
  stroke: rgba(108, 122, 137, 0.48);
  stroke-width: 1;
  fill: none;
  opacity: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.workflow-phase-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 2.35rem;
  transition:
    grid-template-columns 720ms cubic-bezier(0.18, 0.88, 0.24, 1),
    margin-top 1280ms cubic-bezier(0.18, 0.88, 0.24, 1),
    margin-bottom 420ms ease;
  position: relative;
  z-index: 1;
}

.workflow-canvas.is-expanded .workflow-phase-row {
  margin-top: 0;
  margin-bottom: 1.25rem;
}

.workflow-phase-row[data-active-phase="1"] {
  grid-template-columns: 1.16fr 0.92fr 0.92fr;
}

.workflow-phase-row[data-active-phase="2"] {
  grid-template-columns: 0.92fr 1.16fr 0.92fr;
}

.workflow-phase-row[data-active-phase="3"] {
  grid-template-columns: 0.92fr 0.92fr 1.16fr;
}

.workflow-phase {
  position: relative;
  display: grid;
  gap: 0.35rem;
  min-height: 10rem;
  padding: 1.55rem 1.35rem 1.35rem;
  border: 1px solid var(--color-border-strong);
  border-radius: 0.72rem;
  background: var(--color-surface-1);
  color: var(--color-ink);
  text-align: left;
  cursor: pointer;
  transition:
    background-color var(--transition),
    border-color var(--transition),
    transform 980ms cubic-bezier(0.18, 0.88, 0.24, 1),
    box-shadow 320ms ease,
    filter 320ms ease,
    opacity 320ms ease,
    padding 980ms cubic-bezier(0.18, 0.88, 0.24, 1),
    min-height 980ms cubic-bezier(0.18, 0.88, 0.24, 1),
    gap 720ms ease;
}

.workflow-phase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0.9rem;
  right: 0.9rem;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 63, 142, 0.32);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 280ms ease;
}

.workflow-phase:hover:not(.is-active) {
  background: var(--color-surface-1);
  border-color: rgba(255, 63, 142, 0.18);
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(24, 34, 47, 0.03);
}

.workflow-phase.is-active {
  border-color: var(--color-border-strong);
  box-shadow: 0 10px 26px rgba(24, 34, 47, 0.05);
  transform: translateY(-0.2rem) scale(1.02);
  z-index: 2;
}

.workflow-phase.is-active::before {
  transform: scaleX(1);
}

.workflow-phase.is-condensed {
  padding-top: 1rem;
  padding-bottom: 0.9rem;
  opacity: 0.8;
  transform: translateY(-0.55rem) scale(0.965);
  filter: saturate(0.9);
  min-height: 8.1rem;
}

.workflow-phase.is-condensed .workflow-phase__name {
  font-size: clamp(1.1rem, 1.45vw, 1.22rem);
}

.workflow-phase__num {
  color: var(--color-support);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(0.35rem);
  transition:
    opacity 320ms ease,
    transform 460ms ease;
}

.workflow-phase__name {
  font-family: "Source Serif 4", serif;
  font-size: clamp(1.75rem, 2.5vw, 2.15rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  align-self: center;
  transition:
    font-size 980ms cubic-bezier(0.18, 0.88, 0.24, 1),
    transform 980ms cubic-bezier(0.18, 0.88, 0.24, 1);
}

.workflow-phase__meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem;
  margin-top: 0.15rem;
  color: var(--color-support);
  font-size: 0.76rem;
  opacity: 0;
  transform: translateY(0.35rem);
  transition:
    opacity 320ms ease,
    transform 460ms ease;
}

.workflow-phase__meta svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  transition: transform 320ms ease, color 220ms ease;
}

.workflow-phase.is-active .workflow-phase__meta svg {
  transform: rotate(90deg);
}

.workflow-canvas.is-expanded .workflow-phase {
  min-height: 8.9rem;
  padding-top: 1.12rem;
  padding-bottom: 0.98rem;
  gap: 0.5rem;
}

.workflow-canvas.is-expanded .workflow-phase__num,
.workflow-canvas.is-expanded .workflow-phase__meta {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 380ms;
}

.workflow-canvas.is-expanded .workflow-phase__name {
  font-size: clamp(1.22rem, 1.95vw, 1.72rem);
  align-self: start;
}

.workflow-panels {
  position: relative;
  z-index: 1;
  min-height: var(--workflow-panel-height, 0);
}

.workflow-panel {
  position: absolute;
  inset: 0;
  max-height: none;
  padding-top: 1.35rem;
  overflow: visible;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(0.45rem);
  transition:
    opacity 320ms ease,
    transform 520ms cubic-bezier(0.18, 0.88, 0.24, 1);
}

.workflow-panel.is-visible {
  position: relative;
  inset: auto;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.workflow-connectors {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}

.workflow-connectors path {
  stroke: rgba(108, 122, 137, 0.48);
  stroke-width: 1;
  fill: none;
  opacity: 0;
  stroke-dasharray: 4 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: opacity 280ms ease 120ms;
}

.workflow-step-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
}

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

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

.workflow-step-card {
  position: relative;
  display: grid;
  gap: 0.9rem;
  padding: 1.2rem;
  border: 1px solid var(--color-border-strong);
  border-radius: 0.72rem;
  background: var(--color-surface-1);
  overflow: hidden;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 420ms ease,
    transform 620ms cubic-bezier(0.18, 0.88, 0.24, 1),
    border-color var(--transition);
}

.workflow-step-card.is-entered {
  opacity: 1;
  transform: translateY(0);
}

.workflow-step-card__header {
  display: grid;
  gap: 0.18rem;
}

.workflow-step-card__num {
  color: var(--color-support);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.workflow-step-card__name {
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  font-weight: 600;
  line-height: 1.25;
}

.workflow-step-card__desc {
  font-size: 0.85rem;
  line-height: 1.58;
  color: rgba(24, 34, 47, 0.72);
}

.workflow-step-visual {
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
  padding-top: 0.15rem;
}

.workflow-v-line,
.workflow-v-check__line,
.workflow-v-draft__line,
.workflow-v-qa__line {
  height: 2px;
  border-radius: 999px;
  background: rgba(24, 34, 47, 0.13);
}

.workflow-v-line--full,
.workflow-v-draft__line--full {
  width: 100%;
}

.workflow-v-line--med,
.workflow-v-draft__line--mid {
  width: 72%;
}

.workflow-v-line--short,
.workflow-v-draft__line--short {
  width: 48%;
}

.workflow-v-draft__line--wide,
.workflow-v-qa__line--wide {
  width: 86%;
}

.workflow-v-check__line--mid {
  width: 72%;
}

.workflow-v-check__line--short,
.workflow-v-qa__line--short {
  width: 58%;
}

.workflow-v-highlight {
  position: relative;
  height: 8px;
  border-radius: 2px;
  overflow: hidden;
}

.workflow-v-highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(24, 34, 47, 0.08);
}

.workflow-v-highlight::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 42%;
  background: rgba(255, 63, 142, 0.22);
}

.workflow-v-highlight--alt::after {
  width: 63%;
  background: rgba(255, 63, 142, 0.1);
}

.workflow-v-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.28rem;
}

.workflow-v-cell {
  height: 1.25rem;
  border: 1px solid var(--color-border-strong);
  border-radius: 0.22rem;
  background: var(--color-surface-2);
}

.workflow-v-cell--accent {
  border-color: rgba(255, 63, 142, 0.2);
  background: rgba(255, 63, 142, 0.08);
}

.workflow-v-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.28rem;
  margin-top: 0.25rem;
}

.workflow-v-tag {
  height: 0.72rem;
  border: 1px solid var(--color-border-strong);
  border-radius: 2px;
  background: var(--color-surface-2);
}

.workflow-v-tag--w1 {
  width: 1.7rem;
}

.workflow-v-tag--w2 {
  width: 2.45rem;
}

.workflow-v-tag--w3 {
  width: 1.1rem;
}

.workflow-v-tag--accent {
  border-color: rgba(255, 63, 142, 0.2);
  background: rgba(255, 63, 142, 0.08);
}

.workflow-v-card {
  display: grid;
  gap: 0.35rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--color-border-strong);
  border-radius: 0.32rem;
  background: #fff;
}

.workflow-v-card--dense {
  gap: 0.28rem;
}

.workflow-v-card__header {
  width: 36%;
  height: 2px;
  border-radius: 999px;
  background: var(--color-accent);
  margin-bottom: 0.15rem;
}

.workflow-v-card__header--short {
  width: 22%;
}

.workflow-v-check {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.workflow-v-check__box {
  width: 0.72rem;
  height: 0.72rem;
  border: 1.5px solid var(--color-border-strong);
  border-radius: 0.18rem;
  flex-shrink: 0;
}

.workflow-v-check__box--checked {
  background: var(--color-surface-dark);
  border-color: var(--color-surface-dark);
  position: relative;
}

.workflow-v-check__box--checked::after {
  content: "";
  position: absolute;
  top: 0.12rem;
  left: 0.18rem;
  width: 0.24rem;
  height: 0.4rem;
  border-right: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  transform: rotate(40deg);
}

.workflow-v-map {
  display: flex;
  flex-direction: column;
  gap: 0.36rem;
}

.workflow-v-map__row {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.workflow-v-map__row--offset {
  margin-left: 0.65rem;
}

.workflow-v-node {
  height: 0.72rem;
  border: 1px solid var(--color-border-strong);
  border-radius: 2px;
  background: var(--color-surface-2);
}

.workflow-v-node--w1 {
  width: 1.7rem;
}

.workflow-v-node--w2 {
  width: 2.45rem;
}

.workflow-v-node--w3 {
  width: 1.1rem;
}

.workflow-v-node--accent {
  border-color: rgba(255, 63, 142, 0.2);
  background: rgba(255, 63, 142, 0.08);
}

.workflow-v-dot {
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: var(--color-neutral);
  flex-shrink: 0;
}

.workflow-v-draft {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  padding-left: 0.5rem;
  border-left: 2px solid rgba(24, 34, 47, 0.1);
}

.workflow-v-draft__line--accent {
  width: 42%;
  background: rgba(255, 63, 142, 0.4);
}

.workflow-v-draft__line--cursor {
  width: 38%;
}

.workflow-v-cursor-row {
  display: flex;
  align-items: center;
  gap: 0.16rem;
  margin-top: 0.3rem;
}

.workflow-v-cursor {
  display: inline-block;
  width: 2px;
  height: 0.7rem;
  border-radius: 1px;
  background: var(--color-accent);
  animation: workflow-blink 1.1s step-start infinite;
}

@keyframes workflow-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.workflow-v-qa {
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
}

.workflow-v-qa__row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.workflow-v-qa__mark {
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 999px;
  border: 1.5px solid var(--color-border-strong);
  flex-shrink: 0;
}

.workflow-v-qa__mark--ok {
  border-color: var(--color-status-pass);
  background: rgba(74, 124, 89, 0.08);
  position: relative;
}

.workflow-v-qa__mark--ok::after {
  content: "";
  position: absolute;
  top: 0.17rem;
  left: 0.27rem;
  width: 0.2rem;
  height: 0.38rem;
  border-right: 1.5px solid var(--color-status-pass);
  border-bottom: 1.5px solid var(--color-status-pass);
  transform: rotate(40deg);
}

.workflow-v-qa__mark--pending {
  border-color: rgba(255, 63, 142, 0.4);
  background: rgba(255, 63, 142, 0.08);
}

.workflow-v-accent-rule {
  width: 36%;
  height: 2px;
  margin-top: 0.35rem;
  border-radius: 999px;
  background: rgba(255, 63, 142, 0.5);
}

.proof-layout {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: start;
}

.proof-list {
  display: grid;
  gap: 0.9rem;
  list-style: none;
}

.proof-list li {
  padding-top: 0.9rem;
  border-top: 1px solid var(--color-border-subtle);
}

.logo-carousel-wrap {
  position: relative;
  overflow: hidden;
}

.logo-carousel-wrap::before,
.logo-carousel-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2.5rem;
  pointer-events: none;
  z-index: 1;
}

.logo-carousel-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--color-page-bg), rgba(247, 245, 241, 0));
}

.logo-carousel-wrap::after {
  right: 0;
  background: linear-gradient(270deg, var(--color-page-bg), rgba(247, 245, 241, 0));
}

.logo-carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.2rem 0;
  scroll-snap-type: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.logo-carousel::-webkit-scrollbar {
  display: none;
}

.logo-chip {
  flex: 0 0 auto;
  min-width: 11rem;
  min-height: 5.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.2rem;
  border: 1px solid var(--color-border-strong);
  border-radius: 0.72rem;
  background: var(--color-surface-1);
  color: var(--color-support);
  text-decoration: none;
  overflow: hidden;
  transition:
    border-color var(--transition),
    color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.logo-chip span {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.logo-chip__mark {
  display: block;
  width: 9.25rem;
  height: 2rem;
  flex-shrink: 0;
  background-image: var(--logo-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  image-rendering: pixelated;
  filter: grayscale(1) brightness(0);
  opacity: 0.9;
}

.logo-chip__image {
  display: block;
  width: auto;
  max-width: 9.5rem;
  max-height: 2.15rem;
  object-fit: contain;
  filter: grayscale(1) brightness(0);
  opacity: 0.9;
}

.logo-chip__image--qode {
  width: 9.9rem;
  height: 4.35rem;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center;
}

.logo-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 63, 142, 0.28);
  color: var(--color-ink);
  box-shadow: 0 10px 18px rgba(24, 34, 47, 0.03);
}

.logo-chip:hover .logo-chip__mark,
.logo-chip:hover .logo-chip__image {
  opacity: 1;
}

.logo-chip:focus-visible {
  outline-offset: 2px;
}

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

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

.fit-card ul,
.cta-panel__reassurance {
  display: grid;
  gap: 0.75rem;
  padding-left: 1.2rem;
}

.fit-card__header {
  margin: -1.5rem -1.5rem 1rem;
  padding: 0.95rem 1.5rem 0.85rem;
  border-bottom: 1px solid var(--color-border-strong);
}

.fit-card ul {
  border-top: 0;
  padding-top: 0;
}

.fit-card:not(.fit-card--muted) {
  background: var(--color-surface-1);
  border-color: var(--color-border-strong);
}

.fit-card:not(.fit-card--muted) .fit-card__header {
  background: var(--color-status-pass-bg);
  border-bottom-color: rgba(74, 124, 89, 0.18);
}

.fit-card:not(.fit-card--muted) .fit-card__label {
  color: var(--color-status-pass);
}

.fit-card:not(.fit-card--muted) ul {
  border-top-color: transparent;
}

.fit-card--muted {
  background: var(--color-surface-1);
  border-color: var(--color-border-strong);
}

.fit-card--muted .fit-card__header {
  background: var(--color-status-fail-bg);
  border-bottom-color: rgba(139, 58, 58, 0.18);
}

.fit-card--muted .fit-card__label {
  color: var(--color-status-fail);
}

.fit-card--muted ul {
  border-top: 0;
}

@media (max-width: 540px) {
  .fit-card__header {
    margin: -1rem -1rem 0.9rem;
    padding: 0.85rem 1rem 0.75rem;
  }
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background:
    radial-gradient(circle at top left, rgba(255, 63, 142, 0.08), transparent 32%),
    var(--color-surface-1);
}

.cta-panel__copy {
  display: grid;
  gap: 1rem;
}

.cta-panel__lede {
  max-width: 40rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  text-decoration: none;
  transition:
    transform var(--transition),
    background-color var(--transition),
    color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

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

.button--primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 12px 28px rgba(255, 63, 142, 0.22);
}

.button--primary:hover {
  background: #e6337d;
  box-shadow: 0 16px 30px rgba(255, 63, 142, 0.26);
}

.button--ghost,
.button--nav {
  border-color: var(--color-border-strong);
  background: rgba(251, 250, 247, 0.52);
}

.button--ghost:hover,
.button--nav:hover {
  border-color: rgba(255, 63, 142, 0.3);
  background: rgba(255, 63, 142, 0.06);
  box-shadow: 0 10px 18px rgba(24, 34, 47, 0.03);
}

.button--ghost:active,
.button--nav:active,
.button--primary:active {
  transform: translateY(0);
}

.button--large {
  min-height: 3.35rem;
  padding-inline: 1.45rem;
}

.site-footer {
  border-top: 1px solid var(--color-border-strong);
  padding: 1.5rem 0;
  background: var(--color-page-bg);
}

.site-footer p,
.site-footer a {
  font-size: 0.95rem;
  color: rgba(24, 34, 47, 0.78);
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer__links a[href="privacy-policy.html"] {
  display: none;
}

#proof {
  background: var(--color-page-bg);
  color: var(--color-ink);
}

#proof .proof-frame,
#proof .placeholder-frame {
  background: var(--color-surface-1);
  border-color: var(--color-border-strong);
  box-shadow: var(--shadow-soft);
}

#proof .proof-list li {
  border-top-color: var(--color-border-subtle);
}

.policy-layout {
  max-width: 820px;
}

.policy-layout .section-heading h1 {
  max-width: none;
  font-size: clamp(2.5rem, 5vw, 4.25rem);
}

.policy-section {
  margin-bottom: 1rem;
}

.policy-section h2 {
  margin-bottom: 0.85rem;
  max-width: none;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-family: "Inter", sans-serif;
  font-weight: 600;
}

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

[data-reveal].is-hidden {
  opacity: 0;
  transition:
    opacity 480ms ease,
    transform 560ms cubic-bezier(0.18, 0.88, 0.24, 1);
}

[data-reveal="rise"].is-hidden {
  transform: translateY(22px);
}

[data-reveal="fade"].is-hidden {
  transform: translateY(12px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 560ms ease,
    transform 620ms cubic-bezier(0.18, 0.88, 0.24, 1);
}

:focus-visible {
  outline: 3px solid rgba(46, 91, 255, 0.38);
  outline-offset: 3px;
}

@media (max-width: 1440px) {
  .container {
    width: min(calc(100% - 3rem), 1120px);
  }

  .section {
    padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  }

  .section-heading {
    margin-bottom: 2rem;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

  .hero__content {
    max-width: 60rem;
  }

  .hero__aside {
    max-width: 28rem;
  }

  h1 {
    font-size: clamp(2.15rem, 3vw, 3rem);
    max-width: 26ch;
  }

  h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    max-width: 26ch;
  }

  .proof-layout,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .diagnosis-grid,
  .offer-ladder,
  .process-steps,
  .fit-grid,
  .proof-layout,
  .explainer,
  .process-layout {
    gap: 0.9rem;
  }
}

@media (max-width: 980px) {
  .container {
    width: min(calc(100% - 2rem), 100%);
  }

  .section {
    padding: 3.5rem 0;
  }

  .section-heading {
    gap: 0.85rem;
    margin-bottom: 1.5rem;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero__grid,
  .proof-layout,
  .cta-panel,
  .diagnosis-grid,
  .offer-ladder,
  .process-steps,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .hero__content,
  .section-heading--narrow,
  .policy-layout {
    max-width: none;
  }

  .hero__aside,
  .proof-frame,
  .cta-panel__actions {
    max-width: 100%;
  }

  .workflow-canvas {
    min-height: auto;
    padding-top: 0.25rem;
  }

  .service-row,
  .service-row--reverse {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .service-row__text {
    order: 1;
  }

  .service-row__artifact {
    order: 2;
  }

  .artifact-frame {
    --artifact-accent-line-width: 3.5rem;
  }

  .artifact-frame__meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    padding: 0.8rem 0.95rem 0.72rem;
  }

  .artifact-frame__brand,
  .artifact-frame__proof {
    display: block;
    width: 100%;
    padding-left: 0 !important;
    margin-left: 0;
    text-indent: 0;
    border-left: 0 !important;
    font-size: 0.76rem;
    line-height: 1.3;
  }

  .artifact-frame__brand {
    margin-bottom: 0.1rem;
  }

  .artifact-frame__category {
    display: block;
    width: 100%;
    text-align: left;
    font-size: 0.76rem;
    line-height: 1.35;
    text-wrap: pretty;
  }

  .artifact-frame--compact .artifact-frame__meta,
  .artifact-frame--feature .artifact-frame__meta {
    padding: 0.8rem 0.95rem 0.72rem;
    gap: 0.3rem;
  }

  .artifact-frame--compact .artifact-frame__proof,
  .artifact-frame--feature .artifact-frame__proof {
    padding-left: 0 !important;
    margin-left: 0;
    text-indent: 0;
    border-left: 0 !important;
  }

  .artifact-frame--compact .artifact-frame__category,
  .artifact-frame--feature .artifact-frame__category {
    justify-self: start;
    text-align: left;
  }

  .workflow-phase-row {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    margin-top: 0;
  }

  .workflow-canvas.is-expanded .workflow-phase-row {
    margin-bottom: 0.75rem;
  }

  .workflow-phase,
  .workflow-phase.is-condensed {
    padding: 0.95rem 0.95rem 0.88rem;
    opacity: 1;
    transform: none;
    filter: none;
    box-shadow: none;
    min-height: auto;
    gap: 0.45rem;
  }

  .workflow-phase__name {
    font-size: 1.2rem;
    align-self: start;
  }

  .workflow-phase__meta {
    font-size: 0.72rem;
    opacity: 1;
    transform: none;
  }

  .workflow-phase__num {
    opacity: 1;
    transform: none;
  }

  .workflow-panel {
    position: relative;
    inset: auto;
    display: none;
    max-height: none;
    padding-top: 0.55rem;
    overflow: visible;
    visibility: visible;
    transform: none;
    opacity: 1;
    transition: none;
  }

  .workflow-panel.is-visible {
    display: block;
  }

  .workflow-panels {
    min-height: 0;
  }

  .workflow-connectors {
    display: none;
  }

  .workflow-overlay {
    display: none;
  }

  .workflow-step-grid--two,
  .workflow-step-grid--three {
    grid-template-columns: 1fr;
  }

  .workflow-step-grid {
    gap: 0.7rem;
  }

  .workflow-step-card {
    padding: 1.05rem;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .workflow-step-card::before {
    transform: scaleY(1);
    transition: none;
  }

  h1 {
    font-size: clamp(2.15rem, 5.8vw, 3.1rem);
    max-width: 18ch;
  }

  h2 {
    font-size: clamp(1.7rem, 4.4vw, 2.35rem);
    max-width: 18ch;
  }

  .hero__lede {
    font-size: 1.08rem;
  }

  .diagnosis-card,
  .service-row__artifact,
  .service-row__text,
  .fit-card,
  .policy-section,
  .process-visual,
  .proof-frame,
  .cta-panel,
  .hero__note {
    padding: 1.25rem;
  }

  .site-nav {
    justify-content: flex-start;
  }

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

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 1.5rem), 100%);
  }

  .site-header {
    backdrop-filter: blur(10px);
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(21rem, 88vw);
    height: 100dvh;
    padding: 5.25rem 1.25rem 1.25rem;
    border-left: 1px solid var(--color-border-strong);
    border-top: 0;
    border-right: 0;
    border-bottom: 0;
    border-radius: 0.7rem 0 0 0.7rem;
    background: var(--color-surface-1);
    box-shadow: -18px 0 42px rgba(24, 34, 47, 0.12);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.5rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 220ms ease;
    z-index: 35;
  }

  .site-header__inner,
  .site-footer__inner {
    gap: 0.85rem;
    padding: 0.9rem 0;
  }

  .site-header__inner {
    flex-direction: row;
    align-items: center;
  }

  .brand-mark {
    align-items: center;
    min-width: 0;
    flex: 1 1 auto;
    max-width: min(14rem, 62vw);
  }

  .brand-mark__logo {
    max-width: 12rem;
  }

  .site-nav {
    font-size: 1rem;
  }

  .site-nav a {
    display: block;
    width: 100%;
    padding: 0.75rem 0;
    font-size: 1rem;
    line-height: 1.3;
  }

  .site-nav .button--nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 0.5rem;
    flex: 0 0 auto;
    min-height: 3.15rem;
    padding-inline: 1rem;
  }

  .menu-toggle {
    display: inline-flex;
    position: relative;
    z-index: 40;
    flex: 0 0 auto;
  }

  .nav-scrim {
    display: block;
    position: fixed;
    inset: 0;
    border: 0;
    padding: 0;
    background: rgba(24, 34, 47, 0.34);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
    z-index: 30;
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open .site-nav {
    transform: translateX(0);
  }

  body.nav-open .nav-scrim {
    opacity: 1;
    pointer-events: auto;
  }

  body.nav-open .menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  body.nav-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .section {
    padding: 3rem 0;
  }

  h2 {
    max-width: none;
  }

  .hero__actions,
  .cta-panel__actions,
  .site-footer__links {
    align-items: stretch;
  }

  h1 {
    font-size: clamp(2rem, 7vw, 2.45rem);
    line-height: 1.06;
    letter-spacing: -0.04em;
    max-width: none;
    text-wrap: balance;
  }

  .hero {
    padding-top: 1.5rem;
  }

  .hero__content {
    gap: 1rem;
  }

  .hero__lede {
    font-size: 1.02rem;
    line-height: 1.55;
  }

  .hero__support {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.09em;
  }

  .button,
  .button--large {
    width: 100%;
    min-height: 3.2rem;
  }

  .hero__actions {
    gap: 0.75rem;
  }

  .hero__aside {
    max-width: none;
  }

  .hero__note {
    padding: 1.1rem;
  }

  .hero__note::before {
    top: 1.1rem;
    left: 1.1rem;
  }

  .inline-list {
    gap: 0.5rem;
  }

  .inline-list li {
    font-size: 0.85rem;
  }

  .diagnosis-card,
  .offer-ladder__item,
  .fit-card,
  .policy-section,
  .process-visual,
  .proof-frame,
  .cta-panel {
    border-radius: 1rem;
  }

  .process-step {
    padding-top: 1rem;
  }

  .artifact-canvas--audit,
  .artifact-canvas__board {
    grid-template-columns: 1fr;
  }

  .offer-ladder {
    grid-column: auto;
  }

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

}

@media (max-width: 540px) {
  .container {
    width: min(calc(100% - 1rem), 100%);
  }

  .section {
    padding: 2.35rem 0;
  }

  h1 {
    font-size: clamp(1.9rem, 9vw, 2.2rem);
    max-width: none;
  }

  h2 {
    font-size: clamp(1.55rem, 7.2vw, 1.95rem);
    line-height: 1.08;
  }

  .hero__lede,
  .hero__support,
  .cta-panel__lede,
  .section-heading p,
  p,
  li {
    font-size: 0.98rem;
  }

  .diagnosis-card,
  .offer-ladder__item,
  .fit-card,
  .policy-section,
  .process-visual,
  .proof-frame,
  .cta-panel,
  .hero__note {
    padding: 1rem;
  }

  .site-nav {
    width: min(18rem, calc(100vw - 1rem));
    gap: 0.3rem;
  }

  .brand-mark {
    max-width: min(12rem, 64vw);
  }

  .brand-mark__logo {
    max-width: 10.5rem;
  }

  .site-nav .button--nav {
    margin-top: 0.25rem;
  }
}

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

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

  [data-reveal],
  [data-reveal].is-hidden,
  [data-reveal].is-visible {
    opacity: 1 !important;
    transform: none !important;
  }
}
