:root {
  --content-max: 90rem;
  --paper: #f7f3e8;
  --paper-bright: #fbf8ef;
  --ink: #0e3a31;
  --ink-soft: #40574f;
  --pine: #0d2f27;
  --olive: #5f6c39;
  --sage: #aab89a;
  --gold: #c99a47;
  --gold-light: #e8cc8a;
  --clay: #aa5336;
  --line: rgba(14, 58, 49, 0.16);
  --white: #fffdf7;
  --page-gutter: clamp(1.5rem, 6vw, 6rem);
  --page-margins: clamp(3rem, 12vw, 12rem);
  --display: Didot, "Bodoni 72", "Bodoni MT", "Iowan Old Style", Baskerville, Georgia, serif;
  --serif: "Iowan Old Style", Baskerville, Georgia, "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 0;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  isolation: isolate;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: -2;
  inset: 0;
  background:
    radial-gradient(circle at 88% 15%, rgba(232, 204, 138, 0.09), transparent 28rem),
    linear-gradient(112deg, rgba(255, 253, 247, 0.32), transparent 38%);
  content: "";
  pointer-events: none;
}

::selection {
  color: var(--paper-bright);
  background: var(--clay);
}

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

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

h1,
h2,
h3 {
  text-wrap: balance;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--pine);
  transform: translateY(-160%);
  transition: transform 150ms ease;
}

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

:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 4px;
}

.site-header {
  position: absolute;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  min-height: 7.2rem;
  margin: 0 auto;
  padding: 4.35rem var(--page-gutter) 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0 0.1rem;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.38em;
  line-height: 1;
}

.brand-word {
  display: inline-block;
}

.brand-o {
  position: relative;
  display: inline-block;
  margin-right: 0.38em;
  letter-spacing: 0;
}

.brand-o::after {
  position: absolute;
  top: calc(50% - 3px);
  left: calc(50% - 1px);
  width: 1.08em;
  aspect-ratio: 1;
  border: 1px solid var(--gold);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms var(--ease-out);
}

.brand:hover .brand-o::after {
  border-color: var(--clay);
  box-shadow: 0 0 0 0.24rem rgba(201, 154, 71, 0.1);
  transform: translate(-50%, -50%) scale(1.08);
}

@media (min-width: 801px) {
  .home-page .brand-o::after {
    top: calc(50% - 2px);
    left: 50%;
  }
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 3vw, 3rem);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.25rem 0;
}

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

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

.login-link {
  gap: 0.55rem;
}

.login-link span,
.button span[aria-hidden="true"] {
  transition: transform 220ms var(--ease-out);
}

.login-link:hover span,
.button:hover span[aria-hidden="true"] {
  transform: translateX(0.25rem);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 100svh;
  margin: 0 auto;
  padding: 9.5rem var(--page-gutter) 6.5rem;
  overflow: clip;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(56vw, 45rem);
}

h1 {
  max-width: none;
  margin-bottom: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(4.5rem, 8.3vw, 8.5rem);
  font-weight: 400;
  letter-spacing: -0.052em;
  line-height: 0.9;
}

h1 span {
  display: block;
  white-space: nowrap;
  opacity: 0;
  animation: copy-arrive 760ms var(--ease-out) forwards;
}

h1 span:nth-child(1) {
  animation-delay: 70ms;
}

h1 span:nth-child(2) {
  animation-delay: 140ms;
}

h1 span:nth-child(3) {
  animation-delay: 210ms;
}

.hero-tagline {
  position: absolute;
  z-index: 3;
  bottom: clamp(5.5rem, 12vh, 7.5rem);
  left: var(--page-gutter);
  margin: 0;
  padding-top: 2.25rem;
  color: var(--olive);
  font-size: clamp(0.64rem, 0.88vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.5;
  text-transform: uppercase;
  opacity: 0;
  animation: copy-arrive 760ms 300ms var(--ease-out) forwards;
}

.hero-tagline::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 4.7rem;
  height: 1px;
  background: var(--gold);
  content: "";
}

.hero-field {
  position: absolute;
  z-index: 1;
  top: 53.5%;
  right: -25vw;
  width: clamp(47rem, 70vw, 74rem);
  aspect-ratio: 1;
  border: 1px solid rgba(14, 58, 49, 0.5);
  border-radius: 50%;
  transform: translateY(-50%);
  opacity: 0;
  animation: orbit-arrive 1100ms 120ms var(--ease-out) forwards;
}

.hero-field::after {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 44%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 204, 138, 0.2), rgba(232, 204, 138, 0.06) 44%, transparent 72%);
  content: "";
  transform: translate(-50%, -50%);
}

.orbit-ring,
.sun-rays,
.orbit-sun,
.orbit-dot {
  position: absolute;
  display: block;
}

.orbit-ring {
  top: 50%;
  left: 50%;
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-ring-one {
  width: 84%;
  border: 1px dotted rgba(201, 154, 71, 0.82);
  animation: orbit-spin 420s linear infinite;
}

.orbit-ring-two {
  width: 68%;
  border: 1px solid rgba(201, 154, 71, 0.6);
}

.orbit-ring-three {
  width: 53%;
  border: 1px dotted rgba(180, 95, 61, 0.68);
  animation: orbit-spin-reverse 248s linear infinite;
}

.orbit-ring-four {
  width: 38%;
  border: 1px dashed rgba(170, 83, 54, 0.76);
  animation: orbit-spin 320s linear infinite;
}

.orbit-ring-five {
  width: 25%;
  border: 1px dotted rgba(14, 58, 49, 0.62);
  animation: orbit-spin-reverse 224s linear infinite;
}

.sun-rays {
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 20%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: repeating-conic-gradient(from 0deg, rgba(201, 154, 71, 0.68) 0deg 0.45deg, transparent 0.55deg 2.25deg);
  -webkit-mask: radial-gradient(circle, transparent 0 47%, #000 48% 70%, transparent 71%);
  mask: radial-gradient(circle, transparent 0 47%, #000 48% 70%, transparent 71%);
  transform: translate(-50%, -50%);
  animation: corona-turn 260s linear infinite;
}

.orbit-sun {
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 12.6%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 253, 247, 0.72);
  border-radius: 50%;
  background: radial-gradient(circle at 38% 35%, #f9edc9 0, #edcf8b 36%, #d8a548 78%, #c48b34 100%);
  box-shadow: 0 0 2.8rem rgba(201, 154, 71, 0.3), inset -0.5rem -0.5rem 1.2rem rgba(169, 105, 31, 0.14);
  transform: translate(-50%, -50%);
  animation: sun-breathe 9s ease-in-out infinite;
}

.orbit-path {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  width: var(--orbit-size);
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(var(--orbit-start));
  transform-origin: 50% 50%;
  animation: dot-orbit var(--orbit-duration) linear infinite;
  pointer-events: none;
}

.orbit-path > .orbit-dot {
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.orbit-dot {
  z-index: 4;
  aspect-ratio: 1;
  border-radius: 50%;
  box-shadow: 0 0 0 0.16rem rgba(247, 243, 232, 0.72);
}

.orbit-path-one {
  --orbit-size: 100%;
  --orbit-start: 257deg;
  --orbit-duration: 220s;
}

.orbit-path-two {
  --orbit-size: 84%;
  --orbit-start: 312deg;
  --orbit-duration: 360s;
}

.orbit-path-three {
  --orbit-size: 68%;
  --orbit-start: 12deg;
  --orbit-duration: 154s;
  animation-direction: reverse;
}

.orbit-path-four {
  --orbit-size: 53%;
  --orbit-start: 236deg;
  --orbit-duration: 132s;
}

.orbit-path-five {
  --orbit-size: 84%;
  --orbit-start: 217deg;
  --orbit-duration: 360s;
}

.orbit-path-six {
  --orbit-size: 84%;
  --orbit-start: 190deg;
  --orbit-duration: 360s;
}

.orbit-dot-one {
  width: 0.78rem;
  background: var(--olive);
}

.orbit-dot-two {
  width: 0.52rem;
  background: var(--gold);
}

.orbit-dot-three {
  width: 0.58rem;
  background: var(--clay);
}

.orbit-dot-four {
  width: 0.7rem;
  background: var(--clay);
}

.orbit-dot-five {
  width: 0.46rem;
  background: var(--gold);
}

.orbit-dot-six {
  width: 0.45rem;
  background: var(--gold);
}

.hero-intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(22rem, 0.8fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: stretch;
  width: min(calc(100% - var(--page-margins)), var(--content-max));
  margin: 0 auto;
  padding: clamp(3.5rem, 5vw, 4.75rem) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.hero-intro::before {
  position: absolute;
  z-index: -2;
  inset: 0 calc(50% - 50vw);
  background:
    radial-gradient(circle at 72% 48%, rgba(232, 204, 138, 0.1), transparent 19rem),
    linear-gradient(90deg, rgba(255, 253, 247, 0.16), transparent 42% 68%, rgba(255, 253, 247, 0.12));
  content: "";
  pointer-events: none;
}

.hero-intro-copy {
  position: relative;
  z-index: 1;
  align-self: center;
}

.eyebrow {
  margin-bottom: 1.15rem;
  color: var(--clay);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero-lede {
  max-width: 38rem;
  margin-bottom: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.7vw, 1.55rem);
  line-height: 1.55;
}

.lede-emphasis {
  color: var(--ink-soft);
  font-style: italic;
  text-decoration: underline;
  text-decoration-color: rgba(201, 154, 71, 0.5);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.hero-intro-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  align-items: flex-start;
  justify-content: center;
  min-height: 100%;
  padding: 1.1rem 0 1.1rem clamp(2rem, 4vw, 4rem);
  border-left: 1px solid var(--line);
}

.hero-intro-actions::before {
  position: absolute;
  top: 1.05rem;
  left: -0.28rem;
  width: 0.54rem;
  aspect-ratio: 1;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 1px rgba(201, 154, 71, 0.35);
  content: "";
}

.hero-intro-actions::after {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: 0;
  width: clamp(8rem, 12vw, 11rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: repeating-radial-gradient(circle, transparent 0 1.35rem, rgba(14, 58, 49, 0.065) 1.39rem 1.43rem);
  content: "";
  opacity: 0.85;
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.35rem;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3.15rem;
  padding: 0.76rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 0.3rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms var(--ease-out);
}

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

.button:active {
  transform: translateY(0);
}

.button-primary {
  color: var(--white);
  background: var(--ink);
}

.button-primary:hover {
  background: #17493d;
}

.button-secondary {
  min-height: 2.75rem;
  padding-right: 0.1rem;
  padding-left: 0.1rem;
  border-bottom-color: var(--gold);
  border-radius: 0;
}

.button-secondary:hover {
  color: var(--clay);
}

.hero-principle {
  width: 100%;
  margin: 0;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(14, 58, 49, 0.13);
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 0.94rem;
  font-style: italic;
}

.hero-principle span {
  color: var(--clay);
}

.section {
  width: min(calc(100% - var(--page-margins)), var(--content-max));
  margin: 0 auto;
  padding: clamp(6rem, 10vw, 9rem) 0;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.58fr);
  gap: clamp(2rem, 8vw, 8rem);
  align-items: end;
  margin-bottom: clamp(4rem, 7vw, 6.5rem);
}

.section-intro h2 {
  max-width: 11ch;
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 5.8vw, 5.8rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.94;
}

.section-intro > p {
  max-width: 31rem;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.homecoming-card {
  display: grid;
  grid-template-columns: auto minmax(12rem, 0.7fr) minmax(18rem, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  margin-bottom: 2.4rem;
  padding: clamp(2rem, 4vw, 3.2rem) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.homecoming-card h3,
.move-card h3,
.platform-grid h3,
.ecosystem h3 {
  margin-bottom: 0.45rem;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.028em;
  line-height: 1.02;
}

.homecoming-card h3 {
  margin-bottom: 0;
  font-size: clamp(2.5rem, 4vw, 4rem);
}

.homecoming-card p:last-child {
  max-width: 38rem;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.homecoming-symbol {
  position: relative;
  display: grid;
  width: 5rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(14, 58, 49, 0.4);
  border-radius: 50%;
}

.homecoming-symbol::before,
.homecoming-symbol::after,
.homecoming-symbol span {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.homecoming-symbol::before {
  width: 3.2rem;
  aspect-ratio: 1;
  border: 1px dotted rgba(201, 154, 71, 0.82);
  animation: homecoming-turn 58s linear infinite;
}

.homecoming-symbol::after {
  width: 1.9rem;
  aspect-ratio: 1;
  border: 1px dashed rgba(170, 83, 54, 0.72);
  animation: homecoming-turn-reverse 76s linear infinite;
}

.homecoming-symbol span {
  width: 0.65rem;
  aspect-ratio: 1;
  background: var(--gold);
  box-shadow: 0 0 1rem rgba(201, 154, 71, 0.42);
  animation: homecoming-breathe 7s ease-in-out infinite;
}

.card-number {
  margin-bottom: 0.35rem;
  color: var(--clay);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.move-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.move-card {
  position: relative;
  min-height: 21rem;
  padding: 2rem clamp(1.3rem, 2.5vw, 2.4rem) 2.5rem;
  overflow: hidden;
  color: var(--move-color, var(--ink));
  transition: background 320ms ease;
}

.move-card::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
  opacity: 0.62;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 420ms var(--ease-out);
}

.move-card:hover {
  background: rgba(255, 253, 247, 0.25);
}

.move-card:hover::after {
  transform: scaleX(1);
}

.move-card + .move-card {
  border-left: 1px solid var(--line);
}

.move-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(4rem, 7vw, 6rem);
}

.move-glyph {
  display: grid;
  width: 2rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 0.78rem;
  transition: color 260ms ease, background 260ms ease, transform 420ms var(--ease-out);
}

.move-card:hover .move-glyph {
  color: var(--paper-bright);
  background: var(--move-color);
  transform: rotate(12deg) scale(1.06);
}

.move-card h3 {
  color: var(--ink);
  font-size: clamp(1.85rem, 2.8vw, 2.7rem);
}

.move-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.move-card .move-definition {
  margin-bottom: 1.25rem;
  color: currentColor;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.move-becoming {
  --move-color: #9a543b;
}

.move-incoming {
  --move-color: #3b6964;
}

.move-outcome {
  --move-color: #5f6c39;
}

.move-overcome {
  --move-color: #8a6a32;
}

.platform {
  position: relative;
  width: 100%;
  max-width: none;
  padding-right: max(var(--page-gutter), calc((100vw - var(--content-max)) / 2));
  padding-left: max(var(--page-gutter), calc((100vw - var(--content-max)) / 2));
  overflow: hidden;
  color: var(--white);
  background: var(--pine);
}

.platform-glow {
  position: absolute;
  top: -25rem;
  right: -18rem;
  width: 58rem;
  aspect-ratio: 1;
  border: 1px solid rgba(232, 204, 138, 0.14);
  border-radius: 50%;
  pointer-events: none;
  animation: platform-drift 96s linear infinite;
}

.platform-glow::before,
.platform-glow::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.platform-glow::before {
  inset: 13%;
  border: 1px dotted rgba(232, 204, 138, 0.16);
}

.platform-glow::after {
  inset: 28%;
  border: 1px solid rgba(180, 95, 61, 0.13);
}

.platform-intro,
.platform-grid,
.ecosystem,
.closing-cta {
  position: relative;
  z-index: 1;
}

.platform .eyebrow {
  color: var(--gold-light);
}

.platform-intro > p,
.platform-grid p,
.closing-cta > p:not(.eyebrow) {
  color: rgba(255, 253, 247, 0.7);
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 253, 247, 0.16);
  border-bottom: 1px solid rgba(255, 253, 247, 0.16);
}

.platform-grid article {
  min-height: 18rem;
  padding: 2rem 1.5rem 2rem 0;
}

.platform-grid article + article {
  padding-left: 1.5rem;
  border-left: 1px solid rgba(255, 253, 247, 0.16);
}

.platform-index {
  display: block;
  margin-bottom: 4.2rem;
  color: var(--gold-light);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.platform-grid h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.3rem);
}

.platform-grid p {
  margin-bottom: 0;
  font-size: 0.87rem;
}

.ecosystem {
  display: grid;
  grid-template-columns: minmax(16rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 7vw, 7rem);
  padding: clamp(5rem, 9vw, 8rem) 0;
}

.ecosystem h3 {
  max-width: 7ch;
  margin-bottom: 0;
  font-size: clamp(2.8rem, 5.2vw, 5.2rem);
}

.ecosystem-list > div {
  display: grid;
  grid-template-columns: minmax(7rem, 0.42fr) minmax(0, 1fr);
  gap: 1.5rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255, 253, 247, 0.16);
}

.ecosystem-list > div:first-child {
  border-top: 1px solid rgba(255, 253, 247, 0.16);
}

.ecosystem-list span {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.ecosystem-list p {
  margin-bottom: 0;
  color: rgba(255, 253, 247, 0.68);
  font-size: 0.87rem;
}

.closing-cta {
  max-width: 58rem;
  margin: 0 auto;
  padding-top: clamp(1rem, 4vw, 3rem);
  text-align: center;
}

.closing-cta h2 {
  margin-bottom: 1.5rem;
  font-family: var(--display);
  font-size: clamp(3rem, 5.8vw, 5.8rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.94;
}

.closing-cta > p:not(.eyebrow) {
  max-width: 40rem;
  margin: 0 auto 2rem;
}

.button-light {
  color: var(--pine);
  background: var(--white);
}

.button-light:hover {
  background: #efe3c9;
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  align-items: end;
  width: min(calc(100% - var(--page-margins)), var(--content-max));
  margin: 0 auto;
  padding: 3rem 0 3.5rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.75rem;
}

.site-footer p {
  margin: 0.65rem 0 0;
}

.footer-brand {
  color: var(--ink);
}

.footer-principle {
  text-align: center;
}

.copyright {
  text-align: right;
}

.error-page {
  display: grid;
  min-height: 100svh;
  padding: 1.5rem;
  place-items: center;
}

.error-card {
  width: min(100%, 42rem);
  padding: clamp(2rem, 7vw, 5rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.48);
  text-align: center;
}

.error-card .brand {
  margin-bottom: 4rem;
}

.error-card h1 {
  max-width: 10ch;
  margin-right: auto;
  margin-bottom: 1.5rem;
  margin-left: auto;
  font-size: clamp(3rem, 8vw, 5.6rem);
}

.error-card > p:not(.eyebrow) {
  margin-bottom: 2rem;
  color: var(--ink-soft);
}

@keyframes copy-arrive {
  from {
    opacity: 0;
    transform: translateY(0.7rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes orbit-arrive {
  from {
    opacity: 0;
    transform: translateY(-50%) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}

@keyframes orbit-spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes orbit-spin-reverse {
  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes dot-orbit {
  from {
    transform: translate(-50%, -50%) rotate(var(--orbit-start));
  }
  to {
    transform: translate(-50%, -50%) rotate(calc(var(--orbit-start) + 1turn));
  }
}

@keyframes corona-turn {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes sun-breathe {
  0%,
  100% {
    box-shadow: 0 0 2.4rem rgba(201, 154, 71, 0.24), inset -0.5rem -0.5rem 1.2rem rgba(169, 105, 31, 0.14);
  }
  50% {
    box-shadow: 0 0 3.8rem rgba(201, 154, 71, 0.38), inset -0.5rem -0.5rem 1.2rem rgba(169, 105, 31, 0.14);
  }
}

@keyframes homecoming-turn {
  to {
    transform: rotate(360deg);
  }
}

@keyframes homecoming-turn-reverse {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes homecoming-breathe {
  0%,
  100% {
    box-shadow: 0 0 0.75rem rgba(201, 154, 71, 0.3);
    transform: scale(0.92);
  }
  50% {
    box-shadow: 0 0 1.4rem rgba(201, 154, 71, 0.5);
    transform: scale(1);
  }
}

@keyframes platform-drift {
  to {
    transform: rotate(360deg);
  }
}

@keyframes premise-reveal {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes framework-reveal {
  from {
    opacity: 0;
    clip-path: inset(0 0 12% 0);
    transform: translateY(2rem);
  }
  to {
    opacity: 1;
    clip-path: inset(0);
    transform: translateY(0);
  }
}

@supports (animation-timeline: view()) {
  .hero-intro-copy,
  .hero-intro-actions {
    animation: premise-reveal 1s both;
    animation-timeline: view();
    animation-range: entry 5% cover 30%;
  }

  .hero-intro-actions {
    animation-range: entry 10% cover 35%;
  }

  .framework .section-intro > div,
  .framework .section-intro > p,
  .homecoming-card {
    animation: premise-reveal 1s both;
    animation-timeline: view();
    animation-range: entry 5% cover 30%;
  }

  .framework .section-intro > p {
    animation-range: entry 10% cover 35%;
  }

  .homecoming-card {
    animation-range: entry 5% cover 28%;
  }

  .move-grid {
    view-timeline-name: --move-grid;
    view-timeline-axis: block;
  }

  .move-card {
    animation: framework-reveal 1s both;
    animation-timeline: --move-grid;
  }

  .move-card:nth-child(1) {
    animation-range: entry 0% cover 25%;
  }

  .move-card:nth-child(2) {
    animation-range: entry 5% cover 30%;
  }

  .move-card:nth-child(3) {
    animation-range: entry 10% cover 35%;
  }

  .move-card:nth-child(4) {
    animation-range: entry 15% cover 40%;
  }
}

@media (min-width: 801px) {
  .hero-copy {
    transform: translateY(-3.5vh);
  }
}

@media (max-width: 1080px) {
  .hero-copy {
    width: min(58vw, 40rem);
  }

  .hero-field {
    right: -32vw;
    width: clamp(47rem, 78vw, 60rem);
  }

  .move-grid,
  .platform-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .move-card:nth-child(3),
  .move-card:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .move-card:nth-child(3) {
    border-left: 0;
  }

  .platform-grid article:nth-child(3) {
    padding-left: 0;
    border-top: 1px solid rgba(255, 253, 247, 0.16);
    border-left: 0;
  }

  .platform-grid article:nth-child(4) {
    border-top: 1px solid rgba(255, 253, 247, 0.16);
  }
}

@media (max-width: 800px) {
  .brand-o::after {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -52%);
  }

  .brand:hover .brand-o::after {
    transform: translate(-50%, -52%) scale(1.08);
  }

  .hero-intro,
  .section,
  .site-footer {
    width: min(calc(100% - 2rem), 44rem);
  }

  .site-header,
  .hero {
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .site-header,
  .hero,
  .hero-intro,
  .section,
  .site-footer {
    margin-right: auto;
    margin-left: auto;
  }

  .site-header {
    padding-top: 1.4rem;
  }

  .hero {
    align-items: flex-start;
    min-height: 48rem;
    padding-top: 9rem;
    padding-bottom: 7rem;
  }

  .hero-copy {
    width: min(100%, 38rem);
  }

  .hero-tagline {
    left: 1rem;
    max-width: 31rem;
  }

  .hero-field {
    top: auto;
    right: -23rem;
    bottom: -11rem;
    width: 48rem;
    opacity: 0;
    animation-name: orbit-arrive-mobile;
  }

  .hero-intro,
  .section-intro,
  .ecosystem {
    grid-template-columns: 1fr;
  }

  .hero-intro {
    gap: 2.6rem;
  }

  .hero-intro-actions {
    padding-left: clamp(1.5rem, 5vw, 2.5rem);
  }

  .section-intro,
  .ecosystem {
    gap: 1.5rem;
  }

  .section-intro h2 {
    max-width: 11ch;
  }

  .section-intro > p {
    max-width: 38rem;
  }

  .homecoming-card {
    grid-template-columns: auto 1fr;
  }

  .homecoming-card > p:last-child {
    grid-column: 1 / -1;
  }

  .ecosystem h3 {
    max-width: none;
  }

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

  .site-footer > div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-principle,
  .copyright {
    text-align: center;
  }

  @keyframes orbit-arrive-mobile {
    from {
      opacity: 0;
      transform: scale(0.985);
    }
    to {
      opacity: 0.64;
      transform: scale(1);
    }
  }
}

@media (max-width: 580px) {
  .site-nav {
    gap: 0.8rem;
    font-size: 0.66rem;
  }

  .nav-anchor {
    display: none !important;
  }

  .hero {
    min-height: 43rem;
    padding-top: 8.4rem;
  }

  h1 {
    font-size: clamp(3.2rem, 12.4vw, 4.5rem);
  }

  .hero-tagline {
    max-width: 18rem;
    padding-top: 1.75rem;
    font-size: 0.6rem;
  }

  .hero-field {
    right: -22rem;
    bottom: -9rem;
    width: 41rem;
  }

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

  .button-primary {
    width: 100%;
  }

  .button-secondary {
    align-self: flex-start;
  }

  .homecoming-card {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .homecoming-card > p:last-child {
    grid-column: auto;
  }

  .homecoming-card h3 {
    font-size: 2.35rem;
  }

  .homecoming-symbol {
    width: 4.2rem;
  }

  .homecoming-symbol::before {
    width: 2.6rem;
  }

  .move-grid,
  .platform-grid {
    grid-template-columns: 1fr;
  }

  .move-card {
    min-height: 0;
    padding-right: 0;
    padding-left: 0;
  }

  .move-card + .move-card,
  .move-card:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .move-card-top {
    margin-bottom: 3.5rem;
  }

  .platform-grid article,
  .platform-grid article + article,
  .platform-grid article:nth-child(3) {
    min-height: 0;
    padding: 1.8rem 0;
    border-top: 1px solid rgba(255, 253, 247, 0.16);
    border-left: 0;
  }

  .platform-grid article:first-child {
    border-top: 0;
  }

  .platform-index {
    margin-bottom: 2.6rem;
  }

  .ecosystem-list > div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  @supports (animation-timeline: view()) {
    .move-card,
    .move-card:nth-child(n) {
      animation-timeline: view();
      animation-range: entry 5% cover 34%;
    }
  }
}

@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;
  }

  h1 span,
  .hero-tagline,
  .hero-intro-copy,
  .hero-intro-actions,
  .framework .section-intro > div,
  .framework .section-intro > p,
  .homecoming-card,
  .move-card {
    opacity: 1 !important;
    clip-path: none !important;
    transform: none !important;
  }

  .hero-field {
    opacity: 1 !important;
    transform: translateY(-50%) !important;
  }

  .orbit-path,
  .orbit-ring,
  .sun-rays,
  .orbit-sun,
  .homecoming-symbol::before,
  .homecoming-symbol::after,
  .homecoming-symbol span,
  .platform-glow {
    animation: none !important;
  }
}

@media (max-width: 800px) and (prefers-reduced-motion: reduce) {
  .hero-field {
    opacity: 0.64 !important;
    transform: none !important;
  }
}
