@font-face {
  font-family: "Geist";
  src: url("/assets/geist-latin.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 100 900;
}

@font-face {
  font-family: "Geist";
  src: url("/assets/geist-latin-ext.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 100 900;
  unicode-range: U+0100-02BA, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --coal: #0a0a09;
  --paper: #eeeae1;
  --paper-soft: #d1cec7;
  --muted: #94928d;
  --muted-low: #696863;
  --line: rgba(238, 234, 225, 0.22);
  --bar: #777671;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--coal);
}

body {
  color: var(--paper);
  font-family: "Geist", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

button,
a {
  font: inherit;
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

::selection {
  color: var(--coal);
  background: var(--paper);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.experience {
  position: relative;
  isolation: isolate;
  width: 100%;
  height: 100svh;
  min-height: 100svh;
  overflow: hidden;
  background: var(--coal);
}

.coal-surface {
  position: absolute;
  z-index: -3;
  inset: -2%;
  background-color: var(--coal);
  background-image: url("/assets/coal-dust-e58a337f.webp");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
  transition: transform 1400ms cubic-bezier(0.16, 1, 0.3, 1), filter 1400ms ease;
}

.experience::before,
.experience::after {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  pointer-events: none;
}

.experience::before {
  background:
    radial-gradient(circle at 72% 38%, transparent 0, rgba(0, 0, 0, 0.22) 54%, rgba(0, 0, 0, 0.56) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 45%, rgba(0, 0, 0, 0.12)),
    rgba(5, 5, 4, 0.25);
  transition: background-color 1000ms ease;
}

.experience::after {
  z-index: 20;
  border: 1px solid rgba(255, 255, 255, 0.025);
  opacity: 0.8;
}

.experience.is-inside .coal-surface {
  filter: brightness(0.69) contrast(1.08) saturate(0.72);
  transform: scale(1.07);
}

.experience.is-inside::before {
  background-color: rgba(0, 0, 0, 0.24);
}

/* Intro */

.intro {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  overflow: hidden;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition:
    opacity 700ms ease,
    transform 1200ms cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0s linear;
}

.is-inside .intro {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.025);
  transition-delay: 0s, 0s, 750ms;
  pointer-events: none;
}

.composition {
  display: grid;
  grid-template-columns: 4px minmax(0, 1fr);
  gap: clamp(24px, 3vw, 54px);
  align-items: stretch;
  width: min(1280px, calc(100% - 13vw));
  margin-left: 6.5vw;
  transform: translateY(-7svh);
}

.charcoal-bar {
  background: var(--bar);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.statement {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(9px, 0.9vw, 17px);
  min-width: 0;
}

.line {
  min-height: 1.2em;
  margin: 0;
  font-weight: 420;
  line-height: 1.2;
  letter-spacing: -0.026em;
  white-space: nowrap;
}

.line-name {
  font-size: clamp(31px, 3.2vw, 58px);
}

.line-role {
  font-size: clamp(26px, 2.8vw, 51px);
}

.line-manifesto {
  color: var(--muted);
  font-size: clamp(22px, 2.35vw, 43px);
}

.caret {
  display: inline-block;
  width: 0.075em;
  height: 1em;
  margin-left: 0.08em;
  vertical-align: -0.08em;
  background: currentColor;
  animation: blink 0.82s steps(1, end) infinite;
}

.explore {
  position: absolute;
  right: 5.5vw;
  bottom: 17svh;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 0;
  color: var(--paper);
  font-size: 13px;
  letter-spacing: 0.19em;
  background: transparent;
  border: 0;
  opacity: 0;
  cursor: pointer;
  transform: translateX(-10px);
  transition: opacity 900ms ease, transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.explore.is-visible {
  opacity: 0.78;
  transform: translateX(0);
  pointer-events: auto;
}

.explore-line {
  display: block;
  width: clamp(42px, 5vw, 76px);
  height: 1px;
  background: currentColor;
  transform-origin: right center;
  transition: transform 350ms ease;
}

.explore:hover,
.explore:focus-visible {
  opacity: 1;
  outline: none;
}

.explore:hover .explore-line,
.explore:focus-visible .explore-line {
  transform: scaleX(1.32);
}

/* Interior */

.site-shell {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: clamp(190px, 15.4vw, 286px) minmax(0, 1fr);
  grid-template-rows: clamp(76px, 10svh, 112px) minmax(0, 1fr) clamp(60px, 8svh, 88px);
  padding: 0 clamp(34px, 4.2vw, 80px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition:
    opacity 800ms ease 320ms,
    transform 1100ms cubic-bezier(0.16, 1, 0.3, 1) 240ms,
    visibility 0s linear 1100ms;
  pointer-events: none;
}

.is-inside .site-shell {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 300ms, 220ms, 0s;
  pointer-events: auto;
}

.masthead {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: clamp(190px, 15.4vw, 286px) minmax(0, 1fr) auto;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  justify-self: start;
  padding: 12px 0;
  font-size: 12px;
  font-weight: 560;
  letter-spacing: 0.12em;
  background: none;
  border: 0;
  cursor: pointer;
}

.wordmark::after {
  display: block;
  width: 0;
  height: 1px;
  margin-top: 5px;
  content: "";
  background: currentColor;
  transition: width 300ms ease;
}

.wordmark:hover::after,
.wordmark:focus-visible::after {
  width: 100%;
}

.wordmark:focus-visible,
.chapter-nav button:focus-visible,
.site-footer button:focus-visible,
.contact-link:focus-visible,
.language-option:focus-visible {
  outline: 1px solid var(--paper);
  outline-offset: 5px;
}

.chapter-status {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  color: var(--paper-soft);
  font-size: 10px;
  letter-spacing: 0.16em;
}

.chapter-status span:first-child {
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.status-rule {
  width: clamp(28px, 3vw, 54px);
  height: 1px;
  background: var(--muted-low);
}

.masthead-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.18em;
}

.masthead-meta a {
  color: inherit;
  text-decoration: none;
  transition: color 250ms ease;
}

.masthead-meta a:hover,
.masthead-meta a:focus-visible {
  color: var(--paper);
  outline: none;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 6px;
}

.language-option {
  padding: 8px 0;
  color: var(--muted-low);
  font-size: 10px;
  letter-spacing: 0.14em;
  background: none;
  border: 0;
  cursor: pointer;
  transition: color 250ms ease;
}

.language-option:hover {
  color: var(--paper-soft);
}

.language-option.is-active {
  color: var(--paper);
}

.chapter-nav {
  grid-row: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(13px, 2.1svh, 24px);
  padding-right: clamp(26px, 3vw, 56px);
  border-right: 1px solid var(--line);
}

.chapter-nav button {
  position: relative;
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  width: 100%;
  padding: 7px 0;
  color: var(--muted-low);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
  transition: color 300ms ease, transform 300ms ease;
}

.chapter-nav button::after {
  position: absolute;
  right: calc(clamp(26px, 3vw, 56px) * -1 - 1px);
  width: 2px;
  height: 0;
  content: "";
  background: var(--paper);
  transition: height 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

.chapter-nav button span:first-child {
  font-size: 9px;
  font-variant-numeric: tabular-nums;
}

.chapter-nav button:hover {
  color: var(--paper-soft);
  transform: translateX(3px);
}

.chapter-nav button.is-active {
  color: var(--paper);
}

.chapter-nav button.is-active::after {
  height: 28px;
}

.chapter-stage {
  position: relative;
  grid-column: 2;
  grid-row: 2;
  min-width: 0;
  overflow: hidden;
}

.chapter {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(210px, 0.6fr);
  grid-template-rows: minmax(0, 1fr) auto;
  column-gap: clamp(52px, 6vw, 120px);
  padding: clamp(28px, 6svh, 72px) 0 clamp(22px, 4svh, 46px) clamp(34px, 5.2vw, 100px);
  animation: chapter-in 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.chapter-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  min-width: 0;
  max-width: 900px;
}

.overline {
  margin: 0 0 clamp(18px, 3svh, 34px);
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.21em;
}

.chapter h2 {
  display: flex;
  flex-direction: column;
  gap: 0.04em;
  margin: 0;
  font-size: clamp(40px, 4.6vw, 88px);
  font-weight: 410;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.chapter h2 span {
  display: block;
  white-space: nowrap;
}

.lead {
  max-width: 680px;
  margin: clamp(22px, 3.5svh, 42px) 0 0;
  color: var(--paper-soft);
  font-size: clamp(15px, 1.25vw, 21px);
  font-weight: 360;
  line-height: 1.48;
  letter-spacing: -0.02em;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 24px;
  margin-top: clamp(20px, 3.4svh, 36px);
}

.contact-link {
  padding: 6px 0;
  color: var(--paper-soft);
  font-size: clamp(8px, 0.7vw, 10px);
  letter-spacing: 0.13em;
  text-decoration: none;
  transition: color 250ms ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  color: var(--paper);
}

.chapter-proof {
  position: relative;
  z-index: 2;
  align-self: center;
  border-top: 1px solid var(--line);
}

.proof-row {
  display: grid;
  gap: 5px;
  padding: clamp(14px, 2.2svh, 24px) 0;
  border-bottom: 1px solid var(--line);
}

.proof-row strong {
  font-size: clamp(15px, 1.45vw, 23px);
  font-weight: 460;
  letter-spacing: -0.025em;
}

.proof-row span {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.17em;
}

.chapter-note {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  align-self: end;
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  font-style: italic;
  letter-spacing: 0.04em;
}

.chapter-ghost {
  position: absolute;
  z-index: 0;
  right: -0.03em;
  bottom: -0.28em;
  color: rgba(255, 255, 255, 0.022);
  font-size: min(33vw, 550px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.1em;
  user-select: none;
}

.site-footer {
  grid-column: 1 / -1;
  grid-row: 3;
  display: grid;
  grid-template-columns: 1fr minmax(160px, 28vw) 1fr;
  align-items: center;
  border-top: 1px solid var(--line);
}

.desktop-footer-meta {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  width: 100%;
}

.desktop-footer-meta p {
  margin: 0;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.15em;
  white-space: nowrap;
}

.footer-privacy {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.15em;
  text-decoration: none;
  transition: color 250ms ease;
}

.footer-privacy:hover,
.footer-privacy:focus-visible {
  color: var(--paper);
}

.footer-privacy:focus-visible {
  outline: 1px solid var(--paper);
  outline-offset: 5px;
}

.footer-signature {
  justify-self: end;
  text-align: right;
  font-size: 9px;
  letter-spacing: 0.02em;
}

.footer-signature a {
  color: var(--paper-soft);
  text-decoration: none;
  transition: color 250ms ease;
}

.footer-signature a:hover,
.footer-signature a:focus-visible {
  color: var(--paper);
}

.footer-signature a:focus-visible {
  outline: 1px solid var(--paper);
  outline-offset: 4px;
}

.site-footer button {
  justify-self: start;
  padding: 10px 0;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.15em;
  background: none;
  border: 0;
  cursor: pointer;
  transition: color 250ms ease;
}

.site-footer button:last-child {
  justify-self: end;
}

.site-footer button:hover:not(:disabled) {
  color: var(--paper);
}

.site-footer button:disabled {
  opacity: 0.16;
  cursor: default;
}

.progress {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}

.progress span {
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.progress span.is-filled {
  background: rgba(255, 255, 255, 0.68);
}

@media (min-width: 901px) {
  .site-footer > .previous,
  .site-footer > .progress,
  .site-footer > .next {
    display: none;
  }
}

@keyframes blink {
  0%, 48% { opacity: 1; }
  49%, 100% { opacity: 0; }
}

@keyframes chapter-in {
  from {
    opacity: 0;
    transform: translateY(26px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@media (max-width: 900px) {
  .desktop-footer-meta {
    display: none;
  }

  .site-shell {
    grid-template-columns: 1fr;
    grid-template-rows: 68px minmax(0, 1fr) 60px 68px;
    padding: 0 22px;
  }

  .masthead {
    grid-template-columns: minmax(0, 1fr) auto auto;
    column-gap: clamp(10px, 2.5vw, 22px);
  }

  .chapter-status {
    justify-self: end;
  }

  .masthead-meta {
    display: flex;
  }

  .privacy-link,
  .location-meta,
  .masthead-separator {
    display: none;
  }

  .chapter-nav {
    grid-column: 1;
    grid-row: 3;
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
    padding: 0;
    border-top: 1px solid var(--line);
    border-right: 0;
  }

  .chapter-nav button {
    display: flex;
    justify-content: center;
    width: auto;
    min-width: 44px;
    padding: 0 7px;
    text-align: center;
  }

  .chapter-nav button::after {
    right: auto;
    bottom: -1px;
    width: 0;
    height: 2px;
  }

  .chapter-nav button.is-active::after {
    width: 100%;
    height: 2px;
  }

  .chapter-nav button span:first-child {
    display: none;
  }

  .chapter-nav button span:last-child {
    font-size: 8px;
  }

  .chapter-stage {
    grid-column: 1;
    grid-row: 2;
  }

  .chapter {
    grid-template-columns: minmax(0, 1.2fr) minmax(145px, 0.45fr);
    padding: clamp(24px, 5svh, 48px) 2px clamp(18px, 3svh, 28px);
    column-gap: 34px;
  }

  .chapter h2 {
    font-size: clamp(34px, 6.3vw, 58px);
  }

  .site-footer {
    grid-column: 1;
    grid-row: 4;
  }
}

@media (max-width: 620px) {
  .composition {
    grid-template-columns: 3px minmax(0, 1fr);
    gap: 20px;
    width: calc(100% - 40px);
    margin-left: 20px;
    transform: translateY(-6svh);
  }

  .line-name {
    font-size: clamp(27px, 8vw, 36px);
  }

  .line-role {
    font-size: clamp(14px, 4.15vw, 20px);
  }

  .line-manifesto {
    font-size: clamp(11px, 3.15vw, 16px);
  }

  .explore {
    right: 22px;
    bottom: max(64px, 15svh);
    font-size: 12px;
  }

  .site-shell {
    grid-template-rows: 60px minmax(0, 1fr) 54px 56px;
    padding: 0 18px;
  }

  .wordmark {
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .masthead {
    column-gap: 8px;
  }

  .language-switch {
    gap: 5px;
  }

  .language-option {
    font-size: 8px;
    letter-spacing: 0.08em;
  }

  .chapter-status {
    gap: 8px;
    font-size: 8px;
    letter-spacing: 0.12em;
  }

  .status-rule {
    width: 18px;
  }

  .chapter {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(18px, 3.2svh, 30px);
    padding: 18px 0 14px;
  }

  .chapter-copy {
    align-self: stretch;
  }

  .overline {
    margin-bottom: clamp(12px, 2.4svh, 22px);
    font-size: 7px;
    letter-spacing: 0.17em;
  }

  .chapter h2 {
    font-size: clamp(25px, 7.7vw, 38px);
    line-height: 0.99;
  }

  .lead {
    margin-top: clamp(14px, 2.6svh, 24px);
    font-size: clamp(12px, 3.55vw, 16px);
    line-height: 1.42;
  }

  .contact-links {
    gap: 4px 18px;
    margin-top: 16px;
  }

  .contact-link {
    font-size: 8px;
  }

  .chapter-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-self: stretch;
  }

  .proof-row {
    align-content: start;
    padding: 12px 9px 8px 0;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .proof-row:last-child {
    padding-left: 10px;
    border-right: 0;
  }

  .proof-row strong {
    font-size: clamp(11px, 3.5vw, 16px);
  }

  .proof-row span {
    font-size: 6px;
    line-height: 1.35;
  }

  .chapter-note {
    position: absolute;
    bottom: 12px;
    left: 0;
    font-size: 7px;
  }

  .chapter-ghost {
    right: 0;
    bottom: 0;
    font-size: 74vw;
  }

  .chapter-nav button span:last-child {
    font-size: 6.8px;
    letter-spacing: 0.08em;
  }

  .site-footer {
    grid-template-columns: 62px 1fr 62px;
  }

  .site-footer button {
    font-size: 12px;
    letter-spacing: 0;
  }

  .site-footer button span {
    display: none;
  }

  .progress {
    min-width: 0;
  }
}

@media (max-height: 690px) and (max-width: 620px) {
  .site-shell {
    grid-template-rows: 54px minmax(0, 1fr) 48px 50px;
  }

  .chapter {
    gap: 13px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .chapter h2 {
    font-size: clamp(27px, 8.8vw, 39px);
  }

  .lead {
    margin-top: 12px;
    font-size: 11.5px;
  }

  .proof-row {
    padding-top: 8px;
  }

  .chapter-note {
    display: none;
  }
}

@media (max-height: 520px) and (orientation: landscape) {
  .composition {
    grid-template-columns: 3px minmax(0, 1fr);
    gap: 22px;
    transform: translateY(-5svh);
  }

  .line-name { font-size: clamp(24px, 5.2vh, 38px); }
  .line-role { font-size: clamp(21px, 4.7vh, 34px); }
  .line-manifesto { font-size: clamp(18px, 4.1vh, 30px); }

  .explore {
    right: 4vw;
    bottom: 12svh;
  }

  .site-shell {
    grid-template-columns: 150px minmax(0, 1fr);
    grid-template-rows: 52px minmax(0, 1fr) 46px;
    padding: 0 24px;
  }

  .masthead {
    grid-template-columns: 150px minmax(0, 1fr) auto;
  }

  .chapter-nav {
    grid-column: 1;
    grid-row: 2;
    flex-direction: column;
    justify-content: center;
    padding-right: 24px;
    border-top: 0;
    border-right: 1px solid var(--line);
  }

  .chapter-nav button {
    display: grid;
    grid-template-columns: 20px 1fr;
    justify-content: initial;
    width: 100%;
    padding: 4px 0;
    text-align: left;
  }

  .chapter-nav button::after {
    right: -25px;
    bottom: auto;
    width: 2px;
    height: 0;
  }

  .chapter-nav button.is-active::after {
    width: 2px;
    height: 22px;
  }

  .chapter-nav button span:first-child {
    display: inline;
  }

  .chapter-nav button span:last-child {
    font-size: 7px;
  }

  .chapter-stage {
    grid-column: 2;
    grid-row: 2;
  }

  .chapter {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(155px, 0.7fr);
    grid-template-rows: 1fr auto;
    gap: 0 32px;
    padding: 18px 0 14px 34px;
  }

  .chapter h2 {
    font-size: clamp(28px, 7.8vh, 54px);
  }

  .overline {
    margin-bottom: 10px;
  }

  .lead {
    margin-top: 12px;
    font-size: 11px;
  }

  .chapter-proof {
    display: block;
  }

  .proof-row {
    padding: 7px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-row:last-child {
    padding-left: 0;
  }

  .chapter-note {
    position: relative;
    bottom: auto;
  }

  .site-footer {
    grid-column: 1 / -1;
    grid-row: 3;
  }
}

@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;
  }
}

/* Privacy */

.privacy-page {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow-x: hidden;
  background: var(--coal);
}

.privacy-body {
  height: auto;
  min-height: 100%;
  overflow-y: auto;
}

.error-body {
  overflow: hidden;
}

.error-page {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 100svh;
  overflow: hidden;
}

.error-page::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  background: rgba(0, 0, 0, 0.56);
}

.error-copy {
  width: min(900px, calc(100% - 44px));
}

.error-copy p {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.18em;
}

.error-copy h1 {
  margin: 22px 0 48px;
  font-size: clamp(46px, 8vw, 112px);
  font-weight: 410;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.error-copy a {
  color: var(--paper);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-decoration: none;
}

.privacy-page::before {
  position: fixed;
  z-index: -2;
  inset: 0;
  content: "";
  background: rgba(0, 0, 0, 0.64);
}

.privacy-surface {
  position: fixed;
  filter: brightness(0.6) contrast(1.08);
}

.privacy-header {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(1120px, calc(100% - 48px));
  height: 82px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.15em;
  border-bottom: 1px solid var(--line);
}

.privacy-wordmark {
  color: var(--paper);
  font-size: 11px;
  font-weight: 560;
  letter-spacing: 0.12em;
  text-decoration: none;
}

.privacy-document {
  width: min(760px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(72px, 11vw, 140px) 0 110px;
}

.privacy-overline {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.2em;
}

.privacy-document h1 {
  margin: 0 0 42px;
  font-size: clamp(42px, 7vw, 78px);
  font-weight: 410;
  line-height: 1;
  letter-spacing: -0.055em;
}

.privacy-intro {
  margin: 0 0 72px;
  color: var(--paper-soft);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.privacy-document section {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.privacy-document h2 {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 520;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.privacy-document section p {
  margin: 0;
  color: var(--paper-soft);
  font-size: 15px;
  line-height: 1.72;
}

.privacy-document a {
  color: var(--paper);
}

.privacy-back {
  display: inline-block;
  margin-top: 48px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-decoration: none;
}

.noscript {
  position: fixed;
  z-index: 100;
  inset: auto 24px 24px;
  padding: 14px 18px;
  color: var(--paper);
  font-family: "Geist", sans-serif;
  font-size: 13px;
  background: rgba(0, 0, 0, 0.88);
  border: 1px solid var(--line);
}

@media (max-width: 620px) {
  .privacy-header,
  .privacy-document {
    width: calc(100% - 36px);
  }

  .privacy-header span {
    font-size: 7px;
  }

  .privacy-document {
    padding-top: 64px;
  }

  .privacy-intro {
    margin-bottom: 54px;
  }
}
