:root {
  color-scheme: light;
  --bg: #f4f7f5;
  --surface: #ffffff;
  --surface-2: #edf3ef;
  --ink: #0b1210;
  --muted: #606a64;
  --line: rgba(11, 18, 16, .09);
  --soft: var(--surface-2);
  --green: #007a4d;
  --green-strong: #006b45;
  --green-bright: #00c77a;
  --green-dark: #0b1210;
  --green-deep: #07100c;
  --brand-soft: #e9f7f0;
  --info: #315bd9;
  --info-soft: #eef2ff;
  --reward: #a66b00;
  --reward-soft: #fff7e8;
  --reward-on-dark: #f0c15a;
  --social: #a63d62;
  --social-soft: #fff0f5;
  --fitness: #4d7a20;
  --fitness-soft: #f2f8e9;
  --danger: #b42335;
  --spectrum: linear-gradient(90deg, #ffb800 0%, #ff4f4f 24%, #e83da7 45%, #6d55f8 67%, #0b7df5 83%, #06a96c 100%);
  --shadow: 0 12px 32px rgba(11, 18, 16, .07);
  --ease-fluid: cubic-bezier(.22, 1, .36, 1);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
  background: var(--bg);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  padding: 0 0 calc(76px + env(safe-area-inset-bottom));
  overflow-x: hidden;
  color: var(--ink);
  background: var(--bg);
  letter-spacing: 0;
  -webkit-overflow-scrolling: touch;
}

button,
input,
select,
summary {
  font: inherit;
}

button,
summary {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: .55;
}

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

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

:focus-visible {
  outline: 3px solid rgba(0, 122, 77, .28);
  outline-offset: 3px;
}

#siteFlowWebgl,
#trilogyWebgl,
.scene-vignette,
.money-layer,
.capital-field,
.wealth-orbit,
.status-float {
  display: none !important;
}

.page {
  width: calc(100% - 28px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  width: 100vw;
  min-height: calc(58px + env(safe-area-inset-top));
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  margin-left: calc(50% - 50vw);
  padding: max(6px, env(safe-area-inset-top)) 14px 6px;
  border: 0;
  border-radius: 0;
  color: #ffffff;
  background: #020504;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
  backdrop-filter: blur(18px) saturate(1.08);
}

.brand {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  min-width: 0;
  font-size: 17px;
  font-weight: 850;
  line-height: 1;
}

.site-header nav,
.site-header > .top-cta {
  display: none;
}

.menu-toggle {
  grid-column: 1;
  grid-row: 1;
  width: 44px;
  height: 44px;
  display: grid;
  place-content: center;
  gap: 4px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, .1);
  color: #ffffff;
  background: rgba(255, 255, 255, .07);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  display: block;
  border-radius: 2px;
  background: currentColor;
  transition: transform 240ms var(--ease-fluid), opacity 180ms ease;
}

body.mobile-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.mobile-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.mobile-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 99;
  top: var(--mobile-menu-top, 74px);
  right: 14px;
  left: 14px;
  display: grid;
  gap: 4px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 22px 60px rgba(7, 35, 23, .18);
}

.mobile-menu[hidden] {
  display: none !important;
}

.mobile-menu a {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 6px;
  color: #244139;
  font-size: 15px;
  font-weight: 750;
}

.mobile-menu a.active {
  color: var(--green);
  background: var(--soft);
}

.mobile-menu .mobile-menu-cta {
  justify-content: center;
  color: #ffffff;
  background: var(--green);
}

#routeContent {
  display: block;
}

.route-boot {
  min-height: calc(100svh - 90px);
  display: grid;
  align-content: center;
  padding: 42px 0;
}

#routeContent > section,
.section-3d {
  position: relative;
  min-height: 0;
  padding: 52px 0;
  scroll-margin-top: 78px;
  opacity: 1;
  visibility: visible;
  transform: none;
  content-visibility: visible;
  contain: none;
}

#routeContent > section + section {
  border-top: 1px solid rgba(11, 18, 16, .045);
}

.scroll-anchor {
  width: 1px;
  height: 1px;
  display: block;
  scroll-margin-top: 78px;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--ink);
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  margin-bottom: 14px;
  font-size: clamp(38px, 10.5vw, 44px);
  font-weight: 900;
  line-height: 1.01;
}

h2 {
  max-width: 18ch;
  margin-bottom: 12px;
  font-size: clamp(29px, 8.2vw, 34px);
  font-weight: 900;
  line-height: 1.05;
}

h3 {
  margin-bottom: 7px;
  font-size: 17px;
  font-weight: 850;
  line-height: 1.2;
}

p {
  color: var(--muted);
  line-height: 1.5;
}

.eyebrow {
  min-height: 27px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 0 9px;
  border: 1px solid rgba(0, 122, 77, .1);
  border-radius: 999px;
  color: #006640;
  background: var(--brand-soft);
  font-size: 10px;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

body[data-route="money"] .hero .eyebrow {
  border-color: rgba(166, 107, 0, .14);
  color: var(--reward);
  background: var(--reward-soft);
}

body[data-route="affiliate"] .hero .eyebrow {
  border-color: rgba(0, 122, 77, .14);
  color: var(--green);
  background: #ffffff;
}

body[data-route="social"] .hero .eyebrow {
  border-color: rgba(166, 61, 98, .14);
  color: var(--social);
  background: var(--social-soft);
}

body[data-route="fitness"] .hero .eyebrow {
  border-color: rgba(77, 122, 32, .14);
  color: var(--fitness);
  background: var(--fitness-soft);
}

body[data-route="mindset"] .hero .eyebrow,
body[data-route="app"] .hero .eyebrow {
  border-color: rgba(49, 91, 217, .14);
  color: var(--info);
  background: var(--info-soft);
}

::selection {
  color: var(--ink);
  background: rgba(0, 199, 122, .28);
}

.hero {
  display: grid;
  gap: 20px;
  padding: 32px 0 42px;
}

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

.lead {
  max-width: 35ch;
  margin: 0 0 16px;
  color: #59645f;
  font-size: 15px;
  line-height: 1.52;
}

.hero-chips,
.trust-row {
  display: none;
}

.hero-actions {
  display: grid;
  gap: 6px;
}

.primary-cta,
.ghost-cta,
.top-cta,
.mobile-menu-cta {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 850;
  text-align: center;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.primary-cta,
.top-cta,
.mobile-menu-cta,
button.primary-cta {
  color: #ffffff;
  background: var(--green);
  box-shadow: 0 12px 28px rgba(0, 122, 77, .17);
}

.ghost-cta {
  min-height: 44px;
  color: var(--green);
  background: transparent;
}

.primary-cta:active,
.ghost-cta:active,
.mobile-menu-cta:active {
  transform: scale(.985);
}

.cta-reassurance {
  margin: 2px 0 0;
  color: #728078;
  font-size: 11px;
  text-align: center;
}

.hero-membership-price {
  display: grid;
  gap: 3px;
  margin-top: 14px;
}

.hero-membership-price > span {
  color: #647069;
  font-size: 11px;
  font-weight: 750;
}

.hero-membership-price del,
.commercial-close-offer del {
  margin-right: 5px;
  text-decoration-color: #a62f3d;
  text-decoration-thickness: 1.5px;
}

.hero-membership-price strong {
  color: var(--ink);
  font-size: 27px;
  line-height: 1.1;
}

.hero-membership-price small,
.commercial-close-offer strong small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-orbit {
  position: relative;
  height: 228px;
  min-height: 228px;
  overflow: hidden;
  border: 1px solid #d9e9e0;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--brand-soft) 0 52%, var(--ink) 52% 100%);
  box-shadow: 0 18px 46px rgba(7, 53, 34, .13);
}

.money-graph {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 48%;
  display: block;
  opacity: .8;
}

.glass-phone {
  position: absolute;
  z-index: 2;
  top: 9px;
  right: 28px;
  width: 104px;
  height: 210px;
  overflow: hidden;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(4, 48, 30, .2);
}

.glass-phone img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  object-fit: cover;
  object-position: top;
}

.value-loop {
  position: absolute;
  z-index: 3;
  bottom: 22px;
  left: 14px;
  width: min(195px, calc(100% - 150px));
  display: grid;
  gap: 7px;
  padding: 12px;
  border: 1px solid rgba(182, 255, 217, .2);
  border-radius: 7px;
  color: #ffffff;
  background: rgba(4, 47, 29, .94);
  box-shadow: 0 14px 34px rgba(0, 18, 10, .22);
}

.value-loop > span {
  color: #90f7bf;
  font-size: 9px;
  font-weight: 850;
}

.value-loop > strong {
  font-size: 12px;
  line-height: 1.3;
}

.value-loop > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.value-loop i {
  height: 3px;
  border-radius: 2px;
  background: #48e696;
}

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

.section-heading.centered {
  text-align: left;
}

.section-heading p,
.pillar-intro p,
.affiliate-copy > p,
.conversion > div:first-child > p,
.waitlist-panel > div:first-child > p {
  max-width: 36ch;
  margin: 0;
  font-size: 14px;
}

.proof-strip,
.value-grid,
.trust-proof-grid,
.ecosystem-grid,
.access-grid,
.preview-grid,
.conversion-list,
.pillar-mobile-stack,
.affiliate-rule-grid,
.daily-list {
  display: grid;
  gap: 8px;
}

.proof-strip,
.value-grid,
.trust-proof-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.proof-strip article,
.value-grid article,
.trust-proof-grid article,
.ecosystem-grid article,
.access-grid article,
.preview-grid article,
.conversion-list article,
.pillar-mobile-stack article,
.affiliate-rule-grid article {
  min-width: 0;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(7, 35, 23, .045);
}

.proof-strip article {
  min-height: 94px;
  display: grid;
  align-content: center;
  gap: 5px;
}

.proof-strip strong,
.value-grid > article > b,
.trust-proof-grid > article > span,
.ecosystem-grid > article > span,
.affiliate-rule-grid > article > strong {
  color: var(--green);
  font-weight: 850;
}

.proof-strip strong {
  font-size: 19px;
}

.proof-strip span,
.trust-proof-grid p,
.value-grid p,
.ecosystem-grid p,
.preview-grid p,
.conversion-list p,
.affiliate-rule-grid p {
  margin: 0;
  color: #647069;
  font-size: 12px;
  line-height: 1.42;
}

.proof-flow {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(7, 35, 23, .07);
}

.proof-flow-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
}

.proof-flow-head span {
  display: block;
  margin-bottom: 7px;
  color: var(--green);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.proof-flow-head h3 {
  max-width: 24ch;
  margin: 0;
  font-size: 21px;
  line-height: 1.15;
}

.proof-flow-head > strong {
  min-width: 48px;
  min-height: 34px;
  display: grid;
  place-items: center;
  padding: 0 9px;
  border: 1px solid rgba(0, 122, 77, .13);
  border-radius: 999px;
  color: var(--green);
  background: var(--brand-soft);
  font-size: 13px;
}

.proof-flow-track {
  height: 5px;
  margin: 17px 0 13px;
  overflow: hidden;
  border-radius: 999px;
  background: #e5ece8;
}

.proof-flow-track i {
  width: 8%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: var(--green-bright);
}

.proof-flow-steps {
  display: grid;
}

.proof-flow-steps article {
  min-width: 0;
  min-height: 68px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.proof-flow-steps b {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: var(--brand-soft);
  font-size: 11px;
}

.proof-flow-steps span,
.proof-flow-steps strong,
.proof-flow-steps small {
  display: block;
}

.proof-flow-steps strong {
  color: var(--ink);
  font-size: 13px;
}

.proof-flow-steps small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.proof-flow-steps em {
  color: var(--green);
  font-size: 10px;
  font-style: normal;
  font-weight: 850;
}

.proof-flow > p {
  display: flex;
  gap: 7px;
  align-items: flex-start;
  margin: 12px 0 0;
  padding-top: 13px;
  border-top: 1px solid var(--line);
  color: #56645d;
  font-size: 11px;
  line-height: 1.45;
}

.proof-flow > p span {
  color: var(--green);
  font-weight: 900;
}

.value-grid article,
.trust-proof-grid article {
  min-height: 145px;
}

.value-grid h3,
.trust-proof-grid h3 {
  margin-top: 12px;
  font-size: 16px;
}

.ecosystem-grid,
.access-grid,
.preview-grid,
.conversion-list,
.pillar-mobile-stack,
.affiliate-rule-grid {
  grid-template-columns: 1fr;
}

.ecosystem-grid article,
.access-grid article,
.pillar-mobile-stack article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.ecosystem-grid article h3,
.ecosystem-grid article p {
  grid-column: 2;
}

.ecosystem-grid article h3 {
  margin-bottom: 0;
}

.access-grid article strong {
  color: var(--green);
  font-size: 25px;
}

.access-grid article span,
.pillar-mobile-stack article span {
  color: #5e6a64;
  font-size: 13px;
  line-height: 1.42;
}

.money-os,
.capital-section,
.waitlist-panel {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 48px 14px;
  color: #ffffff;
  background: var(--green-dark);
}

.money-os {
  display: block;
}

.money-os h2,
.money-os p,
.money-os b,
.money-console,
.capital-section h2,
.capital-section > div:first-of-type > p,
.capital-section .conversion-list article,
.waitlist-panel h2,
.waitlist-panel > div:first-child > p {
  color: #ffffff;
}

.money-os .eyebrow,
.capital-section .eyebrow,
.waitlist-panel .eyebrow {
  color: var(--green-strong);
  border-color: transparent;
  background: var(--brand-soft);
}

.money-os-copy > p,
.capital-section > div:first-of-type > p,
.waitlist-panel > div:first-child > p {
  color: rgba(240, 255, 247, .72);
}

.money-principles {
  display: grid;
  gap: 0;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.money-principles li {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 10px;
  padding: 13px 0;
  border-top: 1px solid rgba(196, 255, 224, .15);
}

.money-principles b {
  color: var(--green-bright);
  font-size: 13px;
}

.money-principles span {
  color: rgba(240, 255, 247, .7);
  font-size: 12px;
  line-height: 1.4;
}

.money-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-column: 1 / -1;
  margin-top: 20px;
  border-top: 1px solid rgba(196, 255, 224, .17);
}

.money-pillars > span {
  grid-column: 1 / -1;
  padding: 14px 0 5px;
  color: rgba(240, 255, 247, .58);
  font-size: 11px;
  font-weight: 760;
}

.money-pillars a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 44px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 790;
  text-align: center;
  text-decoration: none;
  border-right: 1px solid rgba(196, 255, 224, .13);
}

.money-pillars a:last-child {
  border-right: 0;
}

.money-pillars a:focus-visible {
  outline: 2px solid var(--green-bright);
  outline-offset: -2px;
}

.money-console {
  margin-top: 26px;
  overflow: hidden;
  border: 1px solid rgba(196, 255, 224, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .05);
}

.money-console-head,
.money-console-row {
  border-bottom: 1px solid rgba(196, 255, 224, .12);
}

.money-console-head {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
}

.money-console-head span {
  font-weight: 850;
}

.money-console-head b,
.money-console-row > i,
.money-console-row em {
  color: var(--green-bright);
  font-size: 10px;
  font-style: normal;
  font-weight: 850;
}

.money-console-row {
  min-height: 76px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 11px 14px;
}

.money-console-row span {
  display: grid;
  gap: 4px;
}

.money-console-row span b {
  font-size: 14px;
}

.money-console-row small {
  color: rgba(240, 255, 247, .62);
  font-size: 11px;
  line-height: 1.35;
}

.money-console-foot {
  display: flex;
  gap: 9px;
  padding: 13px 14px;
}

.money-console-foot > span {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--green-bright);
}

.money-console-foot p {
  margin: 0;
  color: rgba(240, 255, 247, .56);
  font-size: 10px;
}

.conversion {
  display: grid;
  gap: 20px;
}

.commercial-close {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  display: grid;
  gap: 24px;
  padding: 50px 14px !important;
  overflow: hidden;
  color: #ffffff;
  background: #07100c;
}

.commercial-close h2,
.commercial-close p {
  color: #ffffff;
}

.commercial-close p {
  max-width: 34ch;
  margin: 0;
  color: rgba(240, 255, 247, .68);
  font-size: 14px;
}

.commercial-close .eyebrow {
  border-color: rgba(255, 255, 255, .12);
  color: #baf4d6;
  background: rgba(255, 255, 255, .07);
}

.commercial-close-offer {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
}

.commercial-close-offer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: var(--spectrum);
}

.commercial-close-offer > span,
.commercial-close-offer > small {
  color: rgba(240, 255, 247, .62);
  font-size: 11px;
}

.commercial-close-offer > strong {
  color: #ffffff;
  font-size: 31px;
  line-height: 1.1;
}

.commercial-close-offer strong small {
  color: rgba(240, 255, 247, .62);
}

.commercial-close-offer .primary-cta {
  width: 100%;
  margin-top: 4px;
}

.conversion .hero-actions {
  margin-top: 12px;
}

.conversion-list article > span {
  display: inline-block;
  margin-bottom: 7px;
  color: var(--green);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.capital-section .conversion-list article {
  border-color: rgba(196, 255, 224, .14);
  background: rgba(255, 255, 255, .055);
  box-shadow: none;
}

.capital-section .conversion-list article > span {
  color: #a4f3c8;
}

.capital-section .conversion-list p {
  color: rgba(240, 255, 247, .68);
}

.pillar-page {
  display: grid;
  gap: 20px;
}

.daily-card {
  padding: 20px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--green-dark);
  box-shadow: 0 18px 44px rgba(6, 39, 25, .16);
}

.daily-card h2,
.daily-card p {
  color: #ffffff;
}

.daily-card > p {
  margin-bottom: 0;
  color: rgba(240, 255, 247, .68);
  font-size: 12px;
}

.daily-list div {
  min-height: 68px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border: 1px solid rgba(196, 255, 224, .14);
  border-radius: 7px;
  background: rgba(255, 255, 255, .055);
}

.daily-list b {
  color: #9cf3c4;
  font-size: 22px;
}

.daily-list span {
  color: #ffffff;
  font-size: 13px;
}

.affiliate-engine {
  --affiliate-band: #000000;
  --affiliate-green: #00e58b;
  --affiliate-green-deep: #00784b;
  --affiliate-green-ink: #007548;
  --affiliate-glow: rgba(0, 229, 139, .38);
  display: grid;
  gap: 24px;
  isolation: isolate;
  padding-block: 58px !important;
  color: #ffffff;
  background: var(--affiliate-band);
  box-shadow: 0 0 0 100vmax var(--affiliate-band);
  clip-path: inset(0 -100vmax);
}

body[data-route="affiliate"] {
  padding-bottom: 0;
  background: var(--affiliate-band, #000000);
}

body[data-route="affiliate"] .site-header,
body[data-route="affiliate"] .mobile-menu,
body[data-route="affiliate"] .sticky-access,
body[data-route="affiliate"] footer {
  display: none !important;
}

body[data-route="affiliate"] #routeContent > .affiliate-engine {
  min-height: 100svh;
  min-height: 100dvh;
  grid-template-columns: minmax(0, 1fr);
  align-content: start;
  padding-block: max(28px, env(safe-area-inset-top)) max(28px, env(safe-area-inset-bottom)) !important;
}

body[data-route="affiliate"] .affiliate-calculator {
  width: 100%;
  max-width: 620px;
  justify-self: center;
}

.affiliate-copy h1 {
  max-width: 12ch;
  margin-bottom: 14px;
  color: #ffffff;
  font-size: clamp(38px, 11.5vw, 48px);
  line-height: .98;
}

.affiliate-copy h1 span {
  display: block;
  color: var(--affiliate-green);
  text-shadow: 0 0 34px rgba(0, 229, 139, .2);
}

.affiliate-copy > p {
  max-width: 42ch;
  color: rgba(239, 255, 247, .7);
}

.affiliate-copy .eyebrow {
  position: relative;
  min-height: 31px;
  padding: 0 11px 0 29px;
  border-color: rgba(115, 239, 187, .18);
  color: #d7f8e8;
  background: rgba(255, 255, 255, .065);
}

.affiliate-copy .eyebrow::before {
  position: absolute;
  left: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--affiliate-green);
  box-shadow: 0 0 14px rgba(0, 229, 139, .82);
}

.affiliate-cta {
  width: 100%;
  margin-top: 20px;
  color: #ffffff;
  background: var(--affiliate-green-deep);
  box-shadow: 0 16px 34px rgba(0, 229, 139, .2), 0 0 0 1px rgba(0, 229, 139, .22);
}

.affiliate-calculator {
  order: 1;
  overflow: hidden;
  border: 1px solid rgba(0, 229, 139, .3);
  border-radius: 8px;
  color: var(--ink);
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .32), 0 0 46px rgba(0, 229, 139, .08);
}

.affiliate-copy {
  order: 3;
}

.affiliate-viewport-fade {
  order: 2;
  min-height: clamp(168px, 24svh, 210px);
  margin: -8px 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .96) 64%, #000000);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.affiliate-result {
  position: relative;
  overflow: hidden;
  padding: 24px 18px 20px;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
  text-align: center;
}

.affiliate-result::after {
  position: absolute;
  right: auto;
  bottom: 0;
  left: 0;
  width: var(--affiliate-output-progress, 3%);
  height: 3px;
  content: "";
  background: var(--affiliate-green);
  box-shadow: 0 0 20px rgba(0, 229, 139, .48);
  transition: width 260ms var(--ease-fluid);
}

.affiliate-result::before {
  position: absolute;
  z-index: 1;
  bottom: -1px;
  left: 0;
  width: 3px;
  height: 5px;
  content: "";
  border-radius: 999px;
  background: #73efbb;
  box-shadow: 0 0 16px rgba(0, 229, 139, .82);
  animation: affiliate-signal-sweep 3.4s var(--ease-fluid) infinite;
}

@keyframes affiliate-signal-sweep {
  0%, 16% {
    left: 0;
    opacity: 0;
  }
  28% {
    opacity: 1;
  }
  76% {
    left: calc(var(--affiliate-output-progress, 3%) - 3px);
    opacity: 1;
  }
  88%, 100% {
    left: calc(var(--affiliate-output-progress, 3%) - 3px);
    opacity: 0;
  }
}

.affiliate-result > span,
.affiliate-next > span,
.affiliate-year > span {
  color: #6a756f;
  font-size: 10px;
  font-weight: 750;
}

.affiliate-result > strong {
  display: block;
  margin: 8px 0 7px;
  color: var(--affiliate-green-ink);
  font-size: clamp(38px, 12vw, 48px);
  line-height: .95;
  text-shadow: 0 10px 30px rgba(0, 229, 139, .14);
  transition: opacity 160ms ease, transform 160ms var(--ease-fluid), text-shadow 160ms ease;
}

.affiliate-calculator.is-dragging .affiliate-result > strong {
  text-shadow: 0 10px 34px rgba(0, 229, 139, .3);
}

.affiliate-period {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 11px;
  padding: 4px 11px;
  border-radius: 999px;
  color: #003b27;
  background: var(--affiliate-green);
  box-shadow: 0 7px 18px rgba(0, 229, 139, .24);
  font-size: 10px;
  font-style: normal;
  font-weight: 850;
}

.affiliate-formula {
  display: block;
  margin-top: 10px;
  color: #6a756f;
  font-size: 10px;
}

.affiliate-tiers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 16px 18px 4px;
  background: #ffffff;
}

.affiliate-tiers article {
  min-width: 0;
  display: grid;
  gap: 3px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #ffffff;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms var(--ease-fluid);
}

.affiliate-tiers article > span,
.affiliate-tiers article > small {
  color: #78827d;
  font-size: 9px;
}

.affiliate-tiers article > strong {
  color: var(--ink);
  font-size: 19px;
}

.affiliate-tiers article.is-active {
  border-color: var(--affiliate-green);
  box-shadow: 0 0 0 1px var(--affiliate-green), 0 10px 24px rgba(0, 229, 139, .14);
  transform: translateY(-1px);
}

.affiliate-tiers article.is-active > span,
.affiliate-tiers article.is-active > small,
.affiliate-tiers article.is-active > strong {
  color: var(--affiliate-green-ink);
}

.affiliate-tiers article.is-complete > strong {
  color: var(--affiliate-green-ink);
}

.affiliate-slider {
  display: grid;
  gap: 10px;
  padding: 20px 18px 18px;
  border-top: 1px solid var(--line);
  border-bottom: 0;
  background: linear-gradient(180deg, rgba(0, 229, 139, .045), rgba(255, 255, 255, 0) 64%);
}

.affiliate-slider-label,
.affiliate-slider-readout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.affiliate-slider-label {
  color: var(--ink);
  font-size: 11px;
}

.affiliate-slider-label em {
  min-width: 46px;
  padding: 5px 8px;
  border: 1px solid rgba(0, 229, 139, .18);
  border-radius: 999px;
  color: var(--affiliate-green-ink);
  background: rgba(0, 229, 139, .1);
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
  text-align: center;
}

.affiliate-slider-readout {
  min-height: 22px;
  margin: -2px 0 1px;
  color: #78827d;
  font-size: 10px;
}

.affiliate-slider-readout small {
  font-size: 9px;
}

.affiliate-slider-readout strong {
  color: var(--affiliate-green-ink);
  font-size: 11px;
  text-align: right;
}

.affiliate-slider-readout b {
  font-size: 15px;
}

.affiliate-range {
  width: 100%;
  height: 44px;
  margin: 0;
  appearance: none;
  border: 0;
  outline: 0;
  background:
    radial-gradient(circle at var(--affiliate-progress, 0%) 50%, rgba(0, 255, 145, .3), transparent 25px),
    linear-gradient(
      90deg,
      #00d873 0%,
      #00ff8a var(--affiliate-progress, 0%),
      #061a12 var(--affiliate-progress, 0%),
      #010805 100%
    ) center / 100% 8px no-repeat;
  filter: drop-shadow(0 0 11px rgba(0, 255, 136, .2));
  cursor: pointer;
}

.affiliate-range::-webkit-slider-runnable-track {
  height: 8px;
  border: 1px solid rgba(195, 255, 224, .56);
  border-radius: 999px;
  background: transparent;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, .62), 0 0 18px rgba(0, 255, 136, .14);
}

.affiliate-range::-webkit-slider-thumb {
  width: 30px;
  height: 30px;
  margin-top: -12px;
  appearance: none;
  border: 1.5px solid rgba(255, 255, 255, .98);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 28%, #ffffff 0 14%, #e9fff4 19%, #75ffc0 34%, #16ff91 54%, #00d874 73%, #005f34 100%);
  box-shadow: 0 0 5px #ffffff, 0 0 14px #7dffc1, 0 0 28px rgba(0, 255, 136, .92), 0 5px 14px rgba(7, 35, 23, .24);
  animation: affiliateThumbPulse 3.2s ease-in-out infinite;
}

.affiliate-range::-moz-range-track {
  height: 8px;
  border: 1px solid rgba(195, 255, 224, .56);
  border-radius: 999px;
  background: #061a12;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, .62), 0 0 18px rgba(0, 255, 136, .14);
}

.affiliate-range::-moz-range-progress {
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #00d873, #00ff8a);
  box-shadow: 0 0 16px rgba(0, 255, 136, .72);
}

.affiliate-range::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border: 1.5px solid rgba(255, 255, 255, .98);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 28%, #ffffff 0 14%, #e9fff4 19%, #75ffc0 34%, #16ff91 54%, #00d874 73%, #005f34 100%);
  box-shadow: 0 0 5px #ffffff, 0 0 14px #7dffc1, 0 0 28px rgba(0, 255, 136, .92), 0 5px 14px rgba(7, 35, 23, .24);
  animation: affiliateThumbPulse 3.2s ease-in-out infinite;
}

.affiliate-range:focus-visible {
  outline: 3px solid rgba(0, 229, 139, .25);
  outline-offset: 4px;
}

@keyframes affiliateThumbPulse {
  0%, 100% {
    box-shadow: 0 0 4px #ffffff, 0 0 12px #7dffc1, 0 0 24px rgba(0, 255, 136, .78), 0 5px 14px rgba(7, 35, 23, .24);
  }
  50% {
    box-shadow: 0 0 7px #ffffff, 0 0 18px #7dffc1, 0 0 36px rgba(0, 255, 136, 1), 0 5px 14px rgba(7, 35, 23, .24);
  }
}

@media (prefers-reduced-motion: reduce) {
  .affiliate-range::-webkit-slider-thumb,
  .affiliate-range::-moz-range-thumb {
    animation: none;
  }

  .affiliate-result::before {
    display: none;
    animation: none;
  }

  .affiliate-result::after,
  .affiliate-tiers article,
  .affiliate-result > strong {
    transition: none;
  }
}

.affiliate-next,
.affiliate-year {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 18px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.affiliate-next > strong,
.affiliate-year > strong {
  max-width: 21ch;
  color: var(--affiliate-green-ink);
  font-size: 13px;
  text-align: right;
}

.affiliate-year > strong {
  font-size: 18px;
}

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

.faq-list {
  display: grid;
  gap: 7px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.faq-list summary {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 15px;
  font-size: 14px;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  color: var(--green);
  font-size: 20px;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: 0;
  padding: 0 15px 15px;
  font-size: 13px;
}

.manifesto-copy {
  display: grid;
  gap: 8px;
}

.manifesto-copy p {
  margin: 0;
}

.digital-twin-experience {
  display: grid;
  gap: 14px;
}

.site-twin-conversion {
  display: grid;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.site-twin-conversion strong,
.site-twin-conversion span {
  display: block;
  letter-spacing: 0;
}

.site-twin-conversion strong {
  color: var(--ink);
  font-size: 14px;
}

.site-twin-conversion span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.site-twin-conversion .primary-cta {
  width: 100%;
}

.waitlist-panel {
  display: grid;
  gap: 22px;
  background: var(--green-deep);
}

.waitlist-form {
  min-width: 0;
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  color: var(--ink);
  background: #ffffff;
  box-shadow: 0 20px 48px rgba(0, 20, 12, .18);
}

.form-grid,
.waitlist-options-grid {
  display: grid;
  gap: 10px;
}

.waitlist-form label {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.waitlist-form label > span {
  color: #425149;
  font-size: 11px;
  font-weight: 800;
}

.waitlist-form input,
.waitlist-form select {
  width: 100%;
  min-height: 50px;
  padding: 0 12px;
  border: 1px solid #dce6e0;
  border-radius: 7px;
  color: var(--ink);
  background: #ffffff;
  outline: 0;
}

.waitlist-form input:focus,
.waitlist-form select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(0, 122, 77, .1);
}

.waitlist-form input[aria-invalid="true"] {
  border-color: var(--danger);
}

.waitlist-options {
  border-top: 1px solid var(--line);
}

.waitlist-options summary {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #5c6962;
  font-size: 12px;
  font-weight: 750;
  list-style: none;
}

.waitlist-options summary::-webkit-details-marker {
  display: none;
}

.waitlist-options summary::after {
  content: "+";
  color: var(--green);
  font-size: 19px;
}

.waitlist-options[open] summary::after {
  content: "−";
}

.waitlist-options-grid {
  padding-bottom: 10px;
}

.waitlist-form .primary-cta {
  width: 100%;
}

.privacy-microcopy,
.form-status {
  min-height: 0;
  margin: 0;
  font-size: 10px;
  text-align: center;
}

.form-status.error {
  color: var(--danger);
}

.form-status.success {
  color: var(--green);
  font-weight: 750;
}

.waitlist-sheet-close,
.waitlist-sheet-backdrop[hidden] {
  display: none;
}

.waitlist-sheet-backdrop {
  position: fixed;
  z-index: 210;
  inset: 0;
  display: block;
  background: rgba(2, 5, 4, .64);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  animation: waitlistBackdropIn 180ms ease both;
}

body.waitlist-sheet-open {
  overflow: hidden;
  overscroll-behavior: none;
}

body.waitlist-sheet-open .sticky-access {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}

.waitlist-panel.waitlist-sheet-active {
  position: fixed !important;
  z-index: 220 !important;
  inset: auto 0 0 !important;
  width: 100% !important;
  max-width: none !important;
  max-height: min(86dvh, 720px);
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 18px !important;
  margin: 0 !important;
  padding: 26px 16px max(18px, env(safe-area-inset-bottom)) !important;
  overflow-x: hidden;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, .12) !important;
  border-bottom: 0 !important;
  border-radius: 8px 8px 0 0 !important;
  color: #ffffff !important;
  background: #07110d !important;
  box-shadow: 0 -22px 70px rgba(0, 0, 0, .34) !important;
  clip-path: none !important;
  content-visibility: visible !important;
  contain-intrinsic-size: auto !important;
  animation: waitlistSheetIn 240ms var(--ease-fluid) both;
}

.waitlist-panel.waitlist-sheet-active::before {
  opacity: .44;
}

.waitlist-panel.waitlist-sheet-active > div:first-of-type {
  padding-right: 48px;
}

.waitlist-panel.waitlist-sheet-active .eyebrow {
  color: #68e7ad !important;
}

.waitlist-panel.waitlist-sheet-active h2,
.waitlist-panel.waitlist-sheet-active > div:first-of-type > p {
  color: #ffffff !important;
}

.waitlist-panel.waitlist-sheet-active > div:first-of-type > p {
  margin-top: 8px;
  color: rgba(255, 255, 255, .72) !important;
}

.waitlist-panel.waitlist-sheet-active .waitlist-form {
  position: relative;
  z-index: 2;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: none;
}

.waitlist-panel.waitlist-sheet-active .waitlist-sheet-close {
  position: absolute;
  z-index: 4;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, .08);
  font-size: 26px;
  line-height: 1;
}

.waitlist-panel.waitlist-sheet-active .waitlist-sheet-close:focus-visible {
  outline: 3px solid rgba(104, 231, 173, .55);
  outline-offset: 2px;
}

@keyframes waitlistBackdropIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes waitlistSheetIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.sticky-access {
  position: fixed;
  z-index: 120;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 7px 10px max(7px, env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 -8px 24px rgba(7, 35, 23, .08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity 180ms ease, transform 180ms ease;
}

body.show-sticky-access .sticky-access {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

body.waitlist-in-view .sticky-access,
body[data-route="home"].path-in-view .sticky-access {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}

.sticky-access > div {
  display: none;
}

.sticky-access .primary-cta {
  width: 100%;
  min-height: 50px;
}

footer {
  display: grid;
  gap: 8px;
  padding: 24px 0 30px;
  color: #76827c;
  font-size: 10px;
  line-height: 1.5;
}

footer a {
  color: var(--green);
  font-weight: 750;
}

.legal-page {
  width: calc(100% - 28px);
  max-width: 680px;
  margin: 0 auto;
  padding: 28px 0 60px;
}

.legal-page > a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 26px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.legal-page > h1 {
  margin-bottom: 8px;
}

.legal-page > p {
  margin: 0 0 28px;
  font-size: 12px;
}

.legal-page section {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.legal-page section h2 {
  margin-bottom: 9px;
  font-size: 22px;
}

.legal-page section p,
.legal-page section li {
  color: #57645e;
  font-size: 13px;
  line-height: 1.55;
}

.legal-page section ul {
  margin: 0;
  padding-left: 20px;
}

@media (max-width: 360px) {
  h1 {
    font-size: 37px;
  }

  h2 {
    font-size: 29px;
  }

  .proof-strip,
  .value-grid,
  .trust-proof-grid {
    grid-template-columns: 1fr;
  }

  .value-grid article,
  .trust-proof-grid article {
    min-height: 0;
  }

  .glass-phone {
    right: 18px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
