:root {
  --black: #050405;
  --black-soft: #090708;
  --panel: #0d0a0b;
  --paper: #ead9c6;
  --paper-bright: #f5e9da;
  --muted: #ad9a87;
  --muted-dark: #746456;
  --brass: #a67c57;
  --brass-soft: rgba(166, 124, 87, 0.26);
  --blood: #9c342e;
  --blood-hot: #bd5847;
  --line: rgba(179, 140, 103, 0.22);
  --line-strong: rgba(179, 140, 103, 0.42);
  --display: "Cinzel", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --body: "Crimson Text", Georgia, "Times New Roman", serif;
  --ui: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 18% 28%, rgba(92, 31, 30, 0.07), transparent 30rem),
    linear-gradient(180deg, #060506, #080607 45%, #050405);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 30;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.13;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.012) 0 1px, transparent 1px 4px),
    radial-gradient(circle at center, transparent 48%, rgba(0, 0, 0, 0.35));
  mix-blend-mode: soft-light;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

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

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

a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--blood-hot);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--black);
  background: var(--paper-bright);
  font-family: var(--ui);
  font-size: 13px;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.container {
  width: min(var(--container), calc(100% - 64px));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  width: min(1360px, calc(100% - 64px));
  min-height: 84px;
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) auto minmax(180px, 0.8fr);
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid rgba(234, 217, 198, 0.13);
  transform: translateX(-50%);
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  width: 190px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--blood-hot));
  box-shadow: 0 0 18px rgba(189, 88, 71, 0.48);
}

.brand {
  width: 156px;
}

.site-header nav,
footer nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-family: var(--ui);
}

.site-header nav a,
footer nav a {
  color: rgba(234, 217, 198, 0.68);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.site-header nav a:hover,
.site-header nav a:focus-visible,
footer nav a:hover,
footer nav a:focus-visible {
  color: var(--paper-bright);
}

.header-play {
  justify-self: end;
  padding: 12px 16px;
  border: 1px solid rgba(189, 88, 71, 0.52);
  color: var(--paper-bright);
  background:
    linear-gradient(90deg, rgba(123, 39, 37, 0.34), rgba(12, 8, 9, 0.42));
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.header-play:hover,
.header-play:focus-visible {
  border-color: var(--blood-hot);
  background: rgba(110, 34, 32, 0.62);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: max(820px, 100svh);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #030303;
}

.hero-art,
.hero-shade,
.hero-grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-art {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(2, 2, 3, 0.98) 0%, rgba(3, 3, 4, 0.91) 28%, rgba(3, 3, 4, 0.42) 58%, rgba(2, 2, 3, 0.2)),
    linear-gradient(180deg, rgba(2, 2, 3, 0.58) 0%, transparent 24%, transparent 65%, rgba(2, 2, 3, 0.9) 100%);
}

.hero-grain {
  opacity: 0.12;
  background:
    repeating-linear-gradient(92deg, transparent 0 44px, rgba(255, 255, 255, 0.018) 45px, transparent 46px),
    radial-gradient(ellipse at 22% 52%, rgba(111, 36, 34, 0.14), transparent 46%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: max(820px, 100svh);
  display: flex;
  align-items: center;
  padding-top: 110px;
  padding-bottom: 154px;
}

.hero-copy {
  width: min(670px, 57%);
}

.hero-logo {
  width: min(350px, 70%);
  margin-bottom: 30px;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.75));
}

.eyebrow {
  margin: 0;
  color: var(--brass);
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.24em;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-block;
  width: 34px;
  height: 1px;
  margin-right: 12px;
  vertical-align: middle;
  background: linear-gradient(90deg, var(--blood-hot), transparent);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--display);
  font-weight: 400;
}

.hero h1 {
  max-width: 690px;
  margin: 16px 0 24px;
  color: var(--paper-bright);
  font-size: clamp(3.2rem, 5.7vw, 6.25rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
  text-wrap: balance;
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.72);
}

.hero h1 em {
  color: #c77a69;
  font-style: normal;
}

.hero-lead {
  max-width: 650px;
  margin: 0;
  color: #c7b7a6;
  font-size: clamp(1.05rem, 1.55vw, 1.3rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 15px 22px;
  border: 1px solid transparent;
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

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

.button-primary {
  color: #fff5e9;
  border-color: #b34f42;
  background:
    linear-gradient(100deg, #6f2524, #9c3b32 62%, #7b2b28);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.12),
    0 12px 34px rgba(76, 14, 14, 0.34);
}

.button-primary:hover,
.button-primary:focus-visible {
  border-color: #d47562;
  background: linear-gradient(100deg, #7b2a28, #ad463a 62%, #8d342f);
}

.button-secondary {
  color: #d8c8b6;
  border-color: rgba(179, 140, 103, 0.34);
  background: rgba(5, 4, 5, 0.52);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--paper-bright);
  border-color: rgba(213, 165, 118, 0.56);
  background: rgba(18, 12, 13, 0.78);
}

.hero-trust {
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  list-style: none;
  color: rgba(201, 179, 157, 0.68);
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-trust li::before {
  width: 13px;
  height: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  border: 1px solid var(--blood-hot);
  color: var(--blood-hot);
  content: "·";
  transform: rotate(45deg);
}

.proof-rail {
  position: absolute;
  z-index: 3;
  right: 50%;
  bottom: 0;
  width: min(var(--container), calc(100% - 64px));
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-bottom: 0;
  background: rgba(5, 4, 5, 0.87);
  backdrop-filter: blur(16px);
  transform: translateX(50%);
}

.proof-rail div {
  min-width: 0;
  padding: 19px 24px;
  border-right: 1px solid var(--line);
}

.proof-rail div:last-child {
  border-right: 0;
}

.proof-rail dt {
  margin-bottom: 4px;
  color: var(--muted-dark);
  font-family: var(--ui);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.proof-rail dd {
  margin: 0;
  color: var(--paper);
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: 0.04em;
}

.section {
  position: relative;
  padding: 130px 0;
}

.section::after {
  position: absolute;
  right: 5%;
  bottom: 0;
  left: 5%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.section-index {
  margin: 0 0 12px;
  color: rgba(189, 88, 71, 0.68);
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.opening {
  background:
    radial-gradient(circle at 76% 42%, rgba(118, 45, 39, 0.08), transparent 28rem),
    linear-gradient(180deg, #070607, #090708);
}

.opening-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.65fr);
  align-items: center;
  gap: clamp(60px, 9vw, 130px);
}

.opening-copy h2,
.section-heading h2,
.consequences-copy h2,
.journey-heading h2,
.faq-heading h2 {
  margin-bottom: 28px;
  color: var(--paper-bright);
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.opening-copy > p:not(.eyebrow, .section-index),
.consequences-copy > p:not(.eyebrow, .section-index) {
  max-width: 690px;
  color: var(--muted);
}

.section-lead {
  color: #cfbdab !important;
  font-size: 1.18rem;
}

blockquote {
  position: relative;
  max-width: 600px;
  margin: 34px 0 0;
  padding: 22px 26px 22px 30px;
  border: 1px solid var(--line);
  border-left: 2px solid var(--blood-hot);
  color: #dcc9b7;
  background:
    linear-gradient(90deg, rgba(115, 37, 34, 0.16), transparent),
    rgba(4, 4, 5, 0.48);
  font-family: var(--display);
  font-size: 1.35rem;
}

blockquote span {
  display: block;
  margin-bottom: 7px;
  color: var(--brass);
  font-family: var(--ui);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.portrait-frame,
.landscape-frame {
  position: relative;
  margin: 0;
  padding: 10px;
  border: 1px solid var(--line-strong);
  background: #050405;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
}

.portrait-frame::before,
.landscape-frame::before,
.portrait-frame::after,
.landscape-frame::after {
  position: absolute;
  z-index: 2;
  width: 24px;
  height: 24px;
  content: "";
  pointer-events: none;
}

.portrait-frame::before,
.landscape-frame::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid var(--blood-hot);
  border-left: 2px solid var(--blood-hot);
}

.portrait-frame::after,
.landscape-frame::after {
  right: -1px;
  bottom: -1px;
  border-right: 2px solid var(--blood-hot);
  border-bottom: 2px solid var(--blood-hot);
}

.portrait-frame img {
  width: 100%;
  max-height: 660px;
  object-fit: cover;
  object-position: 50% 24%;
  filter: saturate(0.76) contrast(1.03);
}

.portrait-frame figcaption,
.landscape-frame figcaption {
  padding: 16px 14px 8px;
  color: var(--muted-dark);
  font-size: 0.85rem;
}

.portrait-frame figcaption span {
  display: block;
  margin-bottom: 3px;
  color: var(--paper);
  font-family: var(--display);
  font-size: 1.15rem;
}

.systems {
  background:
    linear-gradient(135deg, rgba(55, 20, 22, 0.08), transparent 40%),
    #070607;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.7fr 1.45fr 1fr;
  align-items: end;
  gap: 48px;
}

.section-heading h2 {
  margin: 0;
}

.section-heading > p {
  margin: 0 0 7px;
  color: var(--muted);
}

.system-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.system-grid article {
  position: relative;
  min-height: 330px;
  padding: 44px 38px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 0%, rgba(122, 48, 42, 0.09), transparent 17rem),
    #0a0809;
  transition: background 180ms ease;
}

.system-grid article:hover {
  background:
    radial-gradient(circle at 85% 0%, rgba(153, 57, 49, 0.16), transparent 18rem),
    #0d090a;
}

.system-grid article::after {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 12px;
  height: 12px;
  border-right: 1px solid rgba(189, 88, 71, 0.6);
  border-bottom: 1px solid rgba(189, 88, 71, 0.6);
  content: "";
}

.system-number {
  color: rgba(189, 88, 71, 0.62);
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.system-grid h3 {
  margin: 68px 0 18px;
  color: var(--paper-bright);
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  line-height: 1.08;
}

.system-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.world-showcase {
  position: relative;
  min-height: 780px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #050405;
}

.world-showcase > img,
.world-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.world-showcase > img {
  object-fit: cover;
  object-position: center;
}

.world-shade {
  background:
    linear-gradient(90deg, rgba(3, 3, 4, 0.93), rgba(3, 3, 4, 0.34) 58%, rgba(3, 3, 4, 0.22)),
    linear-gradient(180deg, rgba(3, 3, 4, 0.28), transparent 42%, rgba(3, 3, 4, 0.92));
}

.world-content {
  position: relative;
  z-index: 2;
  padding-top: 170px;
  padding-bottom: 105px;
}

.world-content h2 {
  max-width: 730px;
  margin: 13px 0 20px;
  color: var(--paper-bright);
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.world-content > p:not(.eyebrow, .section-index) {
  max-width: 590px;
  color: #c7b6a4;
  font-size: 1.12rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  margin-top: 18px;
  color: #d9c3ad;
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--blood-hot);
  transition: transform 160ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translate(3px, -3px);
}

.consequences {
  background:
    radial-gradient(circle at 20% 48%, rgba(92, 31, 30, 0.09), transparent 30rem),
    #090708;
}

.consequences-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  align-items: center;
  gap: clamp(60px, 8vw, 110px);
}

.landscape-frame img {
  width: 100%;
  min-height: 510px;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.04);
}

.consequence-list {
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.consequence-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.consequence-list > li > span {
  color: rgba(189, 88, 71, 0.62);
  font-family: var(--ui);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.consequence-list strong,
.consequence-list small {
  display: block;
}

.consequence-list strong {
  color: var(--paper);
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 400;
}

.consequence-list small {
  margin-top: 3px;
  color: var(--muted-dark);
  font-size: 0.88rem;
  line-height: 1.45;
}

.journey {
  background:
    linear-gradient(180deg, rgba(38, 16, 18, 0.1), transparent),
    #060506;
}

.journey-heading {
  display: grid;
  grid-template-columns: 0.75fr 1.5fr;
  align-items: end;
  gap: 80px;
}

.journey-heading h2 {
  margin: 0;
}

.journey-list {
  margin: 70px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
}

.journey-list li {
  min-width: 0;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  padding: 36px 30px 40px 0;
  border-right: 1px solid var(--line);
}

.journey-list li + li {
  padding-left: 30px;
}

.journey-list li:last-child {
  border-right: 0;
}

.journey-list > li > span {
  color: var(--blood-hot);
  font-family: var(--display);
  font-size: 1.2rem;
}

.journey-list h3 {
  margin-bottom: 12px;
  color: var(--paper);
  font-size: 1.45rem;
  line-height: 1.18;
}

.journey-list p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.92rem;
}

.faq {
  background:
    radial-gradient(circle at 78% 32%, rgba(113, 39, 35, 0.08), transparent 32rem),
    #090708;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(480px, 1.18fr);
  gap: clamp(60px, 10vw, 150px);
}

.faq-heading {
  position: sticky;
  top: 50px;
  align-self: start;
}

.faq-heading > p:not(.eyebrow, .section-index) {
  color: var(--muted-dark);
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 28px 0;
  color: var(--paper);
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-size: 1.3rem;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--blood-hot);
  font-family: var(--ui);
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 690px;
  margin: -6px 44px 28px 0;
  color: var(--muted);
}

.final-cta {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #030303;
}

.final-cta > img,
.final-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.final-cta > img {
  object-fit: cover;
  object-position: 68% 53%;
  transform: scale(1.03);
}

.final-shade {
  background:
    linear-gradient(90deg, rgba(3, 3, 4, 0.98), rgba(3, 3, 4, 0.73) 46%, rgba(3, 3, 4, 0.28)),
    linear-gradient(180deg, rgba(3, 3, 4, 0.42), transparent, rgba(3, 3, 4, 0.82));
}

.final-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 100px;
}

.final-content h2 {
  max-width: 820px;
  margin: 15px 0 24px;
  color: var(--paper-bright);
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.final-content > p:not(.eyebrow) {
  max-width: 580px;
  color: var(--muted);
  font-size: 1.12rem;
}

.final-content .button {
  margin-top: 18px;
}

footer {
  width: min(1360px, calc(100% - 64px));
  min-height: 118px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 42px;
}

.footer-brand {
  width: 170px;
}

footer p {
  margin: 0;
  color: var(--muted-dark);
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.05em;
}

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

  .site-header nav {
    display: none;
  }

  .hero-copy {
    width: min(680px, 68%);
  }

  .section-heading {
    grid-template-columns: 0.55fr 1.35fr;
  }

  .section-heading > p {
    grid-column: 2;
  }

  .opening-grid,
  .consequences-grid {
    gap: 60px;
  }

  .journey-list {
    grid-template-columns: 1fr;
  }

  .journey-list li,
  .journey-list li + li {
    padding: 27px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .journey-list li:last-child {
    border-bottom: 0;
  }

  footer {
    grid-template-columns: 180px 1fr;
  }

  footer nav {
    grid-column: 2;
    justify-content: flex-start;
    margin-top: -28px;
    padding-bottom: 24px;
  }
}

@media (max-width: 820px) {
  .container,
  .site-header,
  footer {
    width: min(100% - 36px, var(--container));
  }

  .site-header {
    min-height: 74px;
    grid-template-columns: 142px 1fr;
  }

  .site-header::after {
    width: 130px;
  }

  .brand {
    width: 132px;
  }

  .header-play {
    padding: 10px 12px;
    font-size: 9px;
  }

  .hero,
  .hero-inner {
    min-height: 850px;
  }

  .hero-art {
    object-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(2, 2, 3, 0.98), rgba(3, 3, 4, 0.78) 58%, rgba(3, 3, 4, 0.38)),
      linear-gradient(180deg, rgba(2, 2, 3, 0.5), transparent 50%, rgba(2, 2, 3, 0.94));
  }

  .hero-inner {
    align-items: flex-end;
    padding-top: 110px;
    padding-bottom: 190px;
  }

  .hero-copy {
    width: min(620px, 100%);
  }

  .hero-logo {
    width: 270px;
    margin-bottom: 22px;
  }

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

  .proof-rail {
    width: calc(100% - 36px);
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-rail div:nth-child(2) {
    border-right: 0;
  }

  .proof-rail div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 90px 0;
  }

  .opening-grid,
  .consequences-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .portrait-frame {
    width: min(470px, 86%);
    justify-self: center;
  }

  .section-heading,
  .journey-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading > p {
    grid-column: auto;
  }

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

  .system-grid article {
    min-height: 270px;
  }

  .system-grid h3 {
    margin-top: 44px;
  }

  .world-showcase {
    min-height: 690px;
  }

  .world-shade {
    background:
      linear-gradient(90deg, rgba(3, 3, 4, 0.88), rgba(3, 3, 4, 0.38)),
      linear-gradient(180deg, rgba(3, 3, 4, 0.3), transparent 24%, rgba(3, 3, 4, 0.94));
  }

  .landscape-frame img {
    min-height: 420px;
  }

  .faq-heading {
    position: static;
  }

  footer {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 40px 0;
  }

  footer nav {
    grid-column: auto;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
  }
}

@media (max-width: 540px) {
  body {
    font-size: 17px;
  }

  .site-header {
    grid-template-columns: 118px 1fr;
  }

  .brand {
    width: 112px;
  }

  .header-play {
    padding: 9px 10px;
    letter-spacing: 0.09em;
  }

  .header-play span {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: 910px;
  }

  .hero-inner {
    padding-bottom: 214px;
  }

  .hero-logo {
    width: 230px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.25rem);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-trust {
    gap: 13px;
    font-size: 8px;
  }

  .proof-rail div {
    padding: 14px 13px;
  }

  .proof-rail dd {
    font-size: 16px;
  }

  .opening-copy h2,
  .section-heading h2,
  .consequences-copy h2,
  .journey-heading h2,
  .faq-heading h2 {
    font-size: clamp(2.35rem, 12vw, 3.5rem);
  }

  .portrait-frame {
    width: 100%;
  }

  .system-grid article {
    padding: 34px 28px;
  }

  .world-showcase {
    min-height: 620px;
  }

  .world-showcase > img {
    object-position: 60% center;
  }

  .world-content {
    padding-bottom: 70px;
  }

  .world-content h2,
  .final-content h2 {
    font-size: clamp(2.8rem, 14vw, 4.4rem);
  }

  .landscape-frame img {
    min-height: 300px;
  }

  .journey-list li {
    grid-template-columns: 36px 1fr;
  }

  .faq-list summary {
    font-size: 1.15rem;
  }

  .final-cta {
    min-height: 620px;
  }

  .final-cta > img {
    object-position: 70% center;
  }

  footer nav {
    flex-wrap: wrap;
    gap: 18px;
  }
}

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

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