:root {
  --ink: #050505;
  --ink-soft: #0b0a09;
  --paper: #ece8df;
  --paper-soft: #d8d2c6;
  --gold: #bd9a5f;
  --gold-light: #e2c58e;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(5, 5, 5, 0.18);
  --muted: rgba(255, 255, 255, 0.58);
  --shell: 1440px;
  --frame-radius: 20px;
  --pointer-x: 50vw;
  --pointer-y: 50vh;
  --font-sans: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
  color-scheme: dark;
  font-family: var(--font-sans);
  background: var(--ink);
  color: #f5f2eb;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 0;
  background: var(--ink);
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

html.has-inertia {
  scroll-behavior: auto;
}

body {
  min-width: 0;
  min-height: 100vh;
  margin: 0;
  padding-bottom: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: #f5f2eb;
  word-break: keep-all;
}

body::before {
  position: fixed;
  z-index: 100;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  content: "";
  pointer-events: none;
}

body::after {
  position: fixed;
  z-index: 89;
  top: var(--pointer-y);
  left: var(--pointer-x);
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226, 197, 142, 0.1), rgba(189, 154, 95, 0.025) 36%, transparent 68%);
  content: "";
  opacity: var(--pointer-opacity, 0);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 500ms ease;
  mix-blend-mode: screen;
}

main,
section {
  position: relative;
}

a {
  color: inherit;
}

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

figure {
  margin: 0;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

a:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 5px;
}

.shell {
  width: min(var(--shell), calc(100% - 8vw));
  margin-inline: auto;
}

.eyebrow {
  margin: 0;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.22em;
  line-height: 1.5;
}

.scroll-progress {
  position: fixed;
  z-index: 120;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  pointer-events: none;
}

.scroll-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.site-header {
  position: fixed;
  z-index: 90;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  height: 80px;
  padding: 0 4vw;
  align-items: center;
  grid-template-columns: 1fr auto 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 5, 5, 0.12);
  backdrop-filter: blur(0);
  transition: background 500ms ease, backdrop-filter 500ms ease, height 500ms ease;
}

.site-header.is-scrolled {
  height: 70px;
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(18px) saturate(120%);
}

.site-brand {
  display: inline-flex;
  width: max-content;
  align-items: baseline;
  gap: 8px;
  text-decoration: none;
}

.site-brand img {
  width: clamp(118px, 9vw, 146px);
  height: auto;
  filter: brightness(0) invert(1);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.7vw, 48px);
}

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 620;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: color 250ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -12px;
  left: 0;
  height: 1px;
  background: var(--gold-light);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 300ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: #fff;
}

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

.header-store {
  justify-self: end;
  color: rgba(255, 255, 255, 0.84);
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.16em;
  text-decoration: none;
}

.header-store span {
  display: inline-block;
  margin-left: 8px;
  color: var(--gold-light);
  transition: transform 250ms ease;
}

.header-store:hover span {
  transform: translate(3px, -3px);
}

.hero {
  min-height: 100svh;
  overflow: hidden;
  background: #020202;
}

.hero::after {
  position: absolute;
  z-index: 3;
  right: 4vw;
  bottom: 0;
  left: 4vw;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  content: "";
}

.hero-film,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-film {
  background:
    linear-gradient(rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.08)),
    url("https://i.ytimg.com/vi/K7m_qplgG8Q/maxresdefault.jpg") center / cover no-repeat,
    #050505;
  transform: scale(calc(1.08 + var(--hero-scale, 0)));
  transform-origin: center;
  will-change: transform;
}

.hero-film video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  user-select: none;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.58) 42%, rgba(0, 0, 0, 0.3) 72%, rgba(0, 0, 0, 0.62) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.54) 0%, transparent 34%, rgba(0, 0, 0, 0.88) 100%);
}

.hero-video-guard {
  position: absolute;
  z-index: 2;
  inset: 0;
  cursor: default;
  pointer-events: auto;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.hero-coordinates {
  position: absolute;
  z-index: 4;
  top: 112px;
  right: 4vw;
  left: 4vw;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: rgba(255, 255, 255, 0.52);
  font-size: 8px;
  font-weight: 720;
  letter-spacing: 0.24em;
}

.hero-content {
  position: relative;
  z-index: 4;
  display: flex;
  width: min(var(--shell), calc(100% - 8vw));
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(180px, 20vh, 260px) 0 clamp(130px, 15vh, 190px);
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
}

.hero h1,
.opening-statement h2,
.story-heading h2,
.system-intro h2,
.network-copy h2,
.history-heading h2,
.ceo-copy h2,
.closing-content h2 {
  font-family: var(--font-sans);
  font-weight: 680;
}

.hero h1 {
  max-width: 1150px;
  margin: 0;
  font-size: clamp(66px, 8.2vw, 132px);
  letter-spacing: -0.066em;
  line-height: 0.96;
}

.hero h1 em {
  color: var(--gold-light);
  font-style: normal;
  font-weight: 760;
}

.hero-lead {
  margin: 44px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(15px, 1.2vw, 19px);
  letter-spacing: -0.02em;
  line-height: 1.8;
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  right: 4vw;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 8px;
  font-weight: 720;
  letter-spacing: 0.2em;
  text-decoration: none;
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
}

.scroll-cue i::before,
.scroll-cue i::after {
  position: absolute;
  content: "";
}

.scroll-cue i::before {
  top: 8px;
  left: 50%;
  width: 1px;
  height: 14px;
  background: #fff;
  transform: translateX(-50%);
}

.scroll-cue i::after {
  bottom: 9px;
  left: 50%;
  width: 6px;
  height: 6px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: translateX(-50%) rotate(45deg);
}

.opening-statement {
  padding: clamp(110px, 12vw, 180px) 0 clamp(130px, 13vw, 190px);
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
}

.statement-line {
  position: absolute;
  top: 64px;
  left: 0;
  width: max-content;
  white-space: nowrap;
  transform: translateX(-8%);
}

.statement-line span {
  color: transparent;
  font-family: var(--font-sans);
  font-size: clamp(76px, 11vw, 180px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.8;
  -webkit-text-stroke: 1px rgba(5, 5, 5, 0.14);
}

.statement-copy {
  display: grid;
  padding-top: clamp(86px, 8vw, 124px);
  grid-template-areas:
    "brand message"
    "visual visual";
  grid-template-columns: minmax(200px, 0.3fr) minmax(0, 1fr);
  column-gap: clamp(54px, 6vw, 104px);
  row-gap: clamp(58px, 6vw, 96px);
}

.statement-copy .eyebrow {
  padding-top: 22px;
  color: #846b42;
}

.brand-eyebrow {
  grid-area: brand;
  margin: 0;
  padding-top: 22px;
}

.brand-eyebrow img {
  width: clamp(136px, 12vw, 182px);
  height: auto;
}

.statement-side {
  display: contents;
}

.statement-visual {
  position: relative;
  grid-area: visual;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 7;
  margin-top: 0;
  overflow: hidden;
  border-radius: var(--frame-radius);
  background: #c5b48e;
  box-shadow: 0 24px 60px rgba(49, 39, 22, 0.16);
}

.statement-visual::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.statement-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% center;
  filter: saturate(0.74) contrast(1.03) brightness(0.82);
  transition: filter 700ms ease, transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.statement-visual:hover img {
  filter: saturate(0.92) contrast(1.02) brightness(0.9);
  transform: scale(1.035);
}

.statement-visual figcaption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.88);
  font-size: 8px;
  font-weight: 720;
  letter-spacing: 0.13em;
}

.statement-visual figcaption i {
  color: rgba(255, 255, 255, 0.62);
  font-style: normal;
  font-weight: 540;
}

.statement-message {
  grid-area: message;
  min-width: 0;
}

.statement-copy h2 {
  max-width: 1020px;
  margin: 0;
  font-size: clamp(54px, 6.6vw, 104px);
  letter-spacing: -0.058em;
  line-height: 1.04;
}

.statement-copy h2 em {
  color: #8a6c3f;
  font-style: normal;
  font-weight: 780;
}

.statement-message > p {
  max-width: 620px;
  margin: 54px 0 0;
  color: rgba(5, 5, 5, 0.62);
  font-size: 16px;
  letter-spacing: -0.025em;
  line-height: 1.9;
}

.story-section {
  padding: clamp(160px, 16vw, 250px) 0;
  background:
    radial-gradient(circle at 80% 12%, rgba(189, 154, 95, 0.09), transparent 32rem),
    var(--ink);
}

.story-heading {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.55fr);
  gap: 8vw;
}

.story-heading h2,
.system-intro h2,
.network-copy h2,
.history-heading h2,
.ceo-copy h2 {
  margin: 0;
  font-size: clamp(50px, 6.2vw, 100px);
  letter-spacing: -0.07em;
  line-height: 1;
}

.story-heading > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 15px;
  letter-spacing: -0.025em;
  line-height: 1.9;
}

.story-scroll {
  display: grid;
  margin-top: clamp(100px, 12vw, 180px);
  align-items: start;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.62fr);
  gap: clamp(60px, 8vw, 140px);
}

.story-stage {
  position: sticky;
  top: 96px;
  height: calc(100svh - 132px);
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--frame-radius);
  background: #0d0c0b;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
}

.story-stage::before,
.story-stage::after {
  position: absolute;
  z-index: 4;
  content: "";
  pointer-events: none;
}

.story-stage::before {
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: inherit;
  background: radial-gradient(circle at var(--local-x, 50%) var(--local-y, 50%), rgba(226, 197, 142, 0.12), transparent 34%);
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.35), 0 0 0 0 rgba(226, 197, 142, 0);
  transition: box-shadow 450ms ease;
}

.story-stage:hover::before {
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(226, 197, 142, 0.2);
}

.story-stage::after {
  right: 26px;
  bottom: 26px;
  width: 9px;
  height: 9px;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
}

.story-visual {
  position: absolute;
  inset: 0;
  display: none;
  opacity: 1;
  transform: scale(1);
}

.story-visual::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 42%, rgba(0, 0, 0, 0.84) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.28), transparent 48%);
  content: "";
}

.story-visual.is-active {
  z-index: 1;
  display: block;
  animation: story-frame-enter 560ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes story-frame-enter {
  from {
    clip-path: inset(0 100% 0 0 round var(--frame-radius));
    transform: scale(1.035);
  }

  to {
    clip-path: inset(0 0 0 0 round var(--frame-radius));
    transform: scale(1);
  }
}

.story-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.08);
  transform: translate3d(var(--shift-x, 0px), var(--shift-y, 0px), 0) scale(1.055);
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1), filter 700ms ease;
}

.story-visual:nth-child(1) img {
  object-position: center;
}

.story-visual:nth-child(2) img {
  object-position: center 44%;
}

.story-visual:nth-child(3) img {
  object-position: center;
}

.story-visual figcaption {
  position: absolute;
  z-index: 2;
  bottom: 26px;
  left: 28px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 8px;
  font-weight: 720;
  letter-spacing: 0.2em;
}

.story-frame-index {
  position: absolute;
  z-index: 5;
  top: 26px;
  right: 28px;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.14em;
}

.story-chapter {
  display: flex;
  min-height: 88svh;
  padding: 12vh 0;
  justify-content: center;
  flex-direction: column;
  opacity: 0.2;
  transition: opacity 420ms ease;
}

.story-chapter.is-active {
  opacity: 1;
}

.story-chapter > span {
  display: block;
  margin-bottom: 64px;
  color: rgba(255, 255, 255, 0.22);
  font-family: var(--font-sans);
  font-size: 72px;
  font-style: normal;
  font-weight: 220;
  line-height: 1;
}

.story-chapter h3 {
  margin: 0 0 32px;
  font-family: var(--font-sans);
  font-size: clamp(40px, 4vw, 66px);
  font-weight: 680;
  letter-spacing: -0.052em;
  line-height: 1.12;
}

.story-chapter > p:last-child {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  letter-spacing: -0.025em;
  line-height: 1.9;
}

.system-section {
  padding: clamp(180px, 18vw, 280px) 0 0;
  background: #090806;
}

.system-intro {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
  gap: 5vw;
}

.system-intro .eyebrow {
  align-self: start;
  padding-top: 24px;
}

.system-intro h2 {
  margin: 0;
}

.system-intro > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 15px;
  letter-spacing: -0.025em;
  line-height: 1.9;
}

.evidence-grid {
  display: grid;
  margin-top: clamp(90px, 10vw, 150px);
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(280px, 34vh)) minmax(440px, 56vh);
  gap: 12px;
}

.evidence-card {
  position: relative;
  grid-column: 9 / 13;
  overflow: hidden;
  border-radius: var(--frame-radius);
  background: #12100e;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

.evidence-main {
  grid-row: 1 / 3;
  grid-column: 1 / 9;
}

.evidence-tall {
  grid-row: 1;
}

.evidence-card:nth-child(3) {
  grid-row: 2;
}

.evidence-wide {
  grid-row: 3;
  grid-column: 1 / 13;
}

.evidence-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 36%, rgba(0, 0, 0, 0.84) 100%);
  content: "";
  pointer-events: none;
}

.evidence-card::before {
  position: absolute;
  z-index: 3;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: inherit;
  background: radial-gradient(circle at var(--local-x, 50%) var(--local-y, 50%), rgba(226, 197, 142, 0.16), transparent 32%);
  content: "";
  opacity: 0.3;
  pointer-events: none;
  transition: opacity 400ms ease, border-color 400ms ease;
}

.evidence-card:hover::before {
  border-color: rgba(226, 197, 142, 0.34);
  opacity: 0.72;
}

.evidence-card img {
  width: 100%;
  height: calc(100% + 34px);
  object-fit: cover;
  filter: saturate(0.7) contrast(1.06);
  transform: perspective(1200px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translate3d(var(--shift-x, 0px), calc(var(--parallax-y, -16px) + var(--shift-y, 0px)), 0) scale(1.045);
  transition: filter 700ms ease, transform 200ms linear;
}

.evidence-main img {
  object-position: center 58%;
}

.evidence-tall img {
  object-position: center 46%;
}

.evidence-card:nth-child(3) img {
  object-position: center 52%;
}

.evidence-wide img {
  object-position: center 46%;
}

.evidence-card:hover img {
  filter: saturate(0.9) contrast(1.08);
}

.evidence-card figcaption {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 3vw, 44px);
  bottom: clamp(24px, 3vw, 44px);
  left: clamp(24px, 3vw, 44px);
}

.evidence-card figcaption span {
  display: block;
  margin-bottom: 16px;
  color: var(--gold-light);
  font-size: 8px;
  font-weight: 760;
  letter-spacing: 0.2em;
}

.evidence-card figcaption strong {
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(24px, 2.7vw, 44px);
  font-weight: 670;
  letter-spacing: -0.046em;
  line-height: 1.14;
}

.evidence-main figcaption strong,
.evidence-wide figcaption strong {
  font-size: clamp(34px, 4vw, 64px);
}

.system-principles {
  margin-top: clamp(120px, 13vw, 200px);
  padding-bottom: clamp(140px, 14vw, 220px);
  border-top: 1px solid var(--line);
  background: var(--ink);
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border-radius: var(--frame-radius);
}

.principles-grid article {
  position: relative;
  min-height: 360px;
  padding: 48px clamp(28px, 3vw, 48px);
  border-right: 1px solid var(--line);
  transition: background 500ms ease;
}

.principles-grid article::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  content: "";
  transform: scaleX(0);
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.principles-grid article:hover {
  background: rgba(189, 154, 95, 0.075);
}

.principles-grid article:hover::after {
  transform: scaleX(1);
}

.principles-grid article:first-child {
  border-left: 1px solid var(--line);
}

.principles-grid article > span {
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.22em;
}

.principles-grid strong {
  display: block;
  margin-top: 108px;
  font-size: clamp(24px, 2.3vw, 34px);
  font-weight: 630;
  letter-spacing: -0.045em;
}

.principles-grid p {
  max-width: 340px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: -0.02em;
  line-height: 1.85;
}

.network-section {
  min-height: 100svh;
  padding: clamp(170px, 18vw, 270px) 0 0;
  overflow: hidden;
  background: var(--ink);
}

.network-backdrop,
.network-shade {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: min(900px, 100svh);
}

.network-backdrop {
  overflow: hidden;
}

.network-backdrop img {
  width: 100%;
  height: calc(100% + 80px);
  object-fit: cover;
  object-position: center;
  filter: saturate(0.58) contrast(1.08);
  transform: translate3d(0, var(--parallax-y, -40px), 0) scale(1.06);
}

.network-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.45) 52%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.32) 56%, #050505 100%);
}

.network-content {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: min(760px, 82svh);
  padding-bottom: 120px;
  align-items: end;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.65fr);
  gap: 8vw;
}

.network-count {
  align-self: center;
}

.network-count strong {
  display: block;
  margin-top: 0;
  color: var(--gold-light);
  font-family: var(--font-sans);
  font-size: clamp(150px, 23vw, 360px);
  font-weight: 180;
  letter-spacing: -0.075em;
  line-height: 0.76;
}

.network-count small {
  display: block;
  margin: 32px 0 0 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 660;
  letter-spacing: 0.15em;
}

.network-copy {
  padding-bottom: 24px;
}

.network-copy h2 {
  margin-top: 0;
  font-size: clamp(48px, 5vw, 82px);
}

.network-copy p {
  max-width: 520px;
  margin: 42px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  letter-spacing: -0.025em;
  line-height: 1.9;
}

.network-reel {
  position: relative;
  z-index: 3;
  padding: 96px 0 150px;
  overflow: hidden;
  background: var(--ink);
}

.network-reel::before {
  position: absolute;
  top: 0;
  right: 4vw;
  left: 4vw;
  height: 1px;
  background: var(--line);
  content: "";
}

.network-reel-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: network-marquee 38s linear infinite;
  will-change: transform;
}

.network-reel:hover .network-reel-track {
  animation-play-state: paused;
}

.network-reel figure {
  position: relative;
  width: clamp(280px, 31vw, 500px);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--frame-radius);
  background: #111;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
}

.network-reel figure::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at var(--local-x, 50%) var(--local-y, 50%), rgba(226, 197, 142, 0.15), transparent 32%),
    linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.74));
  content: "";
}

.network-reel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.65) contrast(1.05);
  transform: translate3d(var(--shift-x, 0px), var(--shift-y, 0px), 0) scale(var(--image-scale, 1.045));
  transition: filter 500ms ease, transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.network-reel figure:hover {
  --image-scale: 1.085;
}

.network-reel figure:hover img {
  filter: saturate(0.95) contrast(1.04);
}

.network-reel figcaption {
  position: absolute;
  z-index: 2;
  bottom: 24px;
  left: 26px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 8px;
  font-weight: 720;
  letter-spacing: 0.2em;
}

@keyframes network-marquee {
  to {
    transform: translateX(calc(-50% - 7px));
  }
}

.history-section {
  padding: clamp(180px, 19vw, 290px) 0;
  border-top: 1px solid var(--line);
  background: #080706;
}

.history-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(80px, 11vw, 180px);
}

.history-heading {
  position: sticky;
  top: 120px;
}

.history-heading h2 {
  font-size: clamp(48px, 5.4vw, 88px);
}

.history-heading > p {
  max-width: 480px;
  margin: 44px 0 0;
  color: var(--muted);
  font-size: 15px;
  letter-spacing: -0.025em;
  line-height: 1.9;
}

.history-heading > span {
  display: block;
  margin-top: 88px;
  color: rgba(255, 255, 255, 0.26);
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.2em;
}

.history-timeline {
  position: relative;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.timeline-progress {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1px;
  width: 1px;
  background: var(--gold-light);
  transform: scaleY(var(--timeline-progress, 0));
  transform-origin: top;
  will-change: transform;
}

.history-item {
  position: relative;
  display: grid;
  min-height: 260px;
  padding: 26px 0 70px clamp(42px, 5vw, 78px);
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 500ms ease, padding-left 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.history-item:hover {
  padding-left: clamp(52px, 5.8vw, 90px);
  background: linear-gradient(90deg, rgba(189, 154, 95, 0.09), transparent 76%);
}

.history-item::before {
  position: absolute;
  top: 35px;
  left: -5px;
  width: 9px;
  height: 9px;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  background: #080706;
  content: "";
}

.history-item time {
  color: rgba(255, 255, 255, 0.38);
  font-family: var(--font-sans);
  font-size: clamp(34px, 3.5vw, 58px);
  font-style: normal;
  font-weight: 240;
  line-height: 1;
}

.history-item div > span {
  color: var(--gold);
  font-size: 8px;
  font-weight: 760;
  letter-spacing: 0.2em;
}

.history-brand-mark img {
  width: 128px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.78;
}

.history-item h3 {
  margin: 28px 0 18px;
  font-size: clamp(24px, 2.3vw, 36px);
  font-weight: 620;
  letter-spacing: -0.045em;
}

.history-item p {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: -0.02em;
  line-height: 1.8;
}

.history-highlight {
  background: linear-gradient(90deg, rgba(189, 154, 95, 0.11), transparent);
}

.history-highlight time,
.history-highlight h3 {
  color: var(--gold-light);
}

.ceo-section {
  display: grid;
  min-height: 110svh;
  background: var(--paper);
  color: var(--ink);
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
}

.ceo-image {
  position: sticky;
  top: 24px;
  height: calc(100svh - 48px);
  margin: 24px 0 24px 24px;
  overflow: hidden;
  border-radius: var(--frame-radius);
  background: #18130e;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.24);
}

.ceo-image::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--local-x, 50%) var(--local-y, 50%), rgba(226, 197, 142, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.58)),
    linear-gradient(90deg, transparent 55%, rgba(0, 0, 0, 0.3));
  content: "";
}

.ceo-image img {
  width: 100%;
  height: calc(100% + 80px);
  object-fit: cover;
  object-position: 60% center;
  object-position: center;
  filter: saturate(0.64) contrast(1.08);
  transform: perspective(1400px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translate3d(var(--shift-x, 0px), calc(var(--parallax-y, -40px) + var(--shift-y, 0px)), 0) scale(1.085);
  transition: transform 240ms linear, filter 600ms ease;
}

.ceo-image > span {
  position: absolute;
  z-index: 2;
  right: 42px;
  bottom: 44px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 8px;
  font-weight: 720;
  letter-spacing: 0.22em;
}

.ceo-copy {
  display: flex;
  min-height: 110svh;
  padding: clamp(130px, 11vw, 190px) clamp(56px, 8vw, 130px);
  align-items: center;
}

.ceo-copy > div {
  max-width: 720px;
}

.ceo-copy .eyebrow {
  color: #80643b;
}

.ceo-copy h2 {
  font-size: clamp(50px, 5.5vw, 88px);
}

.ceo-opening {
  margin: 68px 0 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.ceo-message {
  margin-top: 36px;
}

.ceo-message p {
  margin: 0 0 24px;
  color: rgba(5, 5, 5, 0.66);
  font-size: 15px;
  letter-spacing: -0.025em;
  line-height: 1.95;
}

.ceo-sign {
  position: relative;
  display: flex;
  min-height: 92px;
  margin-top: 58px;
  padding-top: 26px;
  align-items: baseline;
  gap: 10px;
  border-top: 1px solid var(--line-dark);
}

.ceo-sign span {
  color: rgba(5, 5, 5, 0.48);
  font-size: 11px;
}

.ceo-sign strong {
  font-size: 20px;
  letter-spacing: 0.14em;
}

.ceo-sign img {
  position: absolute;
  top: 5px;
  right: 0;
  width: 170px;
  height: auto;
  mix-blend-mode: multiply;
  opacity: 0.72;
}

.closing-section {
  min-height: 94svh;
  padding: clamp(170px, 18vw, 270px) 0;
  overflow: hidden;
  background: #080706;
}

.closing-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(84vw, 1160px);
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(189, 154, 95, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.closing-orbit::before,
.closing-orbit::after {
  position: absolute;
  top: 50%;
  left: 50%;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(189, 154, 95, 0.13);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.closing-orbit::before {
  width: 70%;
}

.closing-orbit::after {
  width: 42%;
  background: radial-gradient(circle, rgba(189, 154, 95, 0.08), transparent 70%);
}

.closing-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 60svh;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

.closing-content h2 {
  margin: 0;
  font-size: clamp(62px, 7.6vw, 122px);
  letter-spacing: -0.064em;
  line-height: 1;
}

.closing-content h2 em {
  color: var(--gold-light);
  font-style: normal;
  font-weight: 780;
}

.closing-content > p:not(.eyebrow) {
  margin: 48px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.closing-actions {
  display: flex;
  margin-top: 58px;
  gap: 12px;
}

.closing-actions a {
  display: flex;
  width: 220px;
  height: 64px;
  padding: 0 22px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--frame-radius);
  font-size: 12px;
  font-weight: 640;
  text-decoration: none;
  transition: border-color 250ms ease, background 250ms ease, color 250ms ease, transform 120ms ease;
}

.closing-actions a:first-child {
  border-color: var(--gold);
  background: var(--gold);
  color: #090806;
}

.closing-actions a:hover {
  border-color: var(--gold-light);
  background: var(--gold-light);
  color: #090806;
}

.closing-actions i {
  font-style: normal;
}

.site-footer {
  display: grid;
  padding: 88px 4vw calc(176px + env(safe-area-inset-bottom));
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 6vw;
  border-top: 1px solid var(--line);
  background: #020202;
}

.footer-brand img {
  width: min(260px, 70%);
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-info p,
.footer-meta p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
  letter-spacing: -0.02em;
  line-height: 1.6;
}

.footer-info a {
  text-decoration: none;
}

.footer-meta {
  justify-self: end;
  text-align: right;
}

.store-dock {
  position: fixed;
  z-index: 95;
  right: auto;
  bottom: max(18px, env(safe-area-inset-bottom));
  left: 50%;
  width: min(840px, calc(100vw - 48px));
  pointer-events: none;
  transform: translateX(-50%);
}

.store-dock > a {
  position: relative;
  display: flex;
  min-height: 106px;
  padding: 16px 22px;
  align-items: center;
  gap: 18px;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(11, 10, 9, 0.9);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  color: #f5f2eb;
  pointer-events: auto;
  text-decoration: none;
  backdrop-filter: blur(20px) saturate(125%);
  scale: 1;
  translate: 0 0;
  transition: border-color 320ms ease, background 320ms ease, box-shadow 320ms ease, scale 320ms cubic-bezier(0.16, 1, 0.3, 1), translate 320ms cubic-bezier(0.16, 1, 0.3, 1), transform 180ms ease-out;
}

.store-dock > a::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(112deg, transparent 30%, rgba(226, 197, 142, 0.13) 48%, rgba(255, 255, 255, 0.08) 52%, transparent 70%);
  content: "";
  pointer-events: none;
  transform: translateX(-110%);
  transition: transform 780ms cubic-bezier(0.16, 1, 0.3, 1);
}

.store-dock > a::after {
  position: absolute;
  right: 50%;
  bottom: 0;
  left: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  content: "";
  opacity: 0;
  transition: right 420ms ease, left 420ms ease, opacity 420ms ease;
}

.store-dock > a:hover {
  border-color: rgba(226, 197, 142, 0.66);
  background: rgba(19, 16, 12, 0.96);
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.6), 0 0 36px rgba(189, 154, 95, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  scale: 1.008;
  translate: 0 -6px;
}

.store-dock > a:hover::before {
  transform: translateX(110%);
}

.store-dock > a:hover::after {
  right: 14%;
  left: 14%;
  opacity: 1;
}

.store-dock-copy {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

.store-dock-copy small {
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: -0.01em;
  transition: color 280ms ease, letter-spacing 280ms ease;
}

.store-dock-copy strong {
  overflow: hidden;
  font-size: 23px;
  font-weight: 740;
  letter-spacing: -0.035em;
  text-overflow: ellipsis;
  transition: color 280ms ease, letter-spacing 280ms ease, transform 280ms ease;
  white-space: nowrap;
}

.store-dock i {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 22px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 18px;
  background: var(--gold);
  color: #080706;
  font-size: 21px;
  font-style: normal;
  transform: translateY(-50%);
  transition: background 280ms ease, box-shadow 280ms ease, transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.store-dock > a:hover i {
  background: var(--gold-light);
  box-shadow: 0 10px 28px rgba(189, 154, 95, 0.32);
  transform: translate(4px, calc(-50% - 4px)) rotate(4deg);
}

.store-dock > a:hover .store-dock-copy small {
  color: #f0d7a6;
  letter-spacing: 0.04em;
}

.store-dock > a:hover .store-dock-copy strong {
  color: #fff;
  letter-spacing: -0.025em;
  transform: scale(1.025);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 900ms ease var(--reveal-delay, 0ms), transform 1.1s cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms);
}

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

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

  .story-heading,
  .system-intro {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .story-heading > p,
  .system-intro > p {
    max-width: 680px;
  }

  .system-intro .eyebrow {
    padding-top: 0;
  }

  .system-intro h2 {
    margin-top: 0;
  }

  .story-scroll {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.68fr);
    gap: 48px;
  }

  .story-stage {
    min-height: 560px;
  }

  .network-content {
    grid-template-columns: 1fr 0.8fr;
    gap: 48px;
  }

  .history-layout {
    grid-template-columns: 0.7fr 1.3fr;
    gap: 70px;
  }

  .history-item {
    grid-template-columns: 110px minmax(0, 1fr);
  }

  .ceo-section {
    grid-template-columns: 0.8fr 1.2fr;
  }
}

@media (max-width: 860px) {
  body {
    padding-bottom: 0;
  }

  .shell {
    width: calc(100% - 44px);
  }

  .site-header {
    height: 70px;
    padding: 0 22px;
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .header-store {
    font-size: 8px;
  }

  .hero-coordinates {
    top: 96px;
    right: 22px;
    left: 22px;
  }

  .hero-coordinates span:last-child {
    display: none;
  }

  .hero-content {
    width: calc(100% - 44px);
    padding: 150px 0 132px;
  }

  .hero h1 {
    font-size: clamp(58px, 14vw, 94px);
  }

  .hero-lead {
    margin-top: 34px;
  }

  .scroll-cue {
    right: 22px;
  }

  .statement-copy {
    grid-template-areas:
      "brand"
      "visual"
      "message";
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .statement-copy .eyebrow,
  .statement-copy .brand-eyebrow {
    padding-top: 0;
  }

  .statement-visual {
    width: min(100%, 520px);
    height: auto;
    aspect-ratio: 4 / 3;
    margin-top: 0;
  }

  .statement-visual img {
    height: 100%;
  }

  .statement-message > p {
    margin-top: 30px;
  }

  .story-scroll {
    display: block;
  }

  .story-stage {
    z-index: 2;
    top: 70px;
    height: 52svh;
    min-height: 360px;
  }

  .story-chapters {
    position: relative;
    z-index: 3;
  }

  .story-chapter {
    min-height: 72svh;
    padding: 23svh 22px 8vh;
    justify-content: flex-end;
    text-shadow: 0 2px 30px #000;
  }

  .story-chapter > span {
    display: none;
  }

  .story-chapter h3 {
    font-size: clamp(38px, 8vw, 58px);
  }

  .story-chapter > p:last-child {
    color: rgba(255, 255, 255, 0.76);
  }

  .evidence-grid {
    grid-template-rows: repeat(2, 340px) 460px;
  }

  .evidence-main {
    grid-column: 1 / 8;
  }

  .evidence-tall,
  .evidence-card:nth-child(3) {
    grid-column: 8 / 13;
  }

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

  .principles-grid article,
  .principles-grid article:first-child {
    min-height: 270px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .principles-grid article:last-child {
    border-bottom: 0;
  }

  .principles-grid strong {
    margin-top: 68px;
  }

  .network-content {
    min-height: 820px;
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .network-count {
    align-self: end;
  }

  .network-count strong {
    font-size: min(50vw, 300px);
  }

  .network-copy {
    padding-bottom: 0;
  }

  .history-layout {
    grid-template-columns: 1fr;
    gap: 90px;
  }

  .history-heading {
    position: static;
  }

  .history-heading > span {
    margin-top: 48px;
  }

  .history-item {
    grid-template-columns: 110px minmax(0, 1fr);
  }

  .ceo-section {
    display: block;
    padding-top: clamp(64px, 10vw, 88px);
  }

  .ceo-image {
    position: relative;
    top: 0;
    height: auto;
    aspect-ratio: 4 / 3;
    margin: 0 22px;
  }

  .ceo-image img {
    height: 100%;
    object-position: center 45%;
    transform: scale(1.035);
  }

  .ceo-copy {
    min-height: 0;
    padding: 110px 22px 130px;
  }

  .ceo-copy > div {
    max-width: 680px;
    margin-inline: auto;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-meta {
    grid-column: 1 / -1;
    justify-self: start;
    text-align: left;
  }

  .store-dock {
    right: auto;
    bottom: max(14px, env(safe-area-inset-bottom));
    left: 50%;
    width: min(720px, calc(100vw - 28px));
  }

  .store-dock > a {
    min-height: 86px;
    padding: 12px 18px;
  }

  .store-dock i {
    right: 14px;
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }
}

@media (max-width: 580px) {
  .eyebrow {
    font-size: 8px;
  }

  .header-store span {
    margin-left: 4px;
  }

  .hero h1 {
    font-size: clamp(52px, 15vw, 76px);
    line-height: 0.98;
  }

  .hero-film {
    transform: scale(calc(1.38 + var(--hero-scale, 0)));
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.36)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 30%, rgba(0, 0, 0, 0.92));
  }

  .scroll-cue span {
    display: none;
  }

  .opening-statement {
    padding-top: 130px;
    padding-bottom: 160px;
  }

  .story-section,
  .history-section {
    padding-top: 150px;
    padding-bottom: 170px;
  }

  .statement-line {
    top: 46px;
  }

  .statement-copy {
    padding-top: 60px;
  }

  .statement-copy h2,
  .story-heading h2,
  .system-intro h2,
  .network-copy h2,
  .history-heading h2,
  .ceo-copy h2 {
    font-size: clamp(42px, 12vw, 62px);
  }

  .statement-message > p,
  .story-heading > p,
  .system-intro > p,
  .network-copy p,
  .history-heading > p,
  .ceo-message p {
    font-size: 14px;
  }

  .story-scroll {
    width: 100%;
  }

  .story-stage {
    min-height: 330px;
    border-right: 0;
    border-left: 0;
  }

  .story-chapters {
    width: calc(100% - 44px);
    margin-inline: auto;
  }

  .story-chapter {
    padding-right: 0;
    padding-left: 0;
  }

  .story-frame-index {
    top: 18px;
    right: 18px;
  }

  .story-visual figcaption {
    bottom: 18px;
    left: 18px;
  }

  .system-section {
    padding-top: 150px;
  }

  .evidence-grid {
    display: flex;
    width: 100%;
    margin-top: 74px;
    padding: 0 22px 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    scrollbar-width: none;
  }

  .evidence-grid::-webkit-scrollbar {
    display: none;
  }

  .evidence-card,
  .evidence-main,
  .evidence-tall,
  .evidence-card:nth-child(3),
  .evidence-wide {
    width: 82vw;
    min-width: 82vw;
    height: 520px;
    grid-column: auto;
    grid-row: auto;
    scroll-snap-align: center;
  }

  .evidence-card figcaption strong,
  .evidence-main figcaption strong,
  .evidence-wide figcaption strong {
    font-size: 31px;
  }

  .system-principles {
    margin-top: 100px;
    padding-bottom: 150px;
  }

  .network-section {
    padding-top: 140px;
  }

  .network-backdrop,
  .network-shade {
    height: 850px;
  }

  .network-content {
    min-height: 760px;
    padding-bottom: 120px;
  }

  .network-count strong {
    margin-top: 24px;
    font-size: 47vw;
  }

  .network-count small {
    margin-top: 26px;
  }

  .network-reel {
    padding: 80px 0 120px;
  }

  .network-reel figure {
    width: 76vw;
  }

  .history-heading > span {
    margin-top: 40px;
  }

  .history-item {
    min-height: 260px;
    padding: 22px 0 60px 34px;
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .history-item time {
    font-size: 46px;
  }

  .history-item::before {
    top: 30px;
  }

  .history-item h3 {
    margin-top: 20px;
    font-size: 26px;
  }

  .history-item:hover {
    padding-left: 34px;
  }

  .ceo-image {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .ceo-copy {
    padding-top: 110px;
    padding-bottom: 150px;
  }

  .ceo-opening {
    margin-top: 50px;
    font-size: 16px;
  }

  .ceo-sign {
    display: block;
    min-height: 120px;
  }

  .ceo-sign strong {
    display: block;
    margin-top: 8px;
  }

  .ceo-sign img {
    top: 22px;
    width: 150px;
  }

  .closing-section {
    min-height: 92svh;
    padding-top: 150px;
    padding-bottom: calc(210px + env(safe-area-inset-bottom));
  }

  .closing-orbit {
    width: 120vw;
  }

  .closing-content h2 {
    font-size: clamp(56px, 15vw, 78px);
  }

  .closing-content > p:not(.eyebrow) {
    max-width: 300px;
    font-size: 14px;
  }

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

  .closing-actions a {
    width: 100%;
  }

  .site-footer {
    padding: 72px 22px calc(200px + env(safe-area-inset-bottom));
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-brand img {
    width: 220px;
  }

  .footer-meta {
    grid-column: auto;
  }

  .store-dock-copy strong {
    font-size: 17px;
  }
}

@media (max-width: 390px) {
  .store-dock {
    bottom: max(12px, env(safe-area-inset-bottom));
    width: calc(100vw - 20px);
  }

  .store-dock > a {
    min-height: 82px;
    padding: 10px 64px 10px 14px;
  }

  .store-dock-copy {
    align-items: flex-start;
    text-align: left;
  }

  .store-dock-copy small {
    font-size: 9px;
  }

  .store-dock-copy strong {
    font-size: 16px;
  }

  .store-dock i {
    right: 10px;
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
