:root {
  --ink: #07101b;
  --night: #03070d;
  --night-soft: #08111d;
  --cream: #f2eee5;
  --paper: #d9d6ce;
  --muted: #8d9baa;
  --cyan: #51d5ff;
  --cyan-bright: #98eaff;
  --gold: #c9a45b;
  --gold-bright: #eed18a;
  --line-dark: rgba(20, 56, 79, 0.22);
  --line-light: rgba(148, 224, 255, 0.13);
  --display: "Unbounded", system-ui, sans-serif;
  --body: "Manrope", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--night);
  color: var(--cream);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  content: "";
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

::selection {
  color: #011019;
  background: var(--cyan-bright);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  color: var(--night);
  background: var(--cyan-bright);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.site-shell {
  position: relative;
  min-width: 320px;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  padding: 25px clamp(24px, 5.4vw, 88px);
  border-bottom: 1px solid var(--line-light);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 12px;
}

.brand__sigil {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--cyan-bright);
  filter: drop-shadow(0 0 10px rgba(81, 213, 255, 0.35));
}

.brand__sigil svg {
  width: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
}

.brand__sigil svg path:nth-child(2) {
  stroke: var(--gold);
}

.brand__sigil svg circle {
  fill: currentColor;
  stroke: none;
}

.brand__text {
  color: #a9b5c0;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand__text strong {
  color: var(--cream);
  font-size: 12px;
  font-weight: 700;
}

.site-nav {
  display: flex;
  gap: clamp(24px, 3vw, 54px);
}

.site-nav a {
  position: relative;
  color: #a9b5c0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--cream);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 15px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border: 1px solid rgba(143, 211, 240, 0.23);
  border-radius: 2px;
  background: rgba(1, 11, 19, 0.34);
  backdrop-filter: blur(8px);
}

.language-switcher button {
  min-width: 34px;
  height: 28px;
  padding: 0 8px;
  border: 0;
  border-radius: 1px;
  color: #718491;
  background: transparent;
  font-family: var(--body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.language-switcher button:hover {
  color: var(--cream);
}

.language-switcher button[aria-pressed="true"] {
  color: #031019;
  background: var(--cyan-bright);
  box-shadow: 0 0 15px rgba(81, 213, 255, 0.22);
}

.language-switcher button:focus-visible {
  outline: 2px solid var(--cyan-bright);
  outline-offset: 3px;
}

.site-header > .button {
  justify-self: end;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 2px;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.button::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.28) 48%, transparent 75%);
  transform: translateX(-130%);
  transition: transform 0.55s ease;
}

.button:hover::before {
  transform: translateX(130%);
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.text-link:focus-visible,
.site-footer a:focus-visible,
.brand:focus-visible {
  outline: 2px solid var(--cyan-bright);
  outline-offset: 5px;
}

.button--small {
  min-height: 38px;
  padding: 0 19px;
  font-size: 10px;
}

.button--ghost {
  border-color: rgba(143, 211, 240, 0.34);
  color: #dce8ed;
  background: rgba(1, 11, 19, 0.3);
  backdrop-filter: blur(8px);
}

.button--ghost:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 22px rgba(56, 196, 243, 0.12);
}

.header-easter-egg:hover {
  border-color: #e66f72;
  color: #ffd9d9;
  box-shadow: 0 0 24px rgba(230, 91, 98, 0.16);
}

.button--primary {
  color: #06101a;
  background: linear-gradient(135deg, var(--cyan-bright), #43bde7);
  box-shadow: 0 9px 35px rgba(41, 177, 224, 0.18), inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.button--primary svg {
  position: relative;
  width: 19px;
  margin-left: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 0.25s ease;
}

.button--primary span {
  position: relative;
}

.button--primary:hover {
  box-shadow: 0 12px 45px rgba(41, 177, 224, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.button--primary:hover svg {
  transform: translateX(4px);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(960px, 100vh);
  padding: 130px clamp(24px, 8vw, 132px) 82px;
  overflow: hidden;
  border-bottom: 1px solid var(--line-light);
  background: #02070e;
}

.hero__art,
.hero__veil {
  position: absolute;
  inset: 0;
}

.hero__art {
  background-image: url("assets/sad-zealot.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.015);
  animation: hero-breathe 14s ease-in-out infinite alternate;
}

.hero__veil {
  background:
    linear-gradient(90deg, rgba(2, 7, 14, 0.98) 0%, rgba(2, 7, 14, 0.85) 32%, rgba(2, 7, 14, 0.18) 62%, rgba(2, 7, 14, 0.18) 100%),
    linear-gradient(0deg, rgba(2, 7, 14, 0.95) 0%, transparent 28%),
    radial-gradient(circle at 70% 49%, transparent 0%, rgba(2, 7, 14, 0.15) 45%, rgba(2, 7, 14, 0.5) 100%);
}

.hero__veil::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.055;
  background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(144, 220, 255, 0.5) 4px);
  mask-image: linear-gradient(to bottom, transparent, #000 25%, #000 80%, transparent);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(700px, 54vw);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 29px;
  color: var(--cyan-bright);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow span {
  position: relative;
  width: 31px;
  height: 1px;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
}

.eyebrow span::after {
  position: absolute;
  top: -2px;
  right: -1px;
  width: 5px;
  height: 5px;
  content: "";
  border-radius: 50%;
  background: currentColor;
}

.eyebrow b,
.text-link b {
  font-weight: inherit;
}

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

h1,
h2 {
  font-family: var(--display);
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  margin-bottom: 28px;
  font-size: clamp(48px, 5.75vw, 94px);
  font-weight: 600;
  line-height: 0.99;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

h1 em,
h2 em {
  color: var(--gold-bright);
  font-style: normal;
}

.hero__lead {
  max-width: 585px;
  margin-bottom: 35px;
  color: #b1bec8;
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 34px;
}

.text-link {
  color: #aab9c4;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.text-link span {
  display: inline-block;
  margin-left: 8px;
  color: var(--cyan);
  transition: transform 0.25s ease;
}

.text-link:hover {
  color: var(--cream);
}

.text-link:hover span {
  transform: translateY(4px);
}

.hero__caption {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 5.4vw, 88px);
  bottom: 53px;
  margin: 0;
  color: #7f8d99;
  font-size: 10px;
  line-height: 1.7;
  letter-spacing: 0.12em;
  text-align: right;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 42px;
  left: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #71818e;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transform: rotate(-90deg);
  transform-origin: left center;
}

.scroll-cue i {
  display: block;
  width: 40px;
  height: 1px;
  overflow: hidden;
  background: rgba(157, 213, 237, 0.22);
}

.scroll-cue i::after {
  display: block;
  width: 50%;
  height: 100%;
  content: "";
  background: var(--cyan);
  animation: scroll-line 2s ease-in-out infinite;
}

.hero__orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(94, 215, 255, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.hero__orbit::before {
  position: absolute;
  top: 50%;
  left: -3px;
  width: 5px;
  height: 5px;
  content: "";
  border-radius: 50%;
  background: var(--cyan-bright);
  box-shadow: 0 0 12px var(--cyan);
}

.hero__orbit--one {
  right: -11vw;
  bottom: -31vw;
  width: 63vw;
  height: 63vw;
  transform: rotate(21deg);
}

.hero__orbit--two {
  right: -4vw;
  bottom: -24vw;
  width: 49vw;
  height: 49vw;
  transform: rotate(168deg);
}

.section {
  position: relative;
  padding: clamp(90px, 11vw, 180px) clamp(24px, 8vw, 132px);
}

.story {
  display: grid;
  grid-template-columns: minmax(390px, 0.9fr) minmax(360px, 0.72fr);
  justify-content: space-between;
  gap: clamp(60px, 10vw, 180px);
  color: var(--ink);
  background:
    linear-gradient(90deg, transparent 49.95%, var(--line-dark) 50%, transparent 50.05%),
    var(--paper);
}

.story::before {
  position: absolute;
  top: 0;
  left: clamp(24px, 8vw, 132px);
  width: 1px;
  height: 72px;
  content: "";
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(33, 182, 224, 0.6);
}

.eyebrow--dark {
  color: #187c9f;
}

.section h2 {
  margin-bottom: 0;
  font-size: clamp(36px, 4.5vw, 70px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.story h2 em {
  color: #8b692a;
}

.story__copy {
  padding-top: 44px;
  color: #4b5359;
}

.story__copy > p {
  font-size: 16px;
  line-height: 1.8;
}

.story__copy .story__lead {
  margin-bottom: 22px;
  color: #101b24;
  font-size: clamp(20px, 1.65vw, 26px);
  font-weight: 600;
  line-height: 1.5;
}

blockquote {
  position: relative;
  margin: 46px 0 0;
  padding: 29px 10px 0 51px;
  border-top: 1px solid rgba(7, 16, 27, 0.15);
  color: #192b38;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.quote-mark {
  position: absolute;
  top: 20px;
  left: 0;
  color: #238eb2;
  font-family: Georgia, serif;
  font-size: 54px;
  line-height: 1;
}

.needs {
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 15%, rgba(31, 138, 177, 0.13), transparent 25%),
    linear-gradient(rgba(131, 217, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(131, 217, 255, 0.035) 1px, transparent 1px),
    var(--night-soft);
  background-size: auto, 72px 72px, 72px 72px, auto;
}

.needs::after {
  position: absolute;
  top: 25%;
  right: -180px;
  width: 400px;
  height: 400px;
  content: "";
  border: 1px solid rgba(87, 208, 249, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(87, 208, 249, 0.025), 0 0 0 140px rgba(87, 208, 249, 0.018);
}

.needs__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: clamp(52px, 7vw, 95px);
}

.needs__heading .eyebrow {
  align-self: flex-start;
  min-width: 215px;
  padding-top: 12px;
}

.needs__heading h2 {
  max-width: 880px;
}

.needs__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.need-card {
  position: relative;
  min-height: 370px;
  padding: 36px clamp(24px, 3.2vw, 51px) 42px;
  transition: background 0.35s ease;
}

.need-card + .need-card {
  border-left: 1px solid var(--line-light);
}

.need-card:hover {
  background: rgba(48, 150, 187, 0.055);
}

.need-card__number {
  color: #50616e;
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 0.15em;
}

.need-card__icon {
  position: relative;
  width: 70px;
  height: 86px;
  margin: 36px 0 34px;
  color: var(--cyan-bright);
  filter: drop-shadow(0 0 14px rgba(81, 213, 255, 0.2));
}

.need-card__icon::before,
.need-card__icon::after {
  position: absolute;
  content: "";
}

.need-card__icon--pylon::before {
  inset: 7px 15px;
  border: 1px solid currentColor;
  clip-path: polygon(50% 0, 100% 77%, 67% 100%, 50% 76%, 33% 100%, 0 77%);
  background: radial-gradient(circle at 50% 55%, rgba(81, 213, 255, 0.45), transparent 38%);
}

.need-card__icon--pylon::after {
  top: 38px;
  left: 30px;
  width: 10px;
  height: 19px;
  border: 1px solid currentColor;
  transform: rotate(45deg);
  box-shadow: 0 0 15px currentColor;
}

.need-card__icon--shield::before {
  inset: 7px 10px;
  border: 1px solid currentColor;
  border-radius: 50% 50% 50% 8px;
  transform: rotate(45deg);
  background: radial-gradient(circle, rgba(81, 213, 255, 0.23), transparent 60%);
}

.need-card__icon--shield::after {
  top: 32px;
  left: 27px;
  width: 17px;
  height: 17px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.need-card__icon--spark::before {
  inset: 4px;
  clip-path: polygon(50% 0, 59% 39%, 100% 50%, 59% 59%, 50% 100%, 41% 59%, 0 50%, 41% 39%);
  background: linear-gradient(135deg, var(--cyan-bright), #348fc0);
}

.need-card__icon--spark::after {
  top: 27px;
  left: 19px;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(126, 221, 255, 0.7);
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(86, 201, 241, 0.05), 0 0 22px rgba(86, 201, 241, 0.35);
}

.need-card h3 {
  margin: 0 0 13px;
  font-family: var(--display);
  font-size: clamp(16px, 1.25vw, 20px);
  font-weight: 500;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.need-card p {
  max-width: 320px;
  margin-bottom: 0;
  color: #8998a5;
  font-size: 14px;
  line-height: 1.75;
}

.appeal {
  display: grid;
  min-height: 700px;
  place-items: center;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(23, 109, 143, 0.18), transparent 46%),
    #040a12;
}

.appeal::before,
.appeal::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  border: 1px solid rgba(93, 211, 255, 0.08);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.appeal::before {
  width: min(82vw, 1100px);
  height: min(82vw, 1100px);
}

.appeal::after {
  width: min(60vw, 780px);
  height: min(60vw, 780px);
}

.appeal__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #b9edff;
  box-shadow: 0 0 20px 7px rgba(57, 192, 240, 0.8), 0 0 100px 45px rgba(57, 192, 240, 0.15);
}

.appeal__inner {
  position: relative;
  z-index: 2;
  max-width: 980px;
}

.appeal__kicker {
  display: inline-block;
  margin-bottom: 29px;
  color: var(--cyan-bright);
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.31em;
  text-transform: uppercase;
}

.appeal h2 {
  margin-bottom: 25px;
  font-size: clamp(40px, 5.2vw, 78px);
}

.appeal p {
  max-width: 610px;
  margin: 0 auto 32px;
  color: #92a1ac;
  font-size: clamp(15px, 1.3vw, 18px);
}

.button--large {
  min-height: 60px;
  padding: 0 32px;
}

.appeal small {
  display: block;
  margin-top: 19px;
  color: #5c6e7a;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 560px) 1fr;
  align-items: center;
  padding: 32px clamp(24px, 5.4vw, 88px);
  border-top: 1px solid var(--line-light);
  color: #566875;
  background: #03080e;
}

.site-footer p {
  margin: 0;
  font-size: 9px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.site-footer > a {
  justify-self: end;
  color: #7c919e;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 19px;
  border: 1px solid rgba(92, 211, 252, 0.35);
  border-radius: 2px;
  color: #dce8ed;
  background: rgba(4, 15, 24, 0.94);
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.45), 0 0 30px rgba(52, 179, 225, 0.08);
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  backdrop-filter: blur(12px);
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.toast__icon {
  color: var(--cyan-bright);
  text-shadow: 0 0 12px var(--cyan);
}

html[lang="ko"] body {
  font-family: "Noto Sans KR", var(--body);
  word-break: keep-all;
}

html[lang="ko"] h1,
html[lang="ko"] h2,
html[lang="ko"] h3 {
  font-family: "Noto Sans KR", var(--body);
  font-weight: 700;
  letter-spacing: -0.055em;
}

html[lang="ko"] h1 {
  line-height: 1.08;
}

html[lang="ko"] .eyebrow,
html[lang="ko"] .button,
html[lang="ko"] .text-link,
html[lang="ko"] .brand__text {
  letter-spacing: 0.08em;
}

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-breathe {
  from { transform: scale(1.015); }
  to { transform: scale(1.045); }
}

@keyframes scroll-line {
  0%, 100% { transform: translateX(-110%); }
  55% { transform: translateX(210%); }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .header-easter-egg {
    display: none;
  }

  .hero {
    align-items: flex-end;
    min-height: 900px;
    padding-bottom: 90px;
  }

  .hero__art {
    background-position: 62% center;
  }

  .hero__veil {
    background:
      linear-gradient(0deg, rgba(2, 7, 14, 0.99) 0%, rgba(2, 7, 14, 0.8) 49%, rgba(2, 7, 14, 0.1) 78%),
      linear-gradient(90deg, rgba(2, 7, 14, 0.7), transparent 65%);
  }

  .hero__content {
    width: min(710px, 90vw);
  }

  .hero__caption {
    display: none;
  }

  .story {
    grid-template-columns: 1fr;
    gap: 10px;
    background: var(--paper);
  }

  .story__copy {
    max-width: 680px;
    padding-top: 20px;
  }

  .needs__heading {
    display: block;
  }

  .needs__heading .eyebrow {
    padding-top: 0;
  }

  .need-card {
    padding-right: 26px;
    padding-left: 26px;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    gap: 25px;
  }

  .site-footer p {
    grid-row: 2;
    grid-column: 1 / -1;
    max-width: 600px;
    text-align: left;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 18px 20px;
  }

  .brand__sigil {
    width: 33px;
    height: 33px;
  }

  .site-header .brand__text {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .language-switcher button {
    min-width: 31px;
    padding: 0 6px;
  }

  .hero {
    min-height: 820px;
    padding: 110px 20px 65px;
  }

  .hero__art {
    background-position: 66% top;
  }

  .hero__veil {
    background:
      linear-gradient(0deg, rgba(2, 7, 14, 1) 0%, rgba(2, 7, 14, 0.92) 52%, rgba(2, 7, 14, 0.1) 86%),
      linear-gradient(90deg, rgba(2, 7, 14, 0.4), transparent);
  }

  h1 {
    font-size: clamp(41px, 12.8vw, 60px);
    line-height: 1.02;
  }

  .hero__lead {
    font-size: 14px;
    line-height: 1.65;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 22px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .text-link {
    text-align: center;
  }

  .scroll-cue,
  .hero__orbit {
    display: none;
  }

  .section {
    padding: 88px 20px;
  }

  .story::before {
    left: 20px;
    height: 50px;
  }

  .story__copy,
  .section__intro {
    min-width: 0;
  }

  .section h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .story h2 {
    font-size: clamp(24px, 7.75vw, 43px);
  }

  blockquote {
    padding-right: 0;
  }

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

  .need-card {
    min-height: auto;
    padding: 30px 10px 40px;
  }

  .need-card + .need-card {
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .need-card__icon {
    margin: 25px 0 23px;
  }

  .appeal {
    min-height: 650px;
  }

  .appeal::before {
    width: 150vw;
    height: 150vw;
  }

  .appeal::after {
    width: 105vw;
    height: 105vw;
  }

  .button--large {
    width: 100%;
    padding: 0 22px;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    padding: 28px 20px;
  }

  .brand--footer .brand__text {
    display: none;
  }

  .toast {
    right: 16px;
    bottom: 16px;
    left: 16px;
    justify-content: center;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
