:root {
  color-scheme: light;
  --navy: #000080;
  --navy-deep: #060642;
  --saffron: #ff9933;
  --green: #138808;
  --ink: #111234;
  --muted: #60647e;
  --paper: #f7f8ff;
  --line: #dedff0;
  --white: #ffffff;
  --shadow: 0 22px 64px rgba(0, 0, 80, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

main {
  overflow: clip;
}

a {
  color: inherit;
}

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

.shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 0, rgba(255, 153, 51, 0.13), transparent 24%),
    linear-gradient(120deg, var(--navy-deep), #09095a 58%, var(--navy-deep));
  background-size: 180% 100%;
  perspective: 1200px;
  animation: header-arrive 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.site-header::before {
  position: absolute;
  inset: -100% -15%;
  background: linear-gradient(
    110deg,
    transparent 38%,
    rgba(255, 255, 255, 0.08) 48%,
    transparent 58%
  );
  content: "";
  pointer-events: none;
  animation: header-light-pass 9s ease-in-out infinite;
}

.header-row {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  color: var(--white);
  text-decoration: none;
  transform-style: preserve-3d;
  isolation: isolate;
  animation: brand-float 6.8s ease-in-out infinite;
}

.brand::before {
  position: absolute;
  inset: -20px -28px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 153, 51, 0.19), transparent 68%);
  content: "";
  filter: blur(5px);
  pointer-events: none;
  animation: brand-aura 5.8s ease-in-out infinite;
}

.brand strong {
  display: block;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1;
  text-shadow:
    0 7px 18px rgba(0, 0, 20, 0.34),
    0 0 24px rgba(255, 255, 255, 0.1);
  transform-style: preserve-3d;
  animation: brand-word-depth 6.8s ease-in-out infinite;
}

.brand span {
  width: 100%;
  height: 4px;
  margin-top: 7px;
  border-radius: 99px;
  background: linear-gradient(
    90deg,
    var(--saffron) 0 44%,
    var(--white) 44% 58%,
    var(--green) 58% 100%
  );
  background-size: 220% 100%;
  box-shadow: 0 8px 20px rgba(0, 0, 20, 0.2);
  animation: brand-line-flow 4.8s ease-in-out infinite;
}

.brand small {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 8px;
  font-weight: 820;
  letter-spacing: 0.075em;
  line-height: 1;
  text-transform: uppercase;
}

.brand:hover strong,
.brand:focus-visible strong {
  transform: translateZ(34px) rotateX(-3deg) rotateY(4deg);
}

.primary-nav {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.065);
  box-shadow:
    0 14px 34px rgba(0, 0, 28, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  transform-style: preserve-3d;
  animation: nav-cluster-float 7s ease-in-out infinite;
}

.primary-nav a {
  position: relative;
  overflow: hidden;
  min-height: 38px;
  padding: 9px 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 760;
  text-decoration: none;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.primary-nav a::before {
  position: absolute;
  right: 14px;
  bottom: 5px;
  left: 14px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--saffron), var(--white), var(--green));
  background-size: 220% 100%;
  content: "";
  opacity: 0.58;
  transform: scaleX(0.34);
  transform-origin: center;
  animation: nav-link-sweep 5.4s ease-in-out infinite;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 9px 20px rgba(0, 0, 28, 0.16);
  transform: translate3d(0, -2px, 18px);
}

.primary-nav a:hover::before,
.primary-nav a[aria-current="page"]::before {
  opacity: 1;
  transform: scaleX(1);
}

.primary-nav a:nth-child(2)::before { animation-delay: -1s; }
.primary-nav a:nth-child(3)::before { animation-delay: -2s; }
.primary-nav a:nth-child(4)::before { animation-delay: -3s; }
.primary-nav a:nth-child(5)::before { animation-delay: -4s; }

.primary-nav a:last-child {
  color: var(--navy-deep);
  background: linear-gradient(135deg, #fff4e8, var(--white) 55%, #edf9eb);
  box-shadow: 0 9px 24px rgba(255, 153, 51, 0.18);
}

.hero {
  position: relative;
  min-height: calc(100svh - 78px);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 153, 51, 0.22), transparent 30%),
    radial-gradient(circle at 5% 92%, rgba(19, 136, 8, 0.2), transparent 34%),
    linear-gradient(132deg, #05053e, var(--navy));
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent);
  animation: grid-drift 18s linear infinite;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(340px, 0.68fr) minmax(560px, 1.32fr);
  gap: clamp(24px, 3.2vw, 46px);
  align-items: center;
  padding-block: clamp(24px, 3.5vw, 42px);
}

.eyebrow {
  margin: 0 0 20px;
  color: #ffd0a0;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

h1 {
  max-width: 780px;
  margin-bottom: 16px;
  font-size: clamp(42px, 4.7vw, 62px);
  font-weight: 900;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(15px, 1.35vw, 18px);
}

.hero-copy > * {
  animation: rise-in 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-copy > :nth-child(2) {
  animation-delay: 90ms;
}

.hero-copy > :nth-child(3) {
  animation-delay: 160ms;
}

.hero-copy > :nth-child(4) {
  animation-delay: 230ms;
}

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

.launch-countdown {
  max-width: 470px;
  margin-top: 20px;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(52px, 1fr));
  gap: 8px;
}

.countdown-grid > span {
  position: relative;
  display: grid;
  min-height: 68px;
  place-items: center;
  align-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
  box-shadow:
    0 15px 34px rgba(0, 0, 30, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  transform-style: preserve-3d;
  animation: countdown-cell-depth 7s ease-in-out infinite;
}

.countdown-grid > span:nth-child(2) { animation-delay: -1.6s; }
.countdown-grid > span:nth-child(3) { animation-delay: -3.2s; }
.countdown-grid > span:nth-child(4) { animation-delay: -4.8s; }

.countdown-grid > span::before {
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, var(--saffron), var(--white), var(--green));
  content: "";
  opacity: 0.9;
}

.countdown-grid strong {
  font-size: clamp(21px, 2vw, 28px);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.035em;
  line-height: 1;
}

.countdown-grid small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 8px;
  font-weight: 820;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.launch-countdown > p {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 9px 2px 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0.04em;
}

.launch-countdown time {
  color: #ffd0a0;
  font-weight: 820;
}

.button {
  position: relative;
  display: inline-flex;
  overflow: hidden;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  padding: 0 22px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button::after {
  position: absolute;
  inset: -80% auto -80% -55%;
  width: 38%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.42),
    transparent
  );
  content: "";
  pointer-events: none;
  transform: rotate(18deg);
  animation: button-glint 5.8s ease-in-out infinite;
}

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

.button-primary {
  color: var(--navy);
  background: var(--saffron);
  box-shadow: 0 14px 34px rgba(255, 153, 51, 0.2);
}

.button-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.system-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 90px rgba(0, 0, 30, 0.28);
  backdrop-filter: blur(16px);
  animation:
    card-arrive 820ms 180ms cubic-bezier(0.22, 1, 0.36, 1) both,
    soft-float 7s 1.1s ease-in-out infinite;
}

.system-card > p {
  margin: 0 0 17px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.system-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.system-grid div {
  min-height: 104px;
  padding: 17px;
  border-radius: 18px;
  background: rgba(0, 0, 45, 0.34);
}

.system-grid span {
  display: block;
  color: #ffc98f;
  font-size: 11px;
  font-weight: 800;
}

.system-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.3;
}

.action-universe {
  position: relative;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.035));
  box-shadow: 0 34px 100px rgba(0, 0, 30, 0.38);
  perspective: 1200px;
  backdrop-filter: blur(18px);
  color: inherit;
  text-decoration: none;
  transform-style: preserve-3d;
  animation:
    card-arrive 820ms 180ms cubic-bezier(0.22, 1, 0.36, 1) both,
    universe-card-drift 8s 1.2s ease-in-out infinite;
  transition:
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.action-universe:hover,
.action-universe:focus-visible {
  border-color: rgba(255, 153, 51, 0.52);
  box-shadow:
    0 44px 120px rgba(0, 0, 30, 0.5),
    0 0 54px rgba(19, 136, 8, 0.14);
}

.universe-scene {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 25px;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 153, 51, 0.17), transparent 19%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1), transparent 52%),
    rgba(0, 0, 48, 0.32);
  background-size: 160% 160%, 130% 130%, auto;
  transform-style: preserve-3d;
  animation:
    universe-scene-drift 7s ease-in-out infinite,
    universe-colour-shift 11s ease-in-out infinite;
}

.universe-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  transform-style: preserve-3d;
}

.universe-ring::before,
.universe-ring::after {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--saffron);
  box-shadow: 0 0 18px rgba(255, 153, 51, 0.8);
  content: "";
}

.universe-ring::before {
  top: -4px;
  left: 50%;
}

.universe-ring::after {
  right: -4px;
  bottom: 32%;
  background: #62cf58;
  box-shadow: 0 0 18px rgba(98, 207, 88, 0.72);
}

.universe-ring-one {
  width: 320px;
  height: 320px;
  margin: -160px 0 0 -160px;
  animation:
    universe-spin-one 14s linear infinite,
    ring-spectrum 8s ease-in-out infinite;
}

.universe-ring-two {
  width: 250px;
  height: 250px;
  margin: -125px 0 0 -125px;
  border-color: rgba(255, 153, 51, 0.32);
  animation:
    universe-spin-two 10s linear infinite reverse,
    ring-spectrum 8s -2.6s ease-in-out infinite;
}

.universe-ring-three {
  width: 180px;
  height: 180px;
  margin: -90px 0 0 -90px;
  border-style: dashed;
  border-color: rgba(19, 136, 8, 0.48);
  animation:
    universe-spin-three 8s linear infinite,
    ring-spectrum 8s -5.2s ease-in-out infinite;
}

.universe-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: flex;
  width: 148px;
  min-height: 148px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: -74px 0 0 -74px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 26px;
  color: var(--navy);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(232, 234, 255, 0.9));
  box-shadow:
    0 28px 60px rgba(0, 0, 35, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  text-align: center;
  transform-style: preserve-3d;
  animation: core-tilt 7s ease-in-out infinite;
}

.universe-core::after {
  position: absolute;
  inset: 10px -10px -10px 10px;
  z-index: -1;
  border: 1px solid rgba(255, 153, 51, 0.28);
  border-radius: inherit;
  content: "";
  transform: translateZ(-26px);
}

.universe-core strong {
  font-size: 23px;
  font-weight: 930;
  letter-spacing: -0.04em;
  line-height: 1;
}

.universe-core strong::after {
  display: block;
  width: 78px;
  height: 5px;
  margin: 13px auto 0;
  border-radius: 99px;
  background: linear-gradient(
    90deg,
    var(--saffron) 0 44%,
    var(--white) 44% 58%,
    var(--green) 58% 100%
  );
  background-size: 240% 100%;
  box-shadow: 0 0 0 1px rgba(0, 0, 128, 0.08);
  content: "";
  animation: tricolour-sweep 4.6s ease-in-out infinite;
}

.universe-node {
  position: absolute;
  z-index: 4;
  display: grid;
  min-width: 62px;
  min-height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding-inline: 12px;
  color: var(--white);
  background: rgba(0, 0, 72, 0.78);
  box-shadow: 0 13px 30px rgba(0, 0, 35, 0.3);
  font-size: 10px;
  font-weight: 820;
  transform-style: preserve-3d;
  animation:
    node-breathe 4.2s ease-in-out infinite,
    node-spectrum 9s ease-in-out infinite;
}

.universe-node-social { top: 11%; left: 42%; animation-delay: -0.4s; }
.universe-node-create { top: 24%; left: 77%; animation-delay: -1.1s; }
.universe-node-earn { top: 51%; left: 87%; animation-delay: -1.8s; }
.universe-node-buy { top: 80%; left: 74%; animation-delay: -2.5s; }
.universe-node-ride { top: 88%; left: 38%; animation-delay: -3.2s; }
.universe-node-pay { top: 68%; left: 10%; animation-delay: -3.9s; }
.universe-node-work { top: 36%; left: 5%; animation-delay: -4.6s; }
.universe-node-deliver { top: 9%; left: 9%; animation-delay: -5.3s; }

.universe-pulse {
  --orbit-radius: 144px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  width: 12px;
  height: 12px;
  margin: -6px;
  border: 3px solid rgba(255, 255, 255, 0.84);
  border-radius: 50%;
  background: var(--saffron);
  box-shadow:
    0 0 0 7px rgba(255, 153, 51, 0.13),
    0 0 30px rgba(255, 153, 51, 0.86);
  animation: pulse-orbit 7s linear infinite;
}

.universe-pulse-two {
  --orbit-radius: 108px;
  width: 10px;
  height: 10px;
  margin: -5px;
  border-width: 2px;
  background: var(--green);
  box-shadow:
    0 0 0 7px rgba(19, 136, 8, 0.13),
    0 0 28px rgba(19, 136, 8, 0.82);
  animation-duration: 5.7s;
  animation-direction: reverse;
}

.universe-pulse-three {
  --orbit-radius: 74px;
  width: 8px;
  height: 8px;
  margin: -4px;
  border-color: var(--navy);
  border-width: 2px;
  background: var(--white);
  box-shadow:
    0 0 0 6px rgba(255, 255, 255, 0.1),
    0 0 24px rgba(255, 255, 255, 0.84);
  animation-duration: 4.6s;
  animation-delay: -2s;
}

.section {
  padding-block: clamp(48px, 5vw, 72px);
  scroll-margin-top: 96px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-heading h2 {
  margin-bottom: 14px;
  font-size: clamp(34px, 4.3vw, 52px);
  font-weight: 900;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 17px;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 17px;
}

.value-card,
.principle-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 12px 40px rgba(0, 0, 80, 0.05);
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease;
  transform-style: preserve-3d;
  animation: surface-float 9s ease-in-out infinite;
}

.value-card {
  color: inherit;
  text-decoration: none;
}

.value-card:nth-child(2),
.principle-card:nth-child(2) {
  animation-delay: -2.2s;
}

.value-card:nth-child(3),
.principle-card:nth-child(3) {
  animation-delay: -4.4s;
}

.value-card:nth-child(4) {
  animation-delay: -6.6s;
}

.value-card::before,
.principle-card::before {
  position: absolute;
  top: -90px;
  right: -90px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 153, 51, 0.22), transparent 68%);
  content: "";
  pointer-events: none;
  animation: card-light-drift 7s ease-in-out infinite;
}

.value-card:hover,
.principle-card:hover {
  animation: none;
  transform: translateY(-7px);
  border-color: #bfc1e9;
  box-shadow: var(--shadow);
}

.value-card span,
.principle-card span {
  color: var(--navy);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.value-card h3,
.principle-card h3 {
  margin: 18px 0 12px;
  font-size: 23px;
}

.value-card p,
.principle-card p {
  margin: 0;
  color: var(--muted);
}

.dark-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 8% 20%, rgba(19, 136, 8, 0.16), transparent 28%),
    radial-gradient(circle at 92% 80%, rgba(255, 153, 51, 0.14), transparent 30%),
    var(--navy-deep);
}

.dark-section::before,
.dark-section::after {
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.dark-section::before {
  top: -280px;
  right: -80px;
  animation: dark-ring-drift 14s ease-in-out infinite;
}

.dark-section::after {
  bottom: -300px;
  left: -100px;
  animation: dark-ring-drift 18s -6s ease-in-out infinite reverse;
}

.dark-section > .shell {
  position: relative;
  z-index: 1;
}

.dark-section .section-heading p,
.dark-section .principle-card p {
  color: rgba(255, 255, 255, 0.7);
}

.dark-section .principle-card {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
}

.dark-section .principle-card span {
  color: #ffc98f;
}

.preview-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 153, 51, 0.14), transparent 24%),
    radial-gradient(circle at 88% 82%, rgba(19, 136, 8, 0.1), transparent 28%),
    linear-gradient(180deg, #f0f1ff, var(--paper));
}

.preview-section::before,
.preview-section::after {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  content: "";
  filter: blur(12px);
  opacity: 0.34;
  pointer-events: none;
}

.preview-section::before {
  top: 8%;
  right: -120px;
  background: radial-gradient(circle, rgba(255, 153, 51, 0.5), transparent 68%);
  animation: ambient-orbit-a 13s ease-in-out infinite;
}

.preview-section::after {
  bottom: 4%;
  left: -150px;
  background: radial-gradient(circle, rgba(0, 0, 128, 0.22), transparent 70%);
  animation: ambient-orbit-b 16s ease-in-out infinite;
}

.showcase-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(34px, 4.5vw, 58px);
  align-items: center;
}

.preview-heading {
  margin: 0;
}

.preview-section .action-universe {
  width: min(100%, 520px);
  justify-self: center;
  padding: 12px;
  border: 1px solid rgba(0, 0, 128, 0.28);
  border-radius: 38px;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 153, 51, 0.26), transparent 31%),
    radial-gradient(circle at 9% 88%, rgba(19, 136, 8, 0.22), transparent 34%),
    linear-gradient(145deg, #101068, #050541);
  box-shadow:
    0 34px 90px rgba(0, 0, 80, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: none;
}

.preview-section .action-universe:hover,
.preview-section .action-universe:focus-visible {
  border-color: rgba(255, 153, 51, 0.58);
  box-shadow:
    0 42px 108px rgba(0, 0, 80, 0.3),
    0 0 42px rgba(19, 136, 8, 0.13);
}

.preview-section .universe-scene {
  min-height: 0;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 153, 51, 0.2), transparent 20%),
    radial-gradient(circle at 52% 46%, rgba(255, 255, 255, 0.1), transparent 51%),
    radial-gradient(circle at 12% 82%, rgba(19, 136, 8, 0.16), transparent 32%),
    linear-gradient(145deg, #0d0d66, #05053f);
}

.showcase-stage {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 44px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.96), rgba(231, 233, 255, 0.72) 42%, rgba(0, 0, 128, 0.08) 100%);
  box-shadow:
    0 44px 100px rgba(0, 0, 80, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  perspective: 1800px;
  isolation: isolate;
  color: inherit;
  text-decoration: none;
}

.hero-showcase {
  min-height: clamp(500px, calc(100svh - 130px), 620px);
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-showcase .showcase-set {
  display: grid;
  inset: 18px 0;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1fr) minmax(0, 0.84fr);
  gap: clamp(6px, 1.35vw, 18px);
  align-items: center;
}

.hero-showcase .showcase-phone-card {
  position: relative;
  top: auto;
  right: auto;
  left: auto;
  width: 100%;
  justify-self: center;
}

.hero-showcase .showcase-phone-left,
.hero-showcase .showcase-phone-right {
  max-width: 188px;
}

.hero-showcase .showcase-phone-center {
  max-width: 238px;
}

.hero-showcase::before {
  inset: 8% -3%;
  border-radius: 50%;
  filter: blur(28px);
  opacity: 0.72;
}

.showcase-stage::before {
  position: absolute;
  inset: -35%;
  z-index: 0;
  background:
    conic-gradient(
      from 45deg,
      transparent 0 24%,
      rgba(255, 153, 51, 0.2) 31%,
      rgba(255, 255, 255, 0.56) 38%,
      rgba(19, 136, 8, 0.18) 46%,
      transparent 55% 100%
    );
  content: "";
  pointer-events: none;
  animation: showcase-colour-field 13s linear infinite;
}

.showcase-stage:focus-visible {
  outline: 4px solid var(--saffron);
  outline-offset: 7px;
}

.showcase-halo,
.showcase-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  border-radius: 50%;
  pointer-events: none;
  transform-style: preserve-3d;
}

.showcase-halo {
  z-index: -1;
  width: 430px;
  height: 430px;
  margin: -215px 0 0 -215px;
  background:
    conic-gradient(
      from 90deg,
      rgba(255, 153, 51, 0.22),
      rgba(0, 0, 128, 0.04),
      rgba(19, 136, 8, 0.18),
      rgba(255, 153, 51, 0.22)
    );
  filter: blur(2px);
  animation: showcase-halo-spin 12s linear infinite;
}

.showcase-halo-two {
  width: 520px;
  height: 520px;
  margin: -260px 0 0 -260px;
  border: 1px solid rgba(0, 0, 128, 0.12);
  background: transparent;
  animation-duration: 18s;
  animation-direction: reverse;
  transform: rotateX(68deg);
}

.showcase-orbit {
  z-index: 1;
  width: 490px;
  height: 230px;
  margin: -115px 0 0 -245px;
  border: 1px solid rgba(0, 0, 128, 0.19);
  box-shadow:
    0 0 50px rgba(0, 0, 128, 0.06),
    inset 0 0 44px rgba(255, 153, 51, 0.08);
  transform: rotateX(68deg) rotateZ(-8deg);
  animation: showcase-orbit-turn 10s linear infinite;
}

.showcase-orbit::before,
.showcase-orbit::after {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  content: "";
}

.showcase-orbit::before {
  top: -5px;
  left: 48%;
  background: var(--saffron);
  box-shadow: 0 0 22px rgba(255, 153, 51, 0.8);
}

.showcase-orbit::after {
  right: 9%;
  bottom: 13%;
  background: var(--green);
  box-shadow: 0 0 20px rgba(19, 136, 8, 0.65);
}

.showcase-ribbon {
  position: absolute;
  top: 10%;
  left: -35%;
  z-index: 1;
  width: 170%;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent 0 8%,
    rgba(255, 153, 51, 0.88) 25% 38%,
    rgba(255, 255, 255, 0.94) 43% 52%,
    rgba(19, 136, 8, 0.78) 57% 70%,
    transparent 88% 100%
  );
  filter: blur(9px);
  opacity: 0.34;
  pointer-events: none;
  transform: rotate(-18deg) translate3d(0, 0, 0);
  animation: showcase-ribbon-sweep 8s ease-in-out infinite;
}

.showcase-set {
  position: absolute;
  inset: 28px 18px 52px;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transform-style: preserve-3d;
  will-change: opacity;
  animation: showcase-set-cycle 24s linear infinite;
}

.showcase-set-two {
  animation-delay: -12s;
}

.showcase-phone-card {
  position: absolute;
  top: 50%;
  margin: 0;
  transform-style: preserve-3d;
}

.showcase-phone-card::before,
.showcase-phone-card::after {
  position: absolute;
  z-index: 7;
  display: block;
  content: "";
  pointer-events: none;
}

.showcase-phone-left,
.showcase-phone-right {
  z-index: 2;
  width: min(31%, 184px);
}

.showcase-phone-left {
  left: 2%;
  animation: showcase-side-left 9.2s ease-in-out infinite;
}

.showcase-phone-right {
  right: 2%;
  animation: showcase-side-right 9.8s -3.8s ease-in-out infinite;
}

.showcase-phone-center {
  left: 50%;
  z-index: 4;
  width: min(39%, 232px);
  animation: showcase-phone-center 8.8s -1.7s ease-in-out infinite;
}

.showcase-phone {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 864 / 1821;
  border: clamp(4px, 0.65vw, 7px) solid #08082e;
  border-radius: clamp(23px, 3vw, 36px);
  background: #08082e;
  box-shadow:
    0 40px 72px rgba(0, 0, 50, 0.32),
    10px 0 0 #17174a,
    17px 21px 0 rgba(0, 0, 128, 0.09);
  transform-style: preserve-3d;
}

.phone-platform-ios .showcase-phone {
  border-width: clamp(6px, 0.82vw, 9px);
  border-color: #343447;
  border-radius: clamp(32px, 3.9vw, 48px);
  background: #07071f;
  box-shadow:
    0 38px 72px rgba(0, 0, 42, 0.34),
    5px 0 0 #9b9ba6,
    11px 0 0 #171728,
    19px 22px 0 rgba(0, 0, 128, 0.09),
    inset 0 0 0 1px rgba(255, 255, 255, 0.13);
}

.phone-platform-android .showcase-phone {
  border-width: clamp(5px, 0.68vw, 7px);
  border-color: #18182d;
  border-radius: clamp(18px, 2.1vw, 27px);
  background: #10102f;
  box-shadow:
    0 30px 58px rgba(0, 0, 42, 0.27),
    4px 0 0 #62627b,
    9px 0 0 #22223f,
    14px 17px 0 rgba(19, 136, 8, 0.065),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.showcase-phone::before {
  position: absolute;
  top: 8px;
  left: 50%;
  z-index: 4;
  width: 34%;
  height: 20px;
  border-radius: 999px;
  background: #08082e;
  content: "";
  transform: translateX(-50%);
}

.phone-platform-android .showcase-phone::before {
  top: 10px;
  width: 13px;
  height: 13px;
  border: 2px solid #383852;
  border-radius: 50%;
  background: #030311;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.06);
}

.phone-platform-ios::before {
  top: 25%;
  left: -7px;
  width: 5px;
  height: 54px;
  border-radius: 4px 0 0 4px;
  background: linear-gradient(180deg, #e2e2e7, #686876 55%, #d5d5dc);
  box-shadow:
    0 68px 0 #8f8f9a,
    0 -28px 0 -1px #a9a9b3;
  transform: translateZ(8px);
}

.phone-platform-ios::after {
  top: 31%;
  right: -8px;
  width: 6px;
  height: 72px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(180deg, #ddddE3, #656572 55%, #cacad2);
  box-shadow: 1px 0 7px rgba(0, 0, 20, 0.36);
  transform: translateZ(8px);
}

.phone-platform-android::before {
  top: 22%;
  left: -6px;
  width: 4px;
  height: 78px;
  border-radius: 3px 0 0 3px;
  background: linear-gradient(180deg, #74748a, #24243e 62%, #66667c);
  box-shadow: 0 -28px 0 -1px #4f4f68;
  transform: translateZ(7px);
}

.phone-platform-android::after {
  top: 28%;
  right: -7px;
  width: 5px;
  height: 62px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, #73738a, #20203a 62%, #65657c);
  box-shadow: 1px 0 6px rgba(0, 0, 20, 0.3);
  transform: translateZ(7px);
}

.phone-platform-ios .showcase-phone img {
  border-radius: clamp(25px, 3.2vw, 39px);
}

.phone-platform-android .showcase-phone img {
  border-radius: clamp(13px, 1.7vw, 21px);
}

.showcase-phone::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  pointer-events: none;
  background: linear-gradient(
    110deg,
    transparent 32%,
    rgba(255, 255, 255, 0.28) 48%,
    transparent 64%
  );
  transform: translateX(-140%);
  animation: screen-glint 5.5s ease-in-out infinite;
}

.showcase-phone img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: clamp(18px, 2.5vw, 29px);
  object-fit: contain;
  object-position: top;
  animation: preview-screen-breathe 7s ease-in-out infinite;
}

.motion-tap {
  position: absolute;
  top: 14%;
  left: 20%;
  z-index: 3;
  width: 14px;
  height: 14px;
  border: 3px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background: var(--saffron);
  box-shadow:
    0 0 0 8px rgba(255, 153, 51, 0.18),
    0 7px 22px rgba(0, 0, 80, 0.28);
  pointer-events: none;
  animation: app-tap-tour 8s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.motion-tap::after {
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(255, 153, 51, 0.78);
  border-radius: 50%;
  content: "";
  animation: tap-ring 1.4s ease-out infinite;
}

.showcase-phone-left .motion-tap { animation-delay: -2.7s; }
.showcase-phone-right .motion-tap { animation-delay: -5.2s; }

.showcase-phone-card figcaption {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  width: max-content;
  max-width: 150%;
  padding: 7px 12px;
  border: 1px solid rgba(0, 0, 128, 0.12);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 25px rgba(0, 0, 80, 0.1);
  backdrop-filter: blur(10px);
  font-size: 9px;
  font-weight: 860;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transform: translateX(-50%) translateZ(40px);
}

.launch-section {
  padding-bottom: 0;
}

.launch-date-card {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(320px, auto);
  gap: clamp(22px, 4vw, 48px);
  align-items: end;
  margin-bottom: 14px;
  padding: clamp(24px, 3vw, 34px);
  border-radius: 28px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 12%, rgba(19, 136, 8, 0.2), transparent 32%),
    linear-gradient(132deg, #08084b, var(--navy));
  box-shadow: var(--shadow);
}

.launch-date-card .launch-countdown {
  max-width: 620px;
  margin: 0;
}

.launch-date-card .actions {
  justify-content: flex-end;
  margin: 0;
}

.launch-panel {
  position: relative;
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
  padding: clamp(28px, 4vw, 44px);
  border-radius: 30px;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0, rgba(255, 153, 51, 0.28), transparent 32%),
    linear-gradient(132deg, var(--navy-deep), var(--navy));
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  animation: panel-depth 9s ease-in-out infinite;
}

.launch-panel::after {
  position: absolute;
  top: -120px;
  right: -100px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 67%);
  content: "";
  pointer-events: none;
  animation: panel-light 8s ease-in-out infinite;
}

.launch-panel .eyebrow {
  margin-bottom: 12px;
}

.launch-panel h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 900;
}

.launch-intro > p:last-child {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
}

.launch-roadmap {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.launch-roadmap::before {
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 46px;
  width: 2px;
  background: linear-gradient(var(--saffron), var(--white), var(--green));
  content: "";
  opacity: 0.78;
  pointer-events: none;
}

.launch-roadmap li {
  position: relative;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 92px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.launch-roadmap li > span {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 54px;
  place-items: center;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 15px;
  color: var(--white);
  background: rgba(0, 0, 64, 0.72);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.launch-roadmap strong {
  display: block;
  color: var(--white);
  font-size: 16px;
}

.launch-roadmap p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.opportunities-section {
  position: relative;
  overflow: hidden;
  background: #eeeeff;
}

.opportunities-section::before {
  position: absolute;
  top: 12%;
  left: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 0, 128, 0.13), transparent 68%);
  content: "";
  pointer-events: none;
  animation: ambient-orbit-b 15s ease-in-out infinite;
}

.opportunities-section > .shell {
  position: relative;
  z-index: 1;
}

.opportunity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.opportunity-card {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 410px;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(26px, 3.5vw, 38px);
  border-radius: 28px;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0, rgba(255, 153, 51, 0.32), transparent 36%),
    linear-gradient(145deg, var(--navy-deep), var(--navy));
  box-shadow: 0 26px 68px rgba(0, 0, 80, 0.12);
  transform-style: preserve-3d;
  animation: opportunity-float 10s ease-in-out infinite;
}

.opportunity-card-light {
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--white);
  animation-delay: -5s;
}

.opportunity-card > span {
  color: #ffc98f;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.opportunity-card-light > span {
  color: var(--navy);
}

.opportunity-card h3 {
  margin: 22px 0 14px;
  font-size: clamp(29px, 3.5vw, 42px);
}

.opportunity-card p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.74);
}

.opportunity-card-light p {
  color: var(--muted);
}

.opportunity-card .button {
  width: 100%;
  margin-top: auto;
}

.opportunity-card small {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.5;
}

.opportunity-card-light small {
  color: var(--muted);
}

.button-secondary-dark {
  color: var(--white);
  background: var(--navy);
}

.connect-section {
  text-align: center;
}

.connect-section .section-heading {
  margin-inline: auto;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.social-grid a {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 152px;
  place-content: center;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 12px 40px rgba(0, 0, 80, 0.05);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
  transform-style: preserve-3d;
  animation: social-card-drift 8s ease-in-out infinite;
  color: inherit;
  text-decoration: none;
}

.social-grid a:nth-child(2) { animation-delay: -2s; }
.social-grid a:nth-child(3) { animation-delay: -4s; }
.social-grid a:nth-child(4) { animation-delay: -6s; }

.social-grid a::before {
  position: absolute;
  top: -46px;
  right: -42px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 153, 51, 0.2), transparent 70%);
  content: "";
  animation: card-light-drift 6s ease-in-out infinite;
}

.social-grid a:hover {
  animation: none;
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.social-grid strong {
  color: var(--navy);
  font-size: 20px;
}

.social-grid span {
  color: var(--muted);
  font-size: 12px;
}

.social-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  margin: 0 auto 7px;
  border-radius: 18px;
  box-shadow:
    0 14px 28px rgba(0, 0, 80, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transform-style: preserve-3d;
  animation: social-icon-float 6.5s ease-in-out infinite;
}

.social-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.social-icon-x {
  color: #ffffff !important;
  background: #0f0f13;
}

.social-icon-youtube {
  color: #ffffff !important;
  background: #ff0000;
}

.social-icon-instagram {
  color: #ffffff !important;
  background:
    radial-gradient(circle at 31% 104%, #fdf497 0 5%, #fd5949 32%, #d6249f 58%, #285aeb 92%);
}

.social-icon-facebook {
  color: #ffffff !important;
  background: #0866ff;
}

.social-icon-linkedin {
  border: 1px solid #c8dbf0;
  background: #ffffff;
}

.social-icon-linkedin img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.social-action-label {
  display: block;
}

.social-notify {
  margin-top: 22px;
  color: var(--white);
  background: var(--navy);
}

.contact-band {
  padding-block: 48px;
  color: var(--navy-deep);
  background:
    linear-gradient(
      112deg,
      #ff9933 0%,
      #ffb35f 34%,
      #ff9933 67%,
      #f18418 100%
    );
  background-size: 240% 100%;
  animation: contact-gradient 9s ease-in-out infinite;
}

.contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.contact-row h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(31px, 4vw, 48px);
  font-weight: 900;
}

.contact-row a {
  flex: 0 0 auto;
  color: var(--white);
  background: var(--navy);
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding-block: 58px 50px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 153, 51, 0.18), transparent 28%),
    linear-gradient(132deg, var(--navy-deep), var(--navy));
  perspective: 1400px;
}

.legal-hero::before,
.legal-hero::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  content: "";
  pointer-events: none;
  transform-style: preserve-3d;
}

.legal-hero::before {
  top: -230px;
  right: 7%;
  width: 460px;
  height: 460px;
  animation: legal-orbit 14s linear infinite;
}

.legal-hero::after {
  right: -80px;
  bottom: -170px;
  width: 320px;
  height: 320px;
  border-color: rgba(255, 153, 51, 0.23);
  animation: legal-orbit 10s linear infinite reverse;
}

.legal-hero > .shell {
  position: relative;
  z-index: 1;
}

.legal-hero h1 {
  max-width: 900px;
  margin-bottom: 14px;
  font-size: clamp(40px, 6vw, 64px);
  transform-style: preserve-3d;
  animation: legal-title-depth 7s ease-in-out infinite;
}

.legal-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 760px);
  gap: 42px;
  align-items: start;
  padding-block: 50px 72px;
}

.legal-nav {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 6px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(0, 0, 80, 0.08);
  transform-style: preserve-3d;
  animation: legal-nav-float 10s ease-in-out infinite;
}

.legal-nav a {
  padding: 9px 11px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.legal-nav a:hover {
  color: var(--navy);
  background: #eeeeff;
}

.legal-copy {
  min-width: 0;
}

.legal-copy section {
  scroll-margin-top: 96px;
}

.legal-copy section + section {
  margin-top: 38px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.legal-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(27px, 3.6vw, 36px);
}

.legal-copy h3 {
  margin: 24px 0 10px;
  font-size: 21px;
}

.legal-copy p,
.legal-copy li {
  color: #444862;
}

.legal-copy li + li {
  margin-top: 9px;
}

.legal-copy a {
  color: var(--navy);
  font-weight: 720;
}

.notice {
  position: relative;
  overflow: hidden;
  margin: 22px 0;
  padding: 18px 20px;
  border-left: 5px solid var(--saffron);
  border-radius: 0 16px 16px 0;
  background: #fff5e9;
}

.notice::after {
  position: absolute;
  inset: 0 auto 0 -44%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.62), transparent);
  content: "";
  pointer-events: none;
  transform: skewX(-18deg);
  animation: notice-light 7s ease-in-out infinite;
}

.notice strong {
  display: block;
  margin-bottom: 6px;
}

.step-list {
  display: grid;
  gap: 14px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.step-list li {
  position: relative;
  min-height: 58px;
  padding: 15px 18px 15px 62px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  counter-increment: steps;
  box-shadow: 0 10px 28px rgba(0, 0, 80, 0.04);
  transform-style: preserve-3d;
  animation: step-card-float 9s ease-in-out infinite;
}

.step-list li:nth-child(2) { animation-delay: -3s; }
.step-list li:nth-child(3) { animation-delay: -6s; }

.step-list li::before {
  position: absolute;
  top: 14px;
  left: 15px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 11px;
  color: var(--white);
  background: var(--navy);
  content: counter(steps);
  font-size: 12px;
  font-weight: 850;
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.68);
  background: #05052f;
}

.site-footer::before {
  position: absolute;
  top: -190px;
  left: 20%;
  width: 420px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 153, 51, 0.12), transparent 68%);
  content: "";
  pointer-events: none;
  animation: footer-aura 12s ease-in-out infinite;
}

.footer-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  min-height: 94px;
}

.footer-row nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
}

.footer-row a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 680;
  text-decoration: none;
}

.footer-row p {
  margin: 0;
  font-size: 12px;
}

@keyframes header-arrive {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes header-light-pass {
  0%,
  44% {
    transform: translate3d(-42%, 0, 0) rotateX(5deg);
  }
  72%,
  100% {
    transform: translate3d(48%, 0, 32px) rotateX(-5deg);
  }
}

@keyframes nav-cluster-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotateX(0deg);
  }
  50% {
    transform: translate3d(0, -3px, 18px) rotateX(-1deg);
  }
}

@keyframes nav-link-sweep {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes brand-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotateX(0deg) rotateY(-1deg);
  }
  50% {
    transform: translate3d(0, -3px, 22px) rotateX(2deg) rotateY(2deg);
  }
}

@keyframes brand-word-depth {
  0%,
  100% {
    transform: translateZ(8px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: translateZ(30px) rotateX(-2deg) rotateY(3deg);
  }
}

@keyframes brand-line-flow {
  0%,
  100% {
    background-position: 0% 50%;
    transform: translateZ(12px) scaleX(0.96);
  }
  50% {
    background-position: 100% 50%;
    transform: translateZ(30px) scaleX(1);
  }
}

@keyframes brand-aura {
  0%,
  100% {
    opacity: 0.35;
    transform: translate3d(-5px, 4px, -10px) scale(0.9);
  }
  50% {
    opacity: 0.82;
    transform: translate3d(8px, -5px, 18px) scale(1.16);
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes card-arrive {
  from {
    opacity: 0;
    transform: translateY(34px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes soft-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes grid-drift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 52px 52px;
  }
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(34px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes universe-spin-one {
  from {
    transform: rotateX(68deg) rotateZ(0deg);
  }
  to {
    transform: rotateX(68deg) rotateZ(360deg);
  }
}

@keyframes universe-spin-two {
  from {
    transform: rotateY(67deg) rotateZ(0deg);
  }
  to {
    transform: rotateY(67deg) rotateZ(360deg);
  }
}

@keyframes universe-spin-three {
  from {
    transform: rotateX(58deg) rotateY(28deg) rotateZ(0deg);
  }
  to {
    transform: rotateX(58deg) rotateY(28deg) rotateZ(360deg);
  }
}

@keyframes core-tilt {
  0%,
  100% {
    transform: rotateX(4deg) rotateY(-7deg) translateZ(18px);
  }
  50% {
    transform: rotateX(-3deg) rotateY(7deg) translateZ(30px);
  }
}

@keyframes node-breathe {
  0%,
  100% {
    transform: translate3d(0, 0, 18px) scale(1);
  }
  50% {
    transform: translate3d(0, -5px, 32px) scale(1.04);
  }
}

@keyframes pulse-orbit {
  from {
    transform: rotate(0deg) translateX(var(--orbit-radius)) rotate(0deg) translateZ(38px);
  }
  to {
    transform: rotate(360deg) translateX(var(--orbit-radius)) rotate(-360deg) translateZ(38px);
  }
}

@keyframes universe-card-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotateX(0deg) rotateY(-1deg);
  }
  50% {
    transform: translate3d(0, -12px, 24px) rotateX(1.5deg) rotateY(1.6deg);
  }
}

@keyframes universe-scene-drift {
  0%,
  100% {
    transform: rotateX(0deg) rotateY(0deg) translateZ(0);
  }
  50% {
    transform: rotateX(1.8deg) rotateY(-2.2deg) translateZ(16px);
  }
}

@keyframes universe-colour-shift {
  0%,
  100% {
    background-position: 20% 45%, 50% 50%, 0 0;
  }
  33% {
    background-position: 80% 20%, 65% 38%, 0 0;
  }
  66% {
    background-position: 45% 80%, 35% 62%, 0 0;
  }
}

@keyframes ring-spectrum {
  0%,
  100% {
    border-color: rgba(255, 153, 51, 0.48);
    box-shadow: 0 0 20px rgba(255, 153, 51, 0.1);
  }
  35% {
    border-color: rgba(255, 255, 255, 0.46);
    box-shadow: 0 0 28px rgba(255, 255, 255, 0.12);
  }
  70% {
    border-color: rgba(19, 136, 8, 0.52);
    box-shadow: 0 0 24px rgba(19, 136, 8, 0.12);
  }
}

@keyframes node-spectrum {
  0%,
  100% {
    border-color: rgba(255, 153, 51, 0.34);
    box-shadow: 0 13px 30px rgba(0, 0, 35, 0.3);
  }
  50% {
    border-color: rgba(19, 136, 8, 0.42);
    box-shadow:
      0 16px 36px rgba(0, 0, 35, 0.38),
      0 0 22px rgba(19, 136, 8, 0.12);
  }
}

@keyframes tricolour-sweep {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes showcase-set-cycle {
  0%,
  40% {
    opacity: 1;
    transform: none;
  }
  50%,
  90% {
    opacity: 0;
    transform: none;
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes showcase-phone-center {
  0%,
  100% {
    transform: translate3d(0, 2px, 46px) rotateX(1deg) rotateY(-4deg);
  }
  50% {
    transform: translate3d(0, -5px, 54px) rotateX(-1deg) rotateY(4deg);
  }
}

@keyframes showcase-side-left {
  0%,
  100% {
    transform: translate3d(0, 3px, 18px) rotateX(1deg) rotateY(15deg) rotateZ(-1deg);
  }
  50% {
    transform: translate3d(5px, -3px, 22px) rotateX(-1deg) rotateY(10deg) rotateZ(0.5deg);
  }
}

@keyframes showcase-side-right {
  0%,
  100% {
    transform: translate3d(0, 3px, 18px) rotateX(1deg) rotateY(-15deg) rotateZ(1deg);
  }
  50% {
    transform: translate3d(-5px, -3px, 22px) rotateX(-1deg) rotateY(-10deg) rotateZ(-0.5deg);
  }
}

@keyframes countdown-cell-depth {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotateX(0deg);
  }
  50% {
    transform: translate3d(0, -3px, 16px) rotateX(-1.5deg);
  }
}

@keyframes showcase-halo-spin {
  from {
    transform: rotateZ(0deg) rotateX(58deg);
  }
  to {
    transform: rotateZ(360deg) rotateX(58deg);
  }
}

@keyframes showcase-orbit-turn {
  from {
    transform: rotateX(68deg) rotateZ(-8deg);
  }
  to {
    transform: rotateX(68deg) rotateZ(352deg);
  }
}

@keyframes showcase-colour-field {
  from {
    transform: rotate(0deg) scale(0.92);
  }
  to {
    transform: rotate(360deg) scale(1.08);
  }
}

@keyframes showcase-ribbon-sweep {
  0%,
  100% {
    transform: rotate(-18deg) translate3d(-9%, -25px, 0);
  }
  50% {
    transform: rotate(-12deg) translate3d(9%, 190px, 44px);
  }
}

@keyframes screen-glint {
  0%,
  30% {
    transform: translateX(-140%);
  }
  58%,
  100% {
    transform: translateX(150%);
  }
}

@keyframes preview-screen-breathe {
  0%,
  100% {
    filter: brightness(1);
    transform: translateZ(12px);
  }
  50% {
    filter: brightness(1.045) saturate(1.025);
    transform: translateZ(18px);
  }
}

@keyframes ambient-orbit-a {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(0.9);
  }
  50% {
    transform: translate3d(-72px, 82px, 40px) scale(1.16);
  }
}

@keyframes ambient-orbit-b {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(90px, -58px, 30px) scale(1.14);
  }
}

@keyframes surface-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotateX(0deg) rotateY(-0.8deg);
  }
  50% {
    transform: translate3d(0, -8px, 18px) rotateX(1deg) rotateY(0.8deg);
  }
}

@keyframes card-light-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(0.88);
  }
  50% {
    transform: translate3d(-34px, 32px, 0) scale(1.18);
  }
}

@keyframes dark-ring-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotateX(58deg) rotateY(0deg);
  }
  50% {
    transform: translate3d(-52px, 46px, 60px) rotateX(70deg) rotateY(28deg);
  }
}

@keyframes panel-depth {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotateX(0deg);
    box-shadow: 0 22px 64px rgba(0, 0, 80, 0.12);
  }
  50% {
    transform: translate3d(0, -7px, 22px) rotateX(0.8deg);
    box-shadow: 0 34px 82px rgba(0, 0, 80, 0.2);
  }
}

@keyframes panel-light {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(0.9);
  }
  50% {
    transform: translate3d(-100px, 80px, 30px) scale(1.2);
  }
}

@keyframes opportunity-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotateY(-0.7deg);
  }
  50% {
    transform: translate3d(0, -9px, 20px) rotateY(0.7deg);
  }
}

@keyframes social-card-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotateY(-0.6deg);
  }
  50% {
    transform: translate3d(0, -7px, 18px) rotateY(0.6deg);
  }
}

@keyframes social-icon-float {
  0%,
  100% {
    transform: translate3d(0, 0, 12px) rotateX(0deg) rotateY(-3deg);
  }
  50% {
    transform: translate3d(0, -6px, 32px) rotateX(-4deg) rotateY(4deg);
  }
}

@keyframes button-glint {
  0%,
  58% {
    transform: translateX(0) rotate(18deg);
  }
  82%,
  100% {
    transform: translateX(560%) rotate(18deg);
  }
}

@keyframes contact-gradient {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes legal-orbit {
  from {
    transform: rotateX(64deg) rotateY(8deg) rotateZ(0deg) translateZ(10px);
  }
  to {
    transform: rotateX(64deg) rotateY(8deg) rotateZ(360deg) translateZ(48px);
  }
}

@keyframes legal-title-depth {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotateX(0deg);
    text-shadow: 0 16px 40px rgba(0, 0, 20, 0.18);
  }
  50% {
    transform: translate3d(0, -4px, 28px) rotateX(-1deg);
    text-shadow: 0 24px 52px rgba(0, 0, 20, 0.32);
  }
}

@keyframes legal-nav-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotateY(0deg);
  }
  50% {
    transform: translate3d(0, -6px, 20px) rotateY(1deg);
  }
}

@keyframes notice-light {
  0%,
  56% {
    transform: translateX(0) skewX(-18deg);
  }
  82%,
  100% {
    transform: translateX(520%) skewX(-18deg);
  }
}

@keyframes step-card-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotateX(0deg);
  }
  50% {
    transform: translate3d(0, -4px, 12px) rotateX(0.6deg);
  }
}

@keyframes footer-aura {
  0%,
  100% {
    transform: translate3d(-30px, 0, 0) scale(0.9);
  }
  50% {
    transform: translate3d(180px, 18px, 28px) scale(1.22);
  }
}

@keyframes app-tap-tour {
  0%,
  7% {
    top: 14%;
    left: 20%;
    opacity: 0;
  }
  12%,
  24% {
    top: 14%;
    left: 20%;
    opacity: 1;
  }
  36%,
  48% {
    top: 38%;
    left: 76%;
    opacity: 1;
  }
  60%,
  72% {
    top: 64%;
    left: 30%;
    opacity: 1;
  }
  84%,
  93% {
    top: 84%;
    left: 70%;
    opacity: 1;
  }
  100% {
    top: 84%;
    left: 70%;
    opacity: 0;
  }
}

@keyframes tap-ring {
  from {
    opacity: 0.84;
    transform: scale(0.55);
  }
  to {
    opacity: 0;
    transform: scale(1.8);
  }
}

@supports (animation-timeline: view()) {
  .section-heading,
  .contact-row {
    animation: reveal-up linear both;
    animation-timeline: view();
    animation-range: entry 8% cover 30%;
  }
}

@media (min-width: 1440px) {
  .shell {
    width: min(1240px, calc(100% - 64px));
  }

  .showcase-stage {
    min-height: 590px;
  }
}

@media (max-width: 1180px) {
  .showcase-layout {
    grid-template-columns: minmax(250px, 0.68fr) minmax(480px, 1.32fr);
    gap: clamp(32px, 5vw, 60px);
  }

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

@media (max-width: 840px) {
  .hero-content,
  .legal-layout,
  .launch-panel,
  .launch-date-card,
  .showcase-layout {
    grid-template-columns: 1fr;
  }

  .action-universe {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .hero-content {
    gap: 24px;
    padding-block: 22px 38px;
  }

  .hero-showcase {
    order: -1;
    min-height: min(64svh, 570px);
    width: min(100%, 720px);
    margin-inline: auto;
  }

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

  .showcase-stage {
    width: min(100%, 690px);
    margin-inline: auto;
  }

  .social-grid a:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .legal-nav {
    position: static;
    grid-template-columns: 1fr 1fr;
  }

  .contact-row {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer-row {
    grid-template-columns: 1fr;
    padding-block: 30px;
    text-align: center;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(100% - 28px, 1120px);
  }

  .header-row {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 9px;
    padding-block: 12px;
  }

  .primary-nav {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 2px;
    scrollbar-width: none;
  }

  .primary-nav::-webkit-scrollbar {
    display: none;
  }

  .primary-nav a {
    flex: 0 0 auto;
    min-height: 36px;
    padding: 8px 11px;
    font-size: 11px;
  }

  .hero-content {
    padding-block: 18px 42px;
  }

  .universe-scene {
    min-height: 360px;
  }

  .universe-ring-one {
    width: 286px;
    height: 286px;
    margin: -143px 0 0 -143px;
  }

  .universe-ring-two {
    width: 224px;
    height: 224px;
    margin: -112px 0 0 -112px;
  }

  .universe-pulse {
    --orbit-radius: 128px;
  }

  .universe-node {
    min-width: 54px;
    min-height: 34px;
    padding-inline: 9px;
    font-size: 9px;
  }

  .universe-node-earn { left: 80%; }
  .universe-node-work { left: 2%; }

  .system-grid,
  .value-grid,
  .principles-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    grid-template-columns: 1fr 1fr;
  }

  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .showcase-stage {
    min-height: 560px;
    border-radius: 30px;
  }

  .hero-showcase {
    min-height: min(64svh, 540px);
  }

  .launch-countdown {
    max-width: none;
  }

  .showcase-set {
    inset: 24px 8px 48px;
  }

  .showcase-phone-left,
  .showcase-phone-right {
    width: min(33%, 170px);
  }

  .showcase-phone-center {
    width: min(43%, 218px);
  }

  .showcase-phone-left {
    left: 0;
  }

  .showcase-phone-right {
    right: 0;
  }

  .showcase-phone-card figcaption {
    font-size: 8px;
  }

  .social-grid a:last-child {
    grid-column: auto;
  }

  .launch-roadmap::before {
    display: none;
  }

  .launch-roadmap li {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .launch-roadmap li > span {
    min-height: 0;
    justify-self: start;
    padding: 7px 10px;
  }
}

@media (max-width: 420px) {
  .shell {
    width: min(100% - 22px, 1180px);
  }

  .header-row {
    min-height: 94px;
  }

  .brand strong {
    font-size: 25px;
  }

  .hero-content {
    gap: 22px;
    padding-block: 14px 42px;
  }

  h1 {
    font-size: clamp(43px, 13.5vw, 58px);
  }

  .section {
    padding-block: 46px;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section-heading h2 {
    font-size: clamp(34px, 10.5vw, 45px);
  }

  .universe-scene {
    min-height: 330px;
  }

  .universe-core {
    width: 128px;
    min-height: 128px;
    margin: -64px 0 0 -64px;
  }

  .universe-ring-one {
    width: 258px;
    height: 258px;
    margin: -129px 0 0 -129px;
  }

  .universe-ring-two {
    width: 204px;
    height: 204px;
    margin: -102px 0 0 -102px;
  }

  .universe-ring-three {
    width: 156px;
    height: 156px;
    margin: -78px 0 0 -78px;
  }

  .universe-pulse {
    --orbit-radius: 114px;
  }

  .universe-pulse-two {
    --orbit-radius: 88px;
  }

  .universe-pulse-three {
    --orbit-radius: 62px;
  }

  .universe-node {
    min-width: 48px;
    min-height: 30px;
    padding-inline: 7px;
    font-size: 8px;
  }

  .showcase-stage {
    min-height: 480px;
  }

  .hero-showcase {
    min-height: min(60svh, 500px);
  }

  .showcase-set {
    inset: 18px 4px 42px;
  }

  .showcase-phone-left,
  .showcase-phone-right {
    width: 35%;
  }

  .showcase-phone-center {
    width: 46%;
  }

  .showcase-phone-card figcaption {
    top: calc(100% + 8px);
    max-width: 120%;
    padding: 6px 8px;
    font-size: 7px;
    letter-spacing: 0.04em;
  }

  .countdown-grid {
    gap: 6px;
  }

  .countdown-grid > span {
    min-height: 62px;
    border-radius: 13px;
  }

  .countdown-grid strong {
    font-size: 22px;
  }

  .launch-countdown > p {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .launch-date-card .actions {
    justify-content: flex-start;
  }

}

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

  .section-heading,
  .contact-row {
    opacity: 1;
    transform: none;
    animation: none !important;
  }

  .hero::after { animation-duration: 28s; }
  .action-universe {
    animation-duration: 1.2s, 14s;
  }
  .universe-scene,
  .value-card,
  .principle-card,
  .launch-panel,
  .opportunity-card,
  .social-grid a {
    animation-duration: 14s;
  }
  .universe-ring-one { animation-duration: 21s; }
  .universe-ring-two { animation-duration: 18s; }
  .universe-ring-three { animation-duration: 15s; }
  .universe-core { animation-duration: 11s; }
  .universe-node { animation-duration: 8s; }
  .universe-pulse { animation-duration: 11s; }
  .showcase-set { animation-duration: 24s; }
  .showcase-set-two { animation-delay: -12s; }
  .showcase-phone-center,
  .showcase-phone-left,
  .showcase-phone-right { animation-duration: 10s; }
  .showcase-halo { animation-duration: 19s; }
  .showcase-orbit { animation-duration: 16s; }
  .showcase-ribbon { animation-duration: 14s; }
  .countdown-grid > span { animation-duration: 14s; }
  .primary-nav { animation-duration: 13s; }
  .showcase-phone img { animation-duration: 12s; }
  .motion-tap { animation-duration: 10s; }
  .motion-tap::after { animation-duration: 2s; }
  .social-icon { animation-duration: 12s; }
  .brand,
  .brand strong,
  .brand span,
  .brand::before,
  .legal-hero h1,
  .legal-nav,
  .step-list li {
    animation-duration: 13s;
  }
  .legal-hero::before,
  .legal-hero::after,
  .site-footer::before {
    animation-duration: 20s;
  }
}
