:root {
  --forest: #12251b;
  --forest-deep: #0d1d15;
  --ink: #25392c;
  --cream: #f1eee4;
  --gold: #ead58b;
  --muted: #b8c0af;
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "DM Sans", sans-serif;
  --gutter: clamp(1.5rem, 5vw, 6rem);
  --mouse-x: 65%;
  --mouse-y: 35%;
  color-scheme: dark;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}
body {
  margin: 0;
  background: var(--forest);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}
body::selection {
  background: var(--gold);
  color: var(--forest);
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button,
a,
input {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 7px;
}
button {
  color: inherit;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 400;
}
em {
  font-family: var(--serif);
  font-weight: 400;
}
img {
  display: block;
  max-width: 100%;
}
[hidden] {
  display: none !important;
}
.skip-link {
  position: fixed;
  top: -5rem;
  left: 1rem;
  background: var(--cream);
  color: var(--forest);
  z-index: 100;
  padding: 1rem;
}
.skip-link:focus {
  top: 1rem;
}
.film-grain {
  position: fixed;
  inset: -40%;
  z-index: 80;
  pointer-events: none;
  opacity: 0.043;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.94' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Cpath fill='%23fff' filter='url(%23n)' d='M0 0h180v180H0z'/%3E%3C/svg%3E");
  animation: grain-shift 0.3s steps(3) infinite;
}
.site-header {
  position: absolute;
  z-index: 30;
  inset: 0 0 auto;
  height: 108px;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.65rem;
  letter-spacing: -0.07em;
  font-weight: 500;
}
.wordmark svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: square;
  stroke-linejoin: round;
}
.desktop-nav {
  display: flex;
  gap: 2.5rem;
  font-size: 0.875rem;
}
.desktop-nav a {
  position: relative;
  padding: 0.8rem 0;
}
.desktop-nav a::after,
.text-link::after {
  content: "";
  position: absolute;
  bottom: 0.35rem;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
}
.desktop-nav a:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
}
.header-cta {
  border: 1px solid #eeeee454;
  border-radius: 40px;
  padding: 0.8rem 1.2rem;
  font-size: 0.875rem;
  display: flex;
  gap: 1.8rem;
  align-items: center;
  transition:
    background 0.3s,
    color 0.3s,
    border-color 0.3s;
}
.header-cta:hover {
  background: var(--cream);
  color: var(--forest);
  border-color: var(--cream);
}
.header-cta span {
  font-size: 1.25rem;
}
.menu-toggle {
  display: none;
}
.hero {
  position: relative;
  min-height: 790px;
  height: 100svh;
  max-height: 1200px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #243b23;
}
.hero-image-wrap {
  position: absolute;
  inset: -5%;
  will-change: transform;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  animation: drift 28s ease-in-out infinite alternate;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      #07150e75 0%,
      #0a1d1020 30%,
      #10261924 55%,
      #0d211b9c 100%
    ),
    linear-gradient(90deg, #0b1c1470, transparent 90%);
}
.hero-haze {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse at var(--mouse-x) var(--mouse-y),
    #f3dd9030,
    transparent 45%
  );
  mix-blend-mode: screen;
  transition: opacity 1s;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 8rem var(--gutter) 10rem;
}
.eyebrow {
  font-size: 0.75rem;
  line-height: 1.6;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 500;
}
.hero-eyebrow {
  font-size: 0.75rem;
  display: flex;
  gap: 0.7rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.2rem;
  text-shadow: 0 1px 20px #102619;
}
.small-sun {
  font-size: 1.1rem;
  color: var(--gold);
}
h1 {
  font-family: var(--serif);
  font-size: clamp(5rem, 9.55vw, 10.5rem);
  line-height: 0.92;
  letter-spacing: -0.035em;
  text-shadow: 0 3px 45px #0f27162e;
}
h1 em {
  color: var(--gold);
}
.hero-description {
  font-size: 1rem;
  line-height: 1.7;
  margin: 2rem 0 1.8rem;
  color: #f1f0e3ec;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  border: 0;
  border-radius: 3rem;
  padding: 1.05rem 1.3rem 1.05rem 1.5rem;
  min-height: 54px;
  font-size: 0.875rem;
  font-weight: 500;
  transition:
    background 0.35s,
    box-shadow 0.35s,
    transform 0.35s;
}
.button-gold {
  background: var(--gold);
  color: var(--forest-deep);
}
.button-gold:hover {
  background: #f6e5a7;
  box-shadow: 0 4px 30px #ecd28826;
}
.button-arrow {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.35s;
}
.button:hover .button-arrow {
  transform: translate(2px, -2px);
}
.hero-bottom {
  position: absolute;
  bottom: 3rem;
  left: var(--gutter);
  right: var(--gutter);
  display: flex;
  align-items: end;
  justify-content: space-between;
  z-index: 2;
  font-size: 0.75rem;
}
.scroll-cue {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.scroll-line {
  height: 37px;
  width: 1px;
  background: #f1eee455;
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  height: 100%;
  width: 1px;
  background: var(--gold);
  animation: scroll-dash 3.5s ease-in-out infinite;
}
.hero-caption {
  letter-spacing: 0.1em;
  line-height: 1.7;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 0.75rem;
}
.motion-toggle {
  border: 0;
  background: none;
  display: flex;
  gap: 0.6rem;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 0.75rem;
}
.motion-icon {
  font-size: 1rem;
}
.frame-index {
  position: absolute;
  top: 50%;
  right: var(--gutter);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
  opacity: 0.7;
}
.section-pad {
  padding: 6rem var(--gutter);
}
.vision {
  background: var(--cream);
  color: var(--forest);
  padding-top: 4rem;
  padding-bottom: 6rem;
}
.section-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 2rem;
}
.section-aside {
  font-size: 0.875rem;
  line-height: 1.65;
  text-align: right;
  color: #506153;
}
.vision-title {
  font-family: var(--serif);
  font-size: clamp(3.1rem, 5.75vw, 6.5rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 4rem 0 3.5rem;
}
.vision-title span {
  color: #73806b;
}
.vision-bottom {
  display: grid;
  grid-template-columns: 0.8fr 1.3fr 1fr;
  gap: 3rem;
  align-items: end;
}
.editorial-star {
  font-size: 4rem;
  color: #6e7e45;
  line-height: 1;
}
.vision-bottom p {
  font-size: 1rem;
  line-height: 1.9;
  max-width: 29rem;
  color: #4f5d50;
}
.text-link {
  position: relative;
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 2rem;
  padding: 0.75rem 0;
  font-size: 0.875rem;
  border-bottom: 1px solid #71826460;
}
.text-link span {
  font-size: 1.4rem;
}
.text-link::after {
  bottom: -1px;
}
@keyframes drift {
  from {
    transform: scale(1.015) translateX(-0.35%);
  }
  to {
    transform: scale(1.07) translateX(0.35%);
  }
}
@keyframes grain-shift {
  0% {
    transform: translate(0);
  }
  33% {
    transform: translate(1%, -1%);
  }
  66% {
    transform: translate(-1%, 1%);
  }
  100% {
    transform: translate(1%, 1%);
  }
}
@keyframes scroll-dash {
  0% {
    top: -100%;
  }
  60%,
  100% {
    top: 100%;
  }
}
@media (min-width: 1800px) {
  .hero-content {
    padding-top: 10rem;
  }
  .hero-description {
    font-size: 1.1rem;
  }
}
@media (max-width: 900px) {
  .desktop-nav {
    gap: 1.5rem;
  }
  .site-header {
    height: 92px;
  }
  .hero {
    min-height: 720px;
  }
  .vision-bottom {
    grid-template-columns: 0.35fr 1.5fr;
  }
  .vision-bottom .text-link {
    grid-column: 2;
    justify-self: start;
  }
  .frame-index {
    display: none;
  }
}
@media (max-width: 640px) {
  :root {
    --gutter: 1.5rem;
  }
  .site-header {
    height: 86px;
    gap: 1rem;
  }
  .wordmark {
    font-size: 1.45rem;
  }
  .wordmark svg {
    width: 25px;
  }
  .desktop-nav {
    display: none;
  }
  .header-cta {
    font-size: 0.75rem;
    padding: 0.6rem 0.9rem;
    gap: 1rem;
    margin-left: auto;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: 0;
    padding: 10px 0 10px 4px;
    width: 27px;
    z-index: 32;
  }
  .menu-toggle span {
    height: 1px;
    background: var(--cream);
    width: 23px;
    transition: transform 0.3s;
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }
  .mobile-nav {
    position: absolute;
    top: 74px;
    left: 1rem;
    right: 1rem;
    padding: 1.5rem;
    background: var(--forest-deep);
    border: 1px solid #e4debc26;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .mobile-nav a {
    padding: 0.7rem;
    font-family: var(--serif);
    font-size: 2rem;
  }
  .hero {
    min-height: 720px;
    height: 100svh;
    max-height: 950px;
  }
  .hero-content {
    padding: 9rem 1.2rem 10rem;
  }
  h1 {
    font-size: clamp(4.7rem, 14.5vw, 6.8rem);
  }
  .hero-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    margin-bottom: 2rem;
    gap: 0.5rem;
  }
  .hero-description {
    font-size: 0.9375rem;
    line-height: 1.65;
    margin: 1.8rem 0;
  }
  .hero-bottom {
    bottom: 2rem;
    align-items: center;
    gap: 1rem;
  }
  .hero-caption {
    display: none;
  }
  .hero-bottom,
  .motion-toggle {
    font-size: 0.75rem;
  }
  .hero-image {
    object-position: 62% center;
  }
  .hero-shade {
    background:
      linear-gradient(180deg, #07150e77, #0b1d1745 40%, #0a1d17ba),
      linear-gradient(90deg, #0b1c1460, transparent);
  }
  .section-pad {
    padding: 4rem var(--gutter);
  }
  .section-aside {
    font-size: 0.75rem;
  }
  .section-top .eyebrow {
    font-size: 0.75rem;
  }
  .vision-title {
    font-size: 3.4rem;
    margin: 3rem 0 2rem;
  }
  .vision-bottom {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .editorial-star {
    font-size: 3rem;
  }
  .vision-bottom .text-link {
    grid-column: 1;
  }
  .vision-bottom p {
    font-size: 0.9375rem;
  }
  .scroll-cue {
    max-width: 11rem;
  }
  .text-link {
    justify-self: start;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .hero-image-wrap {
    transform: none !important;
  }
}
html[data-motion="paused"] {
  scroll-behavior: auto;
}
html[data-motion="paused"] *,
html[data-motion="paused"] *::before,
html[data-motion="paused"] *::after {
  animation-play-state: paused !important;
}
html[data-motion="paused"] .hero-image-wrap {
  transform: none !important;
}

/* The film continues: opportunity, infrastructure, and an invitation. */
.chapter-mark {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: #bac3ad87;
}
.agent {
  padding-top: 4rem;
  padding-bottom: 5rem;
}
.section-heading {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: end;
  gap: 6rem;
  margin: 2.75rem 0 3.5rem;
}
.section-heading h2,
.infra-copy h2,
.possibilities h2 {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 5.45vw, 6rem);
  line-height: 1.02;
  letter-spacing: -0.022em;
}
.section-heading h2 em {
  color: #c7caa9;
}
.section-heading-copy {
  max-width: 23rem;
  justify-self: end;
}
.section-heading-copy p {
  font-size: 1rem;
  line-height: 1.85;
  color: #c0c9b9;
  margin-bottom: 1.5rem;
}
.quiet-note {
  font-size: 0.75rem;
  color: #a6b19e;
  line-height: 1.7;
  display: block;
}
.ambient-scene {
  position: relative;
  isolation: isolate;
  min-height: 560px;
  height: 43vw;
  max-height: 700px;
  overflow: hidden;
  background: #25391e;
}
.ambient-scene > img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  transition:
    transform 1.8s cubic-bezier(0.2, 0.65, 0.3, 1),
    object-position 1.8s;
  z-index: -2;
  transform: scale(1.015);
}
.ambient-scene[data-story="1"] > img {
  transform: scale(1.065);
  object-position: 52% 53%;
}
.ambient-scene[data-story="2"] > img {
  transform: scale(1.025);
  object-position: 48% 50%;
}
.scene-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, #0c1b1390, transparent 72%),
    linear-gradient(0deg, #0b1c11aa, transparent 55%, #08170d33);
}
.scene-top {
  position: absolute;
  top: 2rem;
  left: 2rem;
  right: 2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
}
.scene-caption {
  color: var(--gold);
}
.scene-time {
  color: #f1eee4bf;
}
.hotspot {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 44px;
  background: none;
  border: 0;
  padding: 0;
  text-align: left;
}
.hotspot-one {
  left: 33%;
  top: 31%;
}
.hotspot-two {
  left: 53%;
  top: 49%;
}
.hotspot-three {
  left: 78%;
  top: 36%;
}
.hotspot-ring {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid #e5dab49c;
  background: #2035247a;
  border-radius: 50%;
  font-size: 1.25rem;
  line-height: 1;
  color: #f3e9ba;
  flex-shrink: 0;
  transition:
    background 0.4s,
    transform 0.4s,
    color 0.4s;
  position: relative;
}
.hotspot-ring::before {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid #e9d79230;
  border-radius: 50%;
  animation: signal-breathe 4s ease-in-out infinite;
}
.hotspot:hover .hotspot-ring,
.hotspot.active .hotspot-ring {
  background: var(--gold);
  color: var(--forest);
  transform: rotate(45deg);
}
.hotspot-label {
  font-size: 0.75rem;
  max-width: 9rem;
  white-space: nowrap;
  color: var(--cream);
  background: var(--forest-deep);
  padding: 0.65rem 0.8rem;
  opacity: 0;
  transform: translateX(-5px);
  transition:
    opacity 0.35s,
    transform 0.35s;
  pointer-events: none;
  position: absolute;
  left: 45px;
}
.hotspot:hover .hotspot-label,
.hotspot:focus-visible .hotspot-label {
  opacity: 1;
  transform: translateX(0);
}
.hotspot-three .hotspot-label {
  left: auto;
  right: 45px;
}
.scene-story {
  position: absolute;
  left: 2.5rem;
  bottom: 3rem;
  max-width: 24rem;
  outline-offset: 10px;
  transition:
    opacity 0.3s,
    transform 0.5s;
}
.story-kicker {
  font-size: 0.75rem;
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.story-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 3.7vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  max-width: 23rem;
  margin-bottom: 1.1rem;
}
.story-copy {
  font-size: 0.875rem;
  color: #e0e4d5;
  line-height: 1.8;
  max-width: 22rem;
  min-height: 4.8rem;
}
.story-trail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  margin-top: 1.5rem;
  color: #d5d7b4;
}
.story-trail i {
  height: 1px;
  width: 30px;
  background: #d5d7b469;
}
.scene-footnote {
  position: absolute;
  right: 2rem;
  bottom: 1.5rem;
  font-size: 0.75rem;
  color: #e4e8d29c;
}
.story-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid #b3bea12e;
}
.story-tabs button {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border: 0;
  border-top: 2px solid transparent;
  background: transparent;
  text-align: left;
  padding: 1.75rem 1.25rem 1.75rem 0;
  font-size: 0.875rem;
  color: #a8b39f;
  transition:
    color 0.4s,
    border-color 0.4s;
}
.story-tabs button:not(:first-child) {
  padding-left: 1.5rem;
}
.story-tabs button[aria-selected="true"] {
  color: var(--gold);
  border-top-color: var(--gold);
}
.story-tabs button:hover {
  color: var(--cream);
}
.tab-index {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
}
.tab-symbol {
  margin-left: auto;
  transition: transform 0.35s;
}
.story-tabs button:hover .tab-symbol {
  transform: translate(2px, -2px);
}
.infrastructure {
  border-top: 1px solid #b3bea12e;
  background: #172b1f;
  padding-top: 3.5rem;
  padding-bottom: 5rem;
}
.infra-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 8%;
  margin-top: 3rem;
}
.infra-copy h2 {
  font-size: clamp(3.4rem, 5vw, 5.5rem);
}
.infra-copy h2 em {
  color: #c2cba9;
}
.infra-intro {
  font-size: 1rem;
  line-height: 1.85;
  color: #bdc8b8;
  max-width: 31rem;
  margin: 2rem 0 2.2rem;
}
.infra-steps details {
  border-bottom: 1px solid #b0bd9d35;
}
summary {
  cursor: pointer;
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}
.infra-steps summary {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  min-height: 70px;
  font-size: 0.9375rem;
  line-height: 1.5;
  padding: 0.9rem 0;
}
summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}
.step-number {
  font-size: 0.75rem;
  color: #a4b38f;
  letter-spacing: 0.07em;
}
.detail-toggle {
  font-size: 1.2rem;
  color: var(--gold);
  margin-left: auto;
  transition: transform 0.35s;
}
.infra-steps details[open] .detail-toggle {
  transform: rotate(45deg);
}
.infra-steps details p {
  font-size: 0.875rem;
  line-height: 1.85;
  color: #b7c3ae;
  padding: 0 0.5rem 1.5rem 2.6rem;
  animation: detail-in 0.45s ease both;
}
.wallet-composition {
  align-self: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 0;
  text-align: center;
  isolation: isolate;
}
.wallet-halo {
  position: absolute;
  z-index: -1;
  top: 0;
  left: -5%;
  right: -5%;
  height: 85%;
  background: radial-gradient(ellipse at 50% 45%, #9a9d5230, transparent 65%);
}
.wallet-overline {
  font-size: 0.75rem;
  color: #a4b092;
  letter-spacing: 0.12em;
  margin-bottom: 2rem;
}
.wallet-card {
  background: #edece1;
  color: var(--forest);
  width: 100%;
  max-width: 345px;
  text-align: left;
  padding: 1.5rem 1.8rem 1.3rem;
  border-radius: 7px;
  box-shadow: 0 18px 50px #0510092b;
  transform: rotate(-3deg);
  transition: transform 0.75s cubic-bezier(0.22, 0.7, 0.24, 1);
}
.wallet-card:hover {
  transform: rotate(0) translateY(-4px);
}
.wallet-card-top {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.75rem;
  color: #526144;
}
.wallet-brand {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--forest);
  line-height: 1;
}
.wallet-decoration {
  margin-left: auto;
  font-size: 1.2rem;
  color: #617243;
}
.balance-label {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #5b6856;
  font-size: 0.75rem;
}
.balance-toggle {
  background: none;
  border: 0;
  padding: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  min-height: 32px;
}
.balance-toggle svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #67725d;
  stroke-width: 1.5;
}
.balance-toggle:focus-visible {
  outline-color: var(--forest);
}
.wallet-balance {
  font-size: 3.3rem;
  letter-spacing: -0.055em;
  font-weight: 400;
  margin: 0.25rem 0 1.8rem;
  line-height: 1.15;
  min-height: 3.8rem;
}
.wallet-balance span {
  color: #849077;
}
.wallet-separator {
  height: 1px;
  background: #8392743d;
}
.wallet-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: #64725a;
}
.wallet-foot > span:last-child {
  font-size: 1.1rem;
}
.wallet-caption {
  font-family: var(--serif);
  font-size: 2.9rem;
  line-height: 1.02;
  margin: 2.75rem 0 1rem;
}
.wallet-caption em {
  color: var(--gold);
}
.wallet-caption-copy {
  font-size: 0.875rem;
  line-height: 1.8;
  color: #b8c3ac;
  margin-bottom: 1rem;
}
.wallet-composition .quiet-note {
  font-size: 0.75rem;
  color: #98a68a;
}
.possibilities {
  background: var(--cream);
  color: var(--forest);
  padding-top: 3.5rem;
  padding-bottom: 6rem;
}
.possibilities .chapter-mark {
  color: #849078;
}
.possibilities-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 7%;
  margin-top: 4rem;
  align-items: start;
}
.possibilities h2 {
  font-size: clamp(3.5rem, 5.2vw, 5.7rem);
}
.possibilities h2 em {
  color: #72835b;
}
.possibilities-intro > p {
  font-size: 1rem;
  line-height: 1.9;
  color: #59694e;
  margin-top: 2rem;
}
.possibilities-flower {
  display: block;
  color: #778942;
  font-size: 6.7rem;
  font-weight: 400;
  line-height: 1;
  margin: 3rem 0 2.5rem;
  transform-origin: 47% 54%;
  animation: slow-turn 80s linear infinite;
  width: max-content;
}
.possibilities .quiet-note {
  color: #6e7d62;
  font-size: 0.75rem;
  max-width: 20rem;
}
.opportunity-list {
  border-top: 1px solid #23352230;
}
.opportunity-list details {
  border-bottom: 1px solid #23352230;
}
.opportunity-list summary {
  display: grid;
  grid-template-columns: 1.4rem 1fr 1.6rem;
  align-items: center;
  gap: 1.4rem;
  padding: 1.7rem 0;
}
.opportunity-list summary:focus-visible {
  outline-color: var(--forest);
}
.opportunity-number {
  font-size: 0.75rem;
  color: #738163;
  letter-spacing: 0.07em;
}
.opportunity-list h3 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 2.7vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  transition:
    color 0.3s,
    transform 0.4s;
}
.opportunity-icon {
  font-size: 1.5rem;
  color: #72845d;
  transition: transform 0.4s;
}
.opportunity-list summary:hover h3 {
  color: #708149;
  transform: translateX(4px);
}
.opportunity-list details[open] .opportunity-icon {
  transform: rotate(90deg);
  color: var(--forest);
}
.opportunity-detail {
  padding: 0 2rem 1.9rem 2.8rem;
  animation: detail-in 0.45s ease both;
}
.opportunity-detail p {
  font-size: 0.9375rem;
  line-height: 1.9;
  color: #56634e;
  max-width: 33rem;
}
.use-case {
  display: block;
  font-size: 0.75rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: #60724a;
  margin-top: 1.4rem;
}
.waitlist {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 5rem;
  padding-bottom: 6rem;
  background: #213821;
}
.waitlist-image {
  position: absolute;
  inset: -4%;
  z-index: -3;
  background: url("/assets/hero.webp") center 59% / cover;
  transform: scaleX(-1);
  filter: blur(1px);
  opacity: 0.7;
}
.waitlist-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, #12251b7a, #12251b66 40%, #12251ba0),
    linear-gradient(0deg, #13281de0, transparent 75%);
}
.waitlist-content {
  width: 100%;
  max-width: 44rem;
}
.waitlist .eyebrow {
  font-size: 0.75rem;
  color: #d1d8b9;
  display: flex;
  gap: 0.6rem;
  align-items: center;
  justify-content: center;
}
.waitlist .eyebrow span {
  color: var(--gold);
  font-size: 1.1rem;
}
.waitlist h2 {
  font-family: var(--serif);
  font-size: clamp(5.5rem, 8.75vw, 9rem);
  letter-spacing: -0.03em;
  line-height: 0.88;
  margin: 2.1rem 0 1.7rem;
}
.waitlist h2 em {
  color: var(--gold);
}
.waitlist-description {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #dde0cb;
  margin-bottom: 1.9rem;
}
.waitlist-form {
  max-width: 500px;
  margin: auto;
}
.email-row {
  display: flex;
  align-items: center;
  border: 1px solid #e9e6c760;
  border-radius: 50px;
  background: #10291c96;
  padding: 6px;
  transition:
    border-color 0.3s,
    background 0.3s;
}
.email-row:focus-within {
  border-color: var(--gold);
  background: #152d21;
}
.email-row input {
  min-width: 0;
  flex: 1;
  border: 0;
  color: var(--cream);
  background: transparent;
  font-size: 0.875rem;
  padding: 1rem 1.1rem;
  outline: none;
}
.email-row input::placeholder {
  color: #bac5ac;
}
.email-row input:focus-visible {
  outline: 0;
}
.email-row input[aria-invalid="true"] {
  color: #ffdcc6;
}
.email-row button {
  border: 0;
  background: var(--gold);
  color: var(--forest);
  display: flex;
  align-items: center;
  gap: 1.7rem;
  font-size: 0.8125rem;
  padding: 1rem 1.25rem;
  border-radius: 50px;
  flex-shrink: 0;
  transition: background 0.3s;
  min-height: 50px;
}
.email-row button:hover {
  background: #f4e3aa;
}
.submit-arrow {
  font-size: 1.2rem;
  line-height: 1;
}
.email-row button:disabled {
  cursor: wait;
  opacity: 0.7;
}
.form-message {
  font-size: 0.75rem;
  line-height: 1.7;
  color: #b3c0a5;
  min-height: 1.5rem;
  margin-top: 1.1rem;
}
.form-message.error {
  color: #f7d8ad;
}
.waitlist-success {
  padding: 0.4rem 0;
  min-height: 139px;
}
.success-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e7d68c60;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.waitlist-success h3 {
  font-family: var(--serif);
  font-size: 2.4rem;
}
.waitlist-success p {
  font-size: 0.875rem;
  color: #cdd6be;
  margin: 0.6rem 0;
}
.waitlist-success .text-link {
  background: none;
  color: var(--gold);
  font-size: 0.75rem;
  border: 0;
  border-bottom: 1px solid #d5d6a758;
  gap: 0.7rem;
  padding: 0.3rem 0;
}
.waitlist-success .text-link span {
  font-size: 1rem;
}
.waitlist-bottom {
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  bottom: 2rem;
  display: flex;
  justify-content: space-between;
  color: #c4caaa;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
}
.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(100%);
}
.noscript-note {
  font-size: 0.8125rem;
  line-height: 1.7;
  margin-top: 1rem;
}
.site-footer {
  background: var(--forest-deep);
  padding: 3rem var(--gutter) 1.5rem;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #b3bea12b;
}
.footer-top > p {
  font-family: var(--serif);
  font-size: 1.65rem;
  color: #a8b49b;
  letter-spacing: -0.01em;
}
.back-top {
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.back-top span {
  font-size: 1.25rem;
  transition: transform 0.4s;
}
.back-top:hover span {
  transform: translateY(-4px);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.5rem;
  color: #8f9d85;
  font-size: 0.75rem;
  line-height: 1.7;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.scroll-progress {
  position: fixed;
  left: 0;
  top: 0;
  height: 2px;
  width: 100%;
  transform-origin: left;
  transform: scaleX(0);
  background: var(--gold);
  z-index: 99;
  pointer-events: none;
}
.js-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 1.15s ease,
    transform 1.15s cubic-bezier(0.2, 0.6, 0.25, 1);
}
.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.scene-story.story-enter {
  animation: story-in 0.6s cubic-bezier(0.2, 0.6, 0.25, 1) both;
}
html[data-motion="paused"] .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}
html[data-motion="paused"] .hero-content {
  opacity: 1 !important;
  transform: none !important;
}
html[data-motion="paused"] .ambient-scene > img,
html[data-motion="paused"] .wallet-card {
  transition: none;
  transform: none;
}

@keyframes signal-breathe {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.16);
    opacity: 0.15;
  }
}
@keyframes slow-turn {
  to {
    transform: rotate(360deg);
  }
}
@keyframes detail-in {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes story-in {
  from {
    opacity: 0.2;
    transform: translateY(9px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 1800px) {
  .section-pad {
    padding-left: max(6rem, calc((100vw - 1560px) / 2));
    padding-right: max(6rem, calc((100vw - 1560px) / 2));
  }
}
@media (max-width: 1100px) {
  .section-heading {
    gap: 3rem;
  }
  .infra-grid {
    gap: 5%;
  }
  .scene-story {
    max-width: 20rem;
  }
  .story-copy {
    max-width: 20rem;
  }
  .hotspot-one {
    left: 30%;
    top: 25%;
  }
  .hotspot-two {
    left: 50%;
    top: 38%;
  }
  .hotspot-three {
    left: 79%;
    top: 31%;
  }
  .wallet-overline {
    font-size: 0.75rem;
    letter-spacing: 0.075em;
  }
  .wallet-card {
    max-width: 310px;
  }
  .opportunity-list summary {
    gap: 1rem;
  }
  .opportunity-detail {
    padding-left: 2.4rem;
  }
  .possibilities-grid {
    gap: 5%;
  }
}
@media (max-width: 900px) {
  .section-heading {
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
  }
  .section-heading h2 {
    font-size: 3.7rem;
  }
  .section-heading-copy p {
    font-size: 0.9375rem;
  }
  .ambient-scene {
    min-height: 540px;
  }
  .scene-story {
    left: 2rem;
    bottom: 3.5rem;
  }
  .scene-footnote {
    right: 1.5rem;
    font-size: 0.75rem;
  }
  .story-tabs button {
    gap: 0.75rem;
    font-size: 0.8125rem;
  }
  .story-tabs button:not(:first-child) {
    padding-left: 1rem;
  }
  .infra-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6%;
  }
  .infra-copy h2 {
    font-size: 3.3rem;
  }
  .infra-intro {
    font-size: 0.9375rem;
  }
  .infra-steps summary {
    font-size: 0.875rem;
    gap: 1rem;
  }
  .infra-steps details p {
    padding-left: 2.1rem;
  }
  .wallet-overline {
    max-width: 15rem;
    line-height: 1.8;
  }
  .wallet-card {
    padding: 1.3rem 1.5rem;
  }
  .wallet-balance {
    font-size: 2.8rem;
  }
  .wallet-caption {
    font-size: 2.6rem;
  }
  .possibilities-grid {
    grid-template-columns: 0.8fr 1fr;
    gap: 6%;
  }
  .possibilities h2 {
    font-size: 3.6rem;
  }
  .possibilities-intro > p {
    font-size: 0.9375rem;
  }
  .opportunity-list h3 {
    font-size: 2rem;
  }
  .opportunity-list summary {
    grid-template-columns: 1rem 1fr 1.2rem;
    gap: 0.8rem;
  }
  .opportunity-detail {
    padding-left: 1.8rem;
    padding-right: 0.4rem;
  }
  .opportunity-detail p {
    font-size: 0.875rem;
  }
  .footer-top > p {
    font-size: 1.4rem;
  }
  .back-top {
    gap: 0.8rem;
  }
}
@media (max-width: 700px) {
  .section-heading {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }
  .section-heading-copy {
    justify-self: start;
    max-width: 28rem;
  }
  .section-heading-copy p {
    margin-bottom: 0.75rem;
  }
  .infra-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .infra-copy h2 {
    font-size: 3.8rem;
  }
  .wallet-composition {
    padding: 1.5rem 0;
  }
  .wallet-card {
    max-width: 320px;
  }
  .wallet-overline {
    max-width: none;
  }
  .wallet-balance {
    font-size: 3.2rem;
  }
  .wallet-caption {
    margin-top: 2.3rem;
  }
  .possibilities-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .possibilities-flower {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 4.5rem;
    margin: 0;
  }
  .possibilities-intro {
    position: relative;
    padding-right: 3rem;
  }
  .possibilities-intro .quiet-note {
    max-width: 12rem;
    margin-top: 1.5rem;
  }
  .opportunity-list h3 {
    font-size: 2.3rem;
  }
  .opportunity-list summary {
    grid-template-columns: 1rem 1fr 1.5rem;
    gap: 1.2rem;
  }
  .opportunity-detail {
    padding-left: 2.2rem;
    max-width: 35rem;
  }
  .opportunity-detail p {
    font-size: 0.9375rem;
  }
  .footer-top {
    flex-wrap: wrap;
    row-gap: 1.5rem;
  }
  .footer-top > p {
    display: none;
  }
  .waitlist {
    min-height: 680px;
  }
}
@media (max-width: 640px) {
  .agent {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .section-heading {
    margin-top: 2rem;
  }
  .section-heading h2 {
    font-size: 3.45rem;
  }
  .chapter-mark {
    font-size: 0.75rem;
  }
  .ambient-scene {
    height: 660px;
    min-height: 0;
    margin-left: calc(var(--gutter) * -1);
    margin-right: calc(var(--gutter) * -1);
  }
  .ambient-scene > img {
    object-position: 64% center;
  }
  .scene-top {
    top: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
  }
  .scene-time {
    font-size: 0.75rem;
  }
  .scene-shade {
    background: linear-gradient(
      0deg,
      #0b1c14ed 0%,
      #0b1c1480 40%,
      #0c1b1310 75%,
      #0c1b1340
    );
  }
  .scene-story {
    left: 1.5rem;
    right: 1.5rem;
    bottom: 3rem;
    max-width: 28rem;
  }
  .story-title {
    font-size: 3rem;
    max-width: 25rem;
  }
  .story-copy {
    font-size: 0.875rem;
    max-width: 24rem;
    min-height: 0;
  }
  .story-kicker {
    font-size: 0.75rem;
  }
  .story-trail {
    margin-top: 1.25rem;
    font-size: 0.75rem;
  }
  .scene-footnote {
    left: 1.5rem;
    right: 1rem;
    bottom: 1rem;
    font-size: 0.75rem;
  }
  .hotspot-one {
    left: 19%;
    top: 20%;
  }
  .hotspot-two {
    left: 48%;
    top: 31%;
  }
  .hotspot-three {
    left: 80%;
    top: 17%;
  }
  .hotspot-ring {
    width: 32px;
    height: 32px;
  }
  .hotspot-label {
    font-size: 0.75rem;
    padding: 0.5rem 0.65rem;
  }
  .hotspot-two .hotspot-label {
    left: 50%;
    top: 48px;
    transform: translateX(-50%);
  }
  .hotspot-two:hover .hotspot-label,
  .hotspot-two:focus-visible .hotspot-label {
    transform: translateX(-50%);
  }
  .story-tabs {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .story-tabs button {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.6rem;
    align-content: start;
    padding: 1.25rem 0.5rem;
    font-size: 0.75rem;
    line-height: 1.5;
  }
  .story-tabs button:not(:first-child) {
    padding: 1.25rem 0.5rem;
  }
  .tab-symbol {
    display: none;
  }
  .tab-index {
    font-size: 1.1rem;
  }
  .infrastructure {
    padding-top: 3rem;
    padding-bottom: 3.5rem;
  }
  .infra-grid {
    margin-top: 2rem;
  }
  .infra-copy h2 {
    font-size: 3.5rem;
  }
  .infra-intro {
    margin-top: 1.75rem;
  }
  .infra-steps summary {
    font-size: 0.875rem;
    min-height: 74px;
  }
  .infra-steps details p {
    font-size: 0.875rem;
  }
  .wallet-composition {
    padding-top: 1rem;
  }
  .wallet-overline {
    font-size: 0.75rem;
  }
  .possibilities {
    padding-top: 3rem;
    padding-bottom: 4rem;
  }
  .possibilities-grid {
    margin-top: 2.5rem;
    gap: 2.5rem;
  }
  .possibilities h2 {
    font-size: 3.65rem;
  }
  .possibilities-intro > p {
    margin-top: 1.5rem;
    font-size: 0.875rem;
  }
  .opportunity-list h3 {
    font-size: 2.1rem;
  }
  .opportunity-list summary {
    gap: 0.75rem;
    padding: 1.5rem 0;
  }
  .opportunity-detail {
    padding-left: 1.75rem;
    padding-bottom: 1.5rem;
  }
  .use-case {
    font-size: 0.75rem;
  }
  .waitlist {
    padding-top: 4rem;
    padding-bottom: 5rem;
    min-height: 650px;
  }
  .waitlist h2 {
    font-size: 6.3rem;
    margin-top: 2rem;
  }
  .waitlist-description {
    font-size: 0.875rem;
    max-width: 16rem;
    margin-left: auto;
    margin-right: auto;
  }
  .email-row {
    padding: 5px;
  }
  .email-row input {
    padding: 0.9rem 0.9rem;
    font-size: 0.8125rem;
  }
  .email-row button {
    padding: 0.9rem 1rem;
    gap: 1rem;
    font-size: 0.75rem;
    min-height: 48px;
  }
  .form-message {
    font-size: 0.75rem;
  }
  .waitlist-bottom {
    font-size: 0.75rem;
    bottom: 1.75rem;
  }
  .site-footer {
    padding-top: 2.25rem;
  }
  .footer-top {
    padding-bottom: 2rem;
    gap: 1rem;
  }
  .back-top {
    font-size: 0.75rem;
    gap: 0.65rem;
  }
  .footer-bottom {
    font-size: 0.75rem;
    gap: 1rem;
  }
  .footer-bottom span:last-child {
    text-align: right;
    max-width: 10rem;
  }
  .scroll-progress {
    height: 1px;
  }
}
@media (max-width: 380px) {
  :root {
    --gutter: 1.15rem;
  }
  .header-cta {
    padding: 0.5rem 0.7rem;
    gap: 0.7rem;
    font-size: 0.75rem;
  }
  .wordmark {
    font-size: 1.35rem;
    gap: 0.45rem;
  }
  .hero-eyebrow {
    font-size: 0.75rem;
  }
  .hero-description {
    font-size: 0.875rem;
  }
  .hero-bottom {
    gap: 0.65rem;
  }
  .scroll-cue {
    font-size: 0.75rem;
    max-width: 9rem;
  }
  .vision-title {
    font-size: 3rem;
  }
  .section-heading h2 {
    font-size: 3.1rem;
  }
  .infra-copy h2 {
    font-size: 3.2rem;
  }
  .opportunity-list h3 {
    font-size: 1.9rem;
  }
  .email-row button {
    padding: 0.9rem 0.85rem;
    gap: 0.7rem;
  }
  .email-row input {
    padding: 0.8rem 0.65rem;
  }
  .wallet-overline {
    letter-spacing: 0.07em;
  }
  .site-header {
    gap: 0.7rem;
  }
  .wallet-card {
    max-width: 285px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .js-ready .reveal {
    opacity: 1;
    transform: none;
  }
  .hero-content {
    transform: none !important;
    opacity: 1 !important;
  }
  .ambient-scene > img,
  .wallet-card {
    transform: none !important;
  }
  .film-grain {
    animation: none !important;
  }
}
@media (hover: none) {
  .hotspot-ring {
    background: #1b3123b3;
  }
  .hotspot.active .hotspot-ring {
    background: var(--gold);
  }
  .hero-haze {
    background: radial-gradient(ellipse at 65% 35%, #f3dd901a, transparent 45%);
  }
  .wallet-card:hover {
    transform: rotate(-3deg);
  }
}

/* Keep secondary information legible, including small screens. */
.story-title {
  white-space: pre-line;
}
.motion-toggle:disabled {
  cursor: default;
}
.wallet-overline {
  max-width: 23rem;
  line-height: 1.8;
}
html[data-motion="paused"] *,
html[data-motion="paused"] *::before,
html[data-motion="paused"] *::after {
  animation: none !important;
  transition: none !important;
}
@media (max-width: 640px) {
  .scene-time {
    display: none;
  }
  .scene-footnote {
    max-width: 22rem;
    line-height: 1.5;
  }
  .hero-eyebrow {
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
  }
  .story-tabs button {
    font-size: 0.875rem;
  }
  .footer-bottom {
    flex-wrap: wrap;
  }
  .footer-bottom span:last-child {
    max-width: none;
    text-align: left;
  }
  .scene-story {
    bottom: 4rem;
  }
  .email-row button {
    gap: 0.8rem;
  }
}
@media (max-width: 380px) {
  .header-cta {
    font-size: 0.75rem;
  }
  .header-cta span {
    display: none;
  }
  .hero-bottom {
    gap: 1rem;
  }
  .motion-toggle {
    white-space: nowrap;
  }
  .hero-eyebrow {
    max-width: 18rem;
  }
  .story-trail {
    gap: 0.5rem;
    flex-wrap: wrap;
  }
  .email-row input {
    width: 100%;
  }
  .email-row button {
    gap: 0.5rem;
    padding: 0.9rem 0.7rem;
  }
}

/* Body copy keeps a comfortable reading size on every viewport. */
.hero-description,
.vision-bottom p,
.section-heading-copy p,
.story-copy,
.infra-intro,
.infra-steps details p,
.possibilities-intro > p,
.opportunity-detail p,
.waitlist-description {
  font-size: 1rem;
}
