:root {
  --paper: #f4f2ea;
  --paper-deep: #e7e1d2;
  --ink: #1a1815;
  --ink-soft: #49443b;
  --muted: #80796b;
  --line: #c9c1af;
  --red: #c8341f;
  --red-dark: #982716;
  --sky: #2d7890;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "PT Serif", Georgia, serif;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--red);
  color: var(--paper);
}

a {
  color: inherit;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 20;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--paper);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
}

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

.site-header,
main,
.site-footer {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 2px solid var(--ink);
}

.brand {
  font-family: "Oswald", sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a,
.site-nav span {
  padding: 6px 0;
  text-decoration: none;
}

.site-nav a {
  color: var(--muted);
  border-bottom: 2px solid transparent;
}

.site-nav a:hover {
  color: var(--ink);
  border-color: var(--red);
}

.site-nav [aria-current="page"] {
  border-bottom: 2px solid var(--red);
}

.language-control {
  position: relative;
  display: block;
}

.language-select {
  width: 148px;
  min-height: 36px;
  border: 1px solid var(--line);
  border-bottom: 2px solid var(--ink);
  border-radius: 0;
  padding: 7px 30px 7px 9px;
  background: var(--paper);
  color: var(--ink);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.language-select:hover {
  border-color: var(--red);
}

.language-select:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 3px;
}

.hero {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.75fr);
  align-items: center;
  gap: 72px;
  padding: 68px 0 74px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 28px;
  font-family: "Oswald", sans-serif;
  font-size: 96px;
  font-weight: 700;
  line-height: 0.88;
  text-transform: uppercase;
  white-space: pre-line;
  overflow-wrap: anywhere;
}

.hero-lead {
  max-width: 650px;
  margin: 0 0 16px;
  font-size: 22px;
  font-style: italic;
  line-height: 1.45;
}

.hero-note {
  max-width: 630px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.6;
}

.hero-art {
  position: relative;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 28px 22px;
  border: 3px solid var(--ink);
  background: var(--red);
  box-shadow: 10px 10px 0 var(--ink);
  transform: rotate(2deg);
}

.hero-art img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 340px;
  align-self: center;
  object-fit: contain;
  filter: drop-shadow(0 8px 0 rgba(26, 24, 21, 0.18));
}

.art-stamp {
  position: absolute;
  top: 24px;
  right: -24px;
  width: 108px;
  height: 108px;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
  white-space: pre-line;
  transform: rotate(8deg);
}

.art-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  border-top: 2px solid var(--paper);
  color: var(--paper);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.support-section {
  border-top: 2px solid var(--ink);
  padding: 92px 0 110px;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 22px;
  margin-top: auto;
}

.contact-links .text-link {
  margin-top: 0;
}

.contact-links .text-link + .text-link {
  border-color: var(--sky);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
  border-bottom: 4px solid var(--ink);
  padding-bottom: 16px;
}

.section-heading .eyebrow {
  margin: 0 0 6px;
}

.section-heading h2,
.supporters-heading h2 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.boosty-feature {
  position: relative;
  display: grid;
  grid-template-columns: 0.75fr 1.5fr;
  min-height: 340px;
  overflow: hidden;
  border: 3px solid var(--ink);
  background: var(--red);
  color: var(--paper);
  box-shadow: 8px 8px 0 var(--ink);
}

.boosty-label {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
  border-right: 2px solid var(--paper);
}

.boosty-label span {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.boosty-label strong {
  font-family: "Oswald", sans-serif;
  font-size: 72px;
  line-height: 0.9;
  text-transform: uppercase;
}

.boosty-copy {
  position: relative;
  z-index: 1;
  align-self: center;
  max-width: 670px;
  padding: 42px 48px;
}

.boosty-copy h3 {
  max-width: 560px;
  margin: 0 0 18px;
  font-family: "Oswald", sans-serif;
  font-size: 34px;
  line-height: 1.08;
  text-transform: uppercase;
}

.boosty-copy p {
  max-width: 590px;
  margin: 0 0 28px;
  font-size: 18px;
  line-height: 1.55;
}

.boosty-mark {
  position: absolute;
  right: -24px;
  bottom: -74px;
  color: rgba(244, 242, 234, 0.09);
  font-family: "Oswald", sans-serif;
  font-size: 300px;
  font-weight: 700;
  line-height: 1;
}

.action {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 13px 20px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.action-light {
  border: 2px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
}

.action:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--ink);
}

.other-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 66px;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.method {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 30px 34px 32px;
}

.method + .method {
  border-left: 2px solid var(--ink);
}

.method-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.method-number {
  color: var(--red);
  font-family: "Oswald", sans-serif;
  font-size: 38px;
  line-height: 1;
}

.method h3 {
  margin: 44px 0 14px;
  font-family: "Oswald", sans-serif;
  font-size: 34px;
  line-height: 1;
  text-transform: uppercase;
}

.method p {
  max-width: 48ch;
  margin: 0 0 24px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.55;
}

.text-link {
  align-self: flex-start;
  margin-top: auto;
  border-bottom: 3px solid var(--red);
  padding: 3px 0;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.method-alerts:hover {
  background: #efe5db;
}

.method-direct:hover {
  background: #e2edf0;
}

.access-note {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 28px;
  align-items: start;
  margin-top: 54px;
  padding: 30px 34px;
  background: var(--ink);
  color: var(--paper);
}

.access-note-marker {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 2px solid var(--red);
  color: var(--red);
  font-family: "Oswald", sans-serif;
  font-size: 42px;
  font-weight: 700;
}

.access-note h3 {
  margin: 0 0 8px;
  font-family: "Oswald", sans-serif;
  font-size: 25px;
  text-transform: uppercase;
}

.access-note p {
  max-width: 780px;
  margin: 0;
  color: #d8d3c7;
  font-size: 16px;
  line-height: 1.6;
}

.access-note a {
  color: var(--paper);
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.supporters-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 90px max(24px, calc((100vw - 1120px) / 2)) 82px;
  background: var(--paper-deep);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.supporters-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
  gap: 20px 60px;
  align-items: end;
  padding-bottom: 24px;
  border-bottom: 4px solid var(--ink);
}

.supporters-heading .eyebrow {
  grid-column: 1 / -1;
  margin: 0;
}

.supporters-heading p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.5;
}

.supporters-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  padding: 34px 0 20px;
}

.supporters-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--supporter-color, var(--red));
  padding: 7px 10px;
  background: var(--paper);
  color: var(--ink);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.supporters-afterword {
  margin: 0;
  color: var(--red-dark);
  font-size: 16px;
  font-style: italic;
}

.site-footer {
  min-height: 110px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 24px;
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.site-footer a {
  text-decoration-color: var(--red);
  text-underline-offset: 3px;
}

html[lang="ja"] body {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
}

html[lang="ko"] body {
  font-family: "Malgun Gothic", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
}

html[lang="zh-Hans"] body {
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", sans-serif;
}

html[lang="ja"] .hero-lead,
html[lang="ko"] .hero-lead,
html[lang="zh-Hans"] .hero-lead,
html[lang="ja"] .supporters-afterword,
html[lang="ko"] .supporters-afterword,
html[lang="zh-Hans"] .supporters-afterword {
  font-style: normal;
}

html[lang="ja"] .hero h1,
html[lang="ja"] .section-heading h2,
html[lang="ja"] .supporters-heading h2,
html[lang="ja"] .boosty-copy h3,
html[lang="ja"] .method h3,
html[lang="ja"] .access-note h3,
html[lang="ko"] .hero h1,
html[lang="ko"] .section-heading h2,
html[lang="ko"] .supporters-heading h2,
html[lang="ko"] .boosty-copy h3,
html[lang="ko"] .method h3,
html[lang="ko"] .access-note h3,
html[lang="zh-Hans"] .hero h1,
html[lang="zh-Hans"] .section-heading h2,
html[lang="zh-Hans"] .supporters-heading h2,
html[lang="zh-Hans"] .boosty-copy h3,
html[lang="zh-Hans"] .method h3,
html[lang="zh-Hans"] .access-note h3 {
  font-family: "Arial Black", "Yu Gothic", "Malgun Gothic", "Microsoft YaHei", sans-serif;
  font-weight: 900;
  line-height: 1.08;
}

html[lang="de"] .hero h1 {
  font-size: 86px;
}

html[lang="de"] .section-heading h2,
html[lang="fr"] .section-heading h2 {
  max-width: 720px;
  font-size: 44px;
  text-align: right;
}

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

@media (max-width: 860px) {
  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 46px;
    padding: 58px 0 72px;
  }

  .hero h1 {
    font-size: 76px;
  }

  .hero-art {
    width: min(390px, calc(100% - 18px));
    min-height: 400px;
    margin-inline: auto;
  }

  .boosty-feature {
    grid-template-columns: 1fr;
  }

  .boosty-label {
    min-height: 150px;
    border-right: 0;
    border-bottom: 2px solid var(--paper);
  }

  .boosty-label strong {
    font-size: 60px;
  }

  .boosty-copy {
    padding: 36px 34px 42px;
  }
}

@media (max-width: 640px) {
  .site-header,
  main,
  .site-footer {
    width: min(100% - 32px, 1120px);
  }

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

  .site-nav {
    gap: 14px;
  }

  .site-nav a {
    display: none;
  }

  .header-actions {
    gap: 12px;
  }

  .language-select {
    width: 140px;
  }

  .hero {
    gap: 30px;
    padding: 34px 0 42px;
  }

  .hero h1 {
    font-size: 54px;
    margin-bottom: 22px;
  }

  .hero-lead {
    font-size: 19px;
  }

  .hero-art {
    min-height: 230px;
    padding: 16px 20px 14px;
    box-shadow: 7px 7px 0 var(--ink);
  }

  .hero-art img {
    height: 180px;
  }

  .art-stamp {
    right: -8px;
    width: 76px;
    height: 76px;
    font-size: 8px;
  }

  .support-section {
    padding: 68px 0 78px;
  }

  .section-heading {
    display: block;
  }

  .section-heading .eyebrow {
    margin-bottom: 12px;
  }

  .section-heading h2,
  .supporters-heading h2 {
    font-size: 38px;
  }

  html[lang="de"] .hero h1 {
    font-size: 48px;
  }

  html[lang="de"] .section-heading h2,
  html[lang="fr"] .section-heading h2 {
    max-width: none;
    font-size: 34px;
    text-align: left;
  }

  html[lang="ja"] .hero h1,
  html[lang="ko"] .hero h1,
  html[lang="zh-Hans"] .hero h1 {
    font-size: 46px;
  }

  .boosty-feature {
    box-shadow: 6px 6px 0 var(--ink);
  }

  .boosty-label,
  .boosty-copy {
    padding-inline: 24px;
  }

  .boosty-copy h3 {
    font-size: 28px;
  }

  .boosty-copy p {
    font-size: 16px;
  }

  .other-methods {
    grid-template-columns: 1fr;
    margin-top: 52px;
  }

  .method {
    min-height: 290px;
    padding-inline: 6px;
  }

  .method + .method {
    border-top: 2px solid var(--ink);
    border-left: 0;
  }

  .method h3 {
    margin-top: 34px;
    font-size: 30px;
  }

  .access-note {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 26px 24px;
  }

  .supporters-section {
    padding: 66px 16px 62px;
  }

  .supporters-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .supporters-heading .eyebrow {
    grid-column: auto;
  }

  .site-footer {
    align-content: center;
    align-items: flex-start;
    padding: 26px 0;
  }
}

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

  .action {
    transition: none;
  }
}
