@font-face {
  font-family: "Satoshi";
  src: url("assets/Satoshi-Variable.woff") format("woff");
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
}

:root {
  color-scheme: light;
  --paper: #f2ecdf;
  --paper-bright: #fbf7ed;
  --paper-deep: #e5dcc8;
  --ink: #2e284c;
  --ink-muted: #665f78;
  --violet: #5b3d91;
  --violet-dark: #3b2b66;
  --violet-pale: #d9caee;
  --gold: #c99c2a;
  --gold-bright: #e8bd4c;
  --rule: rgb(46 40 76 / 19%);
  --shadow: 0 22px 70px rgb(46 40 76 / 15%);
  --page-pad: clamp(1.25rem, 5vw, 5.5rem);
  --max-width: 91rem;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
  font-family: "Satoshi", system-ui, sans-serif;
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(
      90deg,
      transparent calc(100% - 1px),
      rgb(91 61 145 / 5%) 1px
    )
    0 0 / 5rem 100%,
    var(--paper);
}

main > section,
.site-footer {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

body::before {
  position: fixed;
  z-index: 20;
  inset: 0;
  border: clamp(0.35rem, 0.7vw, 0.75rem) solid var(--ink);
  content: "";
  pointer-events: none;
}

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

a {
  color: inherit;
}

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

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

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  padding: 0.8rem 1.1rem;
  translate: 0 -180%;
  background: var(--ink);
  color: white;
  font-weight: 700;
  text-decoration: none;
  transition: translate 180ms ease;
}

.skip-link:focus {
  translate: 0;
}

.page-grain {
  position: fixed;
  z-index: 19;
  inset: 0;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
  pointer-events: none;
  mix-blend-mode: multiply;
}

.scroll-progress {
  position: fixed;
  z-index: 22;
  top: clamp(0.35rem, 0.7vw, 0.75rem);
  right: clamp(0.35rem, 0.7vw, 0.75rem);
  left: clamp(0.35rem, 0.7vw, 0.75rem);
  height: 3px;
  scale: 0 1;
  transform-origin: left;
  background: var(--gold-bright);
  pointer-events: none;
}

@supports (animation-timeline: scroll()) {
  .scroll-progress {
    animation: page-progress linear both;
    animation-timeline: scroll();
  }

  @keyframes page-progress {
    to {
      scale: 1 1;
    }
  }
}

.masthead {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 2rem var(--page-pad);
}

.brand img {
  width: clamp(7.8rem, 10vw, 10rem);
  height: auto;
}

.brand,
.nav-cta {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
}

.masthead nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.8rem);
  font-size: 0.77rem;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.masthead nav a {
  text-decoration: none;
}

.masthead nav a:not(.nav-cta) {
  position: relative;
}

.masthead nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -0.4rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  scale: 0 1;
  transform-origin: right;
  transition: scale 250ms var(--ease-out);
}

.masthead nav a:hover::after {
  scale: 1;
  transform-origin: left;
}

.nav-cta {
  border: 1px solid var(--ink);
  padding: 0.75rem 1rem;
  transition:
    background-color 200ms ease,
    color 200ms ease;
}

.nav-cta:hover {
  background: var(--ink);
  color: var(--paper-bright);
}

.section-rail {
  position: fixed;
  z-index: 18;
  top: 50%;
  right: clamp(1rem, 1.65vw, 1.8rem);
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 0.78rem;
  translate: 0 -50%;
}

.section-rail a {
  position: relative;
  display: flex;
  min-width: 1.6rem;
  min-height: 1.6rem;
  align-items: center;
  justify-content: flex-end;
  text-decoration: none;
}

.section-rail a::after {
  width: 0.48rem;
  height: 0.48rem;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  content: "";
  transition:
    scale 240ms var(--ease-out),
    background-color 240ms ease,
    box-shadow 240ms ease;
}

.section-rail a span {
  position: absolute;
  right: 1.45rem;
  width: max-content;
  padding: 0.34rem 0.48rem;
  opacity: 0;
  background: var(--ink);
  color: var(--paper-bright);
  font-size: 0.58rem;
  font-weight: 780;
  letter-spacing: 0.1em;
  pointer-events: none;
  text-transform: uppercase;
  translate: 0.45rem 0;
  transition:
    opacity 180ms ease,
    translate 240ms var(--ease-out);
}

.section-rail a:hover span,
.section-rail a:focus-visible span {
  opacity: 1;
  translate: 0;
}

.section-rail a[aria-current="location"]::after {
  scale: 1.45;
  border-color: var(--violet);
  background: var(--violet);
  box-shadow: 0 0 0 0.28rem rgb(242 236 223 / 76%);
}

.hero {
  position: relative;
  min-height: max(46rem, 100svh);
  overflow: clip;
  border-bottom: 1px solid var(--ink);
  isolation: isolate;
}

#security-shader,
.hero-fallback {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-fallback {
  z-index: -4;
  background:
    radial-gradient(circle at 72% 44%, rgb(201 156 42 / 26%), transparent 30%),
    linear-gradient(132deg, var(--paper-bright), var(--paper) 55%, #e8dfca);
}

.hero::before {
  position: absolute;
  z-index: -2;
  top: 16%;
  right: -25%;
  width: min(88vw, 85rem);
  aspect-ratio: 3486 / 911;
  opacity: 0.045;
  background: url("assets/vaatun-wordmark-dark.png") center / contain no-repeat;
  content: "";
  pointer-events: none;
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: 4vw;
  bottom: 8vh;
  width: clamp(12rem, 23vw, 23rem);
  height: clamp(12rem, 23vw, 23rem);
  border-radius: 50%;
  background: repeating-conic-gradient(
    from 10deg,
    rgb(46 40 76 / 12%) 0 0.4deg,
    transparent 0.4deg 2deg
  );
  content: "";
  mask: radial-gradient(
    circle,
    transparent 0 27%,
    #000 28% 30%,
    transparent 31% 38%,
    #000 39% 41%,
    transparent 42% 52%,
    #000 53% 55%,
    transparent 56%
  );
}

.hero-serial {
  position: absolute;
  top: 8.3rem;
  right: var(--page-pad);
  display: flex;
  gap: 1rem;
  font-size: 0.68rem;
  font-weight: 780;
  letter-spacing: 0.17em;
  writing-mode: vertical-rl;
}

.hero-copy {
  position: absolute;
  top: 50%;
  left: var(--page-pad);
  width: min(58rem, 69vw);
  translate: 0 -48%;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.4rem;
  color: var(--violet);
  font-size: 0.75rem;
  font-weight: 820;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 2rem;
  height: 2px;
  background: var(--gold);
}

.hero h1 {
  max-width: 12ch;
  margin-bottom: 2rem;
  font-size: clamp(4rem, 8.8vw, 9.4rem);
  font-weight: 640;
  letter-spacing: -0.07em;
  line-height: 0.82;
}

.hero h1 em {
  display: block;
  color: var(--violet);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.hero-lede {
  max-width: 45rem;
  margin-bottom: 2.1rem;
  color: var(--ink-muted);
  font-size: clamp(1.05rem, 1.45vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions,
.submission-actions {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.button {
  display: inline-flex;
  min-height: 3.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.9rem 1.15rem 0.9rem 1.35rem;
  border: 1px solid transparent;
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    translate 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out);
}

.button:hover {
  translate: 0 -3px;
  box-shadow: 6px 6px 0 var(--gold);
}

.button-primary {
  background: var(--ink);
  color: var(--paper-bright);
}

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

.text-link {
  position: relative;
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  padding: 0.55rem 0;
  font-size: 0.8rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform-origin: left;
  transition: scale 220ms var(--ease-out);
}

.text-link:hover::after {
  scale: 0.55 1;
}

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

.policy-specimen {
  position: absolute;
  right: 8vw;
  bottom: 12vh;
  width: clamp(17.5rem, 24vw, 25rem);
  padding: 1.4rem;
  rotate: -3deg;
  border: 1px solid rgb(46 40 76 / 60%);
  background: rgb(251 247 237 / 89%);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.specimen-head,
.specimen-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.3rem 0.8rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--rule);
}

.specimen-head {
  padding-top: 0;
  font-size: 0.68rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.specimen-live {
  color: var(--violet);
}

.specimen-live i {
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  margin-right: 0.3rem;
  border-radius: 50%;
  background: #58a96c;
  box-shadow: 0 0 0 0.25rem rgb(88 169 108 / 16%);
}

.specimen-row span {
  grid-column: 1 / -1;
  color: var(--violet);
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.specimen-row strong {
  font-size: 0.9rem;
}

.specimen-row small {
  color: var(--ink-muted);
  font-size: 0.65rem;
}

.specimen-result strong {
  color: var(--violet);
}

.specimen-stamp {
  position: absolute;
  right: -1rem;
  bottom: -1rem;
  padding: 0.55rem 0.8rem;
  rotate: 5deg;
  border: 3px double var(--violet);
  color: var(--violet);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.scroll-cue {
  position: absolute;
  bottom: 2.4rem;
  left: var(--page-pad);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-cue i {
  display: block;
  width: 4.5rem;
  height: 1px;
  overflow: hidden;
  background: var(--rule);
}

.scroll-cue i::after {
  display: block;
  width: 40%;
  height: 100%;
  background: var(--violet);
  content: "";
  animation: scan 2.2s ease-in-out infinite;
}

@keyframes scan {
  0%,
  100% {
    translate: -110%;
  }
  50% {
    translate: 260%;
  }
}

.section-shell {
  width: min(calc(100% - (2 * var(--page-pad))), var(--max-width));
  margin-inline: auto;
}

.premise,
.brief,
.cases,
.evaluation {
  position: relative;
  padding-block: clamp(6rem, 11vw, 11rem);
}

.section-kicker {
  margin-bottom: 2rem;
}

.premise-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: start;
}

.premise h2,
.brief h2,
.cases h2,
.resources h2,
.evaluation h2,
.submission h2 {
  margin-bottom: 0;
  font-size: clamp(2.9rem, 6vw, 6.5rem);
  font-weight: 590;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.premise-copy {
  padding-top: 0.7rem;
  color: var(--ink-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.dimension-ribbon {
  display: flex;
  margin-top: clamp(4rem, 8vw, 8rem);
  overflow: hidden;
  border-block: 1px solid var(--ink);
}

.dimension-ribbon span {
  flex: 1 0 auto;
  padding: 0.9rem clamp(0.7rem, 2vw, 1.8rem);
  border-right: 1px solid var(--ink);
  font-size: 0.68rem;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dimension-ribbon span:nth-child(odd) {
  background: var(--ink);
  color: var(--paper-bright);
}

.brief,
.cases,
.evaluation {
  border-top: 1px solid var(--rule);
}

.section-index {
  position: absolute;
  top: 3rem;
  right: 0;
  color: rgb(46 40 76 / 11%);
  font-size: clamp(5rem, 11vw, 11rem);
  font-weight: 850;
  letter-spacing: -0.08em;
  line-height: 1;
}

.brief-heading {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: clamp(2rem, 8vw, 8rem);
  align-items: end;
}

.brief-heading .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.brief-heading > p:last-child {
  margin-bottom: 0.5rem;
  color: var(--ink-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.contract {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  margin-top: clamp(4rem, 8vw, 7rem);
  border: 1px solid var(--ink);
  background: var(--paper-bright);
  box-shadow: 0.8rem 0.8rem 0 var(--violet-pale);
}

.contract article {
  padding: clamp(1.5rem, 4vw, 3rem);
}

.contract h3 {
  margin: 0.65rem 0 1rem;
  font-size: clamp(1.4rem, 2.3vw, 2.3rem);
  letter-spacing: -0.035em;
}

.contract p {
  max-width: 41rem;
  margin: 0;
  color: var(--ink-muted);
  line-height: 1.6;
}

.contract code {
  padding: 0.08rem 0.35rem;
  background: var(--paper-deep);
  font-family: inherit;
  font-weight: 780;
}

.contract-label {
  color: var(--violet);
  font-size: 0.65rem;
  font-weight: 830;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contract-arrow {
  display: grid;
  width: 4rem;
  place-items: center;
  border-inline: 1px solid var(--ink);
  background: var(--gold-bright);
  font-size: 1.6rem;
}

.contract-arrow span {
  display: block;
}

.requirements {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 6rem;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.requirement {
  min-height: 20rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: rgb(251 247 237 / 45%);
}

.requirement-wide {
  grid-column: span 2;
}

.requirement > span {
  color: var(--violet);
  font-size: 0.62rem;
  font-weight: 830;
  letter-spacing: 0.16em;
}

.requirement h3 {
  max-width: 17ch;
  margin: 3.5rem 0 1.25rem;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.requirement p {
  max-width: 35rem;
  margin: 0;
  color: var(--ink-muted);
  line-height: 1.6;
}

.requirement-dark {
  background: var(--ink);
  color: var(--paper-bright);
}

.requirement-dark > span {
  color: var(--gold-bright);
}

.requirement-dark p {
  color: rgb(251 247 237 / 72%);
}

.cases-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 5rem;
}

.cases-heading .section-kicker {
  margin-bottom: 0.4rem;
}

.case-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.case-list li {
  position: relative;
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr) auto;
  gap: clamp(1rem, 3vw, 3rem);
  align-items: center;
  min-height: 9rem;
  padding: 1.5rem 1rem;
  overflow: hidden;
  border-bottom: 1px solid var(--ink);
  isolation: isolate;
}

.case-list li::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--violet-pale);
  content: "";
  translate: -101% 0;
  transition: translate 520ms var(--ease-out);
}

.case-list li:hover::before,
.case-list li:focus-within::before {
  translate: 0;
}

.case-number {
  align-self: start;
  padding-top: 0.25rem;
  color: var(--violet);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.case-list p {
  margin-bottom: 0.45rem;
  color: var(--violet);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.case-list h3 {
  margin: 0;
  font-size: clamp(1.3rem, 2.5vw, 2.5rem);
  font-weight: 610;
  letter-spacing: -0.045em;
}

.case-format {
  display: inline-flex;
  align-items: center;
  color: var(--ink-muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.privacy-note {
  max-width: 57rem;
  margin: 2.2rem 0 0 auto;
  color: var(--ink-muted);
  font-size: 0.85rem;
  line-height: 1.55;
}

.privacy-note span {
  margin-right: 0.5rem;
  color: var(--gold);
}

.resources {
  position: relative;
  overflow: hidden;
  padding-block: clamp(6rem, 11vw, 11rem);
  background: var(--ink);
  color: var(--paper-bright);
}

.resources::before {
  position: absolute;
  right: -14rem;
  bottom: -22rem;
  width: 48rem;
  height: 48rem;
  border: 1px solid rgb(232 189 76 / 30%);
  border-radius: 50%;
  box-shadow:
    0 0 0 3rem rgb(232 189 76 / 3%),
    0 0 0 6rem rgb(232 189 76 / 2%),
    0 0 0 9rem rgb(232 189 76 / 1%);
  content: "";
}

.resources .section-index {
  color: rgb(251 247 237 / 8%);
}

.resources .section-kicker {
  color: var(--gold-bright);
}

.resources-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(15rem, 0.78fr) minmax(30rem, 1.22fr);
  gap: clamp(3rem, 8vw, 9rem);
}

.resources h2 {
  max-width: 8ch;
}

.resources-copy > p:last-child {
  max-width: 30rem;
  margin-top: 2rem;
  color: rgb(251 247 237 / 68%);
  line-height: 1.65;
}

.resource-ledger {
  border-top: 1px solid rgb(251 247 237 / 40%);
}

.resource-item {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  min-height: 6rem;
  padding: 1rem 0.5rem;
  border-bottom: 1px solid rgb(251 247 237 / 40%);
}

.resource-ledger span {
  color: var(--gold-bright);
  font-size: 0.62rem;
  font-weight: 820;
  letter-spacing: 0.15em;
}

.resource-ledger strong {
  font-size: clamp(1rem, 1.4vw, 1.3rem);
}

.resource-ledger small {
  max-width: 18rem;
  color: rgb(251 247 237 / 55%);
  font-size: 0.68rem;
  line-height: 1.45;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: right;
}

.resource-package {
  align-self: center;
}

.bundle-download {
  margin-top: 2rem;
}

.evaluation-intro {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: end;
  gap: 3rem;
}

.evaluation-intro .section-kicker {
  margin-bottom: 0.4rem;
}

.evaluation-scale {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 6rem;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.evaluation-scale article {
  min-height: 19rem;
  padding: clamp(1.25rem, 3vw, 2.2rem);
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.evaluation-scale span {
  display: block;
  color: var(--violet);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  font-style: italic;
  letter-spacing: -0.07em;
}

.evaluation-scale h3 {
  margin: 2.5rem 0 0.7rem;
  font-size: 1.2rem;
}

.evaluation-scale p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.evaluation blockquote {
  position: relative;
  max-width: 62rem;
  margin: clamp(5rem, 10vw, 10rem) auto 0;
  padding: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 4vw, 4rem);
  line-height: 1.18;
  text-align: center;
}

.evaluation blockquote::before {
  display: block;
  width: 4rem;
  height: 3px;
  margin: 0 auto 2rem;
  background: var(--gold);
  content: "";
}

.evaluation blockquote em {
  color: var(--violet);
}

.submission {
  position: relative;
  min-height: 47rem;
  overflow: hidden;
  padding-block: clamp(6rem, 10vw, 10rem);
  background: var(--violet-dark);
  color: var(--paper-bright);
  isolation: isolate;
}

#stamp-canvas {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
}

.submission-inner {
  position: relative;
}

.submission-inner > img {
  width: clamp(8rem, 12vw, 12rem);
  margin-bottom: 4rem;
  filter: brightness(0) invert(1);
}

.submission .section-kicker {
  color: var(--gold-bright);
}

.submission h2 {
  max-width: 11ch;
  color: var(--paper-bright);
  font-size: clamp(3.4rem, 7.4vw, 8rem);
}

.submission-inner > p:not(.section-kicker) {
  max-width: 45rem;
  margin: 2.5rem 0;
  color: rgb(251 247 237 / 72%);
  font-size: 1.05rem;
  line-height: 1.65;
}

.submission-email {
  color: var(--paper-bright);
  font-weight: 760;
  text-decoration-color: var(--gold-bright);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.2em;
}

.submission-email:hover {
  color: var(--gold-bright);
}

.deliverables {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.2rem;
  margin-top: 5rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgb(251 247 237 / 30%);
  color: rgb(251 247 237 / 72%);
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  min-height: clamp(34rem, 52vw, 50rem);
  flex-direction: column;
  padding: clamp(3rem, 6vw, 6rem) var(--page-pad) 2rem;
  overflow: clip;
  border-top: 1px solid var(--ink);
  background: var(--paper-bright);
}

.footer-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(2rem, 6vw, 7rem);
  align-items: end;
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
  border-bottom: 1px solid var(--rule);
}

.footer-kicker {
  margin-bottom: 1rem;
  color: var(--violet);
  font-size: 0.68rem;
  font-weight: 820;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-intro h2 {
  max-width: 17ch;
  margin: 0;
  font-size: clamp(2.2rem, 4.5vw, 5.1rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.footer-careers {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 0;
  border-bottom: 1px solid currentColor;
  font-size: clamp(0.9rem, 1.3vw, 1.15rem);
  font-weight: 760;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.footer-careers span {
  color: var(--violet);
  font-size: 0.62rem;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-wordmark {
  display: grid;
  flex: 1;
  place-items: center;
  padding-block: clamp(3rem, 7vw, 7rem);
  padding-inline: clamp(1.5rem, 5vw, 6rem);
  text-decoration: none;
}

.footer-wordmark img {
  width: min(100%, 100rem);
  height: auto;
  transform: scale(1.065);
  transform-origin: center;
  transition: transform 450ms var(--ease-out);
}

.footer-wordmark:hover img {
  transform: translateY(-0.25rem) scale(1.075);
}

.footer-baseline {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--ink);
  font-size: 0.65rem;
  font-weight: 760;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-baseline p {
  margin: 0;
}

.footer-baseline nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-baseline a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  text-underline-offset: 0.2em;
}

@supports (animation-timeline: view()) {
  .reveal-section > *:not(.section-index, canvas) {
    animation: reveal-up both linear;
    animation-range: entry 5% entry 35%;
    animation-timeline: view();
  }

  @keyframes reveal-up {
    from {
      opacity: 0;
      translate: 0 2rem;
    }
    to {
      opacity: 1;
      translate: 0;
    }
  }
}

@media (max-width: 70rem) {
  .section-rail {
    display: none;
  }

  .hero-copy {
    width: min(55rem, calc(100% - (2 * var(--page-pad))));
  }

  .policy-specimen {
    right: var(--page-pad);
    bottom: 11vh;
    width: 19rem;
  }

  .requirements,
  .evaluation-scale {
    grid-template-columns: repeat(2, 1fr);
  }

  .requirement-wide {
    grid-column: span 1;
  }

  .resources-inner {
    grid-template-columns: 1fr;
  }

  .resources h2 {
    max-width: 10ch;
  }
}

@media (max-width: 52rem) {
  .masthead {
    padding-top: 1.5rem;
  }

  .masthead nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    display: flex;
    min-height: max(54rem, 100svh);
    flex-direction: column;
    padding-block: 9.5rem 4rem;
  }

  .hero-copy {
    position: relative;
    top: auto;
    left: auto;
    margin-inline: auto;
    translate: 0;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 15vw, 6.8rem);
  }

  .hero-lede {
    max-width: 34rem;
  }

  .hero-serial {
    display: none;
  }

  .policy-specimen {
    position: relative;
    right: auto;
    bottom: auto;
    align-self: flex-end;
    width: min(20rem, calc(100% - (2 * var(--page-pad))));
    margin: clamp(3rem, 8vw, 5rem) var(--page-pad) 0;
  }

  .scroll-cue {
    display: none;
  }

  .premise-layout,
  .brief-heading,
  .cases-heading,
  .evaluation-intro {
    grid-template-columns: 1fr;
  }

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

  .contract-arrow {
    width: auto;
    height: 3rem;
    border: 0;
    border-block: 1px solid var(--ink);
  }

  .contract-arrow span {
    rotate: 90deg;
  }

  .case-list li {
    grid-template-columns: 2.5rem minmax(0, 1fr);
  }

  .case-format {
    grid-column: 2;
    justify-self: start;
  }

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

  .footer-careers {
    justify-self: start;
  }

  .footer-wordmark {
    min-height: 15rem;
  }

  .footer-baseline {
    gap: 1.25rem;
  }
}

@media (max-width: 38rem) {
  :root {
    --page-pad: 1.25rem;
  }

  body::before {
    display: none;
  }

  .masthead {
    position: absolute;
    gap: 0.75rem;
  }

  .brand img {
    width: 7rem;
  }

  .nav-cta {
    padding: 0.65rem 0.75rem;
  }

  .hero {
    min-height: max(52rem, 100svh);
    padding-block: 8.5rem 3.5rem;
  }

  .hero-copy {
    width: calc(100% - (2 * var(--page-pad)));
  }

  .hero h1 {
    margin-bottom: 1.4rem;
    font-size: clamp(2.85rem, 15vw, 4.8rem);
    line-height: 0.85;
  }

  .eyebrow {
    gap: 0.6rem;
    font-size: 0.68rem;
  }

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

  .policy-specimen {
    align-self: stretch;
    margin-inline: var(--page-pad);
  }

  .requirements,
  .evaluation-scale {
    grid-template-columns: 1fr;
  }

  .requirement,
  .evaluation-scale article {
    min-height: auto;
  }

  .requirement h3,
  .evaluation-scale h3 {
    margin-top: 2rem;
  }

  .dimension-ribbon {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: clip;
  }

  .dimension-ribbon span {
    min-width: 0;
    border-bottom: 1px solid var(--ink);
    white-space: normal;
  }

  .dimension-ribbon span:nth-child(2n) {
    border-right: 0;
  }

  .dimension-ribbon span:last-child {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 0;
  }

  .resource-item {
    grid-template-columns: 3.2rem 1fr;
  }

  .resource-ledger small {
    grid-column: 2;
    text-align: left;
  }

  .submission {
    min-height: 53rem;
  }

  .submission-inner > img {
    width: 8.5rem;
    margin-bottom: 3rem;
  }

  .footer-careers {
    overflow-wrap: anywhere;
  }

  .footer-baseline nav {
    gap: 0.25rem 1.25rem;
  }
}

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

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

@media (forced-colors: active) {
  .page-grain,
  #security-shader,
  #stamp-canvas,
  .hero-fallback {
    display: none;
  }

  .button,
  .nav-cta,
  .policy-specimen,
  .contract,
  .requirement,
  .evaluation-scale article {
    border: 1px solid CanvasText;
  }
}
