@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("./assets/archivo-latin-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("./assets/archivo-latin-ext-normal.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Archivo";
  font-style: italic;
  font-display: swap;
  font-weight: 100 900;
  src: url("./assets/archivo-latin-italic.woff2") format("woff2");
}







:root {
  color-scheme: light;
  --site-bg: #f5f8f4;
  --site-surface: #fcfdf9;
  --site-surface-soft: #f3f7f3;
  --site-surface-strong: #dfe9e3;
  --site-ink: #0b3028;
  --site-muted: #5b6b64;
  --site-faint: #7c8a84;
  --site-line: rgba(11, 48, 40, 0.16);
  --site-line-strong: rgba(11, 48, 40, 0.32);
  --site-accent: #d44c32;
  --site-accent-deep: #aa2e24;
  --site-accent-soft: rgba(212, 76, 50, 0.1);
  --site-success: #1f6b50;
  --site-warning: #b83c29;
  --site-serif: "Archivo", sans-serif;
  --site-sans: "Archivo", sans-serif;
  --site-display-size: clamp(2.35rem, 3.5vw, 3.65rem);
  --site-section-size: clamp(1.85rem, 2.45vw, 2.55rem);
  --site-max: 1360px;
  --site-radius: 12px;
  --site-card-radius: 10px;
  --site-control-radius: 12px;
  --site-pill-radius: 999px;
  --site-focus-offset: 4px;
  --focus-scroll-margin-start: 126px;
}

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

[hidden] {
  display: none !important;
}

html {
  min-width: 280px;
  scroll-behavior: smooth;
  scroll-padding-top: 122px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  background: var(--site-bg);
}

html.scroll-instant {
  scroll-behavior: auto;
}

body {
  min-width: 280px;
  min-height: 100vh;
  margin: 0;
  color: var(--site-ink);
  font-family: var(--site-sans);
  font-synthesis: none;
  font-size: 1rem;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  background:
    linear-gradient(rgba(11, 48, 40, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 48, 40, 0.026) 1px, transparent 1px),
    var(--site-bg);
  background-size: 64px 64px;
}

::selection {
  color: #fff;
  background: var(--site-accent-deep);
}

a {
  color: inherit;
}

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

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

:where(a, button, input, select, textarea, summary, [tabindex="-1"]) {
  scroll-margin-block: var(--focus-scroll-margin-start) 24px;
}

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid var(--site-accent);
  outline-offset: var(--site-focus-offset);
}

main[tabindex="-1"]:focus {
  outline: none;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 11px 15px;
  color: #fff;
  background: var(--site-ink);
  font-weight: 700;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-180%);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.skip-link:focus-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.page-shell {
  width: min(var(--site-max), calc(100% - 80px));
  margin: 0 auto;
  padding: 0 0 40px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(250px, 340px) minmax(0, 1fr);
  align-items: center;
  gap: 30px;
  min-width: 0;
  min-height: 88px;
  padding: 18px 0;
  margin-bottom: 24px;
  border: 0;
  border-bottom: 1px solid var(--site-line);
  border-radius: 0;
  background: rgba(252, 253, 249, 0.95);
  box-shadow: none;
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  backdrop-filter: blur(18px) saturate(120%);
}

.brand {
  display: inline-flex;
  width: min(100%, 286px);
  min-width: 0;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.brand picture {
  display: block;
  width: 100%;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
}

.nav {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
}

.nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 9px 11px;
  border-bottom: 2px solid transparent;
  color: var(--site-muted);
  font-size: 0.9375rem;
  font-weight: 620;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

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

.nav .nav-cta {
  min-height: 42px;
  margin-left: 8px;
  padding-inline: 16px;
  border: 1px solid var(--site-accent);
  border-bottom-color: var(--site-accent);
  border-radius: var(--site-control-radius);
  color: #fff;
  background: var(--site-accent-deep);
}

.nav .nav-cta:hover,
.nav .nav-cta:focus-visible,
.nav .nav-cta[aria-current="page"] {
  color: #fff;
  background: var(--site-accent);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  min-height: 36px;
  margin: 2px 0 12px;
  padding: 0 4px;
  color: var(--site-muted);
  font-size: 0.875rem;
}

.breadcrumb a {
  color: var(--site-accent-deep);
  font-weight: 650;
  text-underline-offset: 3px;
}

.hero,
.section,
.contact {
  position: relative;
  min-width: 0;
  overflow: clip;
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius);
  background: var(--site-surface);
}

.audience {
  background: var(--site-surface);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
  align-items: stretch;
  gap: 0;
  min-height: 540px;
}

.hero-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 4.5vw, 64px);
}

.sales-hero {
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
}

.hero-card,
.system-map {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 4vw, 56px);
  border-left: 1px solid var(--site-line);
  background: var(--site-surface-soft);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--site-accent-deep);
  font-size: 0.875rem;
  font-weight: 740;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  flex: 0 0 auto;
  border-radius: var(--site-pill-radius);
  background: var(--site-accent);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--site-ink);
  font-kerning: normal;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

h1 {
  max-width: 21ch;
  font-family: var(--site-sans);
  font-size: var(--site-display-size);
  font-weight: 560;
  letter-spacing: -0.025em;
  line-height: 1.12;
  text-wrap: pretty;
}

h2 {
  max-width: 32ch;
  font-size: var(--site-section-size);
  font-weight: 590;
  letter-spacing: -0.025em;
  line-height: 1.16;
  text-wrap: pretty;
}

h3 {
  font-size: clamp(1.18rem, 1.6vw, 1.4rem);
  font-weight: 620;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-wrap: pretty;
}

.lead {
  max-width: 62ch;
  margin: 24px 0 0;
  color: var(--site-muted);
  font-size: clamp(1.05rem, 1.25vw, 1.18rem);
  line-height: 1.72;
  text-wrap: pretty;
}

.lead.compact {
  max-width: 49ch;
}

.hero-actions,
.section-actions,
.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 49px;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--site-pill-radius);
  appearance: none;
  cursor: pointer;
  font: inherit;
  font-weight: 650;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    color 150ms ease,
    background-color 150ms ease,
    border-color 150ms ease,
    transform 150ms ease;
}

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

.button-primary {
  color: #fff;
  background: var(--site-accent-deep);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--site-accent);
}

.button-secondary {
  border-color: var(--site-line-strong);
  color: var(--site-ink);
  background: transparent;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--site-ink);
  background: var(--site-surface-strong);
}

.text-link,
.card-heading-link {
  color: var(--site-accent-deep);
  font-weight: 650;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.card-heading-link {
  color: inherit;
}

.text-link:hover,
.text-link:focus-visible,
.card-heading-link:hover,
.card-heading-link:focus-visible {
  color: var(--site-accent);
}

.trust-row,
.signal-list,
.signal-checks,
.check-benefits,
.reliability-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 22px;
  margin-top: 30px;
  color: var(--site-muted);
  font-size: 0.88rem;
  font-weight: 580;
}

.trust-row li {
  position: relative;
  padding-left: 17px;
}

.trust-row li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--site-accent);
}

.system-map {
  gap: 0;
}

.system-map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--site-line-strong);
}

.system-map-header strong {
  font-size: 1rem;
  font-weight: 650;
}

.system-map-header span {
  color: var(--site-muted);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.system-stage {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--site-line);
}

.system-stage:last-child {
  border-bottom: 0;
}

.system-stage > span {
  color: var(--site-accent);
  font-family: var(--site-serif);
  font-size: 1.45rem;
  line-height: 1;
}

.system-stage strong {
  display: block;
  margin-bottom: 6px;
  color: var(--site-ink);
  font-size: 1rem;
  font-weight: 650;
}

.system-stage p {
  margin: 0;
  color: var(--site-muted);
  line-height: 1.55;
}

.section,
.contact {
  margin-top: 18px;
  padding: clamp(38px, 4.6vw, 64px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 4px;
  margin-bottom: 34px;
}

.section-heading > * {
  min-width: 0;
  max-width: 100%;
}

.section-heading-wide {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  column-gap: clamp(36px, 6vw, 82px);
  align-items: end;
}

.section-heading-wide .eyebrow {
  grid-column: 1 / -1;
}

.section-heading-wide h2 {
  max-width: none;
}

.section-intro {
  max-width: 62ch;
  margin: 0;
  color: var(--site-muted);
  font-size: 1.05rem;
  line-height: 1.68;
  text-wrap: pretty;
}

.capability-list,
.proof-ledger,
.audience-ledger {
  border-top: 1px solid var(--site-line-strong);
}

.capability-row,
.proof-item,
.audience-item {
  display: grid;
  grid-template-columns: 72px minmax(190px, 0.48fr) minmax(0, 1fr) auto;
  gap: clamp(18px, 3vw, 42px);
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--site-line);
}

.capability-number,
.proof-status {
  color: var(--site-accent);
  font-family: var(--site-serif);
  font-size: 1.45rem;
  line-height: 1.2;
}

.capability-row p,
.proof-item p,
.audience-item p {
  max-width: 62ch;
  margin: 0;
  color: var(--site-muted);
  line-height: 1.62;
  text-wrap: pretty;
}

.capability-row .text-link,
.proof-item .text-link {
  justify-self: end;
  white-space: nowrap;
}

.proof-item {
  grid-template-columns: minmax(130px, 0.32fr) minmax(200px, 0.55fr) minmax(0, 1.1fr);
}

.proof-status {
  font-family: var(--site-sans);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.proof-status[data-status="live"] {
  color: var(--site-success);
}

.proof-status[data-status="building"] {
  color: var(--site-warning);
}

.audience-item {
  grid-template-columns: minmax(200px, 0.6fr) minmax(0, 1fr);
}

.positioning-note,
.decision-promise,
.assurance-note {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  margin-top: 34px;
  padding: 28px 0 0;
  border-top: 1px solid var(--site-line-strong);
}

.positioning-note p,
.decision-promise p,
.assurance-note p {
  margin: 0;
  color: var(--site-muted);
  line-height: 1.68;
}

.positioning-note strong,
.decision-promise h3,
.assurance-note strong {
  color: var(--site-ink);
  font-size: 1.05rem;
  font-weight: 650;
}

.offer-grid,
.case-grid,
.feature-grid,
.audience-grid,
.assurance-grid,
.content-grid,
.fact-strip,
.timeline,
.login-layout,
.legal-grid,
.support-layout {
  display: grid;
  gap: 16px;
}

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

.case-grid,
.feature-grid,
.audience-grid,
.content-grid.three-columns {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-grid,
.fact-strip,
.login-layout,
.support-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.offer-card,
.case-card,
.feature-card,
.audience-card,
.content-card,
.timeline article,
.access-list article,
.support-principles article,
.assurance-grid article {
  min-width: 0;
  padding: 25px;
  border: 1px solid var(--site-line);
  border-radius: var(--site-card-radius);
  background: var(--site-surface-soft);
}

.offer-card,
.case-card {
  display: flex;
  flex-direction: column;
}

.offer-card-accent,
.case-card-development {
  border-top: 3px solid var(--site-accent);
}

.offer-number,
.assurance-grid article > span,
.timeline > article > span {
  display: block;
  margin-bottom: 24px;
  color: var(--site-faint);
  font-family: var(--site-serif);
  font-size: 1.55rem;
  line-height: 1;
}

.offer-card p,
.case-card p,
.feature-card p,
.audience-card p,
.content-card p,
.content-card li,
.timeline p,
.access-list p,
.support-principles span,
.assurance-grid p {
  color: var(--site-muted);
  line-height: 1.65;
}

.offer-card p,
.case-card p,
.feature-card p,
.audience-card p,
.content-card p,
.timeline p,
.access-list p,
.assurance-grid p {
  margin: 13px 0 0;
}

.offer-card .text-link {
  margin-top: auto;
  padding-top: 22px;
}

.status-pill {
  width: fit-content;
  margin: 0 0 18px;
  padding: 5px 8px;
  border: 1px solid var(--site-line);
  border-radius: var(--site-pill-radius);
  color: var(--site-muted);
  background: transparent;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.status-live {
  color: var(--site-success);
  border-color: color-mix(in srgb, var(--site-success) 34%, transparent);
}

.status-building {
  color: var(--site-warning);
  border-color: color-mix(in srgb, var(--site-warning) 34%, transparent);
}

.signal-list,
.signal-checks {
  display: grid;
  gap: 0;
  margin-top: 24px;
}

.signal-list li,
.signal-checks li {
  position: relative;
  padding: 13px 0 13px 24px;
  border-top: 1px solid var(--site-line);
  color: var(--site-muted);
  line-height: 1.55;
}

.signal-list li::before,
.signal-checks li::before {
  content: "";
  position: absolute;
  top: 1.35em;
  left: 3px;
  width: 7px;
  height: 7px;
  background: var(--site-accent);
}

.signal-card h2 {
  max-width: 16ch;
}

.signal-card h2,
.hero-card h2 {
  font-family: var(--site-sans);
  font-size: clamp(1.7rem, 2.35vw, 2.35rem);
  font-weight: 590;
}

.hero-card h2 {
  max-width: none;
}

.card-label,
.project-tag {
  margin: 0 0 15px;
  color: var(--site-accent-deep);
  font-size: 0.72rem;
  font-weight: 720;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.content-copy {
  min-width: 0;
  max-width: 78ch;
}

.content-copy p {
  margin: 0 0 20px;
  color: var(--site-muted);
  font-size: 1.03rem;
  line-height: 1.78;
}

.content-copy p:last-child {
  margin-bottom: 0;
}

.content-card ul {
  margin: 15px 0 0;
  padding-left: 1.2rem;
}

.spaced-heading {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--site-line);
}

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

.fact-strip > div {
  min-width: 0;
  padding: 25px 24px 8px 0;
  border-right: 1px solid var(--site-line);
}

.fact-strip > div:last-child {
  border-right: 0;
}

.fact-strip strong,
.fact-strip span {
  display: block;
}

.fact-strip strong {
  margin-bottom: 9px;
  color: var(--site-ink);
  font-weight: 650;
}

.fact-strip span {
  color: var(--site-muted);
  line-height: 1.62;
}

.reliability-band {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1.05fr) auto;
  gap: clamp(26px, 5vw, 64px);
  align-items: start;
  color: var(--site-ink);
  background: var(--site-surface-strong);
}

.reliability-copy p {
  margin: 14px 0 0;
  color: var(--site-muted);
}

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

.reliability-list li {
  display: grid;
  grid-template-columns: minmax(140px, 0.7fr) minmax(0, 1fr);
  gap: 22px;
  padding: 14px 0;
  border-bottom: 1px solid var(--site-line);
}

.reliability-list strong {
  font-weight: 650;
}

.reliability-list span {
  color: var(--site-muted);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: end;
  color: var(--site-ink);
  background: var(--site-surface-strong);
}

.contact h2 {
  max-width: none;
}

.contact .lead.compact {
  max-width: 68ch;
  text-wrap: pretty;
}

.contact-actions {
  display: flex;
  min-width: 240px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.contact-actions .text-link,
.footer-links a {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.contact-note {
  max-width: 48ch;
  margin: 16px 0 0;
  color: var(--site-muted);
  font-size: 0.875rem;
  line-height: 1.55;
  text-wrap: pretty;
}

.faq-list {
  display: grid;
  border-top: 1px solid var(--site-line-strong);
}

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

.faq-list summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px;
  gap: 22px;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  color: var(--site-ink);
  font-weight: 620;
  list-style: none;
}

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

.faq-icon {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 1px;
  width: 16px;
  height: 1px;
  background: currentColor;
}

.faq-icon::after {
  transform: rotate(90deg);
  transition: transform 150ms ease;
}

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

.faq-list details > p {
  max-width: 72ch;
  margin: -4px 0 22px;
  color: var(--site-muted);
  line-height: 1.7;
}

.legal-shell {
  --site-max: 1160px;
}

.legal-card {
  margin-top: 0;
}

.legal-card > .section-heading {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--site-line-strong);
}

.legal-card h1,
.login-panel h1,
.project-check-standalone h1,
.support-intro h1 {
  max-width: 17ch;
}

.legal-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--site-line);
}

.legal-grid section {
  min-width: 0;
  max-width: 100%;
  padding: 28px 30px 28px 0;
  border-bottom: 1px solid var(--site-line);
}

.legal-grid section:nth-child(odd) {
  padding-right: 34px;
  border-right: 1px solid var(--site-line);
}

.legal-grid section:nth-child(even) {
  padding-left: 34px;
}

.legal-grid h2 {
  max-width: none;
  font-size: 1.18rem;
  font-weight: 650;
  letter-spacing: -0.015em;
}

.legal-grid p,
.legal-grid address {
  margin: 12px 0 0;
  color: var(--site-muted);
  font-style: normal;
  line-height: 1.72;
  overflow-wrap: anywhere;
}

.legal-grid a {
  color: var(--site-accent-deep);
  text-underline-offset: 3px;
}

.legal-address-block {
  grid-column: 1 / -1;
  border-right: 0 !important;
}

.login-layout {
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
}

.login-layout .section {
  margin-top: 0;
}

.login-panel h1 {
  max-width: 100%;
  font-size: clamp(2.8rem, 4vw, 4rem);
}

.login-form {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

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

.login-form input {
  width: 100%;
  min-width: 0;
  min-height: 51px;
  padding: 0 14px;
  border: 1px solid var(--site-line-strong);
  border-radius: var(--site-control-radius);
  color: var(--site-ink);
  background: var(--site-surface);
}

.login-form input::placeholder {
  color: var(--site-faint);
  opacity: 1;
}

.login-form .button {
  justify-self: start;
}

.form-note {
  margin: 20px 0 0;
  color: var(--site-muted);
}

.access-list {
  display: grid;
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid var(--site-line-strong);
}

.access-list article {
  padding: 20px 0;
  border-width: 0 0 1px;
  background: transparent;
}

.project-check,
.support-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 78px);
  align-items: start;
}

.project-check-standalone {
  margin-top: 0;
}

.project-check-intro,
.support-intro {
  position: sticky;
  top: 132px;
  min-width: 0;
}

.check-benefits {
  display: grid;
  gap: 0;
  margin-top: 30px;
  border-top: 1px solid var(--site-line-strong);
}

.check-benefits li {
  position: relative;
  padding: 13px 0 13px 23px;
  border-bottom: 1px solid var(--site-line);
  color: var(--site-muted);
}

.check-benefits li::before {
  content: "";
  position: absolute;
  top: 1.35em;
  left: 2px;
  width: 7px;
  height: 7px;
  background: var(--site-accent);
}

.project-check-form,
.support-form {
  display: grid;
  gap: 18px;
}

.form-step {
  min-width: 0;
  padding: 25px;
  border: 1px solid var(--site-line);
  border-radius: var(--site-card-radius);
  background: var(--site-surface-soft);
}

.form-step legend {
  max-width: 100%;
  padding: 0 8px;
  color: var(--site-ink);
  font-size: 1.08rem;
  font-weight: 650;
  line-height: 1.35;
}

.form-step legend > span {
  margin-right: 8px;
  color: var(--site-accent);
  font-family: var(--site-serif);
  font-size: 1.3rem;
}

.form-step legend small,
.form-step label small {
  color: var(--site-muted);
  font-size: 0.82em;
  font-weight: 450;
}

.form-step-intro,
.privacy-note,
.copy-status,
.noscript-note {
  margin: 8px 0 18px;
  color: var(--site-muted);
  line-height: 1.65;
}

.project-details {
  min-width: 0;
  border-block: 1px solid var(--site-line);
}

.project-details > summary {
  padding: 18px 8px;
  color: var(--site-ink);
  font-weight: 650;
  line-height: 1.5;
  cursor: pointer;
}

.project-details > summary small {
  color: var(--site-muted);
  font-weight: 450;
}

.project-details-content {
  display: grid;
  gap: 18px;
  padding-block: 10px 22px;
}

#current-process {
  margin-top: 10px;
}

.project-review {
  padding-block: 20px;
  margin-block: 20px;
  border-block: 1px solid var(--site-line);
  overflow-wrap: anywhere;
}

#project-review-description {
  white-space: pre-wrap;
}

.choice-grid,
.check-grid,
.input-grid {
  display: grid;
  gap: 12px;
}

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

.choice-card {
  display: block;
  min-width: 0;
  cursor: pointer;
}

.form-step .choice-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  min-width: 1px;
  min-height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
  opacity: 0;
}

.choice-card > span {
  display: block;
  min-height: 112px;
  padding: 18px;
  border: 1px solid var(--site-line);
  background: var(--site-surface);
}

.choice-card strong,
.choice-card small {
  display: block;
}

.choice-card strong {
  color: var(--site-ink);
  font-weight: 650;
}

.choice-card small {
  margin-top: 7px;
  color: var(--site-muted);
  line-height: 1.45;
}

.choice-card input:checked + span {
  border-color: var(--site-accent);
  box-shadow: inset 4px 0 0 var(--site-accent);
}

.choice-card input:focus-visible + span {
  outline: 3px solid var(--site-accent);
  outline-offset: 3px;
}

.form-step label:not(.choice-card):not(.consent-check) {
  display: grid;
  gap: 7px;
  color: var(--site-ink);
  font-weight: 580;
}

.form-step input,
.form-step select,
.form-step textarea,
.support-form > input,
.support-form > textarea {
  width: 100%;
  min-width: 0;
  min-height: 50px;
  padding: 11px 13px;
  border: 1px solid var(--site-line-strong);
  border-radius: var(--site-control-radius);
  color: var(--site-ink);
  background: var(--site-surface);
}

.form-step textarea,
.support-form textarea {
  min-height: 130px;
  resize: vertical;
}

.textarea-label {
  margin-top: 18px;
}

.check-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 20px;
}

.check-grid label,
.consent-check {
  display: flex !important;
  gap: 10px !important;
  align-items: flex-start;
  color: var(--site-muted) !important;
  font-weight: 450 !important;
  line-height: 1.55;
}

.check-grid input,
.consent-check input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 3px;
  padding: 0;
  accent-color: var(--site-accent-deep);
}

.consent-check {
  margin-top: 18px;
}

.form-trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
}

.form-submit {
  justify-self: start;
}

.effort-output,
.project-check-result {
  margin-top: 20px;
  padding: 23px;
  border: 1px solid var(--site-accent);
  background: var(--site-accent-soft);
}

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

.effort-output span,
.effort-output strong {
  display: block;
}

.effort-output span {
  color: var(--site-muted);
  font-size: 0.875rem;
}

.effort-output strong {
  margin-top: 4px;
}

.effort-output p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--site-muted);
  font-size: 0.88rem;
}

.project-check-result h2 {
  max-width: none;
}

.result-recommendation {
  margin: 18px 0 0;
  color: var(--site-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.project-check-result ul {
  margin: 18px 0 0;
  padding-left: 1.2rem;
  color: var(--site-muted);
}

.text-button {
  min-height: 44px;
  padding: 8px 0;
  border: 0;
  color: var(--site-accent-deep);
  background: transparent;
  cursor: pointer;
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.support-principles {
  display: grid;
  gap: 0;
  margin-top: 30px;
  border-top: 1px solid var(--site-line-strong);
}

.support-principles article {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
  padding: 14px 0;
  border-width: 0 0 1px;
  background: transparent;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(36px, 6vw, 88px);
  margin-top: 18px;
  padding: 38px 40px;
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius);
  color: var(--site-muted);
  background: var(--site-surface-strong);
}

.footer-logo {
  display: block;
  width: min(100%, 390px);
  height: auto;
}

.site-footer p {
  max-width: 44ch;
  margin: 13px 0 0;
  color: var(--site-muted);
}

.site-footer .footer-legal {
  max-width: 52ch;
  margin-top: 18px;
  padding-top: 13px;
  border-top: 1px solid var(--site-line);
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5px 22px;
  align-content: start;
}

.footer-links a {
  display: flex;
  min-height: 34px;
  align-items: center;
  color: var(--site-ink);
  font-size: 0.875rem;
  font-weight: 580;
  line-height: 1.35;
  text-decoration: none;
}

.site-footer a {
  min-height: 34px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--site-accent-deep);
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (prefers-reduced-motion: no-preference) {
  .topbar {
    animation: enter 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .hero,
  .legal-card,
  .login-layout,
  .project-check {
    animation: enter 540ms 60ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }
}

@keyframes enter {
  from {
    opacity: 1;
    transform: translateY(10px);
  }

  to {
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .topbar {
    grid-template-columns: minmax(300px, 390px) minmax(0, 1fr);
    gap: 18px;
  }

  .nav a {
    padding-inline: 8px;
    font-size: 0.875rem;
  }

  .hero,
  .sales-hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  }

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

  .reliability-band {
    grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  }

  .reliability-band > .text-link,
  .reliability-band > .button {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 960px) {
  :root {
    --focus-scroll-margin-start: 16px;
  }

  html {
    scroll-padding-top: calc(104px + env(safe-area-inset-top, 0px));
  }

  .page-shell {
    width: min(100% - 32px, var(--site-max));
    padding-top: calc(16px + env(safe-area-inset-top, 0px));
  }

  body::after {
    content: "";
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    height: env(safe-area-inset-top, 0px);
    pointer-events: none;
    background: var(--site-bg);
  }

  .topbar {
    position: static;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .brand {
    width: min(100%, 340px);
  }

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

  .nav .nav-cta {
    margin-left: auto;
  }

  .hero,
  .sales-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-card,
  .system-map {
    border-top: 1px solid var(--site-line);
    border-left: 0;
  }

  .section-heading-wide {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .section-heading-wide .eyebrow {
    grid-column: auto;
  }

  .capability-row {
    grid-template-columns: 54px minmax(220px, 0.62fr) minmax(0, 1fr);
  }

  .capability-row .text-link {
    grid-column: 2 / -1;
    justify-self: start;
  }

  .case-grid,
  .audience-grid,
  .content-grid.three-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .project-check,
  .support-layout {
    grid-template-columns: 1fr;
  }

  .project-check-intro,
  .support-intro {
    position: static;
  }

  .contact {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .contact > div,
  .contact-actions {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

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

@media (max-width: 760px) {
  body {
    background-size: 48px 48px;
  }

  .page-shell {
    width: calc(100% - 20px);
    padding-top: calc(10px + env(safe-area-inset-top, 0px));
  }

  .topbar {
    min-height: 0;
    gap: 8px;
    padding: 11px 13px 13px;
  }

  .brand {
    width: min(100%, 270px);
  }

  .nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
    width: 100%;
  }

  .nav a {
    width: 100%;
    min-height: 38px;
    padding: 6px 5px;
    border-radius: 8px;
    font-size: clamp(0.72rem, 2.55vw, 0.8rem);
    white-space: normal;
  }

  .nav a[aria-current="page"]:not(.nav-cta) {
    background: var(--site-accent-soft);
  }

  .nav .nav-cta {
    grid-column: span 2;
    min-height: 45px;
    margin: 3px 0 0;
  }

  .hero-copy,
  .hero-card,
  .system-map,
  .section,
  .contact {
    padding: 29px 22px;
  }

  h1,
  h2 {
    hyphens: none;
    overflow-wrap: normal;
    word-break: normal;
  }

  h1,
  h2,
  .legal-card h1,
  .login-panel h1,
  .project-check-standalone h1,
  .support-intro h1 {
    max-width: 100%;
    hyphens: none;
    overflow-wrap: normal;
    word-break: normal;
  }

  h1,
  .legal-card h1,
  .login-panel h1,
  .project-check-standalone h1,
  .support-intro h1 {
    font-size: clamp(2.15rem, 9.2vw, 2.75rem);
    line-height: 1.06;
    letter-spacing: -0.025em;
  }

  .login-form .button {
    width: 100%;
  }

  h2 {
    max-width: 100%;
    font-size: clamp(1.65rem, 6vw, 2rem);
    line-height: 1.1;
  }

  .lead {
    font-size: 1rem;
  }

  .hero-actions,
  .section-actions,
  .result-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .trust-row {
    display: grid;
    gap: 9px;
  }

  .capability-row,
  .proof-item,
  .audience-item {
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 23px 0;
  }

  .capability-row .text-link,
  .proof-item .text-link {
    grid-column: auto;
    justify-self: start;
  }

  .capability-number {
    font-size: 1.2rem;
  }

  .positioning-note,
  .decision-promise,
  .assurance-note {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .offer-grid,
  .case-grid,
  .feature-grid,
  .audience-grid,
  .content-grid,
  .content-grid.three-columns,
  .fact-strip,
  .assurance-grid,
  .login-layout {
    grid-template-columns: 1fr;
  }

  .fact-strip > div {
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--site-line);
  }

  .fact-strip > div:last-child {
    border-bottom: 0;
  }

  .reliability-band,
  .contact {
    grid-template-columns: 1fr;
  }

  .contact > div {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .reliability-list li {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .contact-actions {
    width: 100%;
    min-width: 0;
  }

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

  .legal-grid section,
  .legal-grid section:nth-child(odd),
  .legal-grid section:nth-child(even) {
    padding: 24px 0;
    border-right: 0;
  }

  .legal-address-block {
    grid-column: auto;
  }

  .choice-grid,
  .input-grid,
  .check-grid,
  .effort-output {
    grid-template-columns: 1fr;
  }

  .effort-output p {
    grid-column: auto;
  }

  .support-principles article {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .site-footer {
    padding: 30px 23px;
  }

  .footer-logo {
    width: min(100%, 340px);
  }

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

@media (max-width: 560px) {
  .hero-copy,
  .hero-card,
  .system-map,
  .section,
  .contact {
    padding: 27px 20px;
  }

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

  .system-map-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}

@media (max-width: 390px) {
  .page-shell {
    width: calc(100% - 14px);
  }

  .topbar {
    padding: 11px;
  }

  .brand {
    width: min(100%, 250px);
  }

  .hero-copy,
  .hero-card,
  .system-map,
  .section,
  .contact {
    padding: 25px 18px;
  }

  h1,
  .legal-card h1,
  .login-panel h1,
  .project-check-standalone h1,
  .support-intro h1 {
    font-size: clamp(2rem, 9.2vw, 2.35rem);
  }

  h2 {
    font-size: clamp(1.55rem, 7.2vw, 1.9rem);
  }

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

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

  .nav .nav-cta {
    grid-column: 1 / -1;
  }
}

@media (prefers-color-scheme: dark) {
  :root:where(:not([data-theme])) {
    color-scheme: dark;
    --site-bg: #061b17;
    --site-surface: #0b2721;
    --site-surface-soft: #0f3028;
    --site-surface-strong: #153a31;
    --site-ink: #f5f8f4;
    --site-muted: #bcc5be;
    --site-faint: #819089;
    --site-line: rgba(245, 248, 244, 0.13);
    --site-line-strong: rgba(245, 248, 244, 0.28);
    --site-accent: #f06a4e;
    --site-accent-deep: #ff8b74;
    --site-accent-soft: rgba(240, 106, 78, 0.12);
    --site-success: #77c5a2;
    --site-warning: #ef936e;
  }

  :where(html:not([data-theme])) body {
    background:
      linear-gradient(rgba(245, 248, 244, 0.022) 1px, transparent 1px),
      linear-gradient(90deg, rgba(245, 248, 244, 0.022) 1px, transparent 1px),
      var(--site-bg);
    background-size: 64px 64px;
  }

  :where(html:not([data-theme])) .topbar {
    background: rgba(8, 32, 27, 0.95);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  }

  :where(html:not([data-theme])) .audience {
    background: var(--site-surface-strong);
  }

  :where(html:not([data-theme])) .site-footer {
    background: var(--site-surface-strong);
  }

  :where(html:not([data-theme])) .button-primary {
    color: #fff;
    background: #b73328;
  }

  :where(html:not([data-theme])) .button-primary:hover,
  :where(html:not([data-theme])) .button-primary:focus-visible {
    background: #d44c32;
  }

  :where(html:not([data-theme])) .nav .nav-cta {
    color: #fff;
    background: #b73328;
  }

  :where(html:not([data-theme])) .nav .nav-cta:hover,
  :where(html:not([data-theme])) .nav .nav-cta:focus-visible,
  :where(html:not([data-theme])) .nav .nav-cta[aria-current="page"] {
    background: #d44c32;
  }

  :where(html:not([data-theme])) .choice-card > span,
  :where(html:not([data-theme])) .login-form input,
  :where(html:not([data-theme])) .form-step input,
  :where(html:not([data-theme])) .form-step select,
  :where(html:not([data-theme])) .form-step textarea,
  :where(html:not([data-theme])) .support-form > input,
  :where(html:not([data-theme])) .support-form > textarea {
    color: var(--site-ink);
    background: #09251f;
  }

  :where(html:not([data-theme])) .text-link,
  :where(html:not([data-theme])) .legal-grid a,
  :where(html:not([data-theme])) .breadcrumb a,
  :where(html:not([data-theme])) .footer-links a:hover,
  :where(html:not([data-theme])) .footer-links a:focus-visible {
    color: #ff8b74;
  }

  :where(html:not([data-theme])) body::after {
    background: var(--site-bg);
  }

}

  :root:where([data-theme="dark"]) {
    color-scheme: dark;
    --site-bg: #061b17;
    --site-surface: #0b2721;
    --site-surface-soft: #0f3028;
    --site-surface-strong: #153a31;
    --site-ink: #f5f8f4;
    --site-muted: #bcc5be;
    --site-faint: #819089;
    --site-line: rgba(245, 248, 244, 0.13);
    --site-line-strong: rgba(245, 248, 244, 0.28);
    --site-accent: #f06a4e;
    --site-accent-deep: #ff8b74;
    --site-accent-soft: rgba(240, 106, 78, 0.12);
    --site-success: #77c5a2;
    --site-warning: #ef936e;
  }

  :where(html[data-theme="dark"]) body {
    background:
      linear-gradient(rgba(245, 248, 244, 0.022) 1px, transparent 1px),
      linear-gradient(90deg, rgba(245, 248, 244, 0.022) 1px, transparent 1px),
      var(--site-bg);
    background-size: 64px 64px;
  }

  :where(html[data-theme="dark"]) .topbar {
    background: rgba(8, 32, 27, 0.95);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  }

  :where(html[data-theme="dark"]) .audience {
    background: var(--site-surface-strong);
  }

  :where(html[data-theme="dark"]) .site-footer {
    background: var(--site-surface-strong);
  }

  :where(html[data-theme="dark"]) .button-primary {
    color: #fff;
    background: #b73328;
  }

  :where(html[data-theme="dark"]) .button-primary:hover,
  :where(html[data-theme="dark"]) .button-primary:focus-visible {
    background: #d44c32;
  }

  :where(html[data-theme="dark"]) .nav .nav-cta {
    color: #fff;
    background: #b73328;
  }

  :where(html[data-theme="dark"]) .nav .nav-cta:hover,
  :where(html[data-theme="dark"]) .nav .nav-cta:focus-visible,
  :where(html[data-theme="dark"]) .nav .nav-cta[aria-current="page"] {
    background: #d44c32;
  }

  :where(html[data-theme="dark"]) .choice-card > span,
  :where(html[data-theme="dark"]) .login-form input,
  :where(html[data-theme="dark"]) .form-step input,
  :where(html[data-theme="dark"]) .form-step select,
  :where(html[data-theme="dark"]) .form-step textarea,
  :where(html[data-theme="dark"]) .support-form > input,
  :where(html[data-theme="dark"]) .support-form > textarea {
    color: var(--site-ink);
    background: #09251f;
  }

  :where(html[data-theme="dark"]) .text-link,
  :where(html[data-theme="dark"]) .legal-grid a,
  :where(html[data-theme="dark"]) .breadcrumb a,
  :where(html[data-theme="dark"]) .footer-links a:hover,
  :where(html[data-theme="dark"]) .footer-links a:focus-visible {
    color: #ff8b74;
  }

  :where(html[data-theme="dark"]) body::after {
    background: var(--site-bg);
  }



@media (max-width: 300px) {
  .legal-grid h2 {
    font-size: 1.02rem;
  }
}

@media (prefers-contrast: more) {
  :root {
    --site-line: rgba(11, 48, 40, 0.42);
    --site-line-strong: rgba(11, 48, 40, 0.7);
  }

  .topbar,
  .hero,
  .section,
  .contact,
  .site-footer,
  .form-step {
    border-width: 2px;
  }
}

@media (prefers-color-scheme: dark) and (prefers-contrast: more) {
  :root:where(:not([data-theme])) {
    --site-line: rgba(247, 243, 236, 0.42);
    --site-line-strong: rgba(247, 243, 236, 0.7);
  }

}
@media (prefers-contrast: more) {

  :root:where([data-theme="dark"]) {
    --site-line: rgba(247, 243, 236, 0.42);
    --site-line-strong: rgba(247, 243, 236, 0.7);
  }

}

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

@media (forced-colors: active) {
  .nav a[aria-current="page"],
  .choice-card input:checked + span,
  .status-pill {
    border: 2px solid currentColor;
  }

  .trust-row li::before,
  .signal-list li::before,
  .signal-checks li::before,
  .check-benefits li::before {
    background: currentColor;
  }
}

/* The editorial identity is shared by all public pages. */
body { background: var(--site-bg); }
.topbar { background: color-mix(in srgb, var(--site-bg) 94%, transparent); }
.eyebrow { font-size: 0.875rem; letter-spacing: 0.07em; font-weight: 650; }
.eyebrow::before { display: none; }
.button { gap: 24px; border-radius: 8px; font-size: 1rem; font-weight: 580; }
.button-primary { background: var(--site-ink); color: var(--site-surface); border-color: var(--site-ink); }
.button-primary:hover, .button-primary:focus-visible { background: #aa2e24; color: #fff; }
.link-arrow { display: inline-block; width: 1.125em; height: 1.125em; flex: 0 0 auto; vertical-align: -0.15em; }
.button .link-arrow { width: 1.25em; height: 1.25em; }
.nav .nav-cta { background: var(--site-ink); color: var(--site-surface); border: 1px solid var(--site-ink); border-radius: 8px; }
.nav .nav-cta:hover, .nav .nav-cta:focus-visible, .nav .nav-cta[aria-current="page"] { background: #aa2e24; color: #fff; }
.hero, .section, .contact { box-shadow: none; }
.site-footer { margin-top: 0; border: 0; border-top: 1px solid var(--site-line); border-radius: 0; background: var(--site-bg); padding: 48px 0 8px; }
.footer-logo { width: min(100%, 286px); }
.site-footer .footer-legal { font-size: 0.875rem; }
.footer-links { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.footer-links a { font-size: 0.875rem; overflow-wrap: anywhere; }
.menu-toggle { display: none; }
.site-preferences { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 24px 40px; align-items: start; padding-top: 24px; margin-top: 24px; border-top: 1px solid var(--site-line); font-size: 0.875rem; }
.appearance-options { margin: 0; padding: 0; border: 0; min-width: 0; }
.appearance-options legend, .language-options > span { display: block; padding: 0; margin-bottom: 6px; color: var(--site-muted); font-size: 0.8125rem; }
.appearance-options > div, .language-options > div { display: flex; flex-wrap: wrap; gap: 4px; }
.site-preferences button, .site-preferences a { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 8px 12px; margin: 0; border: 1px solid transparent; border-radius: 6px; color: var(--site-muted); background: transparent; font: inherit; text-decoration: none; cursor: pointer; }
.site-preferences button[aria-pressed="true"], .site-preferences a[aria-current="true"] { color: var(--site-ink); border-color: var(--site-line-strong); background: var(--site-surface); font-weight: 650; }
.site-preferences button:hover, .site-preferences a:hover { color: var(--site-ink); background: var(--site-surface-strong); }
.mobile-preferences { display: none; }
@media (max-width: 960px) {
  .has-menu .nav .mobile-preferences { display: flex; grid-column: 1 / -1; padding-top: 16px; margin-top: 8px; gap: 16px; }
  .has-menu .nav .site-preferences a { min-height: 44px; padding: 8px 12px; font-size: 0.875rem; }
}
@media print { .site-preferences { display: none !important; } }

.studio-hero { padding: 28px 0 0; }
.hero-meta { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.hero-meta .eyebrow { margin: 0; }
.hero-meta > span { font-size: 0.875rem; color: var(--site-muted); }
.studio-intro { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: clamp(32px, 5vw, 88px); align-items: end; padding: 36px 0; }
.studio-intro h1 { max-width: none; font-size: clamp(3rem, 5.1vw, 4.75rem); font-weight: 550; line-height: 1.09; letter-spacing: -0.03em; }
.studio-intro h1 span { color: var(--site-accent-deep); }
.studio-intro-copy { max-width: 430px; }
.studio-intro-copy > p { margin: 0 0 22px; font-size: clamp(1.05rem, 1.25vw, 1.2rem); line-height: 1.65; color: var(--site-muted); }
.intro-note { display: block; margin-top: 14px; font-size: 0.875rem; color: var(--site-muted); }
.flow-workbench { overflow: hidden; border: 1px solid var(--site-line-strong); border-radius: 12px; background: var(--site-surface); }
.flow-heading { display: flex; gap: 20px; align-items: center; justify-content: space-between; padding: 20px 28px; border-bottom: 1px solid var(--site-line); }
.flow-heading h2 { max-width: none; font-size: 1rem; font-weight: 600; letter-spacing: 0; }
.flow-caption { font-size: 0.875rem; color: var(--site-muted); }
.flow-controls { display: flex; gap: 0; border-bottom: 1px solid var(--site-line); background: var(--site-surface-soft); }
.flow-controls button { display: flex; flex: 1; justify-content: center; align-items: center; gap: 12px; min-height: 52px; padding: 12px 16px; border: 0; border-bottom: 2px solid transparent; background: none; color: var(--site-muted); font-size: 0.9375rem; font-weight: 550; cursor: pointer; }
.flow-controls button + button { border-left: 1px solid var(--site-line); }
.flow-controls button span { font-size: 0.875rem; font-variant-numeric: tabular-nums; }
.flow-controls button[aria-pressed="true"] { color: var(--site-ink); border-bottom-color: var(--site-accent); background: var(--site-surface); }
.flow-controls button:hover { color: var(--site-ink); }
.flow-controls button:focus-visible { outline-offset: -4px; }
.flow-stage { display: grid; grid-template-columns: minmax(0, 1fr) 56px minmax(180px, 0.8fr) 56px minmax(0, 1fr); align-items: center; min-height: 248px; padding: 28px 42px; background-image: radial-gradient(var(--site-line) 0.6px, transparent 0.6px); background-size: 16px 16px; }
.flow-endpoint { min-width: 0; padding: 8px 0; }
.flow-label { display: block; font-size: 0.875rem; font-weight: 550; text-transform: uppercase; letter-spacing: 0.08em; color: var(--site-muted); margin-bottom: 12px; }
.flow-endpoint > strong { display: block; min-height: 48px; font-size: 1.2rem; line-height: 1.3; letter-spacing: -0.02em; }
.flow-endpoint p { margin: 12px 0 0; max-width: 29ch; color: var(--site-muted); font-size: 0.9375rem; line-height: 1.5; }
.flow-data { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 10px; }
.flow-data span { padding: 3px 9px; border: 1px solid var(--site-line); border-radius: 4px; font-size: 0.875rem; background: var(--site-surface); }
.flow-core { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; min-height: 190px; padding: 22px 16px; background: var(--site-ink); color: var(--site-surface); border-radius: 10px; text-align: center; }
.flow-core svg { margin-bottom: 6px; width: 46px; height: 46px; }
.flow-mark-accent { color: #f06a4e; }
.flow-core strong { font-size: 1rem; font-weight: 600; }
.flow-core > span { max-width: 21ch; font-size: 0.875rem; line-height: 1.45; opacity: 0.85; }
.flow-connector { position: relative; height: 1px; background: var(--site-line-strong); }
.flow-connector::after { content: ""; position: absolute; right: 2px; top: -3px; width: 7px; height: 7px; border-top: 1px solid var(--site-line-strong); border-right: 1px solid var(--site-line-strong); transform: rotate(45deg); }
.flow-output { padding-left: 24px; }
.flow-output ul { list-style: none; padding: 0; margin: 9px 0 0; display: grid; gap: 6px; font-size: 0.9375rem; }
.flow-output li::before { content: "✓"; color: var(--site-success); margin-right: 9px; }
.flow-footnote { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 13px 28px; border-top: 1px solid var(--site-line); }
.flow-footnote > span { font-size: 0.875rem; color: var(--site-muted); }
.flow-footnote .text-link { font-size: 0.875rem; }
.studio-principles { display: flex; gap: 32px; justify-content: space-between; padding: 21px 0; font-size: 0.875rem; color: var(--site-muted); border-bottom: 1px solid var(--site-line); }
.studio-principles span::before { content: "+"; color: var(--site-accent-deep); margin-right: 12px; }
.studio-section { padding: 80px 0; }
.studio-section-heading { display: grid; grid-template-columns: 1.25fr 0.75fr; column-gap: 64px; align-items: end; margin-bottom: 36px; }
.studio-section-heading .eyebrow { grid-column: 1 / -1; margin-bottom: 20px; }
.studio-section-heading h2 { font-size: clamp(1.85rem, 2.7vw, 2.65rem); max-width: none; font-weight: 550; }
.studio-section-heading > p:last-child { margin: 0; max-width: 45ch; color: var(--site-muted); }
.studio-services { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-block: 1px solid var(--site-line); }
.studio-service { display: flex; flex-direction: column; padding: 30px 30px 28px 0; color: inherit; text-decoration: none; transition: background 180ms ease; }
.studio-service + .studio-service { border-left: 1px solid var(--site-line); padding-left: 30px; }
.studio-service:hover { background: var(--site-surface-soft); }
.service-index { display: block; color: var(--site-muted); font-size: 0.875rem; margin-bottom: 24px; }
.studio-service h3 { font-size: clamp(1.25rem, 1.7vw, 1.6rem); line-height: 1.3; font-weight: 550; }
.studio-service p { color: var(--site-muted); font-size: 0.9375rem; line-height: 1.65; margin: 18px 0 28px; }
.service-link { display: flex; gap: 12px; justify-content: space-between; font-weight: 600; font-size: 0.9375rem; margin-top: auto; }
.service-link > .link-arrow { color: var(--site-accent-deep); }
.studio-sector-note { color: var(--site-muted); font-size: 0.875rem; margin: 18px 0 0; }
.studio-case { display: grid; grid-template-columns: 0.65fr 1.35fr; border: 1px solid var(--site-line); border-radius: 12px; overflow: hidden; }
.case-side { display: flex; flex-direction: column; justify-content: space-between; padding: 36px; background: var(--site-surface-strong); border-right: 1px solid var(--site-line); }
.case-side > p:last-child { font-size: 0.9375rem; color: var(--site-muted); margin: 24px 0 0; }
.case-monogram { display: block; width: 144px; height: 144px; color: var(--site-ink); }
.case-mark-accent { color: var(--site-accent); }
.case-detail { padding: 44px 52px; background: var(--site-surface); }
.case-detail h2 { font-size: clamp(1.85rem, 2.7vw, 2.65rem); font-weight: 550; }
.case-detail > p { max-width: 64ch; color: var(--site-muted); line-height: 1.7; margin: 24px 0; }
.case-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; padding: 22px 0; margin-bottom: 14px; border-block: 1px solid var(--site-line); }
.case-facts span { display: block; color: var(--site-muted); font-size: 0.875rem; margin-bottom: 7px; }
.case-facts strong, .case-facts a { font-size: 0.9375rem; font-weight: 550; line-height: 1.5; }
.case-facts a { text-underline-offset: 4px; }
.studio-offers { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border: 1px solid var(--site-line); border-radius: 12px; overflow: hidden; background: var(--site-surface); }
.studio-offers article { padding: 28px; display: flex; flex-direction: column; }
.studio-offers article + article { border-left: 1px solid var(--site-line); }
.offer-type { font-weight: 550; font-size: 0.9375rem; }
.offer-price { font-size: 2.6rem; line-height: 1.2; letter-spacing: -0.03em; margin: 24px 0 16px; font-weight: 500; font-variant-numeric: tabular-nums; }
.offer-price span { font-size: 1.25rem; color: var(--site-muted); }
.studio-offers p:not(.offer-price) { margin: 0 0 25px; color: var(--site-muted); font-size: 0.9375rem; }
.studio-offers .text-link { margin-top: auto; font-size: 0.9375rem; }
.offer-fineprint { font-size: 0.875rem; color: var(--site-muted); max-width: 105ch; margin-top: 16px; }
.sellerops-note { display: flex; justify-content: space-between; align-items: center; gap: 30px; border-top: 1px solid var(--site-line); margin-top: 30px; padding-top: 22px; }
.sellerops-note strong { font-size: 0.9375rem; }
.sellerops-note p { margin: 5px 0 0; font-size: 0.875rem; color: var(--site-muted); max-width: 76ch; }
.sellerops-note > a { font-size: 0.9375rem; flex-shrink: 0; }
.studio-quality { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding: 52px 0; border-block: 1px solid var(--site-line); }
.studio-quality h2 { font-size: clamp(1.85rem, 2.7vw, 2.65rem); font-weight: 550; margin-bottom: 24px; }
.quality-items { display: grid; }
.quality-items article { display: flex; gap: 24px; padding: 20px 0; border-top: 1px solid var(--site-line); }
.quality-items article:first-child { border-top: 0; padding-top: 0; }
.quality-items article:last-child { padding-bottom: 0; }
.quality-items article > span { font-size: 0.875rem; color: var(--site-accent-deep); padding-top: 3px; }
.quality-items h3 { font-size: 1.0625rem; font-weight: 600; }
.quality-items p { font-size: 0.9375rem; color: var(--site-muted); margin: 8px 0 0; }
.studio-contact { padding: 70px 0; }
.studio-contact > div { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 64px; }
.studio-contact h2 { font-size: clamp(2rem, 3.5vw, 3.4rem); font-weight: 550; }
.studio-contact-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; min-width: 0; }
.studio-contact-actions .text-link { overflow-wrap: anywhere; }
.studio-contact-actions p { font-size: 0.9375rem; color: var(--site-muted); margin: 0; }
.studio-contact-actions p a { display: inline-flex; min-height: 32px; }
.studio-contact .contact-note { margin-top: 30px; font-size: 0.875rem; }

@media (prefers-reduced-motion: no-preference) {
  .flow-stage[data-changing] { animation: flow-reveal 300ms ease-out; }
  @keyframes flow-reveal { from { transform: translateY(4px); } to { transform: translateY(0); } }
}
@media (max-width: 1100px) {
  .studio-intro { grid-template-columns: 1.1fr 0.9fr; gap: 32px; }
  .flow-stage { grid-template-columns: minmax(0, 1fr) 24px minmax(160px, 0.8fr) 24px minmax(0, 1fr); padding: 26px; }
  .flow-output { padding-left: 14px; }
  .studio-quality { gap: 40px; }
  .case-detail { padding: 36px; }
}
@media (max-width: 960px) {
  .page-shell { width: calc(100% - 48px); padding-top: env(safe-area-inset-top, 0px); }
  .topbar { display: flex; flex-wrap: wrap; min-height: 76px; padding: 16px 0; margin-bottom: 12px; }
  .topbar.has-menu { position: sticky; top: env(safe-area-inset-top, 0px); }
  .topbar .brand { width: 260px; max-width: calc(100% - 100px); }
  .has-menu .menu-toggle { display: inline-flex; margin-left: auto; gap: 12px; align-items: center; justify-content: center; padding: 10px 12px; min-height: 44px; border: 1px solid var(--site-line); border-radius: 6px; color: var(--site-ink); background: var(--site-surface); font-size: 0.875rem; cursor: pointer; }
  .menu-toggle span { width: 14px; height: 8px; border-block: 1px solid currentColor; }
  .has-menu .nav { display: none; }
  .has-menu .nav.is-open { display: grid; grid-template-columns: 1fr; width: 100%; gap: 4px; padding: 12px 0 4px; }
  .has-menu .nav.is-open { max-height: calc(100dvh - 96px); overflow-y: auto; overscroll-behavior: contain; }
  .has-menu .nav a { min-height: 46px; justify-content: flex-start; padding: 12px; font-size: 1rem; }
  .has-menu .nav .nav-cta { margin: 8px 0 0; grid-column: auto; justify-content: center; }
  .has-menu .nav .mobile-preferences a { width: auto; min-height: 44px; padding: 8px 12px; font-size: 0.875rem; }
  .mobile-preferences .language-options { flex: 0 0 auto; }
  .mobile-preferences .language-options > div { flex-wrap: nowrap; }
  .studio-intro { padding: 32px 0; }
  .studio-intro h1 { font-size: clamp(2.4rem, 5.5vw, 3.8rem); }
  .studio-intro-copy .button { padding-inline: 18px; gap: 15px; font-size: 0.9375rem; }
  .flow-heading { padding: 18px 22px; }
  .flow-caption { display: none; }
  .flow-controls button { gap: 8px; font-size: 0.875rem; padding-inline: 10px; }
  .flow-controls button span { display: none; }
  .flow-stage { padding: 28px 22px; grid-template-columns: minmax(0, 1fr) 18px 160px 18px minmax(0, 1fr); }
  .flow-endpoint > strong { font-size: 1.0625rem; }
  .flow-endpoint p, .flow-output ul { font-size: 0.875rem; }
  .studio-principles { gap: 14px; font-size: 0.875rem; }
  .studio-principles span::before { margin-right: 6px; }
  .studio-section-heading { gap: 20px 32px; }
  .studio-service { padding-right: 22px; }
  .studio-service + .studio-service { padding-left: 22px; }
  .studio-case { grid-template-columns: 0.65fr 1.35fr; }
  .case-side { padding: 26px; }
  .case-monogram { width: 108px; height: 108px; }
  .case-detail { padding: 30px; }
  .case-facts { grid-template-columns: 1fr; gap: 15px; }
  .studio-offers article { padding: 23px; }
  .site-footer { grid-template-columns: 1fr; gap: 30px; padding-top: 34px; }
}
@media (max-width: 760px) {
  .page-shell { width: calc(100% - 36px); }
  .topbar .brand { width: 236px; }
  .hero-meta { align-items: start; gap: 12px; }
  .hero-meta .eyebrow { font-size: 0.875rem; }
  .hero-meta > span { display: none; }
  .studio-hero { padding-top: 20px; }
  .studio-intro { grid-template-columns: 1fr; gap: 24px; padding-top: 26px; }
  .studio-intro h1 { font-size: clamp(2.4rem, 8.8vw, 3.5rem); line-height: 1.1; }
  .studio-intro-copy { max-width: 54ch; }
  .studio-intro-copy > p { font-size: 1.0625rem; margin-bottom: 20px; }
  .studio-intro-copy .button { font-size: 1rem; min-height: 50px; }
  .intro-note { font-size: 0.875rem; }
  .flow-heading { padding: 17px 18px; }
  .flow-heading h2 { font-size: 0.9375rem; line-height: 1.4; }
  .flow-controls { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .flow-controls button { min-width: 0; padding: 12px 7px; font-size: 0.875rem; line-height: 1.4; }
  .flow-stage { grid-template-columns: 1fr; min-height: 0; padding: 24px; }
  .flow-label { margin-bottom: 7px; }
  .flow-endpoint > strong { font-size: 1.1875rem; min-height: 0; }
  .flow-endpoint p { max-width: none; font-size: 0.9375rem; }
  .flow-input { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 3px 10px; }
  .flow-input .flow-label, .flow-input p { grid-column: 1 / -1; }
  .flow-input .flow-data { grid-column: 2; grid-row: 2; margin: 0; justify-content: end; }
  .flow-data span { font-size: 0.875rem; padding: 2px 5px; }
  .flow-core { min-height: 100px; padding: 18px 20px; display: grid; grid-template-columns: 36px 1fr; gap: 3px 18px; text-align: left; }
  .flow-core svg { width: 32px; height: 36px; grid-row: 1 / 3; margin: 0; }
  .flow-core > span { max-width: none; font-size: 0.875rem; }
  .flow-connector { width: 1px; height: 24px; margin-left: 35px; }
  .flow-connector::after { right: -3px; top: auto; bottom: 3px; transform: rotate(135deg); }
  .flow-output { padding: 8px 0 0; }
  .flow-output ul { font-size: 0.9375rem; }
  .flow-footnote { padding: 14px 18px; flex-wrap: wrap; gap: 8px; }
  .studio-principles { display: grid; gap: 8px; padding: 18px 0; font-size: 0.875rem; }
  .studio-section { padding: 50px 0; }
  .studio-section-heading { grid-template-columns: 1fr; gap: 16px; margin-bottom: 28px; }
  .studio-section-heading .eyebrow { margin-bottom: 0; }
  .studio-section-heading h2, .case-detail h2, .studio-quality h2 { font-size: clamp(1.65rem, 6.5vw, 2.15rem); }
  .studio-services { grid-template-columns: 1fr; }
  .studio-service, .studio-service + .studio-service { padding: 24px 0; border-left: 0; }
  .studio-service + .studio-service { border-top: 1px solid var(--site-line); }
  .service-index { margin-bottom: 14px; }
  .studio-service h3 { font-size: 1.4rem; }
  .studio-service p { margin: 12px 0 18px; max-width: 55ch; }
  .service-link { justify-content: start; }
  .studio-case { grid-template-columns: 1fr; }
  .case-side { padding: 24px; border-right: 0; border-bottom: 1px solid var(--site-line); display: flex; flex-direction: row; align-items: center; gap: 18px; }
  .case-side .eyebrow { margin: 0; }
  .case-monogram { width: 44px; height: 44px; margin-left: auto; }
  .case-side > p:last-child { display: none; }
  .case-detail { padding: 26px 24px; }
  .case-detail > p { font-size: 1rem; }
  .studio-offers { grid-template-columns: 1fr; }
  .studio-offers article { padding: 26px; }
  .studio-offers article + article { border-left: 0; border-top: 1px solid var(--site-line); }
  .offer-price { margin-top: 14px; font-size: 2.3rem; }
  .sellerops-note { flex-direction: column; align-items: start; gap: 14px; }
  .studio-quality { grid-template-columns: 1fr; gap: 34px; padding: 42px 0; }
  .studio-contact { padding: 50px 0; }
  .studio-contact > div { grid-template-columns: 1fr; gap: 28px; }
  .studio-contact h2 { font-size: clamp(1.9rem, 7.3vw, 2.6rem); }
  .studio-contact-actions { gap: 16px; }
  .footer-links { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px 16px; }
  .footer-links a { min-height: 38px; }
}
@media (max-width: 390px) {
  .page-shell { width: calc(100% - 28px); }
  .studio-intro h1 { font-size: 2.25rem; }
  .flow-stage { padding: 20px; }
  .flow-input { display: block; }
  .flow-data { margin-top: 10px !important; justify-content: start !important; }
  .hero-copy, .hero-card, .system-map, .section, .contact { padding-inline: 20px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
}
@media (prefers-color-scheme: dark) {
  :where(html:not([data-theme])) .topbar { background: color-mix(in srgb, var(--site-bg) 94%, transparent); box-shadow: none; }

  :where(html:not([data-theme])) .site-footer { background: var(--site-bg); }

  :where(html:not([data-theme])) .flow-core { color: #f5f8f4; background: #153a31; border: 1px solid var(--site-line-strong); }

}

  :where(html[data-theme="dark"]) .topbar { background: color-mix(in srgb, var(--site-bg) 94%, transparent); box-shadow: none; }

  :where(html[data-theme="dark"]) .site-footer { background: var(--site-bg); }

  :where(html[data-theme="dark"]) .flow-core { color: #f5f8f4; background: #153a31; border: 1px solid var(--site-line-strong); }


@media (forced-colors: active) {
  .flow-core, .flow-controls button, .studio-service { border: 1px solid CanvasText; }
  .flow-controls button[aria-pressed="true"] { border-bottom: 3px solid Highlight; }
}

@media print {
  :root {
    color-scheme: light;
    --site-bg: #fff;
    --site-surface: #fff;
    --site-surface-soft: #fff;
    --site-surface-strong: #fff;
    --site-ink: #000;
    --site-muted: #333;
    --site-line: #aaa;
    --site-line-strong: #555;
  }

  body {
    background: #fff;
  }

  .page-shell {
    width: 100%;
    padding: 0;
  }

  .topbar,
  .site-footer,
  .hero-actions,
  .section-actions,
  .contact,
  .breadcrumb {
    display: none !important;
  }

  .hero,
  .section,
  .legal-card,
  .form-step {
    margin: 0;
    padding: 20px 0;
    border-width: 0 0 1px;
    break-inside: avoid;
  }
}
