:root {
  --graphite: #0d0f10;
  --graphite-soft: #15191b;
  --blue-black: #142028;
  --stone: #e7e2d8;
  --stone-deep: #d4cec1;
  --paper: #f4f1ea;
  --white: #f8f6f1;
  --bronze: #ae9270;
  --bronze-light: #d3b994;
  --glass: #89989d;
  --line-dark: rgba(255, 255, 255, 0.16);
  --line-light: rgba(13, 15, 16, 0.16);
  --font-display: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --page: min(1440px, calc(100vw - 96px));
  --grid: repeat(12, minmax(0, 1fr));
  --section-space: clamp(104px, 12vw, 184px);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  background: var(--graphite);
}

body {
  margin: 0;
  background: var(--graphite);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

:focus-visible {
  outline: 2px solid var(--bronze-light);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  background: var(--paper);
  color: var(--graphite);
}

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

.page-grid {
  display: grid;
  width: var(--page);
  margin-inline: auto;
  grid-template-columns: var(--grid);
  column-gap: clamp(16px, 1.7vw, 28px);
}

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

.section--stone {
  background: var(--stone);
  color: var(--graphite);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  height: 88px;
  padding-inline: 48px;
  align-items: center;
  grid-template-columns: auto 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  transition: background 240ms ease, height 240ms ease, backdrop-filter 240ms ease;
}

.site-header.is-scrolled {
  height: 72px;
  background: rgba(13, 15, 16, 0.86);
  backdrop-filter: blur(18px);
}

.wordmark {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.22em;
}

.wordmark__mark {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  border: 1px solid currentColor;
}

.wordmark__mark::before,
.wordmark__mark::after {
  position: absolute;
  content: "";
  background: currentColor;
}

.wordmark__mark::before {
  top: 5px;
  bottom: 5px;
  left: 11px;
  width: 1px;
}

.wordmark__mark::after {
  top: 11px;
  right: 5px;
  left: 5px;
  height: 1px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(24px, 3vw, 52px);
  font-size: 13px;
  letter-spacing: 0.06em;
}

.site-nav a:not(.site-nav__cta) {
  color: rgba(255, 255, 255, 0.72);
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: var(--white);
}

.site-nav__cta {
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: max(720px, 100svh);
  overflow: hidden;
  background: #111617;
}

.hero__image,
.hero__veil {
  position: absolute;
  inset: 0;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 59% 50%;
  animation: reveal-image 1200ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero__veil {
  background:
    linear-gradient(90deg, rgba(5, 8, 9, 0.92) 0%, rgba(5, 8, 9, 0.64) 44%, rgba(5, 8, 9, 0.17) 75%),
    linear-gradient(0deg, rgba(8, 10, 11, 0.88) 0%, transparent 45%),
    linear-gradient(180deg, rgba(4, 6, 7, 0.58), transparent 34%);
}

.hero__content {
  position: relative;
  min-height: max(720px, 100svh);
  padding-top: clamp(124px, 17vh, 178px);
  padding-bottom: 68px;
  align-content: start;
}

.hero__invitation {
  grid-column: 1 / 7;
  margin: 0 0 clamp(32px, 6vh, 68px);
  color: var(--bronze-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero__title-wrap {
  grid-column: 1 / 10;
}

.hero__brandline {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 14px;
}

.hero h1 {
  max-width: 1050px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(56px, 7.2vw, 116px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.94;
  text-wrap: balance;
}

.hero__summary {
  display: grid;
  grid-column: 7 / 13;
  margin-top: clamp(42px, 7vh, 76px);
  grid-template-columns: 1fr;
}

.hero__summary > p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  margin-top: 30px;
  align-items: center;
  gap: 28px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 15px 23px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.035em;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button--light {
  background: var(--paper);
  color: var(--graphite);
}

.button--light:hover {
  background: white;
}

.button--bronze {
  background: var(--bronze);
  color: #0c0e0f;
}

.button--bronze:hover {
  background: var(--bronze-light);
}

.button--ghost {
  border: 1px solid var(--line-dark);
  background: transparent;
  color: var(--white);
}

.text-link {
  position: relative;
  padding-block: 8px;
  font-size: 13px;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform-origin: right;
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: scaleX(0.35);
}

.hero__formula {
  align-self: end;
  grid-column: 1 / 6;
  margin: 58px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.14em;
}

.hero__formula span {
  color: var(--bronze-light);
  margin-inline: 7px;
}

.hero__scope {
  align-self: end;
  grid-column: 7 / 13;
  margin: 58px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  letter-spacing: 0.06em;
}

.hero__scroll {
  position: absolute;
  right: 40px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(-100%);
  transform-origin: left bottom;
}

.hero__scroll i {
  display: block;
  width: 50px;
  height: 1px;
  background: rgba(255, 255, 255, 0.46);
}

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

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

.section-kicker {
  margin: 0 0 24px;
  color: #7a644d;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-heading h2 {
  max-width: 970px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(43px, 5.5vw, 84px);
  font-weight: 400;
  letter-spacing: -0.047em;
  line-height: 1.03;
  text-wrap: balance;
}

.section-heading > p:last-child:not(.section-kicker) {
  max-width: 700px;
  margin: 32px 0 0;
  color: rgba(13, 15, 16, 0.63);
  font-size: clamp(17px, 1.3vw, 20px);
}

.section-heading--inverse .section-kicker {
  color: var(--bronze-light);
}

.section-heading--inverse > p:last-child:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.58);
}

.situations {
  background: var(--paper);
  color: var(--graphite);
}

.situation-list {
  display: grid;
  grid-column: 1 / 13;
  margin-top: clamp(72px, 9vw, 132px);
  border-top: 1px solid var(--line-light);
  grid-template-columns: repeat(5, 1fr);
}

.situation {
  min-height: 270px;
  padding: 28px 22px 30px 0;
  border-right: 1px solid var(--line-light);
}

.situation + .situation {
  padding-left: 22px;
}

.situation:last-child {
  border-right: 0;
}

.situation h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(21px, 1.65vw, 27px);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.situation p {
  margin: 80px 0 0;
  color: rgba(13, 15, 16, 0.58);
  font-size: 13px;
  line-height: 1.6;
}

.situations__quote {
  grid-column: 4 / 13;
  margin: clamp(90px, 10vw, 148px) 0 0;
  padding: 0;
  border: 0;
  font-family: var(--font-display);
  font-size: clamp(35px, 4.25vw, 65px);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.solution-grid {
  display: grid;
  grid-column: 1 / 13;
  margin-top: clamp(70px, 9vw, 128px);
  grid-template-columns: repeat(3, 1fr);
}

.solution {
  position: relative;
  min-height: 390px;
  padding: 30px 30px 34px;
  border-top: 1px solid var(--line-light);
  border-right: 1px solid var(--line-light);
}

.solution:nth-child(3n) {
  border-right: 0;
}

.solution:nth-child(n + 4) {
  border-bottom: 1px solid var(--line-light);
}

.solution__index {
  display: block;
  color: rgba(13, 15, 16, 0.43);
  font-size: 11px;
  letter-spacing: 0.1em;
}

.solution h3 {
  max-width: 380px;
  margin: 24px 0 0;
  font-family: var(--font-display);
  font-size: clamp(29px, 2.55vw, 42px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.solution p {
  max-width: 370px;
  margin: 24px 0 0;
  color: rgba(13, 15, 16, 0.61);
  font-size: 14px;
}

.solution ul {
  display: flex;
  margin: 30px 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 7px;
  list-style: none;
}

.solution li {
  padding: 7px 9px;
  border: 1px solid rgba(13, 15, 16, 0.18);
  font-size: 10px;
  letter-spacing: 0.05em;
}

.solution--hero {
  background: rgba(255, 255, 255, 0.23);
}

.solution--dark {
  background: var(--blue-black);
  color: var(--white);
}

.solution--dark .solution__index,
.solution--dark p {
  color: rgba(255, 255, 255, 0.56);
}

.disappear {
  position: relative;
  min-height: 890px;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 40%, rgba(110, 140, 151, 0.16), transparent 28%),
    linear-gradient(126deg, #0b0e0f, #152026 72%, #101517);
}

.disappear__plane {
  position: absolute;
  top: 9%;
  right: -12%;
  width: 70vw;
  height: 82%;
  border: 1px solid rgba(255, 255, 255, 0.09);
  transform: perspective(900px) rotateY(-19deg) rotateZ(-7deg);
}

.disappear__plane::before,
.disappear__plane::after {
  position: absolute;
  content: "";
  background: rgba(255, 255, 255, 0.07);
}

.disappear__plane::before {
  top: 34%;
  right: 0;
  left: 0;
  height: 1px;
}

.disappear__plane::after {
  top: 0;
  bottom: 0;
  left: 57%;
  width: 1px;
}

.disappear__statement {
  position: relative;
  z-index: 1;
  grid-column: 2 / 10;
}

.disappear h2 {
  max-width: 950px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(58px, 7.8vw, 118px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.disappear__lines {
  margin: clamp(76px, 10vw, 150px) 0 0 42%;
}

.disappear__lines p {
  margin: 0;
  padding-block: 13px;
  border-bottom: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.67);
  font-size: clamp(17px, 1.35vw, 21px);
}

.disappear__signature {
  margin: clamp(72px, 9vw, 132px) 0 0;
  color: var(--bronze-light);
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 29px);
}

.evidence {
  background: var(--graphite-soft);
}

.evidence__layout {
  align-items: start;
}

.evidence__image {
  margin: 0;
  grid-column: 1 / 7;
  min-height: 720px;
  overflow: hidden;
}

.evidence__image figcaption {
  padding-top: 14px;
  color: #adb6ba;
  font-size: 12px;
  line-height: 1.5;
}

.evidence__image img {
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
}

.evidence__content {
  grid-column: 8 / 13;
  padding-top: 26px;
}

.evidence__content .section-heading {
  grid-column: auto;
}

.evidence__content .section-heading h2 {
  font-size: clamp(42px, 4.35vw, 68px);
}

.facts {
  margin: 72px 0 0;
  border-top: 1px solid var(--line-dark);
}

.facts div {
  display: grid;
  padding-block: 19px;
  grid-template-columns: 150px 1fr;
  gap: 14px;
  border-bottom: 1px solid var(--line-dark);
}

.facts dt {
  color: var(--bronze-light);
  font-family: var(--font-display);
  font-size: 19px;
}

.facts dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.61);
  font-size: 13px;
}

.evidence__note {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.34);
  font-size: 11px;
}

.method-flow {
  display: grid;
  grid-column: 1 / 13;
  margin: clamp(76px, 9vw, 130px) 0 0;
  padding: 0;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
  counter-reset: method;
}

.method-flow li {
  position: relative;
  min-height: 190px;
  padding: 27px 18px 20px 0;
  border-top: 1px solid var(--line-light);
  counter-increment: method;
}

.method-flow li::before {
  position: absolute;
  top: -4px;
  right: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: #8f7353;
}

.method-flow li::after {
  position: absolute;
  right: 10px;
  bottom: 20px;
  content: "0" counter(method);
  color: rgba(13, 15, 16, 0.25);
  font-size: 11px;
}

.method-flow span,
.method-flow b {
  display: block;
}

.method-flow span {
  color: rgba(13, 15, 16, 0.44);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.method-flow b {
  margin-top: 72px;
  font-family: var(--font-display);
  font-size: clamp(20px, 1.65vw, 27px);
  font-weight: 500;
}

.process {
  background: var(--paper);
  color: var(--graphite);
}

.process-list {
  grid-column: 4 / 13;
  margin: clamp(72px, 8vw, 116px) 0 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  padding: 28px 0 34px;
  grid-template-columns: 80px 1fr;
  border-top: 1px solid var(--line-light);
}

.process-list > li > span {
  color: #8f7353;
  font-size: 11px;
  letter-spacing: 0.1em;
}

.process-list h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(27px, 2.5vw, 40px);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.process-list p {
  max-width: 580px;
  margin: 12px 0 0;
  color: rgba(13, 15, 16, 0.58);
  font-size: 14px;
}

.concept {
  padding-bottom: clamp(120px, 13vw, 190px);
  background: var(--blue-black);
}

.concept__intro .section-heading {
  grid-column: 1 / 11;
}

.concept__description {
  max-width: 720px;
  margin: 28px 0 0;
  color: #b5bec3;
  font-size: 18px;
}

.concept__intro .section-heading > .preview-note {
  max-width: 720px;
  margin: 24px 0 0;
  padding-left: 16px;
  border-left: 2px solid var(--bronze);
  color: #b5bec3;
  font-size: 14px;
}

.quiz-shell {
  margin-top: clamp(70px, 9vw, 124px);
}

.quiz-meta {
  grid-column: 1 / 4;
  padding-top: 6px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quiz-progress {
  width: 100%;
  height: 1px;
  margin: 18px 0 12px;
  background: var(--line-dark);
}

.quiz-progress i {
  display: block;
  width: 20%;
  height: 1px;
  background: var(--bronze-light);
  transition: width 300ms ease;
}

.quiz-meta strong {
  font-weight: 400;
}

.quiz-meta b {
  color: var(--white);
  font-weight: 500;
}

.quiz {
  grid-column: 5 / 13;
  min-height: 610px;
}

.quiz-step {
  animation: step-in 260ms ease both;
}

.quiz-step[hidden] {
  display: none;
}

.quiz-step__number,
.quiz-step__hint {
  margin: 0;
  color: var(--bronze-light);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quiz-step__hint {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.43);
  letter-spacing: 0.03em;
  text-transform: none;
}

.quiz-step h3 {
  margin: 18px 0 42px;
  font-family: var(--font-display);
  font-size: clamp(37px, 4vw, 61px);
  font-weight: 400;
  letter-spacing: -0.048em;
  line-height: 1.06;
}

.choice-grid {
  display: grid;
  gap: 10px;
}

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

.choice-grid button,
.compact-choices button {
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.025);
  color: var(--white);
  cursor: pointer;
  text-align: left;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.choice-grid button:hover,
.compact-choices button:hover {
  border-color: rgba(255, 255, 255, 0.42);
}

.choice-grid button.is-selected,
.compact-choices button.is-selected {
  border-color: var(--bronze-light);
  background: rgba(174, 146, 112, 0.13);
}

.choice-grid--two button {
  min-height: 124px;
  padding: 22px;
}

.choice-grid button span,
.choice-grid button small {
  display: block;
}

.choice-grid button span {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
}

.choice-grid button small {
  margin-top: 10px;
  color: #b5bec3;
  font-size: 13px;
  line-height: 1.45;
}

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

.choice-grid--tasks button {
  min-height: 98px;
  padding: 18px;
  font-size: 13px;
}

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

.field-label {
  margin: 0 0 13px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.compact-choices {
  display: grid;
  gap: 7px;
}

.compact-choices button {
  min-height: 48px;
  padding: 11px 15px;
  font-size: 12px;
}

.field-error,
.file-errors,
.contact-errors {
  min-height: 20px;
  margin: 10px 0 0;
  color: #dfae9d;
  font-size: 14px;
}

.file-drop {
  position: relative;
  margin-top: 32px;
  border: 1px dashed rgba(255, 255, 255, 0.27);
  transition: background 160ms ease, border-color 160ms ease;
}

.file-drop.is-dragging {
  border-color: var(--bronze-light);
  background: rgba(174, 146, 112, 0.1);
}

.file-drop input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.file-drop label {
  display: flex;
  min-height: 90px;
  padding: 22px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  cursor: pointer;
}

.file-drop b,
.file-drop span {
  display: block;
}

.file-drop b {
  font-size: 13px;
}

.file-drop span {
  color: rgba(255, 255, 255, 0.38);
  font-size: 10px;
}

.file-list {
  display: grid;
  margin-top: 9px;
  gap: 7px;
}

.file-item {
  display: flex;
  padding: 10px 13px;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.05);
  font-size: 11px;
}

.file-item button {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

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

.form-grid label span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0;
  background: transparent;
  color: var(--white);
  outline: 0;
  transition: border-color 160ms ease;
}

.form-grid input {
  height: 44px;
}

.form-grid textarea {
  resize: vertical;
}

.form-grid input:focus,
.form-grid textarea:focus,
.form-grid [aria-invalid="true"] {
  border-color: var(--bronze-light);
}

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

.privacy-note {
  margin: 22px 0 0;
  color: #b5bec3;
  font-size: 13px;
}

.quiz-actions {
  display: flex;
  margin-top: 42px;
  justify-content: flex-end;
  gap: 10px;
}

.quiz-status {
  margin-top: 34px;
  padding: 28px;
  border: 1px solid rgba(174, 146, 112, 0.55);
  background: rgba(174, 146, 112, 0.1);
}

.quiz-status h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 400;
}

.quiz-status p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 13px;
}

.final-cta {
  background: var(--bronze);
  color: var(--graphite);
}

.final-cta__layout {
  align-items: end;
}

.final-cta__layout > p {
  align-self: start;
  grid-column: 1 / 3;
  margin: 6px 0 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.17em;
}

.final-cta h2 {
  grid-column: 3 / 11;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(48px, 6.2vw, 94px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.final-cta .button {
  grid-column: 10 / 13;
  margin-top: 56px;
}

.site-footer {
  padding-block: 54px;
  background: var(--graphite);
}

.site-footer__layout {
  align-items: center;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
}

.site-footer p:nth-child(1) {
  grid-column: 1 / 4;
  color: var(--white);
}

.site-footer p:nth-child(2) {
  grid-column: 5 / 8;
}

.site-footer p:nth-child(3) {
  grid-column: 8 / 11;
}

.site-footer p:nth-child(4) {
  grid-column: 11 / 13;
  text-align: right;
}

.wordmark--footer {
  font-size: 12px !important;
}

.wordmark--footer .wordmark__mark {
  width: 20px;
  height: 20px;
}

.wordmark--footer .wordmark__mark::before {
  top: 4px;
  bottom: 4px;
  left: 9px;
}

.wordmark--footer .wordmark__mark::after {
  top: 9px;
  right: 4px;
  left: 4px;
}

.noscript {
  position: fixed;
  z-index: 999;
  right: 16px;
  bottom: 16px;
  left: 16px;
  margin: 0;
  padding: 16px;
  background: #fff2cf;
  color: #201b14;
  text-align: center;
}

@keyframes reveal-image {
  from { opacity: 0; transform: scale(1.035); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes step-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1100px) {
  :root {
    --page: calc(100vw - 56px);
  }

  .hero__title-wrap {
    grid-column: 1 / 12;
  }

  .hero__summary {
    grid-column: 6 / 13;
  }

  .situation-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .situation:nth-child(3) {
    border-right: 0;
  }

  .situation:nth-child(n + 4) {
    border-top: 1px solid var(--line-light);
  }

  .solution {
    min-height: 360px;
  }

  .evidence__image {
    grid-column: 1 / 6;
  }

  .evidence__content {
    grid-column: 6 / 13;
  }

  .quiz {
    grid-column: 4 / 13;
  }
}

@media (max-width: 760px) {
  :root {
    --page: calc(100vw - 36px);
    --grid: repeat(4, minmax(0, 1fr));
    --section-space: 88px;
  }

  .site-header {
    height: 68px;
    padding-inline: 18px;
    grid-template-columns: 1fr auto;
  }

  .site-header.is-scrolled {
    height: 62px;
  }

  .wordmark {
    gap: 10px;
    font-size: 12px;
  }

  .wordmark__mark {
    width: 20px;
    height: 20px;
  }

  .wordmark__mark::before {
    top: 4px;
    bottom: 4px;
    left: 9px;
  }

  .wordmark__mark::after {
    top: 9px;
    right: 4px;
    left: 4px;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: flex;
    padding: 8px 0 8px 8px;
    align-items: center;
    gap: 10px;
    border: 0;
    background: transparent;
    color: var(--white);
    cursor: pointer;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .menu-toggle__lines,
  .menu-toggle__lines::before {
    display: block;
    width: 22px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-toggle__lines::before {
    content: "";
    transform: translateY(6px);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__lines {
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__lines::before {
    transform: rotate(-90deg);
  }

  .site-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    padding: 112px 24px 32px;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0;
    background: rgba(13, 15, 16, 0.97);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding-block: 17px;
    border-bottom: 1px solid var(--line-dark);
    font-family: var(--font-display);
    font-size: 25px;
  }

  .site-nav__cta {
    margin-top: 24px;
    padding: 17px !important;
    border: 1px solid rgba(255, 255, 255, 0.42) !important;
    font-family: var(--font-body) !important;
    font-size: 12px !important;
    text-align: center;
  }

  .hero,
  .hero__content {
    min-height: max(760px, 100svh);
  }

  .hero__image img {
    object-position: 62% center;
  }

  .hero__veil {
    background:
      linear-gradient(90deg, rgba(5, 8, 9, 0.88), rgba(5, 8, 9, 0.3)),
      linear-gradient(0deg, rgba(8, 10, 11, 0.96) 0%, rgba(8, 10, 11, 0.4) 62%, rgba(8, 10, 11, 0.5));
  }

  .hero__content {
    padding-top: 108px;
    padding-bottom: 30px;
  }

  .hero__invitation,
  .hero__title-wrap,
  .hero__summary,
  .hero__formula,
  .hero__scope {
    grid-column: 1 / -1;
  }

  .hero__invitation {
    margin-bottom: 42px;
    font-size: 9px;
  }

  .hero h1 {
    font-size: clamp(45px, 14vw, 66px);
    line-height: 0.98;
  }

  .hero__brandline {
    font-size: 11px;
  }

  .hero__summary {
    margin-top: 38px;
  }

  .hero__summary > p {
    font-size: 15px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .hero__actions .text-link {
    align-self: flex-start;
  }

  .hero__formula {
    margin-top: 40px;
    font-size: 9px;
  }

  .hero__scope {
    margin-top: 16px;
    font-size: 8px;
    line-height: 1.7;
  }

  .hero__scroll {
    display: none;
  }

  .section-heading,
  .section-heading--wide,
  .section-heading--inverse,
  .concept__intro .section-heading {
    grid-column: 1 / -1;
  }

  .section-heading h2 {
    font-size: clamp(39px, 12vw, 55px);
  }

  .section-heading > p:last-child:not(.section-kicker) {
    margin-top: 23px;
    font-size: 15px;
  }

  .section-kicker {
    margin-bottom: 18px;
    font-size: 9px;
  }

  .situation-list {
    grid-column: 1 / -1;
    margin-top: 54px;
    grid-template-columns: 1fr;
  }

  .situation,
  .situation + .situation {
    min-height: 0;
    padding: 22px 0 28px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .situation:nth-child(n + 4) {
    border-top: 0;
  }

  .situation h3 {
    font-size: 24px;
  }

  .situation p {
    max-width: 330px;
    margin-top: 18px;
  }

  .situations__quote {
    grid-column: 1 / -1;
    margin-top: 70px;
    font-size: 35px;
  }

  .solution-grid {
    grid-column: 1 / -1;
    margin-top: 58px;
    grid-template-columns: 1fr;
  }

  .solution,
  .solution:nth-child(3n),
  .solution:nth-child(n + 4) {
    min-height: 310px;
    padding: 25px 18px;
    border-right: 0;
    border-bottom: 0;
  }

  .solution:last-child {
    border-bottom: 1px solid var(--line-light);
  }

  .solution h3 {
    margin-top: 24px;
    font-size: 34px;
  }

  .disappear {
    min-height: 720px;
  }

  .disappear__plane {
    top: 24%;
    right: -67%;
    width: 154vw;
  }

  .disappear__statement {
    grid-column: 1 / -1;
  }

  .disappear h2 {
    font-size: clamp(48px, 15vw, 65px);
  }

  .disappear__lines {
    margin: 72px 0 0 16%;
  }

  .disappear__lines p {
    font-size: 14px;
  }

  .disappear__signature {
    margin-top: 70px;
    font-size: 18px;
  }

  .evidence__image,
  .evidence__content {
    grid-column: 1 / -1;
  }

  .evidence__image {
    min-height: 0;
    height: auto;
  }

  .evidence__image img {
    min-height: 360px;
    height: 360px;
  }

  .evidence__content {
    padding-top: 56px;
  }

  .evidence__content .section-heading h2 {
    font-size: 43px;
  }

  .facts {
    margin-top: 50px;
  }

  .facts div {
    grid-template-columns: 110px 1fr;
  }

  .facts dt {
    font-size: 16px;
  }

  .facts dd {
    font-size: 14px;
  }

  .method-flow {
    grid-column: 1 / -1;
    margin-top: 58px;
    grid-template-columns: 1fr;
  }

  .method-flow li {
    display: grid;
    min-height: 0;
    padding: 22px 0;
    grid-template-columns: 1fr 1fr;
  }

  .method-flow li::after {
    right: 0;
  }

  .method-flow b {
    margin: 0;
    font-size: 21px;
  }

  .process-list {
    grid-column: 1 / -1;
    margin-top: 54px;
  }

  .process-list li {
    grid-template-columns: 46px 1fr;
  }

  .process-list h3 {
    font-size: 29px;
  }

  .quiz-shell {
    margin-top: 54px;
  }

  .quiz-meta,
  .quiz {
    grid-column: 1 / -1;
  }

  .quiz-meta {
    margin-bottom: 42px;
  }

  .quiz {
    min-height: 0;
  }

  .quiz-step h3 {
    margin-bottom: 32px;
    font-size: 38px;
  }

  .choice-grid--two,
  .choice-grid--tasks,
  .quiz-columns,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .choice-grid--two button {
    min-height: 102px;
  }

  .choice-grid--tasks button {
    min-height: 64px;
  }

  .quiz-columns {
    gap: 24px;
  }

  .file-drop label {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .quiz-actions {
    margin-top: 32px;
  }

  .quiz-actions .button {
    flex: 1;
  }

  .final-cta__layout > p,
  .final-cta h2,
  .final-cta .button {
    grid-column: 1 / -1;
  }

  .final-cta__layout > p {
    margin-bottom: 38px;
  }

  .final-cta h2 {
    font-size: 49px;
  }

  .final-cta .button {
    margin-top: 42px;
  }

  .site-footer__layout {
    row-gap: 18px;
  }

  .site-footer p:nth-child(n) {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* Submission acknowledgement is separate from the still-pending legal documents. */
.transfer-consent { display: flex; align-items: flex-start; gap: 12px; margin-top: 20px; font-size: 14px; line-height: 1.6; }
.transfer-consent input { flex: 0 0 20px; width: 20px; height: 20px; margin-top: 3px; accent-color: #ba9670; }
.form-trap { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
.quiz button:disabled { cursor: default; opacity: .65; }
