:root {
  color-scheme: dark;
  --paper: #f3f3ef;
  --ink: #11110f;
  --muted: #65655f;
  --line: #c9c9c2;
  --signal: #ffd300;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 5px;
}

button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

.site-header,
.screen {
  width: min(100% - 56px, 1500px);
  margin-inline: auto;
}

.site-header {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(243, 243, 239, 0.55);
  color: var(--paper);
  transform: translateX(-50%);
}

.wordmark {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

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

.amp {
  color: var(--signal);
}

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

.header-contact {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-family: inherit;
  font-size: 0.88rem;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.28em;
}

.header-contact:hover,
.dialog-close:hover {
  opacity: 0.68;
}

.screen {
  min-height: 100svh;
  padding: clamp(118px, 12vh, 168px) 0 clamp(54px, 7vh, 92px);
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--ink);
}

.intro {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 0 0 100vmax var(--ink);
  clip-path: inset(0 -100vmax);
}

.eyebrow {
  margin: 0 0 clamp(56px, 8vh, 100px);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.method-grid,
.premise-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 24px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.intro {
  justify-content: center;
}

.premise-grid {
  align-items: end;
}

.premise-grid h1 {
  grid-column: 1 / 8;
  max-width: 9ch;
  margin: 0;
  font-size: clamp(3.5rem, 7vw, 7.6rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.93;
}

.premise-grid h1 span {
  display: block;
}

.premise-grid h1 mark {
  display: table;
  margin: 0.13em 0;
  padding: 0.01em 0.06em 0.035em;
  background: #ffd300;
  color: var(--ink);
  line-height: 0.9;
}

.premise-grid h2 {
  grid-column: 9 / 13;
  max-width: none;
  margin: 0;
  font-size: clamp(2.65rem, 4.2vw, 4.8rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.premise-grid h2 > span {
  display: block;
  white-space: nowrap;
}

.premise-grid h2 mark {
  display: inline-block;
  padding: 0.01em 0.06em 0.035em;
  background: #ffd300;
  color: var(--ink);
  line-height: 0.88;
}

.method {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 0 0 100vmax var(--ink);
  clip-path: inset(0 -100vmax);
}

.workflow-label,
.section-wordmark {
  margin: 0 0 clamp(56px, 8vh, 100px);
  font-weight: 700;
  text-transform: uppercase;
}

.workflow-label {
  color: var(--paper);
  font-size: clamp(0.95rem, 1.25vw, 1.2rem);
  letter-spacing: 0.09em;
}

.section-wordmark {
  font-size: 0.95rem;
  letter-spacing: -0.04em;
}

.workflow-intro {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 24px;
  margin-bottom: clamp(56px, 8vh, 96px);
}

.workflow-intro h2 {
  grid-column: 1 / 9;
  max-width: 20ch;
  margin: 0;
  font-size: clamp(2.4rem, 4.4vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.workflow-intro h2 span {
  display: block;
  margin-top: 0.18em;
}

.workflow-intro h2 .question-line {
  white-space: nowrap;
}

.workflow-intro > p {
  grid-column: 10 / 13;
  align-self: end;
  max-width: 26ch;
  margin: 0 0 0.35rem;
  color: var(--paper);
  font-size: clamp(1.2rem, 1.55vw, 1.5rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.22;
}

.questions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: clamp(64px, 9vh, 110px);
  border-top: 1px solid #4a4a46;
  border-bottom: 1px solid #4a4a46;
}

.questions p {
  margin: 0;
  padding: 24px 28px 30px 0;
  color: var(--paper);
  font-size: clamp(1.3rem, 1.9vw, 1.85rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.questions p + p {
  padding-left: 28px;
  border-left: 1px solid #4a4a46;
}

.method-answer {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 24px;
  align-items: end;
}

.method-answer > p {
  grid-column: 1 / 5;
  max-width: 24ch;
  margin: 0 0 0.5rem;
  color: var(--paper);
  font-size: clamp(1.45rem, 2.2vw, 2.35rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.method-answer h2 {
  grid-column: 6 / 13;
  max-width: 10ch;
  margin-bottom: 0;
  font-size: clamp(3.5rem, 7vw, 7.6rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.93;
}

.method-answer h2 > span {
  display: block;
}

.method-answer h2 > span + span {
  margin-top: 0.2em;
}

.method-answer h2 .nowrap {
  white-space: nowrap;
}

.method-grid h2 mark {
  display: table;
  margin: 0.13em 0;
  padding: 0 0.09em 0.07em;
  background: var(--signal);
  color: var(--ink);
}

.method-copy {
  grid-column: 9 / 13;
  align-self: end;
}

.method-copy h3 {
  max-width: 11ch;
  margin-bottom: 48px;
  font-size: clamp(2rem, 3.2vw, 3.8rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1;
}

.process-copy h3 {
  max-width: 17ch;
}

.method-copy h3 mark {
  padding: 0 0.08em 0.06em;
  background: var(--signal);
  color: var(--ink);
}

.method-copy p {
  max-width: 34ch;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.3rem);
}

.method-copy p:last-child {
  margin: 42px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--ink);
}

.facts {
  margin: auto 0 0;
  padding-top: clamp(64px, 9vh, 112px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.facts div {
  padding: 20px 0 0 20px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.facts div:first-child {
  padding-left: 0;
  border-left: 0;
}

.facts dt {
  font-size: clamp(2.5rem, 5vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1;
}

.facts dd {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.outcome {
  min-height: 100svh;
  border-bottom: 0;
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 0 0 100vmax var(--ink);
  clip-path: inset(0 -100vmax);
}

.outcome > h2 {
  max-width: 15ch;
  margin: 0 0 clamp(54px, 7vh, 92px);
  font-size: clamp(3.2rem, 6.5vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.outcomes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid #4a4a46;
  border-bottom: 1px solid #4a4a46;
}

.outcomes article {
  padding: 26px 28px 34px 0;
}

.outcomes article + article {
  padding-left: 28px;
  border-left: 1px solid #4a4a46;
}

.outcomes h3 {
  margin-bottom: 24px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.outcomes p {
  max-width: 43ch;
  margin-bottom: 0;
  color: #b7b7b0;
  font-size: clamp(1rem, 1.35vw, 1.3rem);
}

.invitation-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 24px;
}

.invitation-grid h2 {
  grid-column: 1 / 8;
  max-width: 8ch;
  margin-bottom: 0;
  font-size: clamp(3.7rem, 7.7vw, 8.4rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.91;
}

.invitation-grid h2 > span {
  display: block;
}

.invitation-grid h2 > span + span {
  margin-top: 0.18em;
}

.invitation-grid h2 .nowrap {
  white-space: nowrap;
}

.invitation-copy {
  grid-column: 9 / 13;
  align-self: end;
}

.invitation-copy p {
  max-width: 32ch;
  margin-bottom: 24px;
  color: var(--paper);
  font-size: clamp(1.4rem, 2.1vw, 2.3rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.14;
}

.invitation-copy p + p {
  margin-top: 44px;
  color: var(--paper);
  font-size: clamp(1.4rem, 2.2vw, 2.45rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.invitation-copy .audience {
  margin-top: 34px;
  color: var(--signal);
  font-size: clamp(1.5rem, 2.3vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.closing {
  margin-top: clamp(52px, 7vh, 92px);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 24px;
}

.belief {
  grid-column: 1 / 7;
  max-width: 37ch;
  margin-bottom: 0;
  font-size: clamp(1.45rem, 2.4vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.18;
}

.contact-block {
  grid-column: 9 / 13;
  align-self: end;
}

.contact-block p {
  max-width: 30ch;
  margin-bottom: 22px;
  color: #b7b7b0;
}

.contact-button {
  padding: 0 0 5px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: inherit;
  font-family: inherit;
  font-size: clamp(1.15rem, 1.8vw, 1.75rem);
  letter-spacing: -0.03em;
  cursor: pointer;
}

.contact-button:hover {
  opacity: 0.68;
}

.invitation-copy .contact-button {
  margin-top: 34px;
}

footer {
  margin-top: auto;
  padding-top: clamp(72px, 10vh, 130px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer p {
  margin: 0;
  color: #9b9b94;
  font-size: 0.75rem;
}

.contact-dialog {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: var(--ink);
  color: var(--paper);
}

.contact-dialog::backdrop {
  background: rgba(17, 17, 15, 0.7);
}

.contact-dialog[open] {
  display: block;
}

.dialog-shell {
  width: min(100% - 56px, 1500px);
  min-height: 100%;
  margin-inline: auto;
  padding-bottom: 64px;
}

.dialog-header {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #4a4a46;
}

.dialog-close {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-family: inherit;
  font-size: 0.88rem;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.28em;
  cursor: pointer;
}

.form-intro,
.form-success {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 24px;
  padding-top: clamp(56px, 8vh, 96px);
}

.form-intro .eyebrow,
.form-success .eyebrow {
  grid-column: 1 / 4;
  margin: 9px 0 0;
  color: #9b9b94;
}

.form-intro h2,
.form-success h2 {
  grid-column: 4 / 10;
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 5.2vw, 6rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.form-intro > p:last-child,
.form-success > p:last-of-type {
  grid-column: 10 / 13;
  align-self: end;
  max-width: 27ch;
  margin-bottom: 7px;
  color: var(--muted);
}

.contact-form {
  width: min(100%, 980px);
  margin: clamp(56px, 8vh, 96px) 0 0 auto;
  padding-top: 28px;
  border-top: 1px solid var(--paper);
}

.honey {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.role-fieldset {
  margin: 0 0 50px;
  padding: 0;
  border: 0;
}

.role-fieldset legend,
.field > span {
  display: block;
  margin-bottom: 13px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.role-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #4a4a46;
}

.role-options label {
  position: relative;
  min-height: 74px;
  display: flex;
  align-items: stretch;
  cursor: pointer;
}

.role-options label + label {
  border-left: 1px solid #4a4a46;
}

.role-options input {
  position: absolute;
  opacity: 0;
}

.role-options span {
  width: 100%;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.role-options input:checked + span {
  background: var(--paper);
  color: var(--ink);
}

.role-options input:focus-visible + span {
  outline: 2px solid var(--paper);
  outline-offset: -4px;
}

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

.field {
  display: block;
  margin-bottom: 32px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--paper);
  border-radius: 0;
  background: transparent;
  color: var(--paper);
  font: inherit;
  font-size: 1.15rem;
}

.field input,
.field select {
  height: 48px;
}

.field select {
  appearance: none;
  padding-right: 30px;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 15px) 21px, calc(100% - 9px) 21px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.field textarea {
  min-height: 120px;
  padding: 10px 0;
  resize: vertical;
}

.form-actions {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.submit-button {
  min-width: 180px;
  min-height: 54px;
  padding: 14px 22px;
  border: 1px solid var(--paper);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  cursor: pointer;
}

.submit-button:hover {
  background: transparent;
  color: var(--paper);
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.55;
}

.form-status {
  margin: 0;
  color: #9b9b94;
  font-size: 0.9rem;
}

.form-status.error {
  color: #9b241b;
}

.form-success {
  min-height: calc(100vh - 88px);
  align-content: center;
  padding-bottom: 88px;
}

.form-success .contact-button {
  grid-column: 4 / 8;
  justify-self: start;
  margin-top: 42px;
}

@media (max-width: 820px) {
  .site-header,
  .screen {
    width: min(100% - 32px, 1500px);
  }

  .site-header {
    min-height: 72px;
  }

  .screen {
    min-height: 100svh;
    padding: 104px 0 44px;
  }

  .eyebrow {
    margin-bottom: 52px;
  }

  .method-grid,
  .premise-grid,
  .invitation-grid,
  .workflow-intro {
    grid-template-columns: 1fr;
  }

  .workflow-intro h2,
  .workflow-intro > p {
    grid-column: 1;
  }

  .workflow-intro > p {
    margin-top: 32px;
  }

  .workflow-intro h2 .question-line {
    font-size: min(0.82em, 8vw);
    letter-spacing: -0.065em;
  }

  .premise-grid h1,
  .premise-grid h2,
  .method-grid h2,
  .method-copy,
  .invitation-grid h2,
  .invitation-copy {
    grid-column: 1;
  }

  .premise-grid h1 {
    font-size: clamp(3.25rem, 14vw, 5rem);
  }

  .premise-grid h2 {
    margin-top: 64px;
    font-size: clamp(2.55rem, 12vw, 3.25rem);
  }

  .method-grid h2 {
    font-size: clamp(3.25rem, 14vw, 5rem);
  }

  .questions {
    grid-template-columns: 1fr;
    margin-bottom: 72px;
  }

  .questions p,
  .questions p + p {
    padding: 20px 0 24px;
    border-left: 0;
  }

  .questions p + p {
    border-top: 1px solid #4a4a46;
  }

  .method-answer {
    grid-template-columns: 1fr;
  }

  .method-answer > p,
  .method-answer h2 {
    grid-column: 1;
  }

  .method-answer h2 {
    margin-top: 48px;
    font-size: clamp(2.5rem, 10.4vw, 4.5rem);
  }

  .method-copy {
    margin-top: 64px;
  }

  .invitation-grid h2 {
    font-size: clamp(3.4rem, 15vw, 5.5rem);
  }

  .invitation-copy {
    margin-top: 72px;
  }

  .facts {
    padding-top: 72px;
  }

  .facts div {
    padding-left: 12px;
  }

  .outcome > h2 {
    font-size: clamp(3.1rem, 13.5vw, 5rem);
  }

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

  .outcomes article,
  .outcomes article + article {
    padding: 24px 0 30px;
    border-left: 0;
  }

  .outcomes article + article {
    border-top: 1px solid #4a4a46;
  }

  .contact-block {
    margin-top: 56px;
  }

  footer {
    padding-top: 96px;
  }

  .dialog-shell {
    width: min(100% - 32px, 1500px);
  }

  .dialog-header {
    min-height: 72px;
  }

  .form-intro,
  .form-success {
    grid-template-columns: 1fr;
    padding-top: 44px;
  }

  .form-intro .eyebrow,
  .form-success .eyebrow,
  .form-intro h2,
  .form-success h2,
  .form-intro > p:last-child,
  .form-success > p:last-of-type,
  .form-success .contact-button {
    grid-column: 1;
  }

  .form-intro .eyebrow,
  .form-success .eyebrow {
    margin-bottom: 34px;
  }

  .form-intro > p:last-child,
  .form-success > p:last-of-type {
    margin-top: 8px;
  }

  .contact-form {
    margin-top: 54px;
  }

  .role-options,
  .field-pair {
    grid-template-columns: 1fr;
  }

  .role-options label + label {
    border-top: 1px solid #4a4a46;
    border-left: 0;
  }

  .field-pair {
    gap: 0;
  }

  .form-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-success {
    min-height: calc(100vh - 72px);
  }
}

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