:root {
  color-scheme: light;
  --ink: #111920;
  --graphite: #18242c;
  --muted: #6f6b5e;
  --paper: #f6efd9;
  --paper-2: #fbf8ed;
  --panel: #ffffff;
  --line: #dfd3ad;
  --gold: #d7ad35;
  --gold-2: #f3dc82;
  --gold-dark: #8f6816;
  --bronze: #b98325;
  --teal: #0d6f73;
  --green: #386b4a;
  --blue: #1f4f73;
  --shadow: 0 24px 70px rgba(43, 34, 10, 0.18);
  --glass: rgba(255, 250, 238, 0.18);
  --glass-strong: rgba(255, 250, 238, 0.74);
  --glass-dark: rgba(17, 25, 32, 0.62);
  --glass-border: rgba(255, 232, 142, 0.32);
  --glow: 0 0 0 1px rgba(255, 232, 142, 0.26), 0 24px 80px rgba(73, 52, 12, 0.22);
  --metal: linear-gradient(135deg, #fff8da 0%, #c39127 19%, #ffe991 38%, #8a6215 56%, #e8c85c 78%, #fffaf0 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(215, 173, 53, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(215, 173, 53, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 12% 8%, rgba(255, 233, 145, 0.42), transparent 26%),
    linear-gradient(180deg, #fffaf0 0%, var(--paper) 42%, #f8f0d9 100%);
  background-attachment: fixed;
  background-size: 96px 96px, 96px 96px, auto, auto;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

.ambient-stage {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.ambient-line {
  position: absolute;
  left: -10vw;
  width: 120vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(215, 173, 53, 0.24), transparent);
  transform-origin: center;
  animation: driftLine 18s linear infinite;
}

.line-a {
  top: 22vh;
  transform: rotate(-12deg);
}

.line-b {
  top: 54vh;
  transform: rotate(9deg);
  animation-duration: 24s;
}

.line-c {
  top: 78vh;
  transform: rotate(-5deg);
  animation-duration: 28s;
}

.ambient-scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.12) 48%, transparent 58%);
  opacity: 0;
  transform: translateX(-120%);
  animation: pageSweep 9s ease-in-out infinite;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(223, 211, 173, 0.95);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(251, 248, 237, 0.58)),
    rgba(255, 255, 255, 0.52);
  box-shadow: 0 10px 34px rgba(42, 34, 11, 0.08);
  backdrop-filter: blur(22px) saturate(1.35);
  transition: box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
}

.site-header.scrolled {
  border-color: rgba(215, 173, 53, 0.32);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(251, 248, 237, 0.68)),
    rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 48px rgba(42, 34, 11, 0.16);
}

.brand {
  display: flex;
  min-width: 250px;
  align-items: center;
  gap: 14px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border-radius: 14px;
  background: radial-gradient(circle at 35% 25%, #fff4bd, #bc8a21 52%, #5d430e);
  box-shadow: 0 12px 26px rgba(143, 104, 22, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.brand-mark::after {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.74), transparent);
  content: "";
  mix-blend-mode: screen;
  transform: translateX(-86%);
  animation: brandSweep 3.8s ease-in-out infinite;
}

.brand img {
  position: relative;
  z-index: 1;
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand strong {
  display: block;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #3f3a2d;
  font-size: 0.94rem;
  font-weight: 850;
}

.main-nav a {
  position: relative;
  padding: 10px 13px;
  border-radius: 6px;
  overflow: hidden;
}

.main-nav a:hover {
  background: rgba(215, 173, 53, 0.15);
}

.main-nav a::after {
  position: absolute;
  right: 12px;
  bottom: 6px;
  left: 12px;
  height: 1px;
  background: var(--metal);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  color: #16130b !important;
  background: var(--metal);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65), 0 10px 20px rgba(143, 104, 22, 0.18);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  display: block;
  min-height: min(720px, calc(92vh - 72px));
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(17, 25, 32, 0.94), rgba(17, 25, 32, 0.82) 48%, rgba(17, 25, 32, 0.35)),
    radial-gradient(circle at 18% 20%, rgba(255, 222, 110, 0.25), transparent 34%),
    #111920;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(115deg, transparent 8%, rgba(255, 255, 255, 0.1) 26%, transparent 42%),
    radial-gradient(ellipse at 70% 45%, rgba(255, 232, 142, 0.16), transparent 34%);
  content: "";
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(215, 173, 53, 0.12) 1px, transparent 1px),
    linear-gradient(0deg, rgba(215, 173, 53, 0.08) 1px, transparent 1px);
  background-size: 78px 78px;
  content: "";
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.55), transparent 78%);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  filter: saturate(0.86) contrast(1.08);
  transform: scale(1.02);
  animation: heroBreath 16s ease-in-out infinite alternate;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
  padding: clamp(28px, 3.5vw, 44px) clamp(22px, 5vw, 72px);
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  max-width: 100%;
  overflow-wrap: break-word;
}

h1 {
  max-width: 660px;
  margin-bottom: 14px;
  font-size: clamp(2.35rem, 4.15vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  max-width: 820px;
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.18;
}

.hero-copy {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.45;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 0;
  border-radius: 6px;
  font-weight: 900;
  cursor: pointer;
}

.button.primary {
  position: relative;
  overflow: hidden;
  color: #171309;
  background: var(--metal);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 16px 28px rgba(143, 104, 22, 0.24);
}

.button.primary::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.58), transparent);
  content: "";
  transform: translateX(-120%);
  transition: transform 420ms ease;
}

.button.primary:hover::after {
  transform: translateX(120%);
}

.button.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: 100%;
  max-width: 660px;
  margin: 16px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.11);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px) saturate(1.25);
}

.hero-stats div {
  min-width: 0;
  padding: 15px;
}

.hero-stats dt {
  color: #ffe88e;
  font-size: 1.55rem;
  font-weight: 950;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.platform-preview {
  position: absolute;
  right: clamp(18px, 4vw, 62px);
  bottom: 38px;
  z-index: 2;
  display: grid;
  grid-template-columns: 170px minmax(310px, 1fr);
  width: min(660px, 48vw);
  min-height: 300px;
  overflow: hidden;
  border: 1px solid rgba(255, 234, 160, 0.38);
  border-radius: 18px;
  background: rgba(255, 250, 238, 0.78);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px) saturate(1.18);
  transform: perspective(900px) rotateY(-7deg) rotateX(2deg);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.preview-sidebar {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(215, 173, 53, 0.96), rgba(151, 106, 21, 0.9)),
    url("assets/premium-hero-network.png") center / cover;
  box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.18);
}

.preview-sidebar img {
  width: 50px;
  height: 50px;
}

.preview-sidebar span {
  margin-bottom: 8px;
  font-weight: 950;
}

.preview-sidebar b {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
}

.preview-main {
  padding: 14px;
  background: rgba(250, 244, 223, 0.72);
  backdrop-filter: blur(16px);
}

.preview-toolbar {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 14px;
}

.preview-toolbar span {
  flex: 1;
  min-height: 34px;
  padding: 9px 12px;
  color: #918b7b;
  border: 1px solid #ddd2b0;
  border-radius: 6px;
  background: #fff;
  font-size: 0.78rem;
}

.preview-toolbar button {
  min-height: 34px;
  padding: 0 10px;
  color: #1e1a10;
  border: 0;
  border-radius: 6px;
  background: var(--metal);
  font-weight: 850;
}

.preview-title {
  margin-bottom: 10px;
  color: #6c6554;
  font-size: 1.25rem;
  font-weight: 850;
}

.preview-table {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid #dbc98f;
  border-radius: 8px;
  background: #fff;
}

.preview-table div {
  min-height: 52px;
  padding: 10px;
  border-right: 1px solid #e5d8ad;
  border-bottom: 1px solid #efe4c0;
  font-size: 0.72rem;
  font-weight: 850;
}

.preview-table div:nth-child(-n + 4) {
  color: #16130b;
  background: linear-gradient(180deg, #d9b233, #c99f27);
  text-transform: uppercase;
}

section:not(.hero) {
  position: relative;
  padding: clamp(64px, 9vw, 116px) clamp(18px, 4vw, 56px);
}

.crystal-section {
  overflow: hidden;
}

.crystal-section::before {
  position: absolute;
  inset: 22px clamp(12px, 2vw, 28px);
  z-index: -1;
  border: 1px solid rgba(255, 232, 142, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 250, 238, 0.06)),
    rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34);
  content: "";
  backdrop-filter: blur(18px);
}

.crystal-section::after {
  position: absolute;
  top: 28px;
  right: 7vw;
  width: min(360px, 34vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(215, 173, 53, 0.42), transparent);
  content: "";
}

.section-heading {
  width: min(100%, 960px);
  max-width: 960px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.wide {
  max-width: 1060px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.section-heading {
  position: relative;
  z-index: 1;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(18px, 4vw, 56px) !important;
  border-top: 1px solid rgba(255, 232, 142, 0.28);
  border-bottom: 1px solid rgba(223, 211, 173, 0.74);
  background:
    linear-gradient(135deg, rgba(17, 25, 32, 0.96), rgba(52, 40, 17, 0.94)),
    #111920;
}

.trust-item {
  min-height: 112px;
  padding: 24px clamp(18px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.74);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 250, 238, 0.02)),
    rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(18px);
}

.trust-item strong {
  display: block;
  margin-bottom: 8px;
  color: #ffe58b;
  font-size: 1rem;
}

.trust-item span {
  display: block;
  max-width: 340px;
  line-height: 1.5;
}

.orientation-grid,
.money-grid,
.membership-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.orientation-grid article,
.money-grid article,
.membership-grid article {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(255, 232, 142, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 250, 238, 0.28)),
    rgba(255, 255, 255, 0.2);
  box-shadow: var(--glow), inset 0 1px 0 rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(20px) saturate(1.2);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.orientation-grid article {
  animation: cardFloat 6.8s ease-in-out infinite;
}

.orientation-grid article:nth-child(2) {
  animation-delay: 0.45s;
}

.orientation-grid article:nth-child(3) {
  animation-delay: 0.9s;
}

.orientation-grid article::before,
.money-grid article::before,
.membership-grid article::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--metal);
  content: "";
}

.orientation-grid article::after,
.money-grid article::after,
.membership-grid article::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  content: "";
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.orientation-grid article .system-icon {
  position: relative;
  overflow: hidden;
}

.orientation-grid article .system-icon::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.68), transparent);
  content: "";
  transform: translateX(-120%);
  animation: iconSweep 4.6s ease-in-out infinite;
}

.orientation-grid article:nth-child(2) .system-icon::after {
  animation-delay: 0.6s;
}

.orientation-grid article:nth-child(3) .system-icon::after {
  animation-delay: 1.2s;
}

.orientation-grid article:hover,
.money-grid article:hover,
.membership-grid article:hover {
  border-color: rgba(255, 232, 142, 0.58);
  box-shadow: 0 0 0 1px rgba(255, 232, 142, 0.38), 0 28px 90px rgba(73, 52, 12, 0.26);
  transform: translateY(-4px);
}

.orientation-grid article:hover {
  animation-play-state: paused;
}

.orientation-grid article:hover::after,
.money-grid article:hover::after,
.membership-grid article:hover::after {
  transform: translateX(120%);
}

.icon {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--teal);
  font-weight: 950;
}

.system-icon,
.money-icon {
  display: inline-grid;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  place-items: center;
  color: #171309;
  border-radius: 12px;
  background: var(--metal);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 10px 22px rgba(143, 104, 22, 0.18);
  font-size: 0.82rem;
  font-weight: 950;
}

.money-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: #171309;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.money-icon svg circle {
  fill: none;
}

.orientation-grid p,
.money-grid p,
.membership-grid p,
.timeline p,
.affiliate p {
  color: var(--muted);
  line-height: 1.7;
}

.routes,
.marketplace,
.events,
.leaders,
.levels {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(250, 244, 223, 0.2)),
    transparent;
}

.dark-crystal {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(17, 25, 32, 0.92), rgba(58, 43, 13, 0.72)),
    url("assets/people-hero-executive.png") center / cover fixed;
}

.dark-crystal .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.dark-crystal h2 {
  color: #fff;
}

.dark-crystal::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 250, 238, 0.04)),
    rgba(255, 255, 255, 0.03);
}

.route-tabs {
  justify-content: center;
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
}

.route-tab {
  min-height: 44px;
  padding: 11px 16px;
  color: #413b2d;
  border: 1px solid rgba(255, 232, 142, 0.28);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(16px);
  font-weight: 850;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.route-tab.active {
  color: #171309;
  border-color: #c5992b;
  background: var(--metal);
  box-shadow: 0 12px 24px rgba(143, 104, 22, 0.18);
}

.route-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  max-width: 1180px;
  margin: 28px auto 0;
  padding: clamp(26px, 4vw, 48px);
  overflow: hidden;
  border: 1px solid rgba(255, 232, 142, 0.32);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(246, 239, 217, 0.2)),
    rgba(255, 255, 255, 0.16);
  box-shadow: var(--glow);
  backdrop-filter: blur(22px) saturate(1.2);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.route-panel p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.72;
}

.route-panel ul,
.membership-grid ul {
  padding-left: 18px;
  color: #33434a;
  line-height: 1.8;
}

.route-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(255, 232, 142, 0.32);
  border-radius: 14px;
  box-shadow: var(--shadow);
  filter: saturate(0.94) contrast(1.06);
}

.money-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.money-grid article {
  grid-column: span 2;
  min-height: 228px;
  background:
    radial-gradient(circle at 88% 12%, rgba(215, 173, 53, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 250, 238, 0.24));
}

.money-grid article:nth-child(4),
.money-grid article:nth-child(5),
.money-grid article:nth-child(6) {
  grid-column: span 2;
}

.money-grid span {
  display: inline-flex;
  margin-top: 12px;
  color: var(--gold-dark);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.jumpup-showcase {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(255, 232, 142, 0.1) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 232, 142, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 72% 20%, rgba(215, 173, 53, 0.26), transparent 32%),
    linear-gradient(135deg, #0c1116 0%, #1a2428 46%, #191307 100%);
  background-size: 72px 72px, 72px 72px, auto, auto;
}

.jumpup-showcase::before {
  border-color: rgba(255, 232, 142, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 250, 238, 0.03)),
    rgba(255, 255, 255, 0.04);
}

.jumpup-showcase h2 {
  color: #fff;
}

.jumpup-showcase .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.jumpup-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(310px, 0.72fr);
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
  align-items: stretch;
}

.jumpup-diagram,
.jumpup-copy {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 232, 142, 0.3);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 250, 238, 0.03)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(22px) saturate(1.25);
}

.jumpup-diagram::before,
.jumpup-copy::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--metal);
  content: "";
}

.jumpup-diagram::after {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255, 232, 142, 0.18);
  transform: rotate(45deg);
  content: "";
  pointer-events: none;
}

.network-orbit {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 76%, rgba(255, 232, 142, 0.18), transparent 24%),
    radial-gradient(circle at 50% 20%, rgba(255, 250, 238, 0.08), transparent 28%),
    linear-gradient(135deg, rgba(0, 0, 0, 0.24), rgba(255, 255, 255, 0.02));
}

.orbit-line {
  position: absolute;
  z-index: 0;
  display: block;
  background: linear-gradient(90deg, transparent, rgba(255, 232, 142, 0.52), transparent);
  box-shadow: 0 0 16px rgba(215, 173, 53, 0.2);
  opacity: 0.82;
  animation: orbitGlow 4.8s ease-in-out infinite;
}

.orbit-line.horizontal {
  top: 76%;
  left: 9%;
  width: 82%;
  height: 2px;
}

.orbit-line.vertical {
  top: 13%;
  left: 50%;
  width: 2px;
  height: 63%;
  background: linear-gradient(180deg, transparent, rgba(255, 232, 142, 0.58), transparent);
}

.orbit-line.diagonal-a,
.orbit-line.diagonal-b {
  top: 48%;
  left: 20%;
  width: 60%;
  height: 2px;
  transform-origin: center;
  opacity: 0.46;
}

.orbit-line.diagonal-a {
  transform: rotate(42deg);
}

.orbit-line.diagonal-b {
  transform: rotate(-42deg);
}

.leader-node {
  position: absolute;
  top: 76%;
  left: 50%;
  z-index: 3;
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  padding: 8px;
  color: #fff;
  border: 1px solid rgba(255, 232, 142, 0.62);
  border-radius: 999px;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.22), transparent 36%),
    linear-gradient(135deg, rgba(11, 16, 20, 0.94), rgba(52, 38, 10, 0.9));
  box-shadow: 0 0 0 5px rgba(255, 232, 142, 0.06), 0 16px 36px rgba(0, 0, 0, 0.32);
  text-align: center;
  transform: translate(-50%, -50%);
}

.leader-node img {
  width: 34px;
  height: 34px;
  max-width: 34px;
  max-height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(255, 232, 142, 0.28));
}

.leader-node strong {
  font-size: 0.62rem;
  text-transform: uppercase;
}

.node {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 950;
  transform: translate(-50%, -50%);
  animation: nodePulse 3.8s ease-in-out infinite;
}

.node.direct {
  color: #171309;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: var(--metal);
  box-shadow: 0 0 14px rgba(215, 173, 53, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.node.jump {
  color: #1d252a;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: linear-gradient(135deg, #fffaf0, #cfc7b7 52%, #fff);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.node.pos-1 { top: 76%; left: 10%; animation-delay: 0s; }
.node.pos-2 { top: 76%; left: 20%; animation-delay: 0.18s; }
.node.pos-3 { top: 76%; left: 30%; animation-delay: 0.36s; }
.node.pos-4 { top: 76%; left: 40%; animation-delay: 0.54s; }
.node.pos-5 { top: 76%; left: 60%; animation-delay: 0.72s; }
.node.pos-6 { top: 76%; left: 70%; animation-delay: 0.9s; }
.node.pos-7 { top: 76%; left: 80%; animation-delay: 1.08s; }
.node.pos-8 { top: 76%; left: 90%; animation-delay: 1.26s; }
.node.pos-9 { top: 16%; left: 50%; animation-delay: 1.44s; }
.node.pos-10 { top: 30%; left: 50%; animation-delay: 1.62s; }
.node.pos-11 { top: 44%; left: 50%; animation-delay: 1.8s; }
.node.pos-12 { top: 58%; left: 50%; animation-delay: 1.98s; }

.jumpup-legend {
  position: absolute;
  right: 16px;
  bottom: 14px;
  left: 16px;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.jumpup-legend span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 232, 142, 0.2);
  border-radius: 999px;
  background: rgba(8, 12, 15, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  font-size: 0.68rem;
  font-weight: 850;
  backdrop-filter: blur(16px);
}

.jumpup-legend i {
  width: 9px;
  height: 9px;
  border-radius: 999px;
}

.jumpup-legend .gold-dot {
  background: var(--metal);
  box-shadow: 0 0 16px rgba(215, 173, 53, 0.42);
}

.jumpup-legend .pearl-dot {
  background: linear-gradient(135deg, #fffaf0, #cfc7b7 52%, #fff);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.34);
}

.jumpup-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 320px;
  padding: clamp(22px, 3vw, 34px);
}

.jumpup-copy h3 {
  max-width: 420px;
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.05;
}

.jumpup-copy p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.62;
}

.jumpup-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 14px;
}

.jumpup-metrics div {
  min-height: 78px;
  padding: 14px 12px;
  border: 1px solid rgba(255, 232, 142, 0.24);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.jumpup-metrics strong {
  display: block;
  color: #ffe98c;
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  line-height: 1;
}

.jumpup-metrics span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.28;
}

.jumpup-note {
  margin: 0;
  padding: 11px 13px;
  border: 1px solid rgba(255, 232, 142, 0.22);
  border-radius: 10px;
  background: rgba(255, 232, 142, 0.08);
  font-size: 0.78rem;
}

.leader-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1fr);
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.leader-card {
  position: relative;
  min-height: 460px;
  padding: clamp(26px, 4vw, 42px);
  overflow: hidden;
  color: #fff;
  border: 1px solid rgba(255, 232, 142, 0.3);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(17, 25, 32, 0.92), rgba(29, 64, 78, 0.76)),
    url("assets/people-franchise-boardroom.png") center / cover;
  box-shadow: 0 28px 90px rgba(42, 34, 11, 0.22);
}

.leader-card::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 232, 142, 0.11) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 232, 142, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.46));
  background-size: 62px 62px, 62px 62px, auto;
  content: "";
  pointer-events: none;
}

.leader-card > * {
  position: relative;
  z-index: 1;
}

.leader-badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  color: #171309;
  border-radius: 999px;
  background: var(--metal);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.leader-card p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.72;
}

.mini-network {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.mini-network span {
  display: grid;
  min-height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  font-weight: 950;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32), 0 14px 32px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.mini-network .direct {
  color: #171309;
  background: var(--metal);
}

.mini-network .jump {
  color: #26313a;
  background: linear-gradient(135deg, #fffaf0, #d9d2c1 52%, #f5efdf);
}

.leader-points {
  display: grid;
  gap: 18px;
}

.leader-points article {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(255, 232, 142, 0.34);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 8%, rgba(215, 173, 53, 0.16), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 250, 238, 0.24));
  box-shadow: var(--glow), inset 0 1px 0 rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(20px) saturate(1.2);
}

.leader-points article::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--metal);
  content: "";
}

.leader-points p {
  color: var(--muted);
  line-height: 1.7;
}

.world-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-auto-rows: minmax(260px, auto);
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.world-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid rgba(255, 232, 142, 0.24);
  border-radius: 18px;
  background: #111920;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
  transform-style: preserve-3d;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.world-card.large {
  grid-row: span 2;
}

.world-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  opacity: 0.76;
  filter: saturate(0.9) contrast(1.08);
  transition: transform 220ms ease, opacity 220ms ease;
}

.world-card:hover img {
  transform: scale(1.04);
  opacity: 0.55;
}

.world-card:hover {
  border-color: rgba(255, 232, 142, 0.56);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.36), 0 0 0 1px rgba(255, 232, 142, 0.18);
}

.world-card div {
  position: absolute;
  inset: auto 0 0;
  padding: 26px;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.86));
  backdrop-filter: blur(3px);
}

.world-card span {
  display: block;
  margin-bottom: 8px;
  color: #ffe38a;
  font-weight: 950;
  text-transform: uppercase;
}

.membership-grid article {
  position: relative;
}

.membership-grid .featured {
  color: #fff;
  border-color: transparent;
  background:
    radial-gradient(circle at 86% 8%, rgba(255, 232, 142, 0.22), transparent 34%),
    linear-gradient(145deg, rgba(17, 25, 32, 0.9), rgba(31, 79, 115, 0.7));
  transform: translateY(-14px);
}

.membership-grid .featured p,
.membership-grid .featured ul {
  color: rgba(255, 255, 255, 0.82);
}

.level-ladder {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1px;
  max-width: 1240px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(215, 173, 53, 0.36);
  border-radius: 14px;
  background: rgba(215, 173, 53, 0.36);
  box-shadow: var(--shadow);
}

.level-ladder article {
  position: relative;
  min-height: 265px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 250, 238, 0.32)),
    rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
}

.level-ladder article:nth-child(4),
.level-ladder article:nth-child(5),
.level-ladder article:nth-child(6),
.level-ladder article:nth-child(7) {
  color: #fff;
  background:
    radial-gradient(circle at 70% 8%, rgba(255, 232, 142, 0.22), transparent 38%),
    linear-gradient(160deg, rgba(17, 25, 32, 0.94), rgba(52, 40, 17, 0.84));
}

.level-ladder span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  color: #171309;
  border-radius: 50%;
  background: var(--metal);
  font-weight: 950;
}

.level-ladder h3 {
  font-size: 1rem;
}

.level-ladder p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.level-ladder article:nth-child(n + 4) p {
  color: rgba(255, 255, 255, 0.76);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 1180px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.timeline article {
  position: relative;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 249, 232, 0.36)),
    rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(18px);
}

.timeline time {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold-dark);
  font-weight: 950;
}

.affiliate {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: center;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(17, 25, 32, 0.92), rgba(93, 67, 14, 0.72)),
    url("assets/people-mentors-network.png") center / cover;
}

.affiliate::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 82px 82px;
  content: "";
  pointer-events: none;
}

.affiliate > * {
  position: relative;
  z-index: 1;
}

.affiliate h2 {
  max-width: 760px;
}

.affiliate p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 234, 160, 0.42);
  border-radius: 18px;
  background: rgba(255, 250, 238, 0.16);
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(22px) saturate(1.2);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 800;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  color: var(--ink);
  border: 0;
  border-radius: 6px;
  background: #fff;
  font: inherit;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 34px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(135deg, rgba(17, 25, 32, 0.98), rgba(33, 26, 12, 0.98)),
    #11181c;
}

.site-footer > div {
  max-width: 520px;
}

.site-footer img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.prototype-credit {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.soamin-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-left: 4px;
  padding: 2px 8px;
  overflow: hidden;
  color: #fff7d2 !important;
  border: 1px solid rgba(255, 232, 142, 0.32);
  border-radius: 6px;
  background:
    linear-gradient(115deg, rgba(255, 248, 218, 0.16), rgba(215, 173, 53, 0.34), rgba(255, 250, 238, 0.08)),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    0 0 0 1px rgba(255, 232, 142, 0.08),
    0 0 18px rgba(215, 173, 53, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  text-shadow: 0 0 12px rgba(255, 232, 142, 0.56);
}

.soamin-link::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.82) 45%, transparent 72%);
  content: "";
  transform: translateX(-130%);
  animation: soaminSweep 3.6s ease-in-out infinite;
}

.soamin-link::after {
  position: absolute;
  top: 5px;
  right: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff7bf;
  box-shadow:
    -34px 10px 0 -1px rgba(255, 232, 142, 0.8),
    0 0 12px 3px rgba(255, 232, 142, 0.56),
    -34px 10px 10px 1px rgba(255, 232, 142, 0.3);
  content: "";
  opacity: 0;
  animation: soaminSpark 3.6s ease-in-out infinite;
}

.soamin-link:hover {
  color: #fff !important;
  border-color: rgba(255, 232, 142, 0.58);
  box-shadow:
    0 0 0 1px rgba(255, 232, 142, 0.18),
    0 0 28px rgba(215, 173, 53, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-end;
  gap: 10px;
}

.site-footer a {
  padding: 8px 10px;
  color: #fff;
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-tilt-card] {
  will-change: transform;
}

@keyframes brandSweep {
  0% {
    opacity: 0;
    transform: translateX(-86%);
  }

  34%,
  58% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(86%);
  }
}

@keyframes driftLine {
  0% {
    opacity: 0;
    translate: -12vw 0;
  }

  18%,
  72% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    translate: 12vw 0;
  }
}

@keyframes pageSweep {
  0%,
  72% {
    opacity: 0;
    transform: translateX(-120%);
  }

  82% {
    opacity: 0.5;
  }

  100% {
    opacity: 0;
    transform: translateX(120%);
  }
}

@keyframes heroBreath {
  from {
    transform: scale(1.02);
  }

  to {
    transform: scale(1.08);
  }
}

@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes iconSweep {
  0%,
  52% {
    opacity: 0;
    transform: translateX(-120%);
  }

  66% {
    opacity: 1;
  }

  86%,
  100% {
    opacity: 0;
    transform: translateX(120%);
  }
}

@keyframes soaminSweep {
  0%,
  46% {
    opacity: 0;
    transform: translateX(-130%);
  }

  58% {
    opacity: 0.9;
  }

  78%,
  100% {
    opacity: 0;
    transform: translateX(130%);
  }
}

@keyframes soaminSpark {
  0%,
  44%,
  86%,
  100% {
    opacity: 0;
    transform: scale(0.6);
  }

  56%,
  68% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes orbitGlow {
  0%,
  100% {
    opacity: 0.5;
    filter: saturate(0.9);
  }

  50% {
    opacity: 0.95;
    filter: saturate(1.3);
  }
}

@keyframes nodePulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  45% {
    transform: translate(-50%, -50%) scale(1.08);
  }

  68% {
    transform: translate(-50%, -50%) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .js-enabled .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1180px) {
  .platform-preview {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 36px);
    margin: -22px auto 38px;
    transform: none;
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 70px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fffaf0;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .route-panel,
  .affiliate {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-top: 80px;
    padding-bottom: 72px;
  }

  .orientation-grid,
  .membership-grid,
  .timeline,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .membership-grid .featured {
    transform: none;
  }

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

  .money-grid article,
  .money-grid article:nth-child(4),
  .money-grid article:nth-child(5),
  .money-grid article:nth-child(6) {
    grid-column: span 1;
  }

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

  .world-card.large {
    grid-row: span 1;
  }

  .leader-layout {
    grid-template-columns: 1fr;
  }

  .jumpup-layout {
    grid-template-columns: 1fr;
  }

  .network-orbit,
  .jumpup-copy {
    min-height: 440px;
  }

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

  .level-ladder article {
    min-height: 220px;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 10px 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand span {
    max-width: 170px;
  }

  .brand small {
    font-size: 0.62rem;
  }

  h1 {
    max-width: 330px;
    font-size: 1.72rem;
    line-height: 1.08;
  }

  h2 {
    max-width: 286px;
    margin-right: auto;
    margin-left: auto;
    font-size: 1.55rem;
    line-height: 1.08;
  }

  .hero-copy {
    max-width: 330px;
    font-size: 0.92rem;
  }

  .money-grid,
  .world-grid,
  .level-ladder {
    grid-template-columns: 1fr;
  }

  .leader-card {
    min-height: auto;
  }

  .network-orbit,
  .jumpup-copy {
    min-height: auto;
  }

  .network-orbit {
    min-height: 410px;
  }

  .leader-node {
    width: 88px;
    height: 88px;
    padding: 10px;
  }

  .leader-node img {
    width: 40px;
    height: 40px;
  }

  .node {
    width: 30px;
    height: 30px;
    font-size: 0.68rem;
  }

  .jumpup-metrics {
    grid-template-columns: 1fr;
  }

  .mini-network {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-content {
    padding-top: 48px;
    padding-bottom: 42px;
  }

  .hero-copy {
    line-height: 1.5;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 20px;
  }

  .hero-stats div {
    padding: 10px 8px;
  }

  .hero-stats dt {
    font-size: 1.2rem;
  }

  .hero-stats dd {
    font-size: 0.68rem;
    line-height: 1.25;
  }

  .platform-preview {
    display: none;
  }

  .route-tabs {
    display: grid;
    grid-template-columns: 1fr;
  }

  .route-tab {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}
