:root {
  --navy: #16213f;
  --navy-deep: #0d1b3e;
  --night: #070d1d;
  --night-soft: #0b1429;
  --teal: #13b9ad;
  --teal-dark: #0b8f88;
  --white: #ffffff;
  --paper: #f1efe7;
  --paper-warm: #e6e1d4;
  --ink: #11192d;
  --muted: #687080;
  --line-dark: rgba(255, 255, 255, 0.16);
  --line-light: rgba(17, 25, 45, 0.18);
  --shell: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--night);
  color: var(--white);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

input,
textarea,
button {
  font: inherit;
}

a {
  color: inherit;
}

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

.shell {
  width: min(calc(100% - 64px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: absolute;
  z-index: 10;
  inset: 0 0 auto;
  border-bottom: 1px solid var(--line-dark);
}

.header-inner {
  min-height: 98px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  width: 236px;
}

.header-access {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.header-access a {
  padding: 9px 0;
  border-bottom: 1px solid var(--teal);
  color: var(--white);
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 890px;
  display: grid;
  align-items: center;
  padding: 178px 0 110px;
  background-color: var(--night);
}

.hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 92px 92px;
  content: "";
  mask-image: linear-gradient(to right, #000, transparent 74%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(350px, 0.78fr);
  align-items: center;
  gap: clamp(72px, 10vw, 142px);
}

.access-line,
.folio {
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.access-line {
  display: flex;
  gap: 22px;
}

.access-line span:first-child {
  padding-right: 22px;
  border-right: 1px solid var(--teal);
}

h1 {
  max-width: 790px;
  margin-top: 42px;
  font-size: clamp(3.7rem, 6.4vw, 6.3rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.96;
  text-wrap: balance;
}

.hero-lede {
  max-width: 690px;
  margin-top: 38px;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  line-height: 1.65;
}

.primary-action {
  width: min(100%, 410px);
  min-height: 64px;
  margin-top: 48px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--teal);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease;
}

.primary-action:hover,
.primary-action:focus-visible {
  background: var(--teal);
  color: var(--night);
}

.primary-action span:last-child {
  color: var(--teal);
}

.primary-action:hover span:last-child,
.primary-action:focus-visible span:last-child {
  color: var(--night);
}

.invitation {
  position: relative;
  width: min(100%, 390px);
  justify-self: end;
}

.invitation-shadow {
  position: absolute;
  z-index: -1;
  inset: 22px -22px -22px 22px;
  border: 1px solid rgba(19, 185, 173, 0.45);
}

.invitation-sheet {
  position: relative;
  min-height: 540px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  background:
    repeating-linear-gradient(0deg, transparent 0 31px, rgba(17, 25, 45, 0.035) 31px 32px),
    var(--paper);
  color: var(--ink);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
}

.invitation-sheet::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 42px;
  height: 42px;
  background: var(--night);
  clip-path: polygon(100% 0, 100% 100%, 0 0);
  content: "";
}

.invitation-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-light);
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.invitation-seal {
  width: 126px;
  height: 126px;
  margin: 58px auto 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 25, 45, 0.18);
  border-radius: 50%;
}

.invitation-label {
  max-width: 290px;
  font-size: 1.18rem;
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.4;
}

.invitation-recipient {
  margin-top: 34px;
  display: grid;
  gap: 8px;
}

.invitation-recipient span {
  color: var(--muted);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.invitation-recipient strong {
  padding-bottom: 9px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.79rem;
  font-weight: 600;
}

.invitation-sheet > a {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  color: var(--teal-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-folio {
  position: absolute;
  right: 28px;
  bottom: 24px;
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  writing-mode: vertical-rl;
}

.intelligence-gap {
  position: relative;
  padding: clamp(110px, 14vw, 190px) 0;
  background: var(--paper);
  color: var(--ink);
}

.intelligence-gap::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 64px;
  background: var(--teal);
  content: "";
}

.editorial-spread {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(70px, 12vw, 164px);
}

.spread-heading h2,
.approach-heading h2,
.ownership-statement h2,
.qualification-heading h2,
.briefing-copy h2 {
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.04;
  text-wrap: balance;
}

.spread-heading h2 {
  margin-top: 28px;
  font-size: clamp(2.35rem, 3.3vw, 3.65rem);
}

.margin-note {
  max-width: 260px;
  margin: 76px 0 0 auto;
  padding: 18px 0 18px 30px;
  border-left: 1px solid var(--teal);
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.6;
}

.spread-lede {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(1.12rem, 1.7vw, 1.34rem);
  line-height: 1.7;
}

.observations {
  margin-top: 76px;
  border-top: 1px solid var(--ink);
}

.observations article {
  padding: 28px 0;
  display: grid;
  grid-template-columns: 112px minmax(160px, 0.8fr) minmax(210px, 1fr);
  gap: 24px;
  border-bottom: 1px solid var(--line-light);
}

.observations span {
  color: var(--teal-dark);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.observations h3 {
  font-size: 0.98rem;
}

.observations p {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

.approach {
  padding: clamp(112px, 14vw, 190px) 0;
  background: var(--night-soft);
}

.approach-heading {
  width: min(100%, 720px);
  margin-left: clamp(0px, 8vw, 96px);
}

.approach-heading h2 {
  margin-top: 26px;
  font-size: clamp(2.5rem, 3.8vw, 4.25rem);
}

.approach-heading > p:last-child {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.54);
}

.brief-folio {
  position: relative;
  width: min(100% - 96px, 1010px);
  margin: 96px 0 0 auto;
  display: grid;
  grid-template-columns: 76px 1fr;
  background:
    repeating-linear-gradient(0deg, transparent 0 39px, rgba(17, 25, 45, 0.03) 39px 40px),
    var(--paper);
  color: var(--ink);
  box-shadow: 30px 30px 0 rgba(19, 185, 173, 0.09);
}

.folio-binding {
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-right: 1px solid var(--line-light);
  color: var(--muted);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.brief-sequence {
  padding: 28px 54px 54px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  list-style: none;
}

.brief-sequence li {
  min-height: 230px;
  padding: 44px 46px;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 24px;
  border-bottom: 1px solid var(--line-light);
}

.brief-sequence li:nth-child(odd) {
  border-right: 1px solid var(--line-light);
}

.sequence-number {
  color: var(--teal-dark);
  font-size: 0.66rem;
  font-weight: 800;
}

.brief-sequence h3 {
  font-size: 1.28rem;
  letter-spacing: -0.025em;
}

.brief-sequence p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.folio-mark {
  position: absolute;
  right: 34px;
  bottom: 20px;
  color: var(--muted);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ownership {
  padding: clamp(112px, 14vw, 190px) 0;
  background: var(--teal);
  color: var(--night);
}

.ownership-layout {
  display: grid;
  grid-template-columns: 160px minmax(360px, 1.15fr) minmax(300px, 0.85fr);
  align-items: center;
  gap: clamp(42px, 7vw, 88px);
}

.ownership .folio {
  color: var(--night);
}

.ownership-seal {
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  border: 1px solid var(--night);
  border-radius: 50%;
  background: var(--night);
}

.ownership-seal img {
  width: 74px;
}

.ownership-seal span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.ownership-statement h2 {
  margin-top: 26px;
  font-size: clamp(3rem, 5vw, 5.4rem);
}

.ownership-clause {
  padding-top: 28px;
  border-top: 1px solid rgba(7, 13, 29, 0.72);
}

.ownership-clause p:first-child {
  font-size: 1.17rem;
  font-weight: 750;
  line-height: 1.45;
}

.ownership-clause p:nth-child(2) {
  margin-top: 26px;
  color: rgba(7, 13, 29, 0.67);
  line-height: 1.65;
}

.signature-line {
  margin-top: 56px;
  padding-top: 12px;
  display: block;
  border-top: 1px solid rgba(7, 13, 29, 0.25);
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.qualification {
  padding: clamp(112px, 14vw, 180px) 0;
  background: var(--paper);
  color: var(--ink);
}

.qualification-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(430px, 1.1fr);
  gap: clamp(80px, 13vw, 176px);
}

.qualification-heading h2 {
  margin-top: 28px;
  font-size: clamp(2.4rem, 3.3vw, 3.65rem);
}

.qualification-heading > p:last-child {
  max-width: 490px;
  margin-top: 38px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.qualification-list {
  align-self: end;
  border-top: 1px solid var(--ink);
}

.qualification-list p {
  min-height: 80px;
  padding: 24px 0;
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--line-light);
  font-weight: 650;
}

.qualification-list span {
  color: var(--teal-dark);
  font-size: 0.65rem;
}

.briefing {
  padding: clamp(112px, 14vw, 190px) 0;
  background: var(--night);
}

.briefing-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.84fr) minmax(470px, 1.16fr);
  align-items: start;
  gap: clamp(80px, 12vw, 160px);
}

.briefing-copy {
  position: sticky;
  top: 54px;
}

.briefing-copy h2 {
  margin-top: 28px;
  font-size: clamp(2.5rem, 3.8vw, 4.2rem);
}

.briefing-copy > p:nth-child(3) {
  margin-top: 36px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.7;
}

.request-sheet {
  position: relative;
  padding: clamp(34px, 5vw, 58px);
  background:
    repeating-linear-gradient(0deg, transparent 0 39px, rgba(17, 25, 45, 0.03) 39px 40px),
    var(--paper);
  color: var(--ink);
}

.request-sheet::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 52px;
  height: 52px;
  background: var(--night);
  clip-path: polygon(100% 0, 100% 100%, 0 0);
  content: "";
}

.request-heading {
  margin-bottom: 42px;
  padding-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--ink);
}

.request-heading span {
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.field {
  margin-bottom: 25px;
}

.field label {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(17, 25, 45, 0.44);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.field input {
  min-height: 46px;
}

.field textarea {
  min-height: 126px;
  padding-top: 12px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--teal-dark);
  box-shadow: 0 1px 0 var(--teal-dark);
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.turnstile-wrap {
  min-height: 65px;
  margin: 6px 0 20px;
}

.submit-button {
  width: 100%;
  min-height: 62px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--night);
  background: var(--night);
  color: var(--white);
  cursor: pointer;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease;
}

.submit-button:hover,
.submit-button:focus-visible {
  background: var(--teal);
  color: var(--night);
}

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

.status {
  display: none;
  margin-bottom: 24px;
  padding: 14px 16px;
  border-left: 3px solid var(--teal-dark);
  background: rgba(19, 185, 173, 0.09);
  font-size: 0.86rem;
}

.status.ok,
.status.err {
  display: block;
}

.status.err {
  border-color: #a44242;
  background: rgba(164, 66, 66, 0.08);
}

.site-footer {
  border-top: 1px solid var(--line-dark);
  background: var(--night);
}

.footer-inner {
  min-height: 126px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.footer-inner img {
  width: 143px;
}

.footer-inner p {
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-inner p:last-child {
  justify-self: end;
}

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

@media (max-width: 1040px) {
  .hero-layout,
  .editorial-spread,
  .qualification-layout,
  .briefing-layout {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    gap: 86px;
  }

  .invitation {
    width: min(100%, 500px);
    justify-self: start;
  }

  .spread-heading h2,
  .qualification-heading {
    max-width: 720px;
  }

  .margin-note {
    margin: 40px 0 0;
  }

  .ownership-layout {
    grid-template-columns: 130px 1fr;
  }

  .ownership-clause {
    grid-column: 2;
    max-width: 610px;
  }

  .briefing-copy {
    position: static;
    max-width: 720px;
  }

  .request-sheet {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(calc(100% - 36px), var(--shell));
  }

  .header-inner {
    min-height: 80px;
  }

  .brand {
    width: 190px;
  }

  .header-access span {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 142px 0 94px;
  }

  h1 {
    margin-top: 34px;
    font-size: clamp(3.25rem, 14vw, 5rem);
  }

  .invitation {
    width: calc(100% - 18px);
  }

  .invitation-shadow {
    inset: 14px -14px -14px 14px;
  }

  .editorial-spread {
    gap: 64px;
  }

  .spread-heading h2,
  .approach-heading h2,
  .qualification-heading h2,
  .briefing-copy h2 {
    font-size: clamp(2.15rem, 8vw, 3rem);
  }

  .observations article {
    grid-template-columns: 90px 1fr;
  }

  .observations article p {
    grid-column: 2;
  }

  .approach-heading {
    margin-left: 0;
  }

  .brief-folio {
    width: calc(100% - 14px);
    grid-template-columns: 48px 1fr;
  }

  .brief-sequence {
    padding: 20px 24px 44px;
    grid-template-columns: 1fr;
  }

  .brief-sequence li {
    min-height: 0;
    padding: 34px 12px;
    border-right: 0 !important;
  }

  .ownership-layout {
    grid-template-columns: 1fr;
  }

  .ownership-seal {
    width: 112px;
    height: 112px;
  }

  .ownership-seal img {
    width: 56px;
  }

  .ownership-clause {
    grid-column: auto;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 34px 0;
  }

  .footer-inner p:last-child {
    justify-self: start;
  }
}

@media (max-width: 520px) {
  .header-access {
    display: none;
  }

  .access-line {
    display: grid;
    gap: 8px;
  }

  .access-line span:first-child {
    padding-right: 0;
    border-right: 0;
  }

  .primary-action {
    min-height: 72px;
  }

  .invitation-sheet {
    min-height: 510px;
    padding: 26px;
  }

  .observations article {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .observations article p {
    grid-column: auto;
  }

  .brief-folio {
    grid-template-columns: 34px 1fr;
  }

  .brief-sequence {
    padding-inline: 16px;
  }

  .brief-sequence li {
    grid-template-columns: 28px 1fr;
    gap: 14px;
  }

  .qualification-list p {
    grid-template-columns: 36px 1fr;
  }

  .request-sheet {
    padding: 30px 22px;
  }
}

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

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