:root {
  --color-brand-red: #FC0A1C;
  --color-action-red: #C80010;
  --color-signal-azure: #0788FF;
  --color-action-blue: #1A32D5;
  --color-deep-trust-blue: #2F4BFF;
  --color-graphite: #2E3640;
  --color-graphite-deep: #1D2229;
  --color-muted: #62707D;
  --color-canvas: #FFFFFF;
  --color-surface: #F5F7FA;
  --color-surface-strong: #EBF0F5;
  --color-red-soft: #FFF0F1;
  --color-blue-soft: #EDF5FF;
  --color-trust-soft: #F0F2FF;
  --color-rails: rgba(46, 54, 64, 0.12);
  --color-rails-strong: rgba(46, 54, 64, 0.2);

  --font-primary: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-size-body: 1rem;
  --font-size-hero: 4.18rem;
  --font-size-section-title: 3rem;
  --font-size-card-title: 1.22rem;
  --font-size-lead: 1.3rem;
  --font-size-meta: 0.78rem;

  --line-hero: 0.98;
  --line-title: 1.08;
  --line-body: 1.68;

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4.5rem;
  --space-section: 8rem;

  --container-max: 1420px;
  --content-max: 820px;
  --hero-copy-max: 1040px;
  --radius-card: 8px;
  --shadow-soft: 0 22px 54px rgba(46, 54, 64, 0.08);
  --seal-rotation: 0deg;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--color-canvas);
  color: var(--color-graphite);
  font-family: var(--font-primary);
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
}

body {
  background: var(--color-canvas);
  color: var(--color-graphite);
  font-size: var(--font-size-body);
  line-height: var(--line-body);
  margin: 0;
  max-width: 100%;
  min-width: 0;
  overflow-x: clip;
}

body.nav-open {
  overflow-x: clip;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--color-action-blue);
  outline-offset: 4px;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  border-color: var(--color-action-blue);
  box-shadow: 0 0 0 4px rgba(26, 50, 213, 0.14);
  outline: 3px solid var(--color-action-blue);
  outline-offset: 2px;
}

input[type="checkbox"]:focus-visible {
  box-shadow: 0 0 0 4px rgba(26, 50, 213, 0.16);
  outline: 3px solid var(--color-action-blue);
  outline-offset: 3px;
}

p,
blockquote,
figure {
  margin: 0;
}

p,
blockquote,
figcaption {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  hyphens: auto;
  letter-spacing: 0;
  margin: 0;
  overflow-wrap: break-word;
}

h1 {
  color: var(--color-graphite-deep);
  font-size: var(--font-size-hero);
  font-weight: 790;
  hyphens: none;
  line-height: var(--line-hero);
  max-width: min(100%, 1040px);
}

h2 {
  color: var(--color-graphite-deep);
  font-size: var(--font-size-section-title);
  font-weight: 760;
  line-height: var(--line-title);
  max-width: 100%;
  text-wrap: normal;
}

h3 {
  color: var(--color-graphite-deep);
  font-size: var(--font-size-card-title);
  font-weight: 760;
  line-height: 1.2;
}

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

.skip-link {
  background: var(--color-graphite-deep);
  color: var(--color-canvas);
  left: 1rem;
  padding: 0.8rem 1rem;
  position: fixed;
  top: 1rem;
  transform: translateY(-160%);
  z-index: 100;
}

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

.site-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--color-rails);
  position: sticky;
  top: 0;
  z-index: 20;
}

.site-header__inner,
.hero__inner,
.section__inner,
.site-footer__inner {
  margin: 0 auto;
  max-width: var(--container-max);
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}

.site-header__inner {
  align-items: center;
  display: grid;
  gap: var(--space-3);
  grid-template-columns: auto 1fr auto;
  min-height: 76px;
}

.brand {
  align-items: center;
  color: var(--color-brand-red);
  display: inline-flex;
  gap: 0.72rem;
  min-width: 0;
  text-decoration: none;
}

.brand__mark {
  display: block;
  height: 42px;
  object-fit: contain;
  width: 42px;
}

.brand__word {
  color: var(--color-brand-red);
  font-size: 1.06rem;
  font-weight: 790;
  line-height: 1;
  white-space: nowrap;
}

.primary-nav {
  align-items: center;
  display: flex;
  gap: var(--space-4);
  justify-content: center;
}

.primary-nav a,
.language-nav a,
.footer-nav a {
  color: var(--color-graphite);
  font-size: 0.86rem;
  font-weight: 720;
  text-decoration: none;
}

.primary-nav a:hover,
.language-nav a:hover,
.footer-nav a:hover {
  color: var(--color-action-red);
}

.language-nav {
  align-items: center;
  display: flex;
  gap: 0.38rem;
  justify-content: flex-end;
}

.language-nav a {
  border: 1px solid transparent;
  min-width: 2.35rem;
  padding: 0.18rem 0.54rem;
  text-align: center;
}

.language-nav a[aria-current="page"] {
  border-color: var(--color-rails-strong);
  color: var(--color-action-blue);
}

.nav-toggle {
  align-items: center;
  background: var(--color-canvas);
  border: 1px solid var(--color-rails-strong);
  border-radius: var(--radius-card);
  display: none;
  height: 44px;
  justify-content: center;
  padding: 0;
  width: 44px;
}

.nav-toggle__bars {
  display: grid;
  gap: 4px;
  width: 18px;
}

.nav-toggle__bars span {
  background: var(--color-graphite);
  display: block;
  height: 2px;
  width: 100%;
}

.hero {
  border-bottom: 1px solid var(--color-rails);
  overflow: clip;
  padding: var(--space-6) 0;
}

.hero__inner {
  align-items: center;
  display: grid;
  gap: clamp(2.5rem, 4.5vw, var(--space-6));
  grid-template-columns: minmax(0, 1.58fr) minmax(280px, 0.42fr);
  min-height: calc(100vh - 76px - 9rem);
}

.hero__copy {
  max-width: var(--hero-copy-max);
  min-width: 0;
}

.eyebrow {
  align-items: center;
  color: var(--color-brand-red);
  display: inline-flex;
  font-size: var(--font-size-meta);
  font-weight: 850;
  gap: 1.1rem;
  letter-spacing: 0.12em;
  line-height: 1.3;
  margin-bottom: var(--space-2);
  max-width: 100%;
  text-transform: uppercase;
  white-space: normal;
}

.eyebrow::before {
  background: currentColor;
  content: "";
  display: inline-block;
  flex: 0 0 auto;
  height: 3px;
  width: 48px;
}

.hero__body {
  display: grid;
  gap: 0.78rem;
  margin-top: var(--space-3);
  max-width: var(--content-max);
  min-width: 0;
}

.hero__body p {
  line-height: 1.62;
}

.lead {
  color: var(--color-graphite);
  font-size: var(--font-size-lead);
  line-height: 1.44;
  max-width: 38em;
}

.hero-seal-panel {
  align-items: center;
  align-self: stretch;
  border-left: 1px solid var(--color-rails);
  display: grid;
  justify-items: center;
  min-height: 500px;
  padding-left: var(--space-5);
}

.scroll-seal {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  width: min(100%, 340px);
}

.scroll-seal__svg {
  display: block;
  filter: drop-shadow(0 24px 58px rgba(46, 54, 64, 0.08));
  height: 100%;
  width: 100%;
}

.scroll-seal__rotor {
  transform: rotate(var(--seal-rotation));
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 80ms linear;
  will-change: transform;
}

.scroll-seal__outer,
.scroll-seal__inner,
.scroll-seal__logo-field {
  fill: var(--color-canvas);
  stroke: var(--color-brand-red);
}

.scroll-seal__outer {
  stroke-width: 3;
}

.scroll-seal__inner {
  stroke-width: 2.4;
}

.scroll-seal__logo-field {
  display: none;
}

.scroll-seal__text {
  fill: var(--color-brand-red);
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0.3em;
}

.scroll-seal__text--bottom {
  font-size: 13px;
  letter-spacing: 0.14em;
}

.scroll-seal__center-mark {
  color: var(--color-brand-red);
}

.cta-group,
.section-action {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
  min-width: 0;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: var(--radius-card);
  display: inline-flex;
  font-size: 0.96rem;
  font-weight: 760;
  justify-content: center;
  line-height: 1.25;
  min-height: 48px;
  min-width: 0;
  padding: 0.82rem 1.08rem;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button--primary {
  background: var(--color-brand-red);
  color: var(--color-canvas);
}

.button--primary:hover {
  background: var(--color-action-red);
  color: var(--color-canvas);
}

.button--secondary {
  background: var(--color-canvas);
  border-color: rgba(26, 50, 213, 0.32);
  color: var(--color-action-blue);
}

.button--secondary:hover {
  background: var(--color-blue-soft);
  border-color: var(--color-action-blue);
}

.section {
  padding: var(--space-section) 0;
}

.section--surface {
  background: linear-gradient(180deg, var(--color-surface), #FFFFFF);
}

.section-intro {
  display: grid;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
  max-width: min(100%, var(--container-max));
}

.section-intro p:not(.eyebrow) {
  color: var(--color-muted);
  font-size: 1.08rem;
  line-height: 1.62;
  max-width: 980px;
}

.card-grid {
  display: grid;
  gap: var(--space-3);
}

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

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

.decision-card,
.process-card,
.trust-card,
.method-step,
.path-card,
.testimonial {
  background: var(--color-canvas);
  border: 1px solid var(--color-rails);
  border-radius: var(--radius-card);
}

.decision-card,
.process-card,
.trust-card,
.method-step {
  display: grid;
  gap: var(--space-2);
  min-height: 100%;
  min-width: 0;
  padding: var(--space-3);
  position: relative;
}

.decision-card::before,
.process-card::before,
.trust-card::before,
.path-card::before {
  content: "";
  inset: 0 auto 0 0;
  position: absolute;
  width: 4px;
}

.decision-card--human::before,
.decision-card--quiet::before,
.decision-card--conversation::before,
.process-card--human::before,
.trust-card--red::before,
.path-card--primary::before {
  background: var(--color-brand-red);
}

.decision-card--evidence::before,
.process-card--evidence::before,
.trust-card--azure::before {
  background: var(--color-signal-azure);
}

.decision-card--authority::before,
.process-card--authority::before,
.trust-card--blue::before,
.path-card--secondary::before {
  background: var(--color-deep-trust-blue);
}

.decision-card--structure::before,
.process-card--structure::before,
.trust-card--graphite::before {
  background: var(--color-graphite);
}

.decision-card--human,
.decision-card--quiet,
.decision-card--conversation,
.process-card--human {
  background: linear-gradient(180deg, var(--color-red-soft), var(--color-canvas));
}

.decision-card--quiet,
.decision-card--conversation {
  background: var(--color-canvas);
}

.decision-card--evidence,
.process-card--evidence {
  background: linear-gradient(180deg, var(--color-blue-soft), var(--color-canvas));
}

.decision-card--authority,
.process-card--authority {
  background: linear-gradient(180deg, var(--color-trust-soft), var(--color-canvas));
}

.card-index,
.method-step__number {
  color: var(--color-action-blue);
  font-size: var(--font-size-meta);
  font-weight: 850;
  line-height: 1;
}

.decision-card--human .card-index,
.decision-card--quiet .card-index,
.decision-card--conversation .card-index,
.process-card--human .card-index {
  color: var(--color-brand-red);
}

.card-label {
  color: var(--color-brand-red);
  font-size: var(--font-size-meta);
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
}

.decision-card p,
.process-card p,
.trust-card p,
.method-step p,
.path-card p,
.testimonial p {
  color: var(--color-muted);
  font-size: 0.96rem;
  hyphens: auto;
  line-height: 1.62;
  overflow-wrap: break-word;
}

.decision-card h3,
.process-card h3,
.trust-card h3,
.method-step h3,
.path-card h3,
.profile-card h3,
.profile-board-card h3,
.prototype-form-card h3,
.field span,
.field-check span {
  hyphens: auto;
  overflow-wrap: anywhere;
}

.process-lane {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.method-steps {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.method-step {
  border-top: 4px solid var(--color-signal-azure);
}

.method-step:nth-child(1) {
  border-top-color: var(--color-brand-red);
}

.method-step:nth-child(3) {
  border-top-color: var(--color-deep-trust-blue);
}

.method-step:nth-child(4) {
  border-top-color: var(--color-graphite);
}

.trust-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.testimonial-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: var(--space-4);
}

.testimonial {
  border-color: rgba(46, 54, 64, 0.14);
  border-top: 4px solid var(--color-brand-red);
  padding: var(--space-4);
}

.testimonial:nth-child(even) {
  border-top-color: var(--color-deep-trust-blue);
}

.testimonial blockquote p {
  color: var(--color-graphite-deep);
  font-size: 1.18rem;
  font-weight: 690;
  line-height: 1.46;
}

.testimonial figcaption {
  border-top: 1px solid var(--color-rails);
  color: var(--color-muted);
  font-size: 0.88rem;
  line-height: 1.55;
  margin-top: var(--space-3);
  padding-top: var(--space-2);
}

.final-cta {
  background: var(--color-canvas);
  overflow: clip;
}

.path-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.path-card {
  display: grid;
  gap: var(--space-3);
  padding: var(--space-5);
  position: relative;
}

.path-card .button {
  justify-self: start;
}

.sculpture-path-grid {
  display: grid;
  border: 1px solid var(--color-rails);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  gap: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
}

.sculpture-path {
  color: var(--color-canvas);
  display: flex;
  min-height: clamp(520px, 42vw, 680px);
  overflow: hidden;
  padding: clamp(2.5rem, 4vw, 4.75rem);
  position: relative;
}

.sculpture-path::before {
  content: "";
  inset: 0 auto 0 0;
  position: absolute;
  width: 5px;
  z-index: 2;
}

.sculpture-path--red {
  background:
    linear-gradient(135deg, rgba(252, 10, 28, 0.96), rgba(252, 70, 83, 0.96)),
    var(--color-brand-red);
}

.sculpture-path--red::before {
  background: var(--color-canvas);
  opacity: 0.82;
}

.sculpture-path--blue::before {
  background: var(--color-canvas);
  inset: 0 0 0 auto;
  opacity: 0.82;
}

.sculpture-path img {
  bottom: -5%;
  height: 112%;
  max-width: none;
  object-fit: contain;
  opacity: 0.98;
  pointer-events: none;
  position: absolute;
  width: auto;
  z-index: 0;
}

.sculpture-path--red img {
  right: -2px;
}

.sculpture-path--blue {
  background:
    linear-gradient(135deg, rgba(7, 136, 255, 0.96), rgba(7, 181, 255, 0.96)),
    var(--color-signal-azure);
}

.sculpture-path--blue img {
  left: -2px;
  right: auto;
}

.sculpture-path__content {
  align-self: center;
  display: grid;
  gap: var(--space-2);
  max-width: 460px;
  position: relative;
  z-index: 1;
}

.sculpture-path--red .sculpture-path__content {
  margin-right: clamp(12rem, 18vw, 21rem);
}

.sculpture-path--blue .sculpture-path__content {
  margin-left: clamp(12rem, 18vw, 21rem);
}

.sculpture-path__content h3 {
  color: var(--color-canvas);
  font-size: clamp(1.85rem, 2.2vw, 2.65rem);
  line-height: 1.04;
}

.sculpture-path .card-label {
  color: rgba(255, 255, 255, 0.88);
}

.sculpture-path__content p:not(.card-label) {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  line-height: 1.62;
}

.sculpture-path__content .button {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.78);
  color: var(--color-canvas);
  justify-self: start;
  margin-top: var(--space-2);
}

.sculpture-path__content .button:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--color-canvas);
}

.site-footer {
  background: var(--color-canvas);
  border-top: 4px solid var(--color-brand-red);
  color: var(--color-graphite);
  padding: var(--space-5) 0;
}

.site-footer__inner {
  align-items: start;
  display: flex;
  gap: var(--space-4);
  justify-content: space-between;
}

.footer-brand {
  display: grid;
  gap: var(--space-1);
}

.brand--footer .brand__mark {
  height: 46px;
  width: 46px;
}

.standards {
  color: var(--color-muted);
  font-size: 0.88rem;
}

.footer-nav {
  align-items: flex-end;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: flex-end;
}

.legal-page {
  background: var(--color-surface);
}

.legal-hero {
  background:
    linear-gradient(180deg, rgba(245, 247, 250, 0.86), rgba(255, 255, 255, 0.96) 64%, var(--color-surface));
  border-bottom: 1px solid var(--color-rails);
}

.legal-hero__inner {
  display: grid;
  gap: clamp(0.7rem, 1.1vw, 1rem);
  padding-bottom: clamp(2.1rem, 4vw, 3.2rem);
  padding-top: clamp(2.8rem, 5vw, 4.4rem);
}

.legal-title,
.legal-heading {
  color: var(--color-graphite-deep);
  font-size: var(--font-size-body);
  font-weight: 780;
  letter-spacing: 0;
  line-height: var(--line-body);
  max-width: 78ch;
  overflow-wrap: anywhere;
}

.legal-hero .lead {
  color: var(--color-muted);
  font-size: var(--font-size-body);
  line-height: var(--line-body);
  max-width: 760px;
}

.legal-document {
  background: linear-gradient(180deg, var(--color-surface), var(--color-canvas) 52%);
}

.legal-document__inner {
  align-items: start;
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
  grid-template-columns: minmax(230px, 320px) minmax(0, 900px);
  justify-content: start;
  min-width: 0;
}

.legal-meta {
  align-self: start;
  background: var(--color-canvas);
  border: 1px solid var(--color-rails);
  border-radius: var(--radius-card);
  box-shadow: inset 5px 0 0 var(--color-deep-trust-blue);
  color: var(--color-muted);
  display: grid;
  gap: 0.82rem;
  padding: clamp(1.15rem, 2vw, 1.55rem);
  position: sticky;
  top: calc(76px + var(--space-3));
  min-width: 0;
}

.legal-meta strong {
  color: var(--color-graphite-deep);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.legal-meta p {
  font-size: 0.92rem;
  line-height: 1.58;
  overflow-wrap: anywhere;
}

.legal-meta strong {
  overflow-wrap: anywhere;
}

.legal-meta a {
  color: var(--color-action-blue);
  font-weight: 650;
}

.legal-paper {
  background: var(--color-canvas);
  border: 1px solid var(--color-rails);
  border-radius: var(--radius-card);
  box-shadow: 0 16px 42px rgba(46, 54, 64, 0.045);
  display: grid;
  gap: clamp(2rem, 3.2vw, 3rem);
  overflow: hidden;
  padding: clamp(1.65rem, 3.2vw, 3.4rem);
  position: relative;
  min-width: 0;
}

.legal-paper::before {
  background: linear-gradient(90deg, var(--color-brand-red), var(--color-deep-trust-blue));
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.legal-section {
  display: grid;
  gap: 0.78rem;
  max-width: 78ch;
}

.legal-section + .legal-section {
  border-top: 1px solid var(--color-rails);
  padding-top: clamp(2rem, 3.2vw, 3rem);
}

.legal-section p,
.legal-section li {
  color: #4F5C69;
  font-size: clamp(1rem, 1.05vw, 1.08rem);
  line-height: 1.76;
}

.legal-section .legal-heading {
  color: var(--color-graphite-deep);
  font-size: clamp(1rem, 1.05vw, 1.08rem);
  line-height: 1.76;
}

.legal-section ul {
  display: grid;
  gap: 0.4rem;
  margin: 0;
  padding-left: 1.25rem;
}

.legal-section a {
  color: var(--color-action-blue);
  font-weight: 650;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.prototype-toast {
  background: var(--color-graphite-deep);
  border-radius: var(--radius-card);
  bottom: 1rem;
  color: var(--color-canvas);
  font-size: 0.92rem;
  left: 50%;
  max-width: min(92vw, 540px);
  opacity: 0;
  padding: 0.85rem 1rem;
  pointer-events: none;
  position: fixed;
  transform: translate(-50%, 1rem);
  transition: opacity 160ms ease, transform 160ms ease;
  z-index: 40;
}

.prototype-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (min-width: 1728px) {
  :root {
    --container-max: 1680px;
  }
}

@media (min-width: 2200px) {
  :root {
    --container-max: 1760px;
  }
}

@media (max-width: 1440px) {
  :root {
    --font-size-hero: 3.78rem;
    --font-size-section-title: 2.72rem;
    --hero-copy-max: 940px;
  }
}

@media (max-width: 1280px) {
  :root {
    --font-size-hero: 3.28rem;
    --font-size-section-title: 2.45rem;
    --space-section: 7rem;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1.35fr) minmax(250px, 0.48fr);
  }

  .hero-seal-panel {
    min-height: 430px;
    padding-left: var(--space-4);
  }

  .scroll-seal {
    width: min(100%, 300px);
  }

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

  .sculpture-path {
    min-height: clamp(480px, 42vw, 600px);
    padding: clamp(2rem, 3vw, var(--space-4));
  }

  .sculpture-path img {
    bottom: 0;
    height: 100%;
    width: auto;
  }

  .sculpture-path--red .sculpture-path__content {
    margin-right: clamp(8rem, 13vw, 14rem);
  }

  .sculpture-path--blue .sculpture-path__content {
    margin-left: clamp(8rem, 13vw, 14rem);
  }
}

@media (max-width: 960px) {
  .final-cta--sculpture .sculpture-path-grid {
    border-left: 0;
    border-right: 0;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .final-cta--sculpture .sculpture-path {
    border-radius: 0;
    min-height: clamp(540px, 62vw, 660px);
    padding: var(--space-4);
    width: 100%;
  }

  .final-cta--sculpture .sculpture-path::before {
    display: none;
  }

  .final-cta--sculpture .sculpture-path img {
    bottom: -4%;
    height: 102%;
    width: auto;
  }

  .final-cta--sculpture .sculpture-path--red img {
    right: 0;
  }

  .final-cta--sculpture .sculpture-path--blue img {
    left: 0;
  }

  .final-cta--sculpture .sculpture-path--red .sculpture-path__content {
    margin-right: clamp(11rem, 32vw, 22rem);
  }

  .final-cta--sculpture .sculpture-path--blue .sculpture-path__content {
    margin-left: clamp(11rem, 32vw, 22rem);
  }
}

@media (max-width: 1024px) {
  :root {
    --font-size-hero: 3.15rem;
    --font-size-section-title: 2.16rem;
    --space-section: 6rem;
  }

  .site-header__inner {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
    min-height: 70px;
  }

  .nav-toggle {
    display: inline-flex;
    grid-column: 2;
    grid-row: 1;
    transform: translateY(2px);
  }

  .language-nav {
    grid-column: 3;
    grid-row: 1;
  }

  .primary-nav {
    align-items: stretch;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--color-rails);
    border-top: 1px solid var(--color-rails);
    box-shadow: 0 22px 42px rgba(28, 35, 44, 0.12);
    display: none;
    left: 0;
    margin: 0;
    max-height: calc(100dvh - var(--site-header-height, 70px));
    overflow-y: auto;
    overscroll-behavior: contain;
    justify-content: start;
    padding:
      var(--space-2)
      calc(env(safe-area-inset-right) + var(--space-4))
      calc(env(safe-area-inset-bottom) + var(--space-3))
      calc(env(safe-area-inset-left) + var(--space-4) + 0.5rem);
    position: fixed;
    right: 0;
    top: var(--site-header-height, 70px);
    z-index: 19;
  }

  .site-header.is-open .primary-nav {
    display: grid;
    gap: 0;
  }

  .primary-nav a {
    border-bottom: 1px solid var(--color-rails);
    padding: 0.78rem 0;
  }

  .primary-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    padding: var(--space-5) 0;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
  }

  .hero-seal-panel {
    border-left: 0;
    border-top: 1px solid var(--color-rails);
    min-height: 420px;
    padding: var(--space-5) 0 0;
  }

  .scroll-seal {
    width: min(66vw, 360px);
  }

  .card-grid--four,
  .method-steps,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  :root {
    --font-size-hero: 2.62rem;
    --font-size-section-title: 1.94rem;
    --font-size-lead: 1.16rem;
    --font-size-card-title: 1.12rem;
    --space-section: 5rem;
  }

  .site-header__inner,
  .hero__inner,
  .section__inner,
  .site-footer__inner {
    padding-left: var(--space-3);
    padding-right: var(--space-3);
  }

  .primary-nav {
    margin: 0;
    padding-left: calc(env(safe-area-inset-left) + var(--space-3) + 0.5rem);
    padding-right: calc(env(safe-area-inset-right) + var(--space-3));
  }

  h1,
  h2 {
    max-width: 100%;
  }

  h1,
  h2,
  h3,
  .lead,
  .hero__body,
  .section-intro,
  .decision-card,
  .process-card,
  .trust-card,
  .method-step,
  .path-card,
  .profile-board-card,
  .profile-modal,
  .prototype-form-card,
  .legal-paper,
  .legal-meta {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .cta-group,
  .section-action {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .path-card .button,
  .sculpture-path__content .button {
    justify-self: stretch;
    width: 100%;
  }

  .card-grid--four,
  .card-grid--five,
  .process-lane,
  .method-steps,
  .trust-grid,
  .testimonial-grid,
  .path-grid,
  .sculpture-path-grid,
  .legal-document__inner {
    grid-template-columns: 1fr;
  }

  .legal-meta {
    position: static;
  }

  .sculpture-path-grid {
    border-left: 0;
    border-right: 0;
    width: 100%;
  }

  .sculpture-path {
    border-radius: 0;
    width: 100%;
  }

  .sculpture-path::before {
    display: none;
  }

  .path-card,
  .testimonial {
    padding: var(--space-3);
  }

  .sculpture-path {
    min-height: 560px;
    padding: var(--space-3);
  }

  .sculpture-path img {
    bottom: -4%;
    height: 102%;
    width: auto;
  }

  .sculpture-path--red img {
    right: 0;
  }

  .sculpture-path--blue img {
    left: 0;
  }

  .sculpture-path--red .sculpture-path__content {
    margin-right: clamp(7rem, 30vw, 15rem);
  }

  .sculpture-path--blue .sculpture-path__content {
    margin-left: clamp(7rem, 30vw, 15rem);
  }

  .site-footer__inner {
    display: grid;
  }

  .footer-nav {
    align-items: flex-start;
    display: grid;
    justify-content: start;
  }
}

@media (max-width: 390px) {
  :root {
    --font-size-hero: 2.05rem;
    --font-size-section-title: 1.58rem;
  }

  .site-header__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.42rem;
  }

  .nav-toggle {
    grid-column: 2;
    grid-row: 1;
  }

  .language-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: end;
  }

  .primary-nav {
    grid-row: auto;
  }

  .brand__mark {
    height: 34px;
    width: 34px;
  }

  .brand__word {
    font-size: 0.92rem;
  }

  .eyebrow {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .eyebrow::before {
    display: block;
    height: 3px;
    margin-bottom: 0.68rem;
    width: clamp(2rem, 12vw, 3rem);
  }

  h1 {
    hyphens: auto;
    overflow-wrap: anywhere;
  }

  .language-nav a {
    font-size: 0.8rem;
    min-width: 1.85rem;
    padding-left: 0.24rem;
    padding-right: 0.24rem;
  }

  .scroll-seal {
    width: min(82vw, 300px);
  }

  .sculpture-path {
    min-height: 480px;
  }

  .sculpture-path img {
    bottom: -4%;
    height: 92%;
    opacity: 0.58;
    width: auto;
  }

  .sculpture-path--red img {
    right: 0;
  }

  .sculpture-path--blue img {
    left: 0;
  }

  .sculpture-path--red .sculpture-path__content {
    margin-right: 3rem;
  }

  .sculpture-path--blue .sculpture-path__content {
    margin-left: 3rem;
  }
}

@media (max-width: 340px) {
  :root {
    --font-size-hero: 1.72rem;
    --font-size-section-title: 1.38rem;
    --font-size-body: 0.96rem;
  }

  .site-header__inner,
  .hero__inner,
  .section__inner,
  .site-footer__inner {
    padding-left: var(--space-2);
    padding-right: var(--space-2);
  }

  .primary-nav {
    margin: 0;
    padding-left: calc(env(safe-area-inset-left) + var(--space-2) + 0.5rem);
    padding-right: calc(env(safe-area-inset-right) + var(--space-2));
  }

  .brand {
    gap: 0.38rem;
  }

  .brand__mark {
    height: 32px;
    width: 32px;
  }

  .brand__word {
    font-size: 0.86rem;
  }

  .nav-toggle {
    height: 40px;
    width: 40px;
  }

  .language-nav {
    gap: 0.18rem;
  }

  .language-nav a {
    font-size: 0.76rem;
    min-width: 1.65rem;
    padding-left: 0.18rem;
    padding-right: 0.18rem;
  }

  .button {
    padding-left: 0.72rem;
    padding-right: 0.72rem;
  }
}

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

  .scroll-seal__rotor {
    transform: rotate(0deg) !important;
  }
}


/* Full-site static prototype additions */
.hero--page {
  background: var(--color-canvas);
}

.hero__inner--page {
  grid-template-columns: minmax(0, 1fr);
  min-height: auto;
  padding-bottom: clamp(1rem, 2vw, 2rem);
  padding-top: clamp(1rem, 2vw, 2rem);
}

.hero__inner--page .hero__copy {
  max-width: min(100%, 1180px);
}

.hero__inner--page h1 {
  hyphens: manual;
  max-width: min(100%, 1120px);
}

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

.card-list {
  color: var(--color-muted);
  display: grid;
  font-size: 0.92rem;
  gap: 0.35rem;
  hyphens: auto;
  line-height: 1.45;
  margin: 0;
  overflow-wrap: break-word;
  padding-left: 1.1rem;
}

.text-link {
  color: var(--color-action-blue);
  font-size: 0.9rem;
  font-weight: 780;
  margin-top: auto;
  overflow-wrap: break-word;
  text-decoration: none;
}

.text-link:hover {
  color: var(--color-action-red);
}

.faq-list {
  display: grid;
  gap: var(--space-2);
  max-width: 980px;
}

.faq-item {
  background: var(--color-canvas);
  border: 1px solid var(--color-rails);
  border-radius: var(--radius-card);
  padding: var(--space-2) var(--space-3);
}

.faq-item summary {
  color: var(--color-graphite-deep);
  cursor: pointer;
  font-weight: 780;
}

.faq-item p {
  color: var(--color-muted);
  line-height: 1.62;
  margin-top: var(--space-1);
}

.profile-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.profile-card,
.contact-note {
  background: var(--color-canvas);
  border: 1px solid var(--color-rails);
  border-radius: var(--radius-card);
  padding: var(--space-3);
}

.profile-card {
  display: grid;
  gap: var(--space-2);
}

.profile-card p,
.contact-note p {
  color: var(--color-muted);
  line-height: 1.62;
}

.contact-note {
  border-left: 4px solid var(--color-brand-red);
  max-width: 900px;
}

.primary-nav a[aria-current="page"] {
  color: var(--color-action-blue);
}

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

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

@media (max-width: 768px) {
  .card-grid--three,
  .profile-grid {
    grid-template-columns: 1fr;
  }
}


/* v02 cohesive prototype upgrades */
.brand__text {
  display: grid;
  gap: 0.16rem;
  line-height: 1;
  min-width: 0;
}

.brand__descriptor {
  color: rgba(46, 54, 64, 0.68);
  font-size: 0.58rem;
  font-weight: 720;
  letter-spacing: 0.02em;
  line-height: 1.08;
}

.hero__inner--solo {
  grid-template-columns: minmax(0, 1fr);
  min-height: min(720px, calc(100vh - 76px));
}

.hero--home-v02 h1 {
  max-width: min(100%, 1280px);
}

.hero--home-v02 {
  border-bottom: 0;
}

@media (min-width: 1200px) {
  .hero--home-v02 .hero__inner--solo {
    max-width: min(1280px, calc(100vw - clamp(7rem, 12vw, 18rem)));
  }

  .hero--home-v02 .hero__copy,
  .hero--home-v02 h1 {
    max-width: min(100%, 1180px);
  }
}

.seal-transition {
  background: var(--color-canvas);
  padding: clamp(0.45rem, 1.1vw, 1.25rem) 0 clamp(2rem, 3.5vw, 4.25rem);
}

.seal-transition__inner {
  display: grid;
  justify-items: center;
  gap: 0;
}

.seal-transition__rule {
  display: none;
}

.scroll-seal--graphite {
  width: min(76vw, 360px);
}

.scroll-seal--compact {
  width: min(62vw, 330px);
}

.scroll-seal--graphite .scroll-seal__outer,
.scroll-seal--graphite .scroll-seal__inner {
  fill: var(--color-canvas);
  stroke: var(--color-graphite);
  stroke-width: 2.4;
}

.scroll-seal--graphite .scroll-seal__text {
  fill: var(--color-graphite);
  font-size: 14px;
  font-weight: 760;
  letter-spacing: 0.28em;
  text-transform: none;
}

.scroll-seal--graphite .scroll-seal__text--bottom {
  font-size: 11.8px;
  letter-spacing: 0.075em;
}

.scroll-seal--compact .scroll-seal__text {
  font-size: 18px;
  font-weight: 820;
  letter-spacing: 0.2em;
}

.scroll-seal--compact .scroll-seal__text--top {
  fill: var(--color-brand-red);
  font-size: 19px;
  letter-spacing: 0.4em;
}

.scroll-seal--compact .scroll-seal__text--bottom {
  font-size: 16.4px;
  letter-spacing: 0.085em;
}

.scroll-seal--graphite .scroll-seal__dot {
  fill: var(--color-graphite);
}

.scroll-seal--graphite .scroll-seal__center-mark {
  color: var(--color-brand-red);
}

.modular-stamp-transition {
  display: grid;
  justify-items: center;
  margin-top: clamp(1rem, 1.8vw, 1.8rem);
  margin-bottom: 0;
}

.section--surface:has(.modular-stamp-transition) {
  padding-bottom: clamp(2.2rem, 3.2vw, 3.5rem);
}

.section--surface:has(.modular-stamp-transition) + .section {
  padding-top: clamp(2rem, 3vw, 3.25rem);
}

.decision-card,
.process-card,
.trust-card,
.path-card,
.contact-note,
.prototype-form-card,
.profile-board-card,
.profile-modal {
  overflow: hidden;
}

.decision-card::before,
.process-card::before,
.trust-card::before,
.path-card::before {
  inset: -1px auto -1px -1px;
  border-radius: var(--radius-card) 0 0 var(--radius-card);
}

.contact-note {
  position: relative;
  border-left: 0;
}

.contact-note::before {
  content: "";
  position: absolute;
  inset: -1px auto -1px -1px;
  width: 4px;
  border-radius: var(--radius-card) 0 0 var(--radius-card);
  background: var(--color-brand-red);
}

.profile-board {
  display: grid;
  gap: clamp(2.5rem, 4vw, 4.75rem);
}

.profile-board__group-head {
  align-items: baseline;
  border-bottom: 1px solid var(--color-rails);
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
}

.profile-board__group-head h3 {
  font-size: clamp(1.18rem, 1.5vw, 1.7rem);
}

.profile-board__group-head span {
  color: var(--color-muted);
  font-size: var(--font-size-meta);
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.profile-board__cards {
  display: grid;
  gap: var(--space-3);
}

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

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

.profile-board-card {
  appearance: none;
  background: var(--color-canvas);
  border: 1px solid var(--color-rails);
  border-radius: var(--radius-card);
  color: inherit;
  cursor: pointer;
  display: grid;
  grid-template-columns: minmax(98px, 0.38fr) minmax(0, 1fr);
  min-height: 178px;
  padding: 0;
  position: relative;
  text-align: left;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.profile-board-card::before,
.profile-modal::before {
  content: "";
  position: absolute;
  inset: -1px auto -1px -1px;
  width: 6px;
  border-radius: var(--radius-card) 0 0 var(--radius-card);
  background: var(--color-deep-trust-blue);
  z-index: 2;
}

.profile-board-card:hover,
.profile-board-card:focus-visible {
  border-color: rgba(47, 75, 255, 0.35);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.profile-board-card__portrait {
  border-right: 1px solid var(--color-rails);
  height: 100%;
  min-height: inherit;
}

.profile-board-card__portrait img {
  display: block;
  filter: saturate(0.95) contrast(1.02);
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  width: 100%;
}

.profile-board-card__body {
  align-content: center;
  display: grid;
  gap: 0.72rem;
  padding: var(--space-3);
}

.profile-board-card__body p {
  color: var(--color-muted);
  font-size: 0.92rem;
  font-weight: 720;
  line-height: 1.36;
}

.profile-board-card,
.profile-board-card h3,
.profile-board-card__body p {
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

.profile-board-card h3,
.profile-board-card__body p {
  text-wrap: balance;
}

.profile-modal-backdrop {
  align-items: center;
  background: rgba(29, 34, 41, 0.56);
  backdrop-filter: blur(9px);
  display: grid;
  inset: 0;
  justify-items: center;
  padding: clamp(1rem, 3vw, 2.5rem);
  position: fixed;
  z-index: 50;
}

.profile-modal-backdrop[hidden] {
  display: none;
}

body.profile-modal-open {
  overflow: hidden;
}

.profile-modal {
  background: var(--color-canvas);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-card);
  box-shadow: 0 30px 90px rgba(29, 34, 41, 0.18);
  max-height: min(88vh, 860px);
  overflow: auto;
  position: relative;
  width: min(100%, 980px);
}

.profile-modal__close {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--color-rails);
  border-radius: 999px;
  color: var(--color-graphite-deep);
  cursor: pointer;
  display: grid;
  font-size: 1.35rem;
  font-weight: 800;
  height: 42px;
  justify-content: center;
  position: absolute;
  right: 1.1rem;
  top: 1.1rem;
  width: 42px;
  z-index: 3;
}

.profile-modal__grid {
  display: grid;
  gap: clamp(1.8rem, 4vw, 3.25rem);
  grid-template-columns: minmax(210px, 0.34fr) minmax(0, 1fr);
  padding: clamp(2rem, 4vw, 3.5rem);
}

.profile-modal__portrait {
  align-self: start;
  background: var(--color-canvas);
  border: 1px solid var(--color-rails);
  border-radius: var(--radius-card);
  display: grid;
  overflow: hidden;
  width: min(100%, 300px);
}

.profile-modal__portrait img {
  aspect-ratio: 4 / 5;
  border-bottom: 1px solid var(--color-rails);
  display: block;
  object-fit: cover;
  object-position: center 22%;
  width: 100%;
}

.profile-modal__identity {
  display: grid;
  gap: 0.7rem;
  padding: 1.15rem;
}

.profile-modal__content {
  padding-right: 2rem;
}

.profile-modal__label {
  color: var(--color-deep-trust-blue);
  font-size: 0.95rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1.32;
  text-transform: uppercase;
}

.profile-modal__identity h2 {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.32;
  white-space: pre-line;
}

.profile-modal__role {
  color: var(--color-muted);
  font-size: 0.95rem;
  font-weight: 640;
  line-height: 1.32;
  white-space: pre-line;
}

.profile-modal__copy {
  border-top: 0;
  display: grid;
  gap: 1rem;
  padding-top: 0;
}

.profile-modal__copy p {
  color: var(--color-muted);
  line-height: 1.68;
}

.profile-modal__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.3rem;
}

.profile-link {
  border: 1px solid rgba(47, 75, 255, 0.32);
  border-radius: 999px;
  color: var(--color-action-blue);
  font-size: 0.86rem;
  font-weight: 800;
  padding: 0.55rem 0.85rem;
  text-decoration: none;
}

.prototype-form-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.prototype-form-card {
  background: var(--color-canvas);
  border: 1px solid var(--color-rails);
  border-radius: var(--radius-card);
  padding: var(--space-4);
}

.prototype-form-card__intro {
  display: grid;
  gap: 0.7rem;
  margin-bottom: var(--space-3);
}

.prototype-form-card__intro p,
.form-note,
.field small {
  color: var(--color-muted);
}

.prototype-form {
  display: grid;
  gap: var(--space-3);
}

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

.field,
.field-check {
  display: grid;
  gap: 0.4rem;
  min-width: 0;
}

.field--wide,
.field-check {
  grid-column: 1 / -1;
}

.field span,
.field-check span {
  color: var(--color-graphite-deep);
  font-size: 0.9rem;
  font-weight: 760;
  line-height: 1.35;
}

.field input,
.field select,
.field textarea {
  background: var(--color-canvas);
  border: 1px solid var(--color-rails-strong);
  border-radius: var(--radius-card);
  color: var(--color-graphite);
  font: inherit;
  min-height: 46px;
  padding: 0.72rem 0.78rem;
  text-overflow: ellipsis;
  width: 100%;
}

.field textarea {
  resize: vertical;
}

.field-check {
  align-items: start;
  display: grid;
  gap: 0.65rem;
  grid-template-columns: auto minmax(0, 1fr);
}

.field-check input {
  margin-top: 0.28rem;
}

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

.path-detail-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.path-detail-grid--student {
  align-items: stretch;
}

.path-card {
  background: var(--color-canvas);
  border: 1px solid var(--color-rails);
  border-radius: var(--radius-card);
  display: grid;
  gap: 1rem;
  min-width: 0;
  overflow: hidden;
  padding: var(--space-4);
  position: relative;
}

.path-card::before {
  background: var(--color-graphite);
  border-radius: var(--radius-card) 0 0 var(--radius-card);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  top: 0;
  width: 5px;
}

.path-card--red::before {
  background: var(--color-brand-red);
}

.path-card--blue::before {
  background: var(--color-signal-azure);
}

.path-card--trust::before {
  background: var(--color-deep-trust-blue);
}

.path-card--graphite::before {
  background: var(--color-graphite);
}

.path-card h4 {
  color: var(--color-graphite-deep);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  line-height: 1.25;
  margin: var(--space-1) 0 0;
  text-transform: uppercase;
}

.detail-list {
  color: var(--color-muted);
  display: grid;
  gap: 0.55rem;
  line-height: 1.55;
  margin: 0;
  padding-left: 1.15rem;
}

.path-card .button {
  justify-self: start;
  margin-top: var(--space-1);
}

.info-strip {
  background: var(--color-canvas);
  border: 1px solid var(--color-rails);
  border-radius: var(--radius-card);
  display: grid;
  gap: var(--space-2);
  margin-top: var(--space-4);
  overflow: hidden;
  padding: var(--space-4);
  position: relative;
}

.info-strip::before {
  background: linear-gradient(90deg, var(--color-brand-red), var(--color-signal-azure), var(--color-deep-trust-blue));
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.prototype-form-card--single {
  margin-left: auto;
  margin-right: auto;
  max-width: 980px;
}

.footer-proof {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  max-width: 760px;
}

.footer-proof__item {
  border: 1px solid var(--color-rails);
  border-radius: 999px;
  color: var(--color-muted);
  font-size: 0.72rem;
  font-weight: 720;
  line-height: 1.2;
  padding: 0.34rem 0.58rem;
  text-decoration: none;
}

.footer-proof__item:hover {
  border-color: rgba(26, 50, 213, 0.35);
  color: var(--color-action-blue);
}

.field-check--optional span {
  color: var(--color-muted);
}

.form-note {
  font-size: 0.88rem;
  line-height: 1.55;
}

.final-cta--sculpture .sculpture-path {
  min-height: clamp(640px, 48vw, 820px);
}

.final-cta--sculpture .sculpture-path img {
  bottom: auto;
  height: calc(100% - clamp(1.5rem, 2.2vw, 2.5rem));
  top: clamp(0.75rem, 1.1vw, 1.25rem);
  width: auto;
}

@media (min-width: 1500px) {
  .hero--home-v02 h1 {
    font-size: clamp(4.6rem, 5vw, 6rem);
  }
}

@media (max-width: 1500px) {
  .profile-board__cards--core,
  .profile-board__cards--advisory {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .final-cta--sculpture .sculpture-path {
    min-height: clamp(600px, 58vw, 740px);
  }

  .final-cta--sculpture .sculpture-path img {
    height: calc(100% - 1.75rem);
    top: 0.875rem;
  }
}

@media (max-width: 1024px) {
  .brand__descriptor {
    display: block;
    font-size: 0.52rem;
    letter-spacing: 0.01em;
    line-height: 1.05;
  }

  .brand__text {
    gap: 0.12rem;
  }

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

@media (max-width: 768px) {
  .profile-board__group-head {
    align-items: start;
    display: grid;
  }

  .profile-board__cards--core,
  .profile-board__cards--advisory,
  .prototype-form-grid,
  .form-grid,
  .card-grid--two,
  .path-detail-grid,
  .profile-modal__grid {
    grid-template-columns: 1fr;
  }

  .footer-proof {
    align-items: flex-start;
    display: grid;
    gap: 0.5rem;
  }

  .profile-modal__content {
    padding-right: 0;
  }

  .profile-board-card {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .final-cta--sculpture .sculpture-path {
    min-height: clamp(560px, 96vw, 700px);
  }

  .final-cta--sculpture .sculpture-path img {
    bottom: auto;
    height: calc(100% - 1.5rem);
    top: 0.75rem;
  }
}

@media (max-width: 420px) {
  .brand__descriptor {
    font-size: 0.46rem;
    line-height: 1.02;
  }

  .brand__text {
    gap: 0.09rem;
  }

  .final-cta--sculpture .sculpture-path {
    min-height: 520px;
  }

  .final-cta--sculpture .sculpture-path img {
    bottom: auto;
    height: calc(100% - 1.25rem);
    top: 0.625rem;
  }

  .profile-board-section .section__inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .profile-board-card {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .profile-board-card__body {
    padding: var(--space-2);
  }
}

/* PC-003 final sculpture module integration. */
.final-cta--sculpture .section__inner {
  max-width: 1680px;
}

.final-cta--sculpture .sculpture-path-grid {
  background: linear-gradient(90deg, var(--color-brand-red) 0 50%, var(--color-signal-azure) 50% 100%);
  border: 0;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  margin-inline: auto;
  max-width: 1680px;
  overflow: hidden;
}

.final-cta--sculpture .sculpture-path {
  min-height: clamp(620px, 51vw, 860px);
}

.final-cta--sculpture .sculpture-path::before {
  display: none;
}

.final-cta--sculpture .sculpture-path--red {
  background: linear-gradient(135deg, var(--color-brand-red), #ff4351);
}

.final-cta--sculpture .sculpture-path--blue {
  background: linear-gradient(135deg, var(--color-signal-azure), #07b5ff);
}

.final-cta--sculpture .sculpture-path .card-label {
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
}

.final-cta--sculpture .sculpture-path picture {
  display: contents;
}

.final-cta--sculpture .sculpture-path img {
  bottom: auto;
  height: calc(100% - clamp(1.25rem, 2vw, 2rem));
  opacity: 0.98;
  top: clamp(0.625rem, 1vw, 1rem);
}

.final-cta--sculpture .sculpture-path__content h3 {
  font-size: clamp(2.1rem, 3.25vw, 3.72rem);
  hyphens: none;
  line-height: 0.98;
  overflow-wrap: normal;
  word-break: normal;
}

.final-cta--sculpture .sculpture-title-line {
  display: block;
  white-space: nowrap;
}

.final-cta--sculpture .sculpture-path__content p:not(.card-label) {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.45vw, 1.56rem);
  font-weight: 520;
  line-height: 1.55;
}

@media (max-width: 960px) {
  .final-cta--sculpture .sculpture-path-grid {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    gap: clamp(18px, 5vw, 28px);
    overflow: visible;
  }

  .final-cta--sculpture .sculpture-path {
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    min-height: clamp(532px, 148vw, 570px);
    overflow: hidden;
    padding: 0;
  }

  .final-cta--sculpture .sculpture-path img {
    height: 130%;
    max-width: none;
    top: -8%;
    width: auto;
  }

  .final-cta--sculpture .sculpture-path--red img {
    right: -8%;
  }

  .final-cta--sculpture .sculpture-path--blue img {
    left: -10%;
  }

  .final-cta--sculpture .sculpture-path::after {
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: 1;
  }

  .final-cta--sculpture .sculpture-path--red::after {
    background: linear-gradient(90deg, rgba(252, 10, 28, 0.94) 0%, rgba(252, 10, 28, 0.78) 52%, rgba(252, 10, 28, 0.16) 100%);
  }

  .final-cta--sculpture .sculpture-path--blue::after {
    background: linear-gradient(90deg, rgba(7, 136, 255, 0.16) 0%, rgba(7, 136, 255, 0.46) 24%, rgba(7, 136, 255, 0.9) 58%, rgba(7, 136, 255, 0.98) 100%);
  }

  .final-cta--sculpture .sculpture-path__content {
    align-self: start;
    gap: 1rem;
    margin: 0;
    max-width: none;
    padding: 1.75rem 1.25rem 1.375rem;
    width: 100%;
    z-index: 2;
  }

  .final-cta--sculpture .sculpture-path--red .sculpture-path__content,
  .final-cta--sculpture .sculpture-path--blue .sculpture-path__content {
    margin: 0;
  }

  .final-cta--sculpture .sculpture-path--blue .sculpture-path__content {
    margin-left: 8%;
    width: 92%;
  }

  .final-cta--sculpture .sculpture-path__content h3 {
    hyphens: none;
    overflow-wrap: normal;
    word-break: normal;
  }

  .final-cta--sculpture .sculpture-path__content h3 {
    font-size: clamp(1.95rem, 8vw, 2.22rem);
    line-height: 0.98;
  }

  .final-cta--sculpture .sculpture-path__content p:not(.card-label) {
    font-size: clamp(1rem, 4.3vw, 1.08rem);
    font-weight: 520;
    line-height: 1.35;
  }

  .final-cta--sculpture .sculpture-path__content .button {
    justify-self: start;
    width: min(100%, 255px);
  }
}

@media (max-width: 390px) {
  .final-cta--sculpture .sculpture-path {
    min-height: 552px;
  }

  .final-cta--sculpture .sculpture-path__content h3 {
    font-size: 1.92rem;
  }

  .final-cta--sculpture .sculpture-path__content p:not(.card-label) {
    font-size: 0.98rem;
  }
}

@media (max-width: 360px) {
  .final-cta--sculpture .sculpture-path {
    min-height: 532px;
  }

  .final-cta--sculpture .sculpture-path__content h3 {
    font-size: 1.78rem;
  }
}

@media (min-width: 961px) {
  .final-cta--sculpture .sculpture-path--red .sculpture-path__content {
    margin-right: clamp(8.5rem, 12vw, 16rem);
    max-width: min(31rem, 58%);
    z-index: 3;
  }

  .final-cta--sculpture .sculpture-path--blue .sculpture-path__content {
    margin-left: clamp(8.5rem, 12vw, 16rem);
    max-width: min(31rem, 58%);
    z-index: 3;
  }
}
