:root {
  color-scheme: dark;
  --black: #050505;
  --panel: #0a0a09;
  --panel-soft: #10100f;
  --amber: #d8aa55;
  --amber-strong: #f0bd5b;
  --amber-muted: #8c6b36;
  --cream: #e7dfd0;
  --muted: #aaa398;
  --quiet: #777168;
  --silver: #b9b8b3;
  --line: rgba(216, 170, 85, 0.3);
  --red: #b82a22;
  --content: 1180px;
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 8%, rgba(189, 126, 35, 0.08), transparent 32rem),
    radial-gradient(circle at 7% 60%, rgba(92, 66, 30, 0.06), transparent 32rem),
    var(--black);
  color: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.008) 1px, transparent 1px);
  background-size: 5px 5px;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--amber-strong);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: var(--amber-strong);
  color: #111;
  font-weight: 700;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 32px;
  width: min(calc(100% - 40px), var(--content));
  min-height: var(--header-height);
  margin: 0 auto;
  border-bottom: 1px solid rgba(216, 170, 85, 0.2);
  background: rgba(5, 5, 5, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-mark {
  display: block;
  width: 56px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(230, 165, 58, 0.24));
}

.brand-name {
  color: var(--amber-strong);
  font-size: 0.96rem;
  font-weight: 650;
  letter-spacing: 0.34em;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.07em;
}

.language-switcher {
  position: relative;
  z-index: 4;
  justify-self: end;
}

.language-switcher summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 76px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(185, 184, 179, 0.3);
  border-radius: 2px;
  background: rgba(10, 10, 9, 0.72);
  color: var(--silver);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  list-style: none;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.language-switcher summary::-webkit-details-marker {
  display: none;
}

.language-switcher summary::marker {
  content: "";
}

.language-switcher summary:hover,
.language-switcher[open] summary {
  border-color: rgba(216, 170, 85, 0.68);
  background: rgba(216, 170, 85, 0.07);
  color: var(--amber-strong);
}

.language-switcher summary svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.language-chevron {
  position: relative;
  top: -1px;
  color: var(--amber-muted);
  font-size: 0.92rem;
  transition: transform 180ms ease;
}

.language-switcher[open] .language-chevron {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 11px);
  right: 0;
  display: grid;
  width: min(330px, calc(100vw - 28px));
  max-height: min(620px, calc(100vh - 100px));
  padding: 8px;
  overflow-y: auto;
  border: 1px solid rgba(216, 170, 85, 0.36);
  background: rgba(7, 7, 7, 0.98);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.72);
}

.language-option {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 7px 9px;
  border-bottom: 1px solid rgba(185, 184, 179, 0.08);
  color: var(--muted);
  font-size: 0.88rem;
  text-decoration: none;
}

.language-option:last-child {
  border-bottom: 0;
}

a.language-option:hover,
.language-option.is-current {
  background: rgba(216, 170, 85, 0.08);
  color: var(--amber-strong);
}

.language-option.is-unavailable {
  color: #625e58;
  cursor: default;
}

.language-code {
  color: var(--amber-muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.language-name {
  min-width: 0;
}

.language-state {
  color: #777168;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav a {
  padding: 8px 0;
  text-decoration: none;
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: var(--amber-strong);
}

.share-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(216, 170, 85, 0.48);
  border-radius: 2px;
  background: rgba(10, 10, 9, 0.72);
  color: var(--amber);
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease, transform 180ms ease;
}

.share-action svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.share-action:hover {
  transform: translateY(-1px);
  border-color: var(--amber-strong);
  background: rgba(216, 170, 85, 0.08);
  color: var(--amber-strong);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(330px, 0.96fr);
  align-items: center;
  gap: clamp(38px, 5vw, 80px);
  width: min(calc(100% - 40px), var(--content));
  min-height: calc(100svh - var(--header-height));
  margin: 0 auto;
  padding: 62px 0 78px;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber-muted) 28%, transparent 90%);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 17px;
  color: var(--amber);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.24em;
  line-height: 1.5;
}

.hero h1,
.integrity h2,
.story h2,
.night h2,
.decision h2,
.closing h2,
.video-pending h2 {
  margin: 0;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.026em;
}

.hero h1 {
  max-width: 690px;
  font-size: clamp(3.4rem, 6.7vw, 6.25rem);
  line-height: 0.98;
  text-wrap: balance;
}

.hero-statement {
  max-width: 610px;
  margin: 31px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.55vw, 1.3rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 39px;
}

.primary-action,
.secondary-action {
  min-height: 52px;
  border: 1px solid var(--amber-strong);
  border-radius: 2px;
  background: var(--amber-strong);
  color: #16110a;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  box-shadow: 0 10px 34px rgba(216, 170, 85, 0.13);
}

.primary-action:hover,
.secondary-action:hover {
  transform: translateY(-2px);
  background: #ffd078;
  box-shadow: 0 14px 38px rgba(216, 170, 85, 0.2);
}

.primary-action.is-pending {
  border-color: rgba(216, 170, 85, 0.52);
  background: transparent;
  color: var(--amber);
  cursor: default;
  box-shadow: none;
}

.primary-action.is-pending:hover {
  transform: none;
}

.play-mark {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid #16110a;
}

.text-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--amber);
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  text-underline-offset: 5px;
}

.sound-note {
  margin: 21px 0 0;
  color: #827d75;
  font-size: 0.8rem;
}

.sound-note span {
  margin-right: 8px;
  color: var(--red);
  font-size: 0.72rem;
}

.hero-object {
  position: relative;
  display: grid;
  justify-items: center;
  margin: 0;
}

.instrument-halo,
.night-halo {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(14px);
}

.instrument-halo {
  top: 15%;
  width: 96%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(214, 151, 48, 0.15), transparent 67%);
}

.hero-device {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 500px);
  height: auto;
  filter:
    drop-shadow(0 34px 38px rgba(0, 0, 0, 0.64))
    drop-shadow(0 0 26px rgba(210, 148, 52, 0.08));
}

.hero-object figcaption {
  position: relative;
  z-index: 2;
  margin-top: -12px;
  color: var(--quiet);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.69rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-index,
.story-number {
  color: var(--amber-muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
}

.integrity {
  position: relative;
  display: grid;
  grid-template-columns: 80px minmax(0, 900px);
  gap: 42px;
  width: min(calc(100% - 40px), var(--content));
  margin: 0 auto;
  padding: clamp(110px, 14vw, 175px) 0;
}

.integrity::before {
  content: "";
  position: absolute;
  top: 23%;
  right: -7%;
  width: 420px;
  aspect-ratio: 1;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 170, 85, 0.055), transparent 68%);
}

.integrity .section-index {
  padding-top: 5px;
}

.integrity-copy {
  position: relative;
}

.integrity h2 {
  max-width: 900px;
  font-size: clamp(2.4rem, 5vw, 4.9rem);
  line-height: 1.08;
  text-wrap: balance;
}

.integrity-copy > p:not(.eyebrow) {
  max-width: 750px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.integrity-copy > p + p:not(.eyebrow) {
  margin-top: 18px;
}

.technical-note {
  padding-left: 19px;
  border-left: 1px solid var(--amber-muted);
  color: #888178 !important;
  font-size: 0.9rem !important;
}

.story {
  position: relative;
  display: grid;
  grid-template-columns: minmax(330px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(55px, 9vw, 130px);
  width: min(calc(100% - 40px), var(--content));
  min-height: 820px;
  margin: 0 auto;
  padding: clamp(85px, 10vw, 125px) 0;
  border-top: 1px solid rgba(216, 170, 85, 0.14);
}

.story::before {
  content: "";
  position: absolute;
  width: 46%;
  aspect-ratio: 1;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(190, 132, 39, 0.085), transparent 68%);
  filter: blur(10px);
}

.story--visual-left::before {
  left: -8%;
}

.story--visual-right::before {
  right: -8%;
}

.story--visual-left .story-visual {
  grid-column: 1;
  grid-row: 1;
}

.story--visual-left .story-copy {
  grid-column: 2;
  grid-row: 1;
}

.story--visual-right .story-copy {
  grid-column: 1;
  grid-row: 1;
}

.story--visual-right .story-visual {
  grid-column: 2;
  grid-row: 1;
}

.story-copy {
  position: relative;
  z-index: 2;
  max-width: 580px;
}

.story-number {
  display: block;
  margin-bottom: 58px;
}

.story h2,
.night h2 {
  font-size: clamp(2.4rem, 4.6vw, 4.6rem);
  line-height: 1.07;
  text-wrap: balance;
}

.story-copy > p:not(.eyebrow) {
  margin: 29px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.story-visual {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  margin: 0;
}

.story-visual img {
  display: block;
  width: min(100%, 500px);
  max-height: 820px;
  object-fit: contain;
  filter:
    drop-shadow(0 34px 34px rgba(0, 0, 0, 0.62))
    drop-shadow(0 0 18px rgba(204, 151, 65, 0.07));
}

.feature-list {
  display: grid;
  gap: 9px;
  margin: 28px 0 0;
  padding: 21px 0 0;
  border-top: 1px solid var(--line);
  color: var(--amber);
  font-size: 0.88rem;
  list-style: none;
}

.feature-list li::before {
  content: "—";
  margin-right: 12px;
  color: var(--amber-muted);
}

.night {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  align-items: center;
  gap: clamp(45px, 8vw, 110px);
  width: min(calc(100% - 40px), 1320px);
  min-height: 900px;
  margin: clamp(60px, 9vw, 120px) auto;
  padding: clamp(70px, 9vw, 120px) clamp(32px, 7vw, 95px);
  overflow: hidden;
  border-top: 1px solid rgba(187, 42, 34, 0.19);
  border-bottom: 1px solid rgba(216, 170, 85, 0.15);
  background:
    radial-gradient(circle at 74% 37%, rgba(155, 24, 20, 0.11), transparent 29%),
    radial-gradient(circle at 74% 48%, rgba(209, 148, 46, 0.07), transparent 43%),
    linear-gradient(135deg, #070707, #020202 72%);
}

.night::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(255, 255, 255, 0.012), rgba(0, 0, 0, 0));
}

.night-copy {
  position: relative;
  z-index: 2;
}

.night-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin: 30px 0 0;
  color: #8b857d;
  font-size: 1.02rem;
}

.night-signals {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 44px;
}

.night-signals::before,
.night-signals::after {
  content: "";
  width: 74px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 170, 85, 0.48));
}

.night-signals::after {
  background: linear-gradient(90deg, rgba(216, 170, 85, 0.48), transparent);
}

.night-signals i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 10px rgba(218, 39, 31, 0.46);
}

.night-visual {
  position: relative;
  display: grid;
  justify-items: center;
  margin: 0;
}

.night-halo {
  top: 20%;
  width: 72%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(175, 34, 27, 0.12), transparent 69%);
}

.night-visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 520px);
  max-height: 840px;
  object-fit: contain;
  filter:
    drop-shadow(0 38px 40px rgba(0, 0, 0, 0.72))
    drop-shadow(0 0 24px rgba(150, 30, 24, 0.08));
}

.decision {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: clamp(60px, 10vw, 140px);
  align-items: center;
  width: min(calc(100% - 40px), var(--content));
  margin: 0 auto;
  padding: clamp(110px, 15vw, 180px) 0;
}

.decision-copy {
  max-width: 700px;
}

.decision h2 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.08;
  text-wrap: balance;
}

.decision-copy > p:not(.eyebrow):not(.availability-note) {
  color: var(--muted);
  font-size: 1.03rem;
}

.secondary-action {
  margin-top: 22px;
  padding: 0 25px;
}

.availability-note {
  margin: 12px 0 0;
  color: #817b72;
  font-size: 0.8rem;
}

.dossier-card {
  position: relative;
  min-height: 510px;
  padding: 48px 42px;
  overflow: hidden;
  border: 1px solid rgba(216, 170, 85, 0.48);
  background:
    linear-gradient(140deg, rgba(216, 170, 85, 0.07), transparent 46%),
    #090909;
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.38);
}

.dossier-card::after {
  content: "";
  position: absolute;
  right: -62px;
  bottom: -70px;
  width: 220px;
  aspect-ratio: 1;
  transform: rotate(45deg);
  border: 1px solid rgba(216, 170, 85, 0.12);
}

.dossier-mark {
  display: block;
  width: 76px;
  height: 76px;
  margin: 0 0 58px;
  object-fit: contain;
  filter: drop-shadow(0 0 15px rgba(216, 170, 85, 0.18));
}

.dossier-kicker {
  margin: 0;
  color: var(--amber-muted);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.18em;
}

.dossier-card h3 {
  margin: 8px 0 2px;
  color: var(--amber-strong);
  max-width: 100%;
  font-size: clamp(1.75rem, 3.2vw, 2.55rem);
  font-weight: 320;
  letter-spacing: clamp(0.08em, 0.7vw, 0.13em);
  line-height: 1.14;
  white-space: nowrap;
}

.dossier-card > p:not(.dossier-kicker) {
  margin: 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

.dossier-rule {
  display: block;
  width: 100%;
  height: 1px;
  margin: 34px 0 23px;
  background: linear-gradient(90deg, var(--amber-muted), transparent);
}

.dossier-card dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0;
}

.dossier-card dl div {
  display: grid;
  gap: 3px;
}

.dossier-card dt {
  color: #716b63;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dossier-card dd {
  margin: 0;
  color: var(--amber);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.82rem;
}

.closing {
  display: grid;
  justify-items: center;
  width: min(calc(100% - 40px), 940px);
  margin: 0 auto;
  padding: 30px 0 clamp(120px, 16vw, 190px);
  text-align: center;
}

.closing-line {
  width: 1px;
  height: 110px;
  margin-bottom: 34px;
  background: linear-gradient(var(--amber-muted), transparent);
}

.closing h2 {
  max-width: 870px;
  margin-bottom: 38px;
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  line-height: 1.06;
  text-wrap: balance;
}

.closing-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.primary-action--link {
  padding: 0 26px;
}

.share-action--closing {
  min-height: 52px;
  padding: 0 22px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% - 40px), var(--content));
  margin: 0 auto;
  padding: 28px 0 38px;
  border-top: 1px solid rgba(240, 189, 91, 0.78);
  box-shadow: 0 -1px 10px rgba(240, 189, 91, 0.12);
  color: var(--amber-strong);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-shadow: 0 0 12px rgba(240, 189, 91, 0.18);
  text-transform: uppercase;
}

.experience-dialog {
  width: min(94vw, 1180px);
  max-width: none;
  padding: 0;
  border: 1px solid rgba(216, 170, 85, 0.42);
  background: #050505;
  color: var(--cream);
  box-shadow: 0 40px 120px #000;
}

.experience-dialog::backdrop {
  background: rgba(0, 0, 0, 0.91);
  backdrop-filter: blur(8px);
}

.dialog-shell {
  position: relative;
  padding: clamp(20px, 3vw, 36px);
}

.dialog-close {
  position: absolute;
  top: 10px;
  right: 13px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  background: rgba(0, 0, 0, 0.74);
  color: var(--amber);
  cursor: pointer;
  font-size: 1.8rem;
  font-weight: 200;
}

.video-shell {
  position: relative;
  display: grid;
  min-height: min(67vw, 660px);
  overflow: hidden;
  background: #000;
}

.video-shell video {
  display: none;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 78vh;
  margin: auto;
  background: #000;
}

.video-shell.has-video video {
  display: block;
}

.video-shell.has-video .video-pending {
  display: none;
}

.video-pending {
  display: grid;
  place-content: center;
  justify-items: center;
  min-height: 100%;
  padding: 70px 24px;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(198, 136, 40, 0.11), transparent 35%),
    #030303;
}

.video-pending::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(216, 170, 85, 0.16);
  pointer-events: none;
}

.pending-mark {
  width: 70px;
  height: 70px;
  margin-bottom: 38px;
  object-fit: contain;
}

.video-pending h2 {
  max-width: 720px;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1.08;
}

.video-pending > p:last-child {
  max-width: 590px;
  color: var(--muted);
}

.backup-link {
  display: table;
  margin: 16px auto 0;
  color: var(--amber-muted);
  font-size: 0.78rem;
  text-underline-offset: 4px;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  max-width: min(420px, calc(100vw - 40px));
  padding: 14px 18px;
  transform: translateY(30px);
  border: 1px solid var(--line);
  background: rgba(12, 12, 11, 0.96);
  color: var(--cream);
  font-size: 0.84rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 1040px) {
  .site-nav {
    gap: 16px;
  }

  .site-nav a:nth-child(3) {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.84fr);
  }

  .story {
    gap: 55px;
  }
}

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

  .site-nav {
    display: none;
  }

  .hero,
  .story,
  .night,
  .decision {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 78px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-object {
    margin-top: 24px;
  }

  .hero-device {
    width: min(78vw, 500px);
  }

  .integrity {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 18px;
  }

  .story {
    min-height: auto;
  }

  .story--visual-left .story-copy,
  .story--visual-right .story-copy {
    grid-column: 1;
    grid-row: 1;
  }

  .story--visual-left .story-visual,
  .story--visual-right .story-visual {
    grid-column: 1;
    grid-row: 2;
  }

  .story-copy {
    max-width: 700px;
  }

  .story-visual img,
  .night-visual img {
    width: min(78vw, 510px);
    max-height: none;
  }

  .night {
    min-height: auto;
  }

  .night-visual {
    margin-top: 8px;
  }

  .dossier-card {
    width: min(100%, 500px);
    justify-self: center;
  }
}

@media (max-width: 620px) {
  :root {
    --header-height: 70px;
  }

  .site-header {
    width: min(calc(100% - 28px), var(--content));
    gap: 10px;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 44px;
    height: 40px;
  }

  .brand-name {
    font-size: 0.76rem;
    letter-spacing: 0.22em;
  }

  .language-switcher summary {
    min-width: 54px;
    width: 54px;
    padding: 0 7px;
  }

  .language-switcher summary svg {
    display: none;
  }

  .share-action--header {
    width: 42px;
    min-height: 42px;
    padding: 0;
  }

  .share-action--header span {
    display: none;
  }

  .hero,
  .integrity,
  .story,
  .decision,
  .closing,
  .site-footer {
    width: min(calc(100% - 28px), var(--content));
  }

  .night {
    width: calc(100% - 16px);
  }

  .hero {
    padding: 61px 0 74px;
  }

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

  .hero-statement {
    margin-top: 25px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-action {
    width: 100%;
    min-height: 60px;
    padding: 0 18px;
  }

  .text-action {
    justify-content: center;
  }

  .hero-device,
  .story-visual img,
  .night-visual img {
    width: min(93vw, 500px);
  }

  .hero-object figcaption {
    margin-top: -6px;
  }

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

  .integrity .section-index {
    padding-bottom: 5px;
  }

  .integrity h2,
  .story h2,
  .night h2,
  .decision h2,
  .closing h2 {
    font-size: clamp(2.25rem, 11.2vw, 3.75rem);
  }

  .story {
    gap: 38px;
    padding: 78px 0;
  }

  .story-number {
    margin-bottom: 40px;
  }

  .night {
    gap: 32px;
    margin: 55px auto;
    padding: 74px 20px 42px;
  }

  .decision {
    gap: 62px;
  }

  .dossier-card {
    min-height: 470px;
    padding: 38px 28px;
  }

  .dossier-card h3 {
    font-size: clamp(1.65rem, 8vw, 2.4rem);
    letter-spacing: 0.08em;
  }

  .dossier-card dl {
    gap: 10px;
  }

  .closing-actions {
    width: 100%;
    flex-direction: column;
  }

  .closing-actions > * {
    width: 100%;
  }

  .share-action--closing {
    min-height: 58px;
  }

  .site-footer {
    flex-direction: column;
  }

  .experience-dialog {
    width: calc(100vw - 16px);
  }

  .dialog-shell {
    padding: 8px;
  }

  .video-shell {
    min-height: 72svh;
  }
}

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

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

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