:root {
  --ink: #071113;
  --ink-deep: #030809;
  --ink-soft: #0d191a;
  --ink-card: #101c1d;
  --cream: #f2eadf;
  --cream-deep: #e7dccb;
  --paper: #fbf7ef;
  --text: #f5efe4;
  --text-soft: #d7cfc1;
  --text-muted: #aaa294;
  --charcoal: #15201f;
  --charcoal-soft: #53605b;
  --gold: #e3c27f;
  --gold-bright: #f2d79e;
  --jade: #77b79b;
  --jade-deep: #3d8068;
  --line-dark: rgba(255, 255, 255, 0.1);
  --line-light: rgba(18, 32, 30, 0.16);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
  --serif: "Songti SC", "Noto Serif CJK SC", "Source Han Serif SC", STSong, SimSun, ui-serif, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  --shell: min(1320px, calc(100% - 64px));
  --header-h: 88px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.is-dialog-open,
body.is-menu-open {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

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

[hidden] {
  display: none !important;
}

.no-js .direction-panels [hidden] {
  display: grid !important;
}

::selection {
  color: var(--ink-deep);
  background: var(--gold);
}

:focus-visible {
  outline: 3px solid var(--jade);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 16px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--gold-bright);
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

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

.section-dark {
  position: relative;
  color: var(--text);
  background: var(--ink);
}

.section-light {
  position: relative;
  color: var(--charcoal);
  background: var(--cream);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 36px;
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
}

.section-light .eyebrow {
  color: #8a6630;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(5, 12, 13, 0.9);
  border-color: var(--line-dark);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.18);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #17201c;
  background: linear-gradient(135deg, #f5daa1 4%, #d5b06a 52%, #86bba4 100%);
  border-radius: 16px;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 700;
  box-shadow: 0 12px 32px rgba(224, 192, 126, 0.18);
}

.brand-copy {
  display: grid;
  gap: 1px;
  line-height: 1.3;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.brand-copy small {
  color: var(--text-muted);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.2vw, 34px);
  margin-left: auto;
}

.primary-nav a {
  position: relative;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--gold);
  transition: right 0.25s ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  right: 0;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 14px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.25s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
  transform: translateY(3px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-of-type(3) {
  transform: translateY(-3px) rotate(-45deg);
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: 0.04em;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

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

.button--small {
  min-height: 44px;
  padding: 10px 19px;
  color: var(--ink-deep);
  background: linear-gradient(135deg, var(--gold-bright), #cfac67 58%, #89bba5);
  font-size: 12px;
  white-space: nowrap;
}

.button--primary {
  color: var(--ink-deep);
  background: linear-gradient(135deg, #f4dba6 0%, #d9b66f 55%, #83bba1 100%);
  box-shadow: 0 18px 45px rgba(202, 164, 91, 0.2);
}

.button--primary:hover {
  box-shadow: 0 22px 54px rgba(202, 164, 91, 0.3);
}

.button--ghost,
.button--outline {
  color: var(--text);
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.025);
}

.button--ghost:hover,
.button--outline:hover {
  border-color: rgba(227, 194, 127, 0.5);
  background: rgba(227, 194, 127, 0.07);
}

.button-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(7, 17, 19, 0.12);
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 170px 0 88px;
  overflow: clip;
  background:
    radial-gradient(circle at 14% 22%, rgba(76, 139, 111, 0.2), transparent 29%),
    radial-gradient(circle at 86% 15%, rgba(218, 181, 105, 0.16), transparent 25%),
    linear-gradient(180deg, #0a1716 0%, var(--ink) 65%, #081011 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(229, 199, 140, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229, 199, 140, 0.045) 1px, transparent 1px);
  background-size: 96px 96px;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 86%);
  mask-image: linear-gradient(to bottom, #000, transparent 86%);
}

.hero-glow {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  opacity: 0.13;
}

.hero-glow--one {
  top: 22%;
  left: -180px;
  background: var(--jade);
}

.hero-glow--two {
  right: -160px;
  bottom: 10%;
  background: var(--gold);
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(500px, 0.96fr);
  align-items: center;
  gap: clamp(54px, 7vw, 104px);
}

.hero-copy h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(58px, 6.4vw, 98px);
  font-weight: 600;
  line-height: 1.07;
  letter-spacing: -0.045em;
}

.hero-copy h1 span,
.hero-copy h1 em {
  display: block;
}

.hero-copy h1 em {
  color: var(--gold-bright);
  font-style: normal;
}

.hero-lead {
  max-width: 730px;
  margin: 32px 0 0;
  color: var(--text-soft);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.9;
}

.hero-positioning {
  margin: 12px 0 0;
  color: var(--jade);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-note {
  margin: 19px 0 0;
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 0.03em;
}

.matching-console {
  position: relative;
  min-height: 610px;
  padding: 20px;
  border: 1px solid rgba(227, 194, 127, 0.2);
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), transparent 40%),
    rgba(3, 10, 11, 0.7);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.matching-console::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 42%, rgba(119, 183, 155, 0.1), transparent 34%);
}

.console-head,
.console-foot {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}

.console-head {
  justify-content: space-between;
  padding: 4px 6px 17px;
  border-bottom: 1px solid var(--line-dark);
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.console-head span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.console-head i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--jade);
  box-shadow: 0 0 0 6px rgba(119, 183, 155, 0.1);
}

.console-head strong {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.network-stage {
  position: relative;
  height: 448px;
}

.network-stage svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.network-line {
  fill: none;
  stroke: rgba(227, 194, 127, 0.24);
  stroke-width: 1.2;
  stroke-dasharray: 6 8;
  animation: dash 14s linear infinite;
}

.network-line--two,
.network-line--four {
  stroke: rgba(119, 183, 155, 0.28);
  animation-direction: reverse;
}

.network-node {
  position: absolute;
  min-width: 92px;
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: 9px 14px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: var(--text-soft);
  background: rgba(15, 27, 28, 0.96);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.26);
  font-size: 12px;
  font-weight: 650;
  white-space: nowrap;
}

.network-node::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(227, 194, 127, 0.08);
}

.network-node--center {
  z-index: 2;
  top: 50%;
  left: 50%;
  min-width: 126px;
  min-height: 126px;
  align-content: center;
  gap: 1px;
  border-color: rgba(227, 194, 127, 0.42);
  border-radius: 50%;
  color: var(--ink-deep);
  background: linear-gradient(145deg, var(--gold-bright), #cda65e 60%, #83b9a0);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 18px rgba(227, 194, 127, 0.04), 0 28px 60px rgba(0, 0, 0, 0.3);
}

.network-node--center::before {
  inset: -8px;
  width: auto;
  height: auto;
  border: 1px solid rgba(227, 194, 127, 0.28);
  background: transparent;
  animation: pulse-ring 2.8s ease-out infinite;
}

.network-node--center b {
  font-family: var(--serif);
  font-size: 19px;
}

.network-node--center small {
  font-size: 10px;
  font-weight: 650;
}

.network-node--a { top: 8%; left: 2%; }
.network-node--b { top: 9%; right: 1%; }
.network-node--c { bottom: 11%; left: 1%; }
.network-node--d { right: 0; bottom: 12%; }
.network-node--e { bottom: 0; left: 50%; transform: translateX(-50%); }
.network-node--a::before,
.network-node--c::before { right: -3px; top: 50%; }
.network-node--b::before,
.network-node--d::before { left: -3px; top: 50%; background: var(--jade); }
.network-node--e::before { left: 50%; top: -3px; background: var(--jade); }

.console-foot {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--line-dark);
}

.console-foot span {
  display: grid;
  gap: 2px;
  color: var(--text-muted);
  font-size: 10px;
  text-align: center;
}

.console-foot b {
  color: var(--gold);
  font-size: 11px;
}

.hero-signals {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 72px;
}

.hero-signals article {
  min-height: 164px;
  padding: 23px;
  border: 1px solid var(--line-dark);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.025);
}

.hero-signals span {
  display: block;
  margin-bottom: 22px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 13px;
  font-style: italic;
}

.hero-signals strong {
  display: block;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
}

.hero-signals p {
  margin: 9px 0 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.7;
}

.editorial {
  padding: 150px 0 130px;
  overflow: hidden;
}

.editorial::before {
  content: "若友会";
  position: absolute;
  right: -0.08em;
  top: 0.2em;
  color: rgba(20, 32, 30, 0.035);
  font-family: var(--serif);
  font-size: clamp(150px, 22vw, 360px);
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.editorial-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(60px, 9vw, 150px);
  align-items: end;
}

.section-heading h2,
.method-intro h2,
.fit-head h2,
.principles-intro h2,
.final-card h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(45px, 5vw, 74px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.section-heading--dark h2 {
  color: var(--charcoal);
}

.editorial-copy {
  max-width: 620px;
  padding-bottom: 6px;
  color: var(--charcoal-soft);
  font-size: 17px;
}

.editorial-copy p {
  margin: 0;
}

.editorial-copy p + p {
  margin-top: 20px;
}

.editorial-copy .editorial-lead {
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.55;
}

.value-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 100px;
  border-top: 1px solid var(--line-light);
}

.value-row article {
  min-height: 270px;
  padding: 38px 42px 0 0;
}

.value-row article + article {
  padding-left: 42px;
  border-left: 1px solid var(--line-light);
}

.value-index {
  display: block;
  color: #9a7437;
  font-family: Georgia, serif;
  font-size: 22px;
  font-style: italic;
}

.value-row h3 {
  margin: 54px 0 12px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
}

.value-row p {
  margin: 0;
  color: var(--charcoal-soft);
}

.method {
  padding: 155px 0 110px;
  background:
    radial-gradient(circle at 14% 30%, rgba(119, 183, 155, 0.1), transparent 24%),
    var(--ink-deep);
}

.method-layout {
  display: grid;
  grid-template-columns: minmax(350px, 0.8fr) minmax(500px, 1.2fr);
  gap: clamp(70px, 10vw, 170px);
  align-items: start;
}

.method-intro {
  position: sticky;
  top: calc(var(--header-h) + 42px);
}

.method-intro > p:not(.eyebrow) {
  max-width: 540px;
  margin: 28px 0 0;
  color: var(--text-muted);
  font-size: 17px;
}

.text-action {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 38px;
  padding: 0 0 8px;
  color: var(--gold-bright);
  border: 0;
  border-bottom: 1px solid rgba(227, 194, 127, 0.45);
  background: transparent;
  cursor: pointer;
  font-weight: 700;
}

.method-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.method-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 30px;
  min-height: 184px;
  padding: 7px 0 54px;
  border-bottom: 1px solid var(--line-dark);
}

.method-steps li + li {
  padding-top: 46px;
}

.method-steps li > span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(227, 194, 127, 0.35);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 14px;
  font-style: italic;
}

.method-steps h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 2.4vw, 38px);
  font-weight: 600;
}

.method-steps p {
  max-width: 610px;
  margin: 13px 0 0;
  color: var(--text-muted);
  font-size: 15px;
}

.method-disclaimer {
  margin-top: 58px;
  padding-top: 24px;
  color: var(--text-muted);
  border-top: 1px solid var(--line-dark);
  font-size: 13px;
  text-align: right;
}

.directions {
  padding: 150px 0 130px;
  background: var(--paper);
}

.directions-head {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 90px;
  align-items: end;
}

.directions-head > p {
  max-width: 560px;
  margin: 0 0 8px;
  color: var(--charcoal-soft);
  font-size: 17px;
}

.direction-studio {
  display: grid;
  grid-template-columns: 310px 1fr;
  min-height: 550px;
  margin-top: 84px;
  border: 1px solid var(--line-light);
  border-radius: 28px;
  overflow: hidden;
  background: var(--cream);
  box-shadow: 0 28px 80px rgba(26, 36, 32, 0.08);
}

.direction-tabs {
  display: grid;
  align-content: start;
  padding: 20px;
  background: #172421;
}

.direction-tabs button {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 92px;
  padding: 18px 20px;
  color: var(--text-muted);
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: color 0.25s ease, background 0.25s ease;
}

.direction-tabs button span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-style: italic;
}

.direction-tabs button[aria-selected="true"] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.direction-tabs button[aria-selected="true"]::after {
  content: "→";
  margin-left: auto;
  color: var(--jade);
}

.direction-panels {
  display: grid;
}

.direction-panels article {
  min-height: 550px;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 46px;
  align-items: center;
  padding: 62px 70px;
}

.panel-number {
  align-self: start;
  color: rgba(21, 32, 31, 0.11);
  font-family: Georgia, serif;
  font-size: 128px;
  font-style: italic;
  line-height: 0.85;
}

.panel-kicker {
  margin: 0 0 18px;
  color: #8a6630;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.direction-panels h3 {
  max-width: 680px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 3.7vw, 54px);
  font-weight: 600;
  line-height: 1.28;
}

.direction-panels article > div:last-child > p:not(.panel-kicker) {
  max-width: 700px;
  margin: 24px 0 0;
  color: var(--charcoal-soft);
  font-size: 16px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.tag-list span {
  padding: 8px 14px;
  color: #45524e;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  font-size: 12px;
}

.direction-note {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-top: 26px;
  color: var(--charcoal-soft);
  font-size: 13px;
}

.direction-note span {
  color: #8a6630;
}

.direction-note p {
  margin: 0;
}

.fit {
  padding: 150px 0 140px;
  background:
    radial-gradient(circle at 85% 18%, rgba(227, 194, 127, 0.11), transparent 28%),
    #0b1717;
}

.fit-head {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 80px;
  align-items: end;
}

.fit-head .eyebrow,
.fit-head h2 {
  grid-column: 1;
}

.fit-head h2 {
  margin-top: -6px;
}

.fit-head > p:not(.eyebrow) {
  grid-column: 2;
  grid-row: 1 / span 2;
  max-width: 550px;
  margin: 0 0 8px;
  color: var(--text-muted);
  font-size: 17px;
}

.criteria-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 76px;
}

.criteria-card {
  min-height: 500px;
  padding: clamp(34px, 4vw, 58px);
  border: 1px solid var(--line-dark);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.025);
}

.criteria-card--yes {
  border-color: rgba(119, 183, 155, 0.3);
  background: linear-gradient(145deg, rgba(119, 183, 155, 0.1), rgba(255, 255, 255, 0.02));
}

.criteria-title {
  display: flex;
  align-items: center;
  gap: 17px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line-dark);
}

.criteria-title > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--ink-deep);
  border-radius: 16px;
  background: var(--gold);
  font-weight: 800;
}

.criteria-card--yes .criteria-title > span {
  background: var(--jade);
}

.criteria-title h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
}

.criteria-card ul {
  display: grid;
  gap: 17px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.criteria-card li {
  position: relative;
  padding-left: 24px;
  color: var(--text-soft);
}

.criteria-card li::before {
  content: "";
  position: absolute;
  top: 0.82em;
  left: 0;
  width: 10px;
  height: 1px;
  background: var(--gold);
}

.fit-closing {
  margin-top: 56px;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: clamp(24px, 2.7vw, 36px);
  text-align: center;
}

.principles {
  padding: 140px 0;
  border-top: 1px solid var(--line-dark);
  background: var(--ink-deep);
}

.principles-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(70px, 10vw, 160px);
}

.principles-intro {
  position: sticky;
  top: calc(var(--header-h) + 42px);
  align-self: start;
}

.principles-intro > p:not(.eyebrow) {
  max-width: 500px;
  margin: 27px 0 0;
  color: var(--text-muted);
}

.principles-list article {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 24px;
  padding: 31px 0;
  border-top: 1px solid var(--line-dark);
}

.principles-list article:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.principles-list article > span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 13px;
  font-style: italic;
}

.principles-list h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 600;
}

.principles-list p {
  margin: 9px 0 0;
  color: var(--text-muted);
  font-size: 14px;
}

.faq {
  padding: 150px 0 130px;
  background: var(--cream);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(70px, 9vw, 140px);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-h) + 42px);
}

.faq-intro > p:not(.eyebrow) {
  margin: 28px 0 0;
  color: var(--charcoal-soft);
}

.faq-intro a {
  color: #6f5226;
  border-bottom: 1px solid rgba(111, 82, 38, 0.35);
}

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

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

.faq-list summary {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 23px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 600;
}

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

.faq-list summary b {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--charcoal);
  border: 1px solid var(--line-light);
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 400;
  transition: transform 0.25s ease, background 0.25s ease;
}

.faq-list details[open] summary b {
  color: var(--paper);
  background: var(--charcoal);
  transform: rotate(45deg);
}

.faq-list details > p {
  max-width: 720px;
  margin: -4px 60px 28px 0;
  color: var(--charcoal-soft);
}

.faq-list details > p a {
  color: #6f5226;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.final-cta {
  padding: 110px 0;
  background: var(--ink);
}

.final-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: end;
  padding: clamp(46px, 6vw, 88px);
  border: 1px solid rgba(227, 194, 127, 0.25);
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 16%, rgba(227, 194, 127, 0.2), transparent 26%),
    radial-gradient(circle at 12% 90%, rgba(119, 183, 155, 0.16), transparent 25%),
    #0d1919;
  box-shadow: var(--shadow);
}

.final-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(227, 194, 127, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(227, 194, 127, 0.05) 1px, transparent 1px);
  background-size: 76px 76px;
  -webkit-mask-image: radial-gradient(circle at center, black, transparent 78%);
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

.final-card > * {
  position: relative;
}

.final-card h2 {
  font-size: clamp(40px, 4.4vw, 66px);
}

.final-card > div:first-child > p:not(.eyebrow) {
  max-width: 680px;
  margin: 25px 0 0;
  color: var(--text-muted);
}

.final-actions {
  display: grid;
  gap: 12px;
}

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

.final-actions small {
  margin-top: 8px;
  color: var(--text-muted);
  text-align: center;
}

.site-footer {
  padding: 70px 0 28px;
  color: var(--text-soft);
  background: var(--ink-deep);
  border-top: 1px solid var(--line-dark);
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 70px;
}

.brand--footer .brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
}

.footer-main > div:first-child > p {
  max-width: 480px;
  margin: 20px 0 0;
  color: var(--text-muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 80px;
}

.footer-links > div {
  min-width: 145px;
  display: grid;
  align-content: start;
  gap: 7px;
}

.footer-links strong {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links button {
  padding: 2px 0;
  color: var(--text-muted);
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  text-align: left;
}

.footer-links a:hover,
.footer-links button:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 58px;
  padding-top: 20px;
  color: #777c77;
  border-top: 1px solid var(--line-dark);
  font-size: 11px;
}

.mobile-apply {
  position: fixed;
  z-index: 90;
  right: 16px;
  bottom: max(16px, env(safe-area-inset-bottom));
  left: 16px;
  min-height: 56px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 22px;
  color: var(--ink-deep);
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-bright), #d3af68 60%, #83bba1);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  font-weight: 800;
  opacity: 0;
  transform: translateY(120%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-apply.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.apply-dialog {
  width: min(920px, calc(100% - 32px));
  max-height: min(900px, calc(100dvh - 32px));
  margin: auto;
  padding: 0;
  color: var(--text);
  border: 1px solid rgba(227, 194, 127, 0.24);
  border-radius: 30px;
  background: #0a1415;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.65);
  overflow: auto;
  overscroll-behavior: contain;
}

.apply-dialog::backdrop {
  background: rgba(0, 5, 6, 0.78);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.dialog-shell {
  padding: clamp(26px, 4vw, 48px);
}

.dialog-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-dark);
}

.dialog-kicker {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.dialog-head h2,
.application-success h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 600;
  line-height: 1.25;
}

.dialog-close {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  padding: 0;
  color: var(--text-soft);
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.step-indicator {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 28px 0 36px;
}

.step-indicator span {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #6f7772;
  font-size: 12px;
}

.step-indicator span::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  right: 12px;
  left: 34px;
  height: 1px;
  background: var(--line-dark);
}

.step-indicator span:last-child::after {
  display: none;
}

.step-indicator b {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #767e79;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: #0a1415;
  font-size: 10px;
}

.step-indicator span.is-active,
.step-indicator span.is-complete {
  color: var(--text-soft);
}

.step-indicator span.is-active b,
.step-indicator span.is-complete b {
  color: var(--ink-deep);
  border-color: var(--gold);
  background: var(--gold);
}

.form-status {
  min-height: 0;
  margin-bottom: 0;
  padding: 0;
  color: #ffb8a8;
  border-radius: 12px;
  font-size: 13px;
}

.form-status:not(:empty) {
  min-height: 44px;
  margin-bottom: 22px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 154, 134, 0.25);
  background: rgba(255, 120, 90, 0.07);
}

.form-step {
  margin: 0;
  padding: 0;
  border: 0;
}

.form-step legend {
  padding: 0;
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
}

.field-intro {
  margin: 8px 0 26px;
  color: var(--text-muted);
  font-size: 13px;
}

.intent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.intent-grid label {
  position: relative;
  cursor: pointer;
}

.intent-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.intent-grid label > span {
  min-height: 150px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.025);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.intent-grid label:hover > span {
  transform: translateY(-2px);
}

.intent-grid input:checked + span {
  border-color: rgba(119, 183, 155, 0.65);
  background: rgba(119, 183, 155, 0.09);
}

.intent-grid input:focus-visible + span {
  outline: 3px solid var(--jade);
  outline-offset: 4px;
}

.intent-grid b {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
}

.intent-grid small {
  color: var(--text-muted);
  font-size: 12px;
}

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

.form-grid--stack {
  grid-template-columns: 1fr;
}

.form-grid--wide {
  grid-column: 1 / -1;
}

.form-grid label {
  position: relative;
  display: grid;
  gap: 7px;
  color: var(--text-soft);
  font-size: 13px;
}

.form-grid label > span i {
  color: var(--gold);
  font-style: normal;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  color: var(--text);
  border: 1px solid var(--line-dark);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.035);
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form-grid input {
  height: 52px;
  padding: 0 15px;
}

.form-grid textarea {
  min-height: 112px;
  padding: 14px 15px;
  resize: vertical;
  line-height: 1.65;
}

.form-grid input:focus,
.form-grid textarea:focus {
  border-color: var(--jade);
  background: rgba(119, 183, 155, 0.055);
}

.form-grid input[aria-invalid="true"],
.form-grid textarea[aria-invalid="true"] {
  border-color: #ef927c;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: #65706a;
}

.form-grid label > small {
  position: absolute;
  right: 10px;
  bottom: 8px;
  color: #69736d;
  font-size: 10px;
}

.form-grid label > small b {
  font-weight: 500;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: 22px;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 12px;
}

.consent input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 3px;
  accent-color: var(--jade);
}

.consent a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 34px;
}

.button--back {
  color: var(--text-soft);
  border-color: var(--line-dark);
  background: transparent;
}

.form-fallback {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
  padding-top: 20px;
  color: #6f7772;
  border-top: 1px solid var(--line-dark);
  font-size: 11px;
}

.form-fallback a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.application-success {
  padding: 60px 0 26px;
  text-align: center;
}

.success-mark {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  color: var(--ink-deep);
  border-radius: 22px;
  background: linear-gradient(145deg, var(--gold), var(--jade));
  font-size: 28px;
  font-weight: 900;
}

.application-success > p:not(.dialog-kicker) {
  max-width: 600px;
  margin: 18px auto 0;
  color: var(--text-muted);
}

.application-id {
  width: fit-content;
  margin: 28px auto;
  padding: 10px 16px;
  color: var(--text-muted);
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  font-size: 12px;
}

.application-id strong {
  color: var(--gold);
  letter-spacing: 0.08em;
}

.noscript-note {
  position: fixed;
  z-index: 500;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 14px 18px;
  color: #301d0f;
  border-radius: 14px;
  background: #f5d9a5;
  text-align: center;
}

.noscript-note a {
  text-decoration: underline;
}

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

.legal-header {
  justify-content: space-between;
}

.legal-main {
  min-height: 80vh;
  padding: 150px 0 110px;
  color: var(--charcoal);
  background: var(--cream);
}

.legal-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 820px);
  justify-content: space-between;
  gap: clamp(60px, 10vw, 150px);
  align-items: start;
}

.legal-aside {
  position: sticky;
  top: calc(var(--header-h) + 42px);
}

.legal-aside h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 600;
  line-height: 1.15;
}

.legal-aside > p:not(.eyebrow) {
  margin: 16px 0 30px;
  color: var(--charcoal-soft);
  font-size: 12px;
}

.legal-aside nav {
  display: grid;
  border-top: 1px solid var(--line-light);
}

.legal-aside nav a {
  padding: 11px 0;
  color: var(--charcoal-soft);
  border-bottom: 1px solid var(--line-light);
  font-size: 13px;
}

.legal-aside nav a:hover {
  color: #785a2c;
}

.legal-content section {
  padding: 0 0 48px;
  scroll-margin-top: calc(var(--header-h) + 28px);
}

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

.legal-content h2 {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 600;
}

.legal-content p,
.legal-content li {
  color: var(--charcoal-soft);
}

.legal-content p {
  margin: 0;
}

.legal-content p + p,
.legal-content ul + p,
.legal-content p + ul {
  margin-top: 16px;
}

.legal-content ul {
  display: grid;
  gap: 9px;
  margin-bottom: 0;
  padding-left: 1.25em;
}

.legal-content strong {
  color: var(--charcoal);
}

.legal-email {
  color: #715329;
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  border-bottom: 1px solid rgba(113, 83, 41, 0.35);
}

.legal-footer {
  padding-top: 24px;
}

.error-page {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 48px 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(119, 183, 155, 0.18), transparent 30%),
    radial-gradient(circle at 80% 18%, rgba(227, 194, 127, 0.15), transparent 28%),
    var(--ink);
}

.error-grid {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(227, 194, 127, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(227, 194, 127, 0.045) 1px, transparent 1px);
  background-size: 82px 82px;
  -webkit-mask-image: radial-gradient(circle at center, black, transparent 75%);
  mask-image: radial-gradient(circle at center, black, transparent 75%);
}

.error-content {
  position: relative;
  width: min(720px, 100%);
  text-align: center;
}

.error-content .brand {
  justify-content: center;
}

.error-code {
  margin: 70px 0 0;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 20px;
  font-style: italic;
  letter-spacing: 0.2em;
}

.error-content h1 {
  margin: 12px 0 0;
  font-family: var(--serif);
  font-size: clamp(46px, 8vw, 82px);
  font-weight: 600;
  line-height: 1.15;
}

.error-content > p:not(.error-code) {
  max-width: 560px;
  margin: 24px auto 32px;
  color: var(--text-muted);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.js [data-reveal][data-delay="1"] { transition-delay: 0.08s; }
.js [data-reveal][data-delay="2"] { transition-delay: 0.16s; }
.js [data-reveal][data-delay="3"] { transition-delay: 0.24s; }
.js [data-reveal][data-delay="4"] { transition-delay: 0.32s; }

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes dash {
  to { stroke-dashoffset: -140; }
}

@keyframes pulse-ring {
  0% { opacity: 0.8; transform: scale(0.85); }
  80%, 100% { opacity: 0; transform: scale(1.22); }
}

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

  .primary-nav {
    gap: 17px;
  }

  .primary-nav a {
    font-size: 12px;
  }

  .hero-layout {
    grid-template-columns: 1fr 0.86fr;
    gap: 46px;
  }

  .matching-console {
    min-height: 560px;
  }

  .network-stage {
    height: 400px;
  }

  .direction-panels article {
    padding: 52px 48px;
  }

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

  .final-actions {
    max-width: 520px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-h: 78px;
  }

  .header-inner {
    gap: 14px;
  }

  .primary-nav {
    position: fixed;
    top: var(--header-h);
    bottom: 0;
    right: 0;
    left: 0;
    display: grid;
    align-content: start;
    align-items: stretch;
    justify-content: stretch;
    gap: 0;
    margin-left: 0;
    padding: 24px max(24px, calc((100% - var(--shell)) / 2)) 40px;
    overflow-y: auto;
    background: #050c0d;
    border-bottom: 1px solid var(--line-dark);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .primary-nav a {
    padding: 16px 0;
    font-size: 17px;
    border-bottom: 1px solid var(--line-dark);
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .header-apply {
    margin-left: 0;
  }

  .hero {
    padding-top: 140px;
  }

  .hero-layout,
  .editorial-layout,
  .method-layout,
  .directions-head,
  .fit-head,
  .principles-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .matching-console {
    width: min(680px, 100%);
    margin-top: 20px;
  }

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

  .editorial-layout {
    gap: 40px;
  }

  .value-row {
    margin-top: 70px;
  }

  .method-layout,
  .principles-layout,
  .faq-layout {
    gap: 60px;
  }

  .method-intro,
  .principles-intro,
  .faq-intro {
    position: static;
  }

  .fit-head {
    gap: 26px;
  }

  .fit-head > p:not(.eyebrow) {
    grid-column: 1;
    grid-row: auto;
  }

  .direction-studio {
    grid-template-columns: 240px 1fr;
  }

  .direction-panels article {
    grid-template-columns: 90px 1fr;
    gap: 24px;
  }

  .panel-number {
    font-size: 84px;
  }

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

  .legal-aside {
    position: static;
  }

  .legal-aside nav {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 24px;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: calc(100% - 32px);
    --header-h: 76px;
  }

  body {
    padding-bottom: calc(82px + env(safe-area-inset-bottom));
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 20px;
  }

  .brand-copy strong {
    font-size: 14px;
  }

  .brand-copy small {
    max-width: 160px;
    overflow: hidden;
    font-size: 7px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-apply {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 118px 0 70px;
  }

  .hero-grid {
    background-size: 64px 64px;
  }

  .hero-copy .eyebrow {
    margin-bottom: 20px;
  }

  .hero-copy h1 {
    font-size: clamp(45px, 13vw, 62px);
    line-height: 1.11;
  }

  .hero-lead {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.82;
  }

  .hero-positioning {
    font-size: 14px;
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-note {
    text-align: center;
  }

  .matching-console {
    min-height: 505px;
    margin-top: 16px;
    padding: 16px;
    border-radius: 24px;
  }

  .network-stage {
    height: 365px;
  }

  .network-node {
    min-width: 76px;
    min-height: 36px;
    padding: 7px 10px;
    font-size: 10px;
  }

  .network-node--center {
    min-width: 108px;
    min-height: 108px;
  }

  .network-node--center b {
    font-size: 17px;
  }

  .console-foot {
    gap: 2px;
  }

  .console-foot span {
    font-size: 8px;
  }

  .hero-signals {
    gap: 9px;
    margin-top: 42px;
  }

  .hero-signals article {
    min-height: 150px;
    padding: 18px;
  }

  .hero-signals span {
    margin-bottom: 15px;
  }

  .hero-signals strong {
    font-size: 18px;
  }

  .hero-signals p {
    font-size: 12px;
  }

  .editorial,
  .directions,
  .fit,
  .principles,
  .faq {
    padding: 96px 0;
  }

  .method {
    padding: 96px 0 76px;
  }

  .section-heading h2,
  .method-intro h2,
  .fit-head h2,
  .principles-intro h2,
  .final-card h2 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .editorial-copy .editorial-lead {
    font-size: 24px;
  }

  .value-row {
    grid-template-columns: 1fr;
    margin-top: 56px;
  }

  .value-row article {
    min-height: auto;
    padding: 28px 0 32px;
    border-bottom: 1px solid var(--line-light);
  }

  .value-row article + article {
    padding-left: 0;
    border-left: 0;
  }

  .value-row h3 {
    margin-top: 22px;
    font-size: 26px;
  }

  .method-layout,
  .principles-layout,
  .faq-layout {
    gap: 46px;
  }

  .method-steps li {
    grid-template-columns: 58px 1fr;
    gap: 18px;
    min-height: 0;
    padding-bottom: 38px;
  }

  .method-steps li + li {
    padding-top: 34px;
  }

  .method-steps li > span {
    width: 48px;
    height: 48px;
  }

  .method-steps h3 {
    font-size: 27px;
  }

  .method-disclaimer {
    text-align: left;
  }

  .direction-studio {
    grid-template-columns: 1fr;
    min-height: 0;
    margin-top: 52px;
  }

  .direction-tabs {
    grid-template-columns: repeat(3, 1fr);
    padding: 8px;
  }

  .direction-tabs button {
    min-height: 78px;
    display: grid;
    justify-items: center;
    gap: 2px;
    padding: 10px 4px;
    border-right: 1px solid var(--line-dark);
    border-bottom: 0;
    font-size: 11px;
    text-align: center;
  }

  .direction-tabs button:last-child {
    border-right: 0;
  }

  .direction-tabs button[aria-selected="true"]::after {
    display: none;
  }

  .direction-panels article {
    min-height: 540px;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 24px;
    padding: 42px 26px;
  }

  .panel-number {
    font-size: 74px;
  }

  .direction-panels h3 {
    font-size: 35px;
  }

  .criteria-grid {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

  .criteria-card {
    min-height: 0;
    padding: 28px 22px;
  }

  .criteria-title h3 {
    font-size: 26px;
  }

  .fit-closing {
    font-size: 24px;
  }

  .principles-list article {
    grid-template-columns: 52px 1fr;
    gap: 15px;
  }

  .faq-list summary {
    min-height: 82px;
    font-size: 20px;
  }

  .faq-list details > p {
    margin-right: 0;
  }

  .final-cta {
    padding: 70px 0;
  }

  .final-card {
    gap: 38px;
    padding: 34px 22px;
    border-radius: 26px;
  }

  .footer-main {
    display: grid;
    gap: 48px;
  }

  .footer-links {
    gap: 40px;
  }

  .footer-bottom {
    display: grid;
    gap: 8px;
  }

  .mobile-apply {
    display: flex;
  }

  .apply-dialog {
    width: 100%;
    max-width: none;
    max-height: calc(100dvh - 12px);
    margin: 12px 0 0;
    border-radius: 26px 26px 0 0;
  }

  .dialog-shell {
    padding: 24px 18px calc(28px + env(safe-area-inset-bottom));
  }

  .step-indicator span {
    display: grid;
    justify-items: start;
    gap: 4px;
    font-size: 9px;
  }

  .step-indicator span::after {
    top: 14px;
  }

  .intent-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .intent-grid label > span {
    min-height: 94px;
  }

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

  .form-actions {
    display: grid;
    grid-template-columns: auto 1fr;
  }

  .form-actions .button--primary:only-child {
    grid-column: 1 / -1;
  }

  .form-fallback {
    flex-wrap: wrap;
  }

  .legal-main {
    padding: 118px 0 80px;
  }

  .legal-header .button {
    min-height: 42px;
    padding-inline: 15px;
  }

  .legal-header .button span {
    display: none;
  }

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

@media (max-width: 420px) {
  .hero-copy h1 {
    font-size: 43px;
  }

  .hero-signals {
    grid-template-columns: 1fr;
  }

  .hero-signals article {
    min-height: 130px;
  }

  .network-node--a { left: -4px; }
  .network-node--b { right: -4px; }
  .network-node--c { left: -4px; }
  .network-node--d { right: -4px; }

  .direction-tabs button {
    font-size: 10px;
  }

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

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

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

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

@media print {
  .site-header,
  .mobile-apply,
  .hero-actions,
  .final-actions,
  .apply-dialog {
    display: none !important;
  }

  body,
  .section-dark,
  .section-light {
    color: #111;
    background: #fff;
  }
}
