/* Manrope, Barlow Condensed, and IBM Plex Mono are used under the SIL Open Font License. */

@font-face {
  font-family: Manrope;
  src: url("../fonts/Manrope.ttf") format("truetype");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("../fonts/BarlowCondensed-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("../fonts/BarlowCondensed-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("../fonts/IBMPlexMono-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #e7edf3;
  --bg-2: #d5dee8;
  --bg-3: #f4f7fb;
  --line: rgba(22, 50, 79, 0.38);
  --text: #16324f;
  --muted: #3d5570;
  --dim: #5a7088;
  --accent: #16324f;
  --accent-ink: #f4f7fb;
  --signal: #1f5f8b;
  --warn: #3d5570;
  --header-bg: rgba(231, 237, 243, 0.96);
  --input: #ffffff;
  --stage: #dce4ee;
  --nav-hover: rgba(22, 50, 79, 0.08);
  --card: #f4f7fb;
  --chart: #dfe6ee;
  --header: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --sans: Manrope, "Avenir Next", "Segoe UI", sans-serif;
  --display: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --max: 1180px;
  --pad: clamp(18px, 4vw, 40px);
  color-scheme: light;
}

html[data-theme="dark"] {
  --bg: #102033;
  --bg-2: #173049;
  --bg-3: #1e3a56;
  --line: rgba(232, 240, 248, 0.2);
  --text: #e8f0f8;
  --muted: #c5d4e4;
  --dim: #8eabc4;
  --accent: #e8f0f8;
  --accent-ink: #102033;
  --signal: #8eb8d8;
  --warn: #8eb8d8;
  --header-bg: rgba(16, 32, 51, 0.96);
  --input: #0c1826;
  --stage: #0c1826;
  --nav-hover: rgba(232, 240, 248, 0.08);
  --card: #173049;
  --chart: #173049;
  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  cursor: url("../cursor.png") 32 32, crosshair;
}

body, a, button, summary, input, textarea, label, select {
  cursor: url("../cursor.png") 32 32, crosshair;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 450;
  text-rendering: optimizeLegibility;
}

body.nav-lock {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--signal);
}

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 0.92;
  text-transform: uppercase;
  margin: 0 0 0.6rem;
}

.skip {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 80;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 10px 14px;
  border-radius: 999px;
}

.skip:focus {
  top: 12px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: 0 50%;
  z-index: 70;
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  height: var(--header);
  min-height: var(--header);
  padding: 0 var(--pad);
  background: var(--header-bg);
  border-bottom: 1px solid var(--line);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 32px rgba(8, 12, 18, 0.16);
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  position: relative;
  z-index: 50;
}

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

.mark {
  width: 34px;
  height: 34px;
  border: 1px solid var(--accent);
  border-radius: 8px;
  position: relative;
  flex: none;
}

.mark::before,
.mark::after {
  content: "";
  position: absolute;
  background: var(--accent);
}

.mark::before {
  width: 14px;
  height: 1.5px;
  left: 9px;
  top: 16px;
}

.mark::after {
  width: 1.5px;
  height: 14px;
  left: 16px;
  top: 9px;
}

.wordmark img {
  height: 40px;
  width: auto;
}

.preloader img {
  height: 72px;
  width: auto;
  margin: 0 auto;
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 50;
  min-width: 44px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: 0;
}

.site-nav a {
  text-decoration: none;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 999px;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.site-nav a:hover {
  color: var(--text);
  background: var(--nav-hover);
}

.site-nav a[aria-current="page"] {
  color: var(--accent-ink);
  background: var(--accent);
}

.site-nav a[aria-current="page"]:hover {
  color: var(--accent-ink);
  background: var(--accent);
}

.wrap {
  width: min(var(--max), calc(100% - (var(--pad) * 2)));
  margin: 0 auto;
}

.hero,
.page-hero {
  position: relative;
  padding: clamp(48px, 8vw, 96px) 0 clamp(36px, 6vw, 72px);
  overflow: clip;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  width: min(720px, 80vw);
  height: min(720px, 80vw);
  right: -12vw;
  top: -28vw;
  background: radial-gradient(circle, rgba(22, 50, 79, 0.06), transparent 68%);
  pointer-events: none;
}

.eyebrow,
.kicker {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 18px;
}

.display {
  font-size: clamp(2.4rem, 5.2vw, 4.6rem);
  max-width: 12ch;
}

.display .line {
  display: block;
  overflow: hidden;
}

.display .line > span {
  display: block;
  animation: rise 1.05s var(--ease) both;
}

.display .line:nth-child(2) > span {
  animation-delay: 0.08s;
}

.display .line:nth-child(3) > span {
  animation-delay: 0.16s;
}

.lede {
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.08rem;
  margin-top: 22px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 2px;
  border: 1px solid transparent;
  background: var(--accent);
  color: var(--accent-ink);
  text-decoration: none;
  font-weight: 680;
  letter-spacing: 0.01em;
  transition: transform 0.45s var(--ease), background 0.45s var(--ease);
}

.button:hover {
  color: var(--accent-ink);
  transform: translateY(-2px);
}

.button.ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}

.button.ghost:hover {
  color: var(--text);
  border-color: var(--accent);
}

.section {
  padding: clamp(48px, 8vw, 96px) 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: var(--header);
}

.section h2 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  max-width: 16ch;
}

.section-head {
  display: grid;
  gap: 18px;
  margin-bottom: 36px;
}

@media (min-width: 800px) {
  .section-head {
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }

  .section-head p {
    margin: 0;
  }
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
  gap: 12px;
  margin: 20px 0 4px;
}

.stat {
  padding: 20px 18px 18px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--card);
  text-align: left;
}

.stat::before {
  content: "";
  display: block;
  width: 28px;
  height: 3px;
  margin-bottom: 16px;
  border-radius: 99px;
  background: var(--signal);
}

.stat strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 0.95;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  max-width: 18ch;
}

.cards,
.grid-3,
.grid-2,
.grid-4 {
  display: grid;
  gap: 16px;
}

.card,
.panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: clamp(20px, 3vw, 28px);
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
}

a.card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

a.card:hover,
.card:hover {
  transform: translateY(-4px);
  border-color: var(--text);
  color: inherit;
}

.card .index,
.panel .index {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--signal);
}

.card h3,
.panel h3 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-top: 18px;
}

.card .chips {
  margin-top: auto;
}

.chips li,
.pill {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--muted);
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.timeline li {
  display: grid;
  gap: 8px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.timeline .step {
  font-family: var(--mono);
  color: var(--signal);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.timeline h3 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.timeline p {
  color: var(--muted);
  max-width: 62ch;
  margin: 0;
}

.package {
  display: grid;
  gap: 12px;
}

.package article {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.package h3 {
  font-size: 1.7rem;
}

.regions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.stack {
  margin-top: 28px;
}

.split {
  display: grid;
  gap: 28px;
}

.spec-layout {
  display: grid;
  gap: 28px;
}

.spec-sticky .huge {
  font-family: var(--display);
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.84;
  text-transform: uppercase;
  margin: 0;
}

.specs {
  margin: 0;
}

.specs div {
  display: grid;
  gap: 4px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.specs dt {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dim);
}

.specs dd {
  margin: 0;
  font-size: 1.05rem;
}

.story {
  position: relative;
}

.story-sticky {
  display: grid;
  gap: 28px;
}

.story-copy {
  position: relative;
}

.story-stage {
  padding: 8px 0 28px;
  border-top: 1px solid var(--line);
}

.story-stage h3 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.route {
  width: 100%;
  height: auto;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 12px;
}

.route [data-seg] {
  opacity: 0.28;
  transition: opacity 0.45s var(--ease);
}

.route[data-step="0"] [data-seg="0"],
.route[data-step="1"] [data-seg="0"],
.route[data-step="1"] [data-seg="1"],
.route[data-step="2"] [data-seg="0"],
.route[data-step="2"] [data-seg="1"],
.route[data-step="2"] [data-seg="2"],
.route[data-step="3"] [data-seg] {
  opacity: 1;
}

.dots {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(243, 240, 232, 0.25);
  display: block;
}

.route[data-step="0"] .dots i:nth-child(-n + 1),
.route[data-step="1"] .dots i:nth-child(-n + 2),
.route[data-step="2"] .dots i:nth-child(-n + 3),
.route[data-step="3"] .dots i:nth-child(-n + 4) {
  background: var(--accent);
}

.note {
  color: var(--muted);
  font-size: 0.98rem;
}

.list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.list li {
  padding: 16px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.list strong {
  display: block;
  color: var(--text);
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 36px 0 48px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer .fine {
  color: var(--dim);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.form,
.form-grid {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

input,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--input);
  color: var(--text);
  font: inherit;
  font-size: 16px;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.banner {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  margin-bottom: 16px;
}

.banner[data-status="sent"] {
  border-color: var(--text);
}

.banner[data-status="invalid"],
.banner[data-status="error"] {
  border-color: var(--warn);
}

.reveal {
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.js .reveal:not(.is-in) {
  opacity: 0;
  transform: translateY(28px);
}

.closeout {
  padding: clamp(56px, 9vw, 110px) 0;
}

.closeout h2 {
  font-size: clamp(2.8rem, 7vw, 6rem);
  max-width: 12ch;
}

@media (min-width: 720px) {
  .cards,
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-2,
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .timeline li {
    grid-template-columns: 88px 1fr;
    gap: 24px;
    align-items: start;
  }

  .package {
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
  }

  .package article {
    border-top: 0;
    border-left: 1px solid var(--line);
    padding: 0 16px;
  }

  .package article:first-child {
    border-left: 0;
    padding-left: 0;
  }

  .split,
  .spec-layout {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }

  .specs div {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 16px;
    align-items: baseline;
  }
}

@media (min-width: 960px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .spec-sticky {
    position: sticky;
    top: calc(var(--header) + 24px);
  }

  .story {
    height: 340vh;
  }

  .story-sticky {
    position: sticky;
    top: 0;
    min-height: 100vh;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    padding: calc(var(--header) + 8px) 0 32px;
  }

  .story-copy {
    min-height: 280px;
  }

  .story-stage {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(24px);
    border-top: 0;
    padding: 0;
    transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
  }

  .story-stage.is-active {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 960px) and (max-width: 1280px) {
  .wordmark img { height: 32px; }
  .site-nav a {
    padding: 8px 7px;
    letter-spacing: 0.03em;
    font-size: 10px;
  }
}

@media (max-width: 959px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .site-nav {
    position: fixed;
    top: var(--header);
    left: 0;
    right: 0;
    height: calc(100dvh - var(--header));
    z-index: 35;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    overflow: auto;
    padding: 6px var(--pad) 18px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 40px rgba(8, 12, 18, 0.22);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav a {
    width: 100%;
    justify-content: flex-start;
    font-family: var(--display);
    font-size: 1.65rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text);
    padding: 12px 0 12px 14px;
    min-height: 52px;
    background: none;
    border-radius: 0;
    border-bottom: 1px solid var(--line);
    white-space: normal;
  }

  .site-nav a[aria-current="page"] {
    color: var(--signal);
    background: none;
    box-shadow: inset 3px 0 0 var(--text);
  }

  .site-nav a[aria-current="page"]:hover {
    color: var(--signal);
    background: none;
  }
}

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

  .deck .slide img,
  .display .line > span,
  .site-header,
  .preloader,
  .reveal,
  .js .reveal:not(.is-in),
  .button,
  .card,
  a.card,
  .story-stage,
  .route [data-seg],
  .journey,
  .journey-sticky,
  .journey-stop,
  .journey-line span {
    animation: none;
    transition: none;
    opacity: 1;
    transform: none;
  }

  .journey {
    height: auto;
  }

  .journey-sticky {
    position: static;
    min-height: 0;
    overflow: visible;
  }

  .story {
    height: auto;
  }

  .story-sticky {
    position: static;
    min-height: 0;
    display: grid;
  }

  .story-stage {
    position: relative;
    opacity: 1;
    border-top: 1px solid var(--line);
    padding: 22px 0;
  }
}

@keyframes rise {
  from {
    transform: translateY(110%);
  }
  to {
    transform: translateY(0);
  }
}

.hero-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.stage {
  margin: 0;
  background: var(--stage);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}

.stage video,
.stage img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: var(--stage);
}

.stage.cover video,
.stage.cover img {
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

.stage figcaption,
.shot figcaption {
  padding: 10px 14px 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dim);
}

.gallery {
  display: grid;
  gap: 12px;
}

.shot {
  margin: 0;
}

.shot img,
.shot img.fit {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
  border: 1px solid var(--line);
  background: var(--stage);
}

.card .thumb,
.card .thumb.contain {
  width: calc(100% + (2 * clamp(20px, 3vw, 28px)));
  max-width: none;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  border-radius: 3px 3px 0 0;
  margin: calc(-1 * clamp(20px, 3vw, 28px)) calc(-1 * clamp(20px, 3vw, 28px)) 16px;
  background: var(--stage);
}

@media (min-width: 720px) {
  .gallery {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .gallery.three {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 50;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle {
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
}

.icon {
  width: 18px;
  height: 18px;
  display: block;
}

.theme-toggle .icon-sun,
html[data-theme="light"] .theme-toggle .icon-moon {
  display: none;
}

html[data-theme="light"] .theme-toggle .icon-sun {
  display: block;
}

.nav-toggle .icon-close,
.nav-toggle[aria-expanded="true"] .icon-menu {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

.site-header {
  animation: header-in 0.7s var(--ease) both;
}

@keyframes header-in {
  from { transform: translateY(-100%); }
  to { transform: none; }
}

.preloader {
  display: none;
}

html.js:not(.is-ready) .preloader {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  background: var(--bg);
  color: var(--text);
  text-align: center;
}

html.js:not(.is-ready) {
  overflow: hidden;
}

.preloader p {
  margin: 14px 0 0;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.preloader .mark {
  margin: 0 auto;
}

.jump {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.jump a {
  text-decoration: none;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.jump a:hover {
  color: var(--text);
  border-color: var(--signal);
}

.faq {
  display: grid;
  gap: 10px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card);
  padding: 4px 18px;
}

.faq summary {
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 16px 0;
  min-height: 48px;
}

.faq details p {
  color: var(--muted);
  max-width: 68ch;
}

.footer-grid {
  display: grid;
  gap: 24px;
}

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

.footer-nav a {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.cookie {
  position: fixed;
  z-index: 60;
  left: var(--pad);
  right: var(--pad);
  bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  background: var(--bg-2);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.cookie[hidden] {
  display: none;
}

.cookie p {
  margin: 0;
  max-width: 62ch;
}

.cookie .actions {
  margin: 0;
}

.to-top {
  position: fixed;
  z-index: 45;
  right: 16px;
  bottom: 16px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.to-top svg {
  width: 20px;
  height: 20px;
}

.to-top.is-on {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.cookie:not([hidden]) ~ .to-top.is-on {
  bottom: 108px;
}

.sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

html[data-theme="light"] .route [stroke="#f3f0e8"] {
  stroke: #16180f;
}

html[data-theme="light"] .route [fill="#b7b2a8"] {
  fill: #5a5e52;
}

html[data-theme="dark"] .route [stroke="#16324f"] {
  stroke: #e8f0f8;
}

html[data-theme="dark"] .route [fill="#16324f"] {
  fill: #e8f0f8;
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.4fr 0.6fr;
    align-items: end;
  }

  .footer-nav {
    justify-content: flex-end;
  }
}

@media (max-width: 959px) {
  .nav-toggle {
    display: inline-flex;
  }
}

@media (min-width: 960px) {
  .nav-toggle {
    display: none;
  }
}

.deck {
  display: grid;
  gap: 2px;
  background: #0e141d;
}

.slide {
  margin: 0;
  overflow: hidden;
  background: #141b25;
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
  background: #141b25;
}

.deck .slide:first-child img {
  transform-origin: center;
  animation: deck-drift 16s ease-in-out infinite alternate;
}

@keyframes deck-drift {
  from { transform: scale(1); }
  to { transform: scale(1.035); }
}

html[data-theme="light"] .wordmark img,
html[data-theme="light"] .preloader img {
  filter: brightness(0) saturate(100%) invert(15%) sepia(32%) saturate(1400%) hue-rotate(176deg) brightness(0.72);
}

.hero-brief {
  padding: clamp(36px, 6vw, 72px) 0 clamp(28px, 5vw, 56px);
}

.hero-brief-grid {
  display: grid;
  gap: 36px;
  align-items: center;
}

.hero-frame {
  margin: 0;
  border: 1px solid var(--line);
  background: var(--bg-3);
  border-radius: 4px;
  overflow: hidden;
}

.hero-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.hero-frame figcaption {
  padding: 12px 14px 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dim);
}

@media (min-width: 960px) {
  .hero-brief-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
  }
}

@media (max-width: 959px) {
  .hero-brief {
    padding: 28px 0 12px;
  }

  .hero-brief-grid,
  .hero-grid {
    gap: 22px;
  }

  .hero-frame,
  .stage,
  .shot {
    width: 100%;
  }

  .hero-frame img,
  .shot img,
  .shot img.fit,
  .card .thumb,
  .card .thumb.contain,
  .stage img,
  .stage video {
    width: 100%;
    height: auto;
    max-height: none;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center;
  }

  .stage video {
    object-fit: contain;
    background: var(--stage);
  }

  .nav-toggle,
  .theme-toggle {
    border-color: var(--text);
    color: var(--text);
  }

  .site-header {
    background: var(--bg);
    border-bottom: 1px solid var(--line);
  }
}

.hero-photo {
  position: absolute;
  inset: -12% 0;
  z-index: 0;
  pointer-events: none;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(20, 27, 37, 0.92) 0%, rgba(20, 27, 37, 0.78) 42%, rgba(20, 27, 37, 0.4) 100%);
  pointer-events: none;
}

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

.hero-stage .lede,
.hero-stage .display,
.hero-stage .eyebrow,
.hero-stage .chips {
  color: #f4f7fb;
}

html[data-theme="light"] .hero-stage::after {
  background: linear-gradient(100deg, rgba(246, 243, 236, 0.94) 0%, rgba(246, 243, 236, 0.82) 46%, rgba(246, 243, 236, 0.28) 100%);
}

html[data-theme="light"] .hero-stage .lede,
html[data-theme="light"] .hero-stage .display,
html[data-theme="light"] .hero-stage .eyebrow,
html[data-theme="light"] .hero-stage .chips {
  color: #16180f;
}

.hero-copy {
  max-width: 38rem;
}

.chart {
  margin: 28px 0 0;
  padding: 22px 18px 8px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--card);
  color: var(--text);
}

.chart svg { width: 100%; height: auto; display: block; }
.chart .grid { stroke: var(--line); stroke-width: 1; }
.chart .zero { stroke: var(--muted); stroke-dasharray: 3 4; }
.chart .area {
  fill: var(--text);
  opacity: 0;
  transition: opacity 1.2s var(--ease) 0.35s;
}
.chart .trace {
  fill: none;
  stroke: var(--text);
  stroke-width: 2.25;
  stroke-linejoin: round;
  stroke-linecap: round;
  filter: drop-shadow(0 8px 8px rgba(26, 35, 48, 0.22));
  stroke-dasharray: var(--trace-len, 0);
  stroke-dashoffset: var(--trace-len, 0);
  transition: stroke-dashoffset 1.8s var(--ease);
}
.chart.is-in .trace { stroke-dashoffset: 0; }
.chart.is-in .area { opacity: 0.16; }

.chart-row {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

@media (min-width: 900px) {
  .chart-row { grid-template-columns: 0.7fr 0.8fr 1.3fr; align-items: stretch; }
}

.bars {
  margin: 0;
  padding: 22px 18px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--card);
  color: var(--text);
}

.bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 220px;
  margin-top: 8px;
}

.bar {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  min-width: 0;
  gap: 8px;
}

.bar-value {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.bar-track {
  width: 100%;
  max-width: 56px;
  height: calc(var(--v) / var(--max) * 150px);
  display: flex;
  align-items: flex-end;
}

.bar-fill {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 10px 10px 4px 4px;
  background: var(--text);
  box-shadow: 0 12px 22px rgba(26, 35, 48, 0.16);
  transform: scaleY(0);
  transform-origin: bottom center;
}

.bars.is-in .bar-fill {
  transform: scaleY(1);
  transition: transform 0.9s var(--ease);
  transition-delay: calc(var(--i) * 90ms);
}

.bar-label {
  font-size: 0.78rem;
  line-height: 1.3;
  text-align: center;
  color: var(--muted);
  min-height: 2.6em;
}
.chart .axis { fill: var(--muted); font-family: var(--mono); font-size: 12px; }
.chart-title {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.chart figcaption { color: var(--muted); }

.section-head.is-center {
  text-align: center;
  justify-items: center;
  grid-template-columns: 1fr;
}

.section-head.is-center h2,
.section-head.is-center p {
  margin-inline: auto;
}

.page-home {
  --max: 1080px;
  --pad: clamp(28px, 5vw, 56px);
}

.page-home .display {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.page-home .section:not(#package) {
  padding: clamp(32px, 4.5vw, 56px) 0;
}

.page-home .section:not(#package) h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
}

.page-home .hero-stage {
  min-height: 0;
  padding-bottom: 28px;
}

.journey {
  --journey: 1;
  padding: 0;
}

.page-home #record.journey {
  padding: 0;
}

.js .journey {
  --journey: 0;
}

.journey-sticky {
  padding: clamp(32px, 4.5vw, 56px) 0;
}

.journey-viewport {
  position: relative;
}

.journey-track {
  position: relative;
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0 0 0 36px;
}

.journey-line {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 11px;
  width: 2px;
  background: var(--line);
  pointer-events: none;
}

.journey-line span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--signal);
  transform: scaleY(var(--journey));
  transform-origin: top center;
}

.journey-stop {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 16px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--card);
  opacity: 0.42;
  transform: translate3d(0, 18px, 0);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease), border-color 0.45s var(--ease);
}

.journey-stop.is-on {
  opacity: 1;
  transform: none;
}

.journey-stop.is-now {
  border-color: var(--signal);
}

.journey-node {
  position: absolute;
  left: -32px;
  top: 18px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--line);
  background: var(--bg);
  box-shadow: 0 0 0 4px var(--bg);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}

.journey-stop.is-on .journey-node {
  background: var(--signal);
  border-color: var(--signal);
}

.journey-stop.is-now .journey-node {
  transform: scale(1.25);
}

.journey-stop .year,
.journey-stop p {
  transition: transform 0.2s linear;
}

.journey-stop .year {
  display: inline-flex;
  align-self: flex-start;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
}

.journey-stop p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--muted);
}

@media (min-width: 960px) {
  .journey {
    height: 220vh;
  }

  .journey-sticky {
    position: sticky;
    top: var(--header);
    display: flex;
    align-items: center;
    min-height: calc(100vh - var(--header));
    padding: 24px 0 32px;
    overflow: hidden;
  }

  .journey-viewport {
    overflow: hidden;
  }

  .journey-track {
    display: flex;
    align-items: stretch;
    gap: 16px;
    width: max-content;
    padding: 18px 4px 4px;
  }

  .journey-line {
    top: 16px;
    bottom: auto;
    left: 24px;
    right: 24px;
    width: auto;
    height: 2px;
  }

  .journey-line span {
    transform: scaleX(var(--journey));
    transform-origin: left center;
  }

  .journey-stop {
    width: 260px;
    flex: 0 0 260px;
    padding-top: 28px;
  }

  .journey-node {
    left: 22px;
    top: -8px;
  }
}

.card, .panel, .stat, .shot, .button, .faq summary, .package article {
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), color 0.45s var(--ease);
}

.stat:hover, .panel:hover, .package article:hover { transform: translateY(-4px); }
.shot { overflow: hidden; border-radius: 4px; }
.shot img { transition: transform 0.7s var(--ease); }
.shot:hover img, .card:hover .thumb { transform: scale(1.05); }
.faq summary:hover { color: var(--signal); }
.button:hover { transform: translateY(-2px); }

.closeout h2 { font-size: clamp(2.2rem, 5vw, 4.2rem); }

@media (prefers-reduced-motion: reduce) {
  .journey-stop,
  .journey-stop.is-on,
  .journey-stop.is-now {
    opacity: 1;
    transform: none;
  }

  .journey-line span,
  .journey-track,
  .journey-stop .year,
  .journey-stop p {
    transform: none;
    transition: none;
  }

  .bar-fill,
  .bars.is-in .bar-fill {
    transform: none;
    transition: none;
  }

  .chart .trace,
  .chart.is-in .trace {
    transition: none;
    stroke-dashoffset: 0;
  }

  .chart .area,
  .chart.is-in .area {
    transition: none;
    opacity: 0.16;
  }
}
