@font-face {
  font-family: "HarmonyOSSans";
  src: url("fonts/HarmonyOSSans.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Anthropic Serif";
  src: url("fonts/AnthropicSerifVariable-TextRegular.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
}

@font-face {
  font-family: "Anthropic Serif";
  src: url("fonts/AnthropicSerifVariable-TextRegularItalic.woff2") format("woff2");
  font-style: italic;
  font-weight: 300 800;
  font-display: swap;
}

:root {
  color-scheme: light;
  --paper: #edeae1;
  --paper-bright: #f5f2eb;
  --ink: #212522;
  --ink-soft: #3d423d;
  --muted: #555950;
  --line: #c8c6bc;
  --line-dark: #565b55;
  --signal: #b64730;
  --night: #222724;
  --page: min(1320px, calc(100% - 112px));
  --page-font: "HarmonyOSSans", "HarmonyOS Sans SC", sans-serif;
  --latin: "Anthropic Serif", "Times New Roman", serif;
  --mono: "Anthropic Serif", "Times New Roman", serif;
}

html[lang="en"] { --page-font: "Anthropic Serif", "Times New Roman", serif; }

* { box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--page-font);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body, button, input, select, textarea { font-family: var(--page-font); }
button, input, select, textarea { font-size: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
::selection { background: var(--signal); color: var(--paper-bright); }
[hidden] { display: none !important; }

.page-shell { width: var(--page); margin-inline: auto; }
.eyebrow, .wordmark__label, .header-note, .cover__index-top, .cover__index-bottom,
.cover__baseline, .timeline-entry__date span, .timeline-entry__index,
.people-note__number, .people-section__caption, .activity-empty__mark,
.suggestion-form__submit > span, .suggestion-section__foot, .gate__foot {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .13em;
  line-height: 1.6;
  text-transform: uppercase;
}
.eyebrow { margin: 0; color: var(--muted); }

.wordmark { display: inline-flex; align-items: center; gap: 11px; }
.wordmark__mark {
  font-family: var(--latin);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -.07em;
  line-height: 1;
}
.wordmark__mark span { color: var(--signal); }
.wordmark__label { padding-left: 11px; border-left: 1px solid var(--line); color: var(--muted); }

.site-header {
  position: sticky;
  z-index: 5;
  top: 0;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-inline: max(56px, calc((100vw - 1320px) / 2));
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.main-nav { display: flex; align-items: center; gap: clamp(18px, 3vw, 44px); }
.main-nav a { display: inline-flex; align-items: baseline; gap: 8px; font-size: 13px; transition: color .18s ease; }
.main-nav a:hover, .main-nav a:focus-visible { color: var(--signal); }
.main-nav a > span:first-child { color: var(--muted); font: 10px var(--mono); }
.main-nav a > span:last-child { white-space: nowrap; }
.header-tools, .gate__meta-tools { display: flex; align-items: center; gap: 18px; }
.header-note { color: var(--muted); white-space: nowrap; }
.language-switch { display: inline-flex; align-items: center; gap: 2px; padding: 3px; border: 1px solid var(--line); }
.language-switch button { min-width: 34px; padding: 4px 6px; border: 0; background: transparent; color: var(--muted); font-size: 11px; line-height: 1.2; cursor: pointer; }
.language-switch button[aria-pressed="true"] { background: var(--ink); color: var(--paper-bright); }
.language-switch button:focus-visible { outline-offset: 1px; }

.cover {
  position: relative;
  display: grid;
  min-height: min(760px, calc(100svh - 76px));
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, .6fr);
  align-items: center;
  gap: 6vw;
  padding-top: 94px;
  padding-bottom: 120px;
}
.cover__copy { max-width: 770px; }
.cover h1, .section-heading h2, .suggestion-copy h2, .gate h1 {
  margin: 27px 0 0;
  font-size: clamp(66px, 9.4vw, 138px);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .97;
}
.cover h1 span { color: var(--signal); }
.cover h1 .cover__title-accent { color: var(--signal); }
.cover__intro { margin: 35px 0 0; color: var(--ink-soft); font-size: 15px; line-height: 2; }
.cover__actions { display: flex; align-items: center; gap: 27px; margin-top: 36px; }
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 13px;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.button span, .text-link span, .section-cta span { color: var(--signal); font-family: var(--mono); }
.button--ink { background: var(--ink); color: var(--paper-bright); }
.button--ink:hover { background: var(--signal); }
.button--paper { border-color: var(--line-dark); background: transparent; color: var(--paper-bright); }
.button--paper:hover { border-color: var(--paper-bright); background: var(--paper-bright); color: var(--ink); }
.button:disabled { cursor: wait; opacity: .65; }
.text-link, .section-cta { display: inline-flex; align-items: center; gap: 11px; font-size: 13px; }
.text-link:hover, .section-cta:hover { color: var(--signal); }
.cover__index { align-self: center; padding: 20px 0 18px 28px; border-left: 1px solid var(--line); }
.cover__index-top, .cover__index-bottom { display: flex; justify-content: space-between; gap: 18px; color: var(--muted); }
.cover__number { margin: 6px 0 14px -8px; font-family: var(--latin); font-size: clamp(180px, 27vw, 370px); letter-spacing: -.11em; line-height: .82; white-space: nowrap; }
.cover__number span { display: inline-block; margin-left: 10px; color: var(--signal); font-size: .18em; letter-spacing: -.02em; vertical-align: top; }
.cover__baseline { position: absolute; right: 0; bottom: 30px; left: 0; display: flex; justify-content: space-between; padding-top: 13px; border-top: 1px solid var(--line); color: var(--muted); }

.intro-band {
  display: grid;
  min-height: 214px;
  grid-template-columns: .6fr 1.4fr .25fr;
  align-items: center;
  gap: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.intro-band > .eyebrow { align-self: start; padding-top: 42px; }
.intro-band > p:nth-child(2) { margin: 0; font-size: clamp(22px, 3vw, 36px); letter-spacing: -.045em; line-height: 1.55; }
.intro-band strong { font-weight: 400; }
.intro-band__stamp { justify-self: end; color: var(--signal); font: 48px/.7 var(--latin); letter-spacing: -.1em; transform: rotate(-9deg); }
.intro-band__stamp i { display: inline-block; margin-left: 13px; font-size: .55em; font-style: normal; }

.archive-section { padding-top: 154px; padding-bottom: 144px; }
.section-heading { position: relative; display: grid; grid-template-columns: 1fr .7fr; align-items: end; gap: 20px 40px; }
.section-heading > .eyebrow { grid-column: 1 / -1; }
.section-heading h2 { margin: 0; font-size: clamp(48px, 7vw, 90px); line-height: 1.12; }
.section-heading h2 .heading-accent { color: var(--signal); }
.section-heading__aside { justify-self: end; margin: 0 0 8px; color: var(--muted); font-size: 13px; line-height: 1.9; }
.timeline-entry {
  display: grid;
  grid-template-columns: .45fr 1.25fr .15fr;
  align-items: start;
  gap: 40px;
  margin-top: 70px;
  padding: 26px 0 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.timeline-entry__date { display: flex; flex-direction: column; gap: 14px; }
.timeline-entry__date span { color: var(--muted); }
.timeline-entry__date strong { color: var(--signal); font: 44px/.9 var(--latin); letter-spacing: -.06em; }
.timeline-entry__copy .eyebrow { margin-bottom: 13px; }
.timeline-entry__copy h3, .activity-empty h3 { margin: 0; font-size: clamp(23px, 3vw, 34px); font-weight: 400; letter-spacing: -.05em; }
.timeline-entry__copy > p:last-child, .activity-empty > div > p:last-child { max-width: 540px; margin: 13px 0 0; color: var(--muted); font-size: 14px; }
.timeline-entry__index { justify-self: end; color: var(--muted); }
.section-cta { margin-top: 24px; }

.people-section { overflow: hidden; background: var(--night); color: var(--paper-bright); }
.people-section__inner { display: grid; min-height: 540px; grid-template-columns: 1fr .72fr; align-items: center; gap: 12%; padding-top: 110px; padding-bottom: 100px; }
.section-heading--light { display: block; }
.section-heading--light .eyebrow { color: #b4b5ae; }
.section-heading--light h2 { margin-top: 35px; font-size: clamp(58px, 8vw, 110px); }
.section-heading--light h2 .heading-accent { color: #df795d; }
.people-note { max-width: 430px; padding-top: 8px; }
.people-note__number { color: #c9c8c0; }
.people-note > p:nth-child(2) { margin: 23px 0 0; font-size: 17px; line-height: 2; }
.people-note__fine { margin: 23px 0 0; color: #b4b5ae; font-size: 12px; line-height: 1.9; }
.people-section__rule { width: var(--page); height: 1px; margin: 0 auto; background: var(--line-dark); }
.people-section__caption { display: flex; justify-content: space-between; padding-top: 16px; padding-bottom: 20px; color: #b4b5ae; }

.activities-section { padding-top: 150px; padding-bottom: 160px; }
.activities-section .section-heading h2 { max-width: 780px; }
.activity-empty {
  display: grid;
  grid-template-columns: .5fr 1.25fr .5fr;
  align-items: center;
  gap: 32px;
  margin-top: 65px;
  padding: 27px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.activity-empty__mark { align-self: start; color: var(--muted); }
.activity-empty > div .eyebrow { margin-bottom: 10px; }
.activity-empty > .text-link { justify-self: end; }

.suggestion-section { background: var(--ink); color: var(--paper-bright); }
.suggestion-section__inner { display: grid; grid-template-columns: 1fr .78fr; gap: 10%; padding-top: 122px; padding-bottom: 114px; }
.suggestion-copy .eyebrow { color: #b4b5ae; }
.suggestion-copy h2 { margin-top: 30px; font-size: clamp(48px, 6.3vw, 80px); line-height: 1.16; }
.suggestion-copy h2 em { color: #df795d; font-style: normal; }
.suggestion-copy > p:nth-of-type(2) { max-width: 420px; margin: 25px 0 0; color: #d0d0c9; font-size: 14px; line-height: 2; }
.suggestion-copy__privacy { max-width: 420px; margin: 18px 0 0; color: #aeb1a9; font-size: 12px; line-height: 1.8; }
.suggestion-form { align-self: center; display: flex; flex-direction: column; gap: 10px; }
.suggestion-form label { margin-top: 13px; color: #dadbd5; font-size: 13px; }
.suggestion-form select, .suggestion-form textarea {
  width: 100%;
  border: 1px solid var(--line-dark);
  border-radius: 0;
  background: transparent;
  color: var(--paper-bright);
}
.suggestion-form select { min-height: 48px; padding: 0 12px; }
.suggestion-form select option { background: var(--ink); color: var(--paper-bright); }
.suggestion-form textarea { min-height: 150px; padding: 12px; resize: vertical; }
.suggestion-form select:focus-visible, .suggestion-form textarea:focus-visible { outline: 2px solid #df795d; outline-offset: 2px; }
.suggestion-form textarea::placeholder { color: #aeb1a9; }
.suggestion-form__submit { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 9px; }
.suggestion-form__submit > span { color: #aeb1a9; }
.form-status { min-height: 1.5em; margin: 2px 0 0; color: #f0b09b; font-size: 13px; }
.honeypot { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
.suggestion-section__foot { display: flex; justify-content: space-between; gap: 20px; padding-top: 15px; padding-bottom: 16px; border-top: 1px solid var(--line-dark); color: #aeb1a9; }

.site-footer { display: flex; min-height: 108px; align-items: center; justify-content: space-between; gap: 24px; }
.site-footer > p { margin: 0; color: var(--muted); font-size: 12px; }
.site-footer > .text-link { font-size: 12px; }

.gate { display: flex; min-height: 100svh; flex-direction: column; padding: 32px max(40px, calc((100vw - 1320px) / 2)); }
.gate__meta, .gate__foot { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.gate__meta { padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.gate__meta > .eyebrow, .gate__foot { color: var(--muted); }
.gate__meta-tools > .eyebrow { color: var(--muted); }
.gate__body { width: min(100%, 670px); margin: auto; padding-block: 90px; }
.gate__kicker { color: var(--signal); }
.gate h1 { margin-top: 22px; font-size: clamp(68px, 10vw, 128px); }
.gate h1 em { color: var(--signal); font-style: normal; }
.gate__intro { margin: 26px 0 0; color: var(--ink-soft); line-height: 2; white-space: pre-line; }
.gate-form { width: min(100%, 510px); margin-top: 46px; }
.gate-form > label { display: block; margin-bottom: 10px; color: var(--muted); font-size: 12px; }
.gate-form__row { display: flex; gap: 8px; border-bottom: 1px solid var(--ink); }
.gate-form input { width: 100%; min-width: 0; border: 0; border-radius: 0; outline: 0; background: transparent; color: var(--ink); font-size: 18px; letter-spacing: .12em; }
.gate-form input:focus-visible { outline: 2px solid var(--signal); outline-offset: 3px; }
.gate-form .button { flex: 0 0 auto; }
.gate__foot { padding-top: 15px; border-top: 1px solid var(--line); font-size: 9px; }

.motion-ready .reveal { opacity: 0; transform: translateY(14px); transition: opacity .48s ease, transform .48s cubic-bezier(.2, .7, .2, 1); }
.motion-ready .reveal.is-visible { opacity: 1; transform: translateY(0); }
:focus-visible { outline: 2px solid var(--signal); outline-offset: 4px; }

@media (max-width: 1000px) {
  :root { --page: min(calc(100% - 64px), 1320px); }
  .site-header { padding-inline: 32px; }
  .header-note { display: none; }
  .header-tools { margin-left: auto; }
  .cover { grid-template-columns: minmax(0, 1fr) minmax(210px, .56fr); gap: 30px; }
  .cover__number { font-size: clamp(170px, 29vw, 300px); }
  .people-section__inner { gap: 7%; }
  .suggestion-section__inner { gap: 7%; }
}

@media (max-width: 700px) {
  :root { --page: calc(100% - 40px); }
  body { font-size: 15px; }
  .site-header { min-height: auto; flex-wrap: wrap; gap: 14px; padding: 15px 20px 11px; }
  .wordmark__mark { font-size: 20px; }
  .main-nav { width: 100%; justify-content: space-between; gap: 7px; padding-top: 10px; border-top: 1px solid var(--line); }
  .header-tools { margin-left: auto; }
  .main-nav a { gap: 5px; font-size: 12px; }
  .main-nav a > span:first-child { font-size: 9px; }
  .main-nav a > span:last-child { white-space: normal; }
  .cover { min-height: auto; grid-template-columns: 1fr; gap: 50px; padding-top: 84px; padding-bottom: 100px; }
  .cover h1 { margin-top: 22px; font-size: clamp(62px, 17vw, 100px); }
  .cover__intro { margin-top: 24px; font-size: 14px; }
  .cover__actions { gap: 17px; margin-top: 26px; }
  .button { min-height: 45px; gap: 16px; padding-inline: 13px; font-size: 12px; }
  .cover__index { width: min(100%, 430px); justify-self: end; padding-left: 18px; }
  .cover__number { margin-left: -5px; font-size: clamp(190px, 55vw, 310px); }
  .cover__baseline { bottom: 20px; font-size: 9px; }
  .intro-band { min-height: 190px; grid-template-columns: 1fr auto; gap: 16px; padding-block: 25px; }
  .intro-band > .eyebrow { grid-column: 1 / -1; padding-top: 0; }
  .intro-band > p:nth-child(2) { font-size: 22px; }
  .intro-band__stamp { font-size: 38px; }
  .archive-section, .activities-section { padding-top: 95px; padding-bottom: 100px; }
  .section-heading { grid-template-columns: 1fr; gap: 17px; }
  .section-heading h2 { font-size: clamp(47px, 13vw, 72px); }
  .section-heading__aside { justify-self: start; margin-top: 2px; }
  .timeline-entry { grid-template-columns: .45fr 1.4fr; gap: 20px; margin-top: 44px; }
  .timeline-entry__date strong { font-size: 36px; }
  .timeline-entry__index { display: none; }
  .timeline-entry__copy h3 { font-size: 23px; }
  .people-section__inner { min-height: auto; grid-template-columns: 1fr; gap: 50px; padding-top: 85px; padding-bottom: 70px; }
  .section-heading--light h2 { margin-top: 25px; font-size: clamp(58px, 15vw, 84px); }
  .people-note { max-width: none; }
  .people-note > p:nth-child(2) { font-size: 15px; }
  .people-section__caption { font-size: 9px; }
  .activity-empty { grid-template-columns: 1fr; gap: 22px; margin-top: 40px; }
  .activity-empty > .text-link { justify-self: start; }
  .suggestion-section__inner { grid-template-columns: 1fr; gap: 45px; padding-top: 86px; padding-bottom: 77px; }
  .suggestion-copy h2 { font-size: clamp(46px, 12vw, 66px); }
  .site-footer { min-height: 145px; flex-wrap: wrap; justify-content: space-between; gap: 10px 18px; padding-block: 25px; }
  .site-footer > p { order: 3; width: 100%; }
  .gate { min-height: 100svh; padding: 20px; }
  .gate__meta { align-items: flex-start; }
  .gate__meta-tools { align-items: flex-end; flex-direction: column-reverse; gap: 10px; }
  .gate__meta-tools > .eyebrow { max-width: 120px; text-align: right; }
  .gate__meta > .eyebrow { max-width: 120px; text-align: right; }
  .gate__body { padding-block: 70px; }
  .gate h1 { font-size: clamp(64px, 17vw, 96px); }
  .gate-form { margin-top: 35px; }
  .gate-form__row { flex-direction: column; align-items: stretch; gap: 15px; padding-bottom: 10px; }
  .gate-form input { min-height: 42px; }
  .gate-form .button { align-self: flex-start; }
  .gate__foot { align-items: flex-start; flex-direction: column; gap: 7px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .motion-ready .reveal { opacity: 1; transform: none; }
}
