:root {
  --ink: #182d2d;
  --ink-soft: #314747;
  --teal: #2f7476;
  --ice: #d8e9e9;
  --mist: #edf3f1;
  --paper: #f8faf8;
  --white: #ffffff;
  --signal: #d85a48;
  --line: #bccbc6;
  --muted: #617171;
  --mono: "DM Mono", monospace;
  --sans: "Noto Sans JP", sans-serif;
  --serif: "Noto Serif JP", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.8;
}

button,
input,
select {
  font: inherit;
}

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

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

button {
  cursor: pointer;
}

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

h1,
h2,
h3,
p,
ol,
ul,
dl,
blockquote,
figure {
  margin: 0;
}

.content-width {
  width: min(100% - 64px, 1240px);
  margin: 0 auto;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--ink);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 74px;
  padding: 12px 32px;
  background: rgba(248, 250, 248, 0.97);
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: inline-grid;
  justify-self: start;
  width: max-content;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  line-height: 0.92;
}

.wordmark small {
  margin-top: 6px;
  color: var(--signal);
  font-size: 8px;
  line-height: 1;
}

.desktop-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
}

.desktop-nav a,
.footer-links a {
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.footer-links a:hover {
  color: var(--signal);
}

.header-cta {
  display: inline-flex;
  justify-self: end;
  gap: 8px;
  align-items: center;
  color: var(--signal);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
}

.header-cta svg,
.text-link svg,
.button svg {
  width: 17px;
  height: 17px;
  stroke-width: 1.7;
}

.nav-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 570px;
  height: calc(100svh - 88px);
  max-height: 720px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-media,
.hero-tint {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: center 58%;
}

.hero-tint {
  background: rgba(15, 38, 38, 0.56);
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  padding: 72px 0 112px;
}

.eyebrow,
.section-kicker,
.voice-role,
.salary-note span,
.fit-quote span,
.result-caption,
.diagnostic-topline,
.footer-bottom {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}

.eyebrow--light,
.section-kicker--light {
  color: var(--ice);
}

.hero h1,
.statement h2,
.salary-intro h2,
.expectation h2,
.voices-heading h2,
.fit-intro h2,
.interview-copy h2 {
  margin-top: 20px;
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.32;
}

.hero h1 {
  max-width: 800px;
  font-size: 64px;
}

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

.hero-copy {
  max-width: 580px;
  margin-top: 24px;
  font-size: 16px;
  line-height: 2;
}

.hero-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button--signal {
  background: var(--signal);
  color: var(--white);
}

.button--signal:hover {
  background: #bc4435;
}

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

.button--dark:hover {
  background: var(--teal);
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  width: fit-content;
  color: var(--teal);
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
  transition: color 160ms ease;
}

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

.text-link--light {
  color: var(--white);
}

.hero-footer {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, auto) 1fr;
  gap: 18px;
  align-items: center;
  min-height: 62px;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--ice);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
}

.hero-caption {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 76px;
  left: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
  text-align: right;
}

.hero-footer a {
  display: inline-flex;
  gap: 8px;
  justify-self: end;
  align-items: center;
  color: var(--white);
}

.hero-footer svg {
  width: 15px;
}

.statement {
  padding: 126px 0 0;
}

.section-kicker {
  display: flex;
  gap: 14px;
  align-items: center;
  color: var(--teal);
}

.section-kicker span:first-child {
  color: var(--signal);
}

.statement-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 80px;
  padding: 40px 0 76px;
}

.statement h2,
.salary-intro h2,
.expectation h2,
.voices-heading h2,
.fit-intro h2,
.interview-copy h2 {
  font-size: 45px;
}

.statement-body {
  padding-top: 12px;
}

.statement-body .lead {
  margin-bottom: 20px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.8;
}

.statement-body > p:not(.lead) {
  color: var(--ink-soft);
}

.statement-body .statement-signature {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--teal);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.75;
}

.statement-body .text-link {
  margin-top: 26px;
}

.operating-model {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.operating-model li {
  min-height: 250px;
  padding: 24px 24px 26px 0;
  border-right: 1px solid var(--line);
}

.operating-model li + li {
  padding-left: 24px;
}

.operating-model li:last-child {
  border-right: 0;
}

.operating-model > li > span,
.expectation-list article > span,
.meeting-steps span {
  color: var(--signal);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
}

.operating-model h3 {
  margin-top: 46px;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
}

.operating-model p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.salary-section {
  margin-top: 130px;
  padding: 110px 0;
  background: var(--ink);
  color: var(--white);
}

.salary-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(440px, 0.96fr);
  gap: 80px;
  align-items: start;
}

.salary-intro > p {
  max-width: 540px;
  margin-top: 24px;
  color: var(--ice);
}

.salary-title-line {
  display: block;
  white-space: nowrap;
}

.principle-list {
  display: grid;
  gap: 11px;
  margin-top: 34px;
  padding: 0;
  list-style: none;
  color: var(--white);
  font-size: 14px;
}

.principle-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.principle-list svg {
  flex: 0 0 auto;
  width: 18px;
  margin-top: 5px;
  color: var(--signal);
  stroke-width: 2;
}

.salary-note {
  max-width: 570px;
  margin-top: 42px;
  padding-top: 16px;
  border-top: 1px solid rgba(216, 233, 233, 0.38);
}

.salary-note span {
  color: var(--signal);
}

.salary-note p {
  margin-top: 8px;
  color: var(--ice);
  font-size: 13px;
  line-height: 1.7;
}

.calculator {
  overflow: hidden;
  background: var(--white);
  border-radius: 6px;
  color: var(--ink);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

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

.calculator-header .eyebrow {
  color: var(--teal);
}

.calculator-header h3 {
  margin-top: 8px;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.5;
}

.calculator-header > svg {
  width: 30px;
  height: 30px;
  color: var(--signal);
  stroke-width: 1.5;
}

.calculator-form {
  display: grid;
  gap: 18px;
  padding: 28px 34px;
}

.calculator fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.calculator legend,
.calculator label {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
}

.calculator legend {
  margin-bottom: 8px;
}

.calculator label {
  display: grid;
  gap: 8px;
}

.calculator select {
  width: 100%;
  min-height: 47px;
  padding: 0 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  font-size: 14px;
  outline: none;
}

.calculator select:focus,
.segmented-control button:focus-visible,
.toggle-row:focus-within {
  outline: 2px solid var(--signal);
  outline-offset: 2px;
}

.segmented-control {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 3px;
  background: var(--mist);
  border-radius: 4px;
}

.segmented-control button {
  min-height: 42px;
  padding: 8px;
  background: transparent;
  border: 0;
  border-radius: 3px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.segmented-control button.is-active {
  background: var(--ink);
  color: var(--white);
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.toggle-row {
  position: relative;
  display: flex !important;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  min-height: 66px;
  padding: 12px 14px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.toggle-row strong,
.toggle-row small {
  display: block;
}

.toggle-row strong {
  color: var(--ink);
  font-size: 14px;
}

.toggle-row small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.toggle-row input {
  position: absolute;
  opacity: 0;
}

.toggle-ui {
  position: relative;
  flex: 0 0 auto;
  width: 42px;
  height: 24px;
  background: #9caeaa;
  border-radius: 12px;
  transition: background-color 160ms ease;
}

.toggle-ui::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: var(--white);
  border-radius: 50%;
  content: "";
  transition: transform 160ms ease;
}

.toggle-row input:checked + .toggle-ui {
  background: var(--teal);
}

.toggle-row input:checked + .toggle-ui::after {
  transform: translateX(18px);
}

.calculator-result {
  padding: 26px 34px 30px;
  background: var(--ice);
}

.result-caption {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--teal);
}

.result-caption span:last-child {
  color: var(--muted);
}

.result-total {
  margin-top: 8px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 47px;
  font-weight: 600;
  line-height: 1.15;
}

.result-total small {
  margin-left: 5px;
  font-family: var(--sans);
  font-size: 17px;
}

.calculator-result dl {
  display: grid;
  gap: 7px;
  margin-top: 22px;
}

.calculator-result dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 7px;
  border-top: 1px solid rgba(47, 116, 118, 0.25);
  font-size: 12px;
}

.calculator-result dt {
  color: var(--ink-soft);
}

.calculator-result dd {
  margin: 0;
  color: var(--ink);
  font-family: var(--mono);
  font-weight: 700;
}

.result-annual {
  margin-top: 20px;
  color: var(--teal);
  font-size: 13px;
}

.result-annual strong {
  margin-left: 7px;
  color: var(--ink);
  font-family: var(--mono);
}

.result-annual span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.calculator-disclaimer {
  padding: 14px 34px 22px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.7;
}

.expectation {
  padding: 130px 0;
}

.expectation-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 120px;
  margin-top: 40px;
}

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

.expectation-list article {
  display: grid;
  grid-template-columns: 70px 1fr;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}

.expectation-list h3 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
}

.expectation-list p {
  grid-column: 2;
  margin-top: 9px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.stage-section {
  padding: 124px 0;
  background: var(--ink);
  color: var(--white);
}

.stage-grid {
  display: grid;
  grid-template-columns: minmax(560px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(52px, 5vw, 72px);
}

.stage-section h2 {
  margin-top: 38px;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 600;
  line-height: 1.45;
}

.stage-title-line {
  display: block;
  white-space: nowrap;
}

.stage-title-line > span {
  white-space: nowrap;
}

.stage-body {
  max-width: 600px;
  padding-top: 8px;
}

.stage-body > p {
  margin-top: 16px;
  color: var(--ice);
  font-size: 14px;
}

.stage-body > p:first-child {
  margin-top: 0;
}

.stage-body .lead {
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
}

.stage-principles {
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.stage-principles > div {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.stage-principles dt {
  color: var(--signal);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
}

.stage-principles dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
}

.voices-section {
  padding: 110px 0;
  background: var(--mist);
}

.voices-heading {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: start;
}

.voices-heading h2 {
  margin-top: 0;
}

.voices-heading p {
  max-width: 520px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.voice-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.voice-image {
  display: flex;
  align-items: flex-end;
  min-height: 245px;
  margin: 0;
  padding: 20px;
  color: var(--white);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
}

.voice-image--member {
  display: block;
  min-height: 0;
  height: 245px;
  padding: 0;
  overflow: hidden;
  background: #e7e6e1;
}

.voice-image--member img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.voice-image--pending {
  position: relative;
  display: grid;
  min-height: 0;
  height: 245px;
  padding: 0;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #3c6471;
}

.voice-image__silhouette {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  filter: saturate(0.45) contrast(0.86);
}

.voice-image--pending span {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.96);
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.photo-waiting--one {
  background: #416b70;
}

.photo-waiting--two {
  background: #7a6357;
}

.photo-waiting--three {
  background: #3c6471;
}

.voice-card__body {
  padding: 23px 22px 26px;
}

.voice-role {
  color: var(--signal);
}

.voice-card blockquote {
  margin-top: 18px;
  min-height: 72px;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.65;
}

.voice-caption {
  margin-top: 16px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.voice-caption strong,
.voice-caption span {
  display: block;
}

.voice-caption strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.voice-prep-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 11px;
}

.fit-section {
  padding: 112px 0;
  background: var(--teal);
  color: var(--white);
}

.fit-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 90px;
  align-items: start;
}

.fit-intro > p {
  max-width: 530px;
  margin-top: 24px;
  color: var(--ice);
}

.fit-quote {
  max-width: 490px;
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
}

.fit-quote span {
  color: var(--ink);
}

.fit-quote p {
  margin-top: 8px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.8;
}

.diagnostic {
  min-height: 464px;
  padding: 30px 34px 34px;
  background: var(--paper);
  border-radius: 6px;
  color: var(--ink);
}

.diagnostic-topline {
  display: flex;
  justify-content: space-between;
  color: var(--teal);
}

.diagnostic-topline span:last-child {
  color: var(--signal);
}

.progress-track {
  width: 100%;
  height: 4px;
  margin: 16px 0 34px;
  overflow: hidden;
  background: var(--line);
}

.progress-track span {
  display: block;
  width: 12.5%;
  height: 100%;
  background: var(--signal);
  transition: width 180ms ease;
}

.diagnostic-question {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.6;
}

.diagnostic-help {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.answer-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.answer-option {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 66px;
  padding: 12px 15px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.answer-option:hover,
.answer-option:focus-visible {
  background: var(--ice);
  border-color: var(--teal);
  outline: none;
}

.answer-option span {
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  background: var(--ink);
  border-radius: 50%;
  color: var(--white);
  font-family: var(--mono);
  font-size: 10px;
}

.diagnostic-textarea-label {
  display: block;
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
}

.diagnostic-textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 12px 14px;
  resize: vertical;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.75;
}

.diagnostic-textarea:focus-visible {
  border-color: var(--teal);
  outline: 2px solid rgba(47, 116, 118, 0.2);
  outline-offset: 2px;
}

.diagnostic-error {
  margin-top: 8px;
  color: #b73e2d;
  font-size: 12px;
  font-weight: 700;
}

.diagnostic-submit {
  margin-top: 18px;
}

.diagnostic-result {
  padding-top: 8px;
}

.diagnostic-result .eyebrow {
  color: var(--signal);
}

.diagnostic-result h3 {
  margin-top: 12px;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 600;
  line-height: 1.5;
}

.diagnostic-result p {
  max-width: 560px;
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 14px;
}

.diagnostic-result .button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 28px;
}

.plain-button {
  padding: 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.interview-section {
  padding: 126px 0 118px;
  background: var(--ice);
}

.interview-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 75px 95px;
}

.interview-copy > p:last-child {
  max-width: 590px;
  margin-top: 22px;
  color: var(--ink-soft);
}

.meeting-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  border-bottom: 1px solid var(--teal);
}

.meeting-steps div {
  min-height: 120px;
  padding: 0 14px 16px 0;
}

.meeting-steps div + div {
  padding-left: 14px;
  border-left: 1px solid rgba(47, 116, 118, 0.35);
}

.meeting-steps p {
  margin-top: 12px;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
}

.interview-actions {
  display: flex;
  gap: 25px;
  grid-column: 1 / -1;
  align-items: center;
  padding-top: 8px;
}

.site-footer {
  padding: 44px 0 18px;
  background: var(--ink);
  color: var(--white);
}

.wordmark--footer {
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr auto;
  gap: 38px;
  align-items: start;
}

.footer-contact,
.footer-links {
  color: var(--ice);
  font-size: 12px;
  line-height: 1.8;
}

.footer-contact a {
  display: inline-block;
  margin-top: 5px;
  color: var(--white);
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 700;
}

.footer-links {
  display: grid;
  gap: 7px;
  justify-items: end;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 38px;
  padding-top: 14px;
  border-top: 1px solid rgba(216, 233, 233, 0.25);
  color: var(--line);
  font-size: 9px;
}

@media (max-width: 1040px) {
  .salary-layout,
  .fit-layout {
    gap: 50px;
  }

  .statement-grid,
  .expectation-grid,
  .stage-grid,
  .voices-heading,
  .interview-layout {
    gap: 54px;
  }

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

@media (max-width: 820px) {
  .content-width {
    width: min(100% - 40px, 640px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 64px;
    padding: 10px 20px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 4px;
    color: var(--ink);
  }

  .nav-toggle svg {
    width: 20px;
  }

  .mobile-nav {
    position: fixed;
    top: 64px;
    right: 0;
    left: 0;
    z-index: 25;
    padding: 16px 20px 20px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .mobile-nav:not([hidden]) {
    display: grid;
    gap: 8px;
  }

  .mobile-nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
    font-weight: 700;
  }

  .hero {
    min-height: 570px;
    height: calc(100svh - 86px);
  }

  .hero-content {
    padding: 56px 0 98px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .statement-grid,
  .salary-layout,
  .expectation-grid,
  .stage-grid,
  .voices-heading,
  .fit-layout,
  .interview-layout {
    grid-template-columns: 1fr;
  }

  .statement-grid,
  .expectation-grid,
  .voices-heading,
  .fit-layout,
  .interview-layout {
    gap: 30px;
  }

  .statement {
    padding-top: 90px;
  }

  .operating-model {
    grid-template-columns: 1fr 1fr;
  }

  .operating-model li:nth-child(2) {
    border-right: 0;
  }

  .operating-model li:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .operating-model li:nth-child(3) {
    padding-left: 0;
  }

  .salary-section,
  .voices-section,
  .fit-section {
    margin-top: 90px;
    padding: 86px 0;
  }

  .expectation,
  .stage-section,
  .interview-section {
    padding: 92px 0;
  }

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

  .voice-image {
    min-height: 220px;
  }

  .voice-image--member {
    height: 220px;
  }

  .voice-image--pending {
    height: 220px;
  }

  .expectation-list article {
    grid-template-columns: 54px 1fr;
  }

  .interview-actions {
    grid-column: auto;
  }

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

  .footer-links {
    justify-items: start;
  }
}

@media (max-width: 560px) {
  .content-width {
    width: min(100% - 32px, 520px);
  }

  .hero h1 {
    font-size: 41px;
  }

  .hero-copy {
    max-width: 340px;
    font-size: 14px;
    line-height: 1.85;
  }

  .hero-actions,
  .interview-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-footer {
    grid-template-columns: 1fr 1fr;
    gap: 4px 16px;
    min-height: 90px;
    padding: 12px 0;
    font-size: 9px;
  }

  .hero-caption {
    bottom: 108px;
    font-size: 9px;
  }

  .hero-footer a {
    justify-self: start;
  }

  .stage-title-line {
    display: flex;
    flex-wrap: wrap;
    white-space: normal;
  }

  .statement h2,
  .salary-intro h2,
  .expectation h2,
  .stage-section h2,
  .voices-heading h2,
  .fit-intro h2,
  .interview-copy h2 {
    font-size: 34px;
  }

  .statement-grid {
    padding: 30px 0 58px;
  }

  .stage-principles > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .statement-body .lead {
    font-size: 17px;
  }

  .operating-model {
    grid-template-columns: 1fr;
  }

  .operating-model li,
  .operating-model li + li,
  .operating-model li:nth-child(3) {
    min-height: auto;
    padding: 20px 0 24px;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .operating-model li:first-child {
    border-top: 0;
  }

  .operating-model h3 {
    margin-top: 18px;
  }

  .salary-layout {
    gap: 40px;
  }

  .calculator-header,
  .calculator-form,
  .calculator-result {
    padding-right: 20px;
    padding-left: 20px;
  }

  .calculator-disclaimer {
    padding-right: 20px;
    padding-left: 20px;
  }

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

  .result-caption {
    display: grid;
    gap: 4px;
  }

  .result-total {
    font-size: 39px;
  }

  .diagnostic {
    min-height: 475px;
    padding: 24px 20px;
  }

  .diagnostic-question {
    font-size: 21px;
  }

  .answer-option {
    min-height: 74px;
    font-size: 13px;
  }

  .meeting-steps {
    grid-template-columns: 1fr;
  }

  .meeting-steps div,
  .meeting-steps div + div {
    min-height: auto;
    padding: 13px 0;
    border-left: 0;
    border-top: 1px solid rgba(47, 116, 118, 0.35);
  }

  .meeting-steps div:first-child {
    border-top: 0;
  }

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

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

@media (max-width: 390px) {
  .stage-section h2 {
    font-size: 31px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
