:root {
  color-scheme: light;
  --bg: #fffaff;
  --surface: rgba(255, 255, 255, .88);
  --surface-strong: #ffffff;
  --ink: #070716;
  --muted: #5b5f73;
  --line: rgba(7, 7, 22, .09);
  --soft: #f5f7ff;
  --green: #0057ff;
  --green-hot: #00d5ff;
  --green-dark: #070716;
  --green-mid: #0044d8;
  --cyan: #00d5ff;
  --blue: #0057ff;
  --violet: #7c3aed;
  --pink: #ff2d55;
  --gold: #ffb800;
  --aura: #fff4c7;
  --cta-gradient: linear-gradient(180deg, #00d5ff 0%, #0057ff 48%, #7c3aed 100%);
  --danger: #b42318;
  --shadow: 0 34px 100px rgba(0, 87, 255, .12);
  --shadow-tight: 0 10px 30px rgba(7, 7, 22, .06);
  --radius: 8px;
  --ease: 220ms cubic-bezier(.2, .8, .2, 1);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

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

.scroll-anchor {
  display: block;
  width: 1px;
  height: 1px;
  scroll-margin-top: 112px;
  pointer-events: none;
}

body {
  min-height: 100vh;
  margin: 0;
  padding-bottom: 90px;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 0, rgba(0, 87, 255, .18), rgba(0, 213, 255, .08) 21%, rgba(255, 255, 255, 0) 38%),
    linear-gradient(180deg, #ffffff 0, #ffffff 440px, #f5f7ff 100%),
    var(--bg);
  letter-spacing: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body::selection {
  color: var(--ink);
  background: rgba(0, 213, 255, .44);
}

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

button {
  cursor: pointer;
}

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

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

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

:focus-visible {
  outline: 3px solid rgba(0, 87, 255, .5);
  outline-offset: 3px;
}

#trilogyWebgl {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  opacity: .16;
  background:
    linear-gradient(118deg, rgba(0, 87, 255, .17), rgba(0, 213, 255, .1) 48%, rgba(255, 255, 255, 0)),
    #ffffff;
}

.scene-vignette {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .55), rgba(255, 255, 255, .92) 66%, #ffffff),
    linear-gradient(96deg, rgba(255, 255, 255, 0), rgba(0, 87, 255, .1) 44%, rgba(255, 255, 255, 0));
}

.page {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100vw - 36px));
  margin: 0 auto;
}

.signal-bar {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #626b66;
  font-size: 12px;
  font-weight: 760;
  text-align: center;
}

.signal-bar span {
  color: #05140b;
  border: 1px solid rgba(0, 87, 255, .28);
  background: rgba(0, 87, 255, .12);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 20;
  min-height: 68px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(5, 8, 7, .08);
  border-radius: 12px;
  background: rgba(255, 255, 255, .84);
  backdrop-filter: blur(30px) saturate(1.35);
  box-shadow: 0 18px 52px rgba(0, 59, 38, .08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding-left: 8px;
  font-size: 17px;
  font-weight: 900;
}

.site-header nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
}

.site-header nav a {
  transition: color var(--ease), transform var(--ease);
}

.site-header nav a:hover,
.site-header nav a.active {
  color: #050807;
}

.menu-toggle {
  display: none;
}

.mobile-menu {
  display: none;
}

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

.top-cta,
.primary-cta,
.ghost-cta {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 900;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease), background var(--ease), color var(--ease);
}

.top-cta:hover,
.primary-cta:hover,
.ghost-cta:hover,
.trust-proof-grid article:hover,
.emotion-grid article:hover,
.value-grid article:hover,
.preview-grid article:hover,
.conversion-list article:hover {
  transform: translateY(-1px);
}

.top-cta,
.primary-cta {
  padding: 0 18px;
  border: 1px solid rgba(0, 59, 38, .12);
  color: #030705;
  background: var(--cta-gradient);
  box-shadow: 0 16px 36px rgba(0, 168, 107, .3), inset 0 1px 0 rgba(255, 255, 255, .5);
}

.ghost-cta {
  padding: 0 16px;
  border: 1px solid rgba(5, 8, 7, .1);
  color: var(--ink);
  background: rgba(255, 255, 255, .82);
}

.pressed {
  transform: translateY(1px) scale(.99) !important;
}

.hero {
  min-height: calc(100vh - 126px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 48px;
  align-items: center;
  padding: 64px 0 86px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 780px;
}

.eyebrow {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(0, 87, 255, .22);
  border-radius: 999px;
  color: #050807;
  background: rgba(0, 87, 255, .1);
  font-size: 11px;
  font-weight: 880;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin: 18px 0;
  font-size: 56px;
  line-height: 1.04;
  font-weight: 920;
  letter-spacing: 0;
  overflow-wrap: break-word;
  text-wrap: balance;
  color: var(--ink);
  background: none;
}

h2 {
  max-width: 820px;
  margin: 14px 0 0;
  font-size: 46px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin: 0 0 10px;
  font-size: 23px;
  line-height: 1.14;
  letter-spacing: 0;
}

.lead {
  max-width: 700px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.release-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 14px;
  color: #4d5a53;
  font-size: 12px;
  font-weight: 820;
}

.release-rail span {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 8px;
  color: #07130d;
  background: rgba(0, 87, 255, .16);
  text-transform: uppercase;
}

.release-rail b {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 10px;
  background: rgba(255, 255, 255, .88);
  box-shadow: inset 0 0 0 1px rgba(5, 8, 7, .08);
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
}

.hero-chips span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(5, 8, 7, .08);
  border-radius: 999px;
  padding: 0 12px;
  color: #23342a;
  background: rgba(255, 255, 255, .88);
  font-size: 13px;
  font-weight: 860;
}

.cta-reassurance {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin: 12px 0 0;
  padding: 0 10px;
  border: 1px solid rgba(5, 8, 7, .08);
  border-radius: 999px;
  color: #52625a;
  background: rgba(255, 255, 255, .78);
  font-size: 12px;
  font-weight: 820;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 680px;
  margin-top: 28px;
}

.trust-row div,
.trust-proof-grid article,
.pillar-ribbon article,
.value-grid article,
.preview-grid article,
.conversion-list article,
.access-grid article,
.faq-list details,
.status-float,
.waitlist-form {
  border: 1px solid rgba(5, 8, 7, .08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-tight);
  scroll-margin-top: 112px;
}

.trust-row div {
  min-height: 86px;
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 16px;
  overflow: hidden;
  position: relative;
}

.trust-row div::after {
  content: "";
  position: absolute;
  inset: auto 14px 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--green-mid), var(--green-hot));
}

.trust-row strong {
  color: #050807;
  font-size: 22px;
  line-height: 1;
}

.trust-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.hero-orbit {
  position: relative;
  min-height: 520px;
}

.glass-phone {
  position: absolute;
  inset: 34px 24px;
  display: grid;
  place-items: center;
  padding: 14px;
  border: 1px solid transparent;
  border-radius: 34px;
  background:
    linear-gradient(rgba(255, 255, 255, .86), rgba(255, 255, 255, .86)) padding-box,
    linear-gradient(135deg, rgba(0, 87, 255, .72), rgba(0, 213, 255, .22), rgba(5, 8, 7, .08)) border-box;
  box-shadow: var(--shadow), 0 0 84px rgba(0, 87, 255, .16);
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
}

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

.status-float {
  position: absolute;
  width: min(230px, 64vw);
  padding: 14px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, .94);
}

.status-float b {
  display: block;
  color: var(--ink);
  font-size: 13px;
}

.status-float span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 740;
}

.status-float.one { top: 72px; left: -8px; }
.status-float.two { right: -2px; top: 258px; }
.status-float.three { left: 28px; bottom: 38px; }

.section-3d {
  scroll-margin-top: 112px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease;
}

body.loading .section-3d {
  opacity: .001;
  transform: translateY(16px);
}

.pillar-ribbon {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 86px;
}

.pillar-ribbon article {
  min-height: 104px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 18px;
}

.pillar-ribbon span,
.conversion-list span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.pillar-ribbon b {
  font-size: 18px;
  line-height: 1.28;
}

.pain-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 92px;
}

.pain-strip span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(0, 168, 107, .18);
  border-radius: 999px;
  padding: 0 12px;
  color: #063a25;
  background: rgba(255, 255, 255, .78);
  font-size: 13px;
  font-weight: 780;
}

.value,
.app-preview,
.trust-stack,
.emotion-bridge,
.proof-band,
.ecosystem,
.goodbye,
.revenue,
.pillar-page,
.daily-system,
.waitlist-benefits,
.access,
.manifesto,
.waitlist-panel {
  padding: 52px 0 92px;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 24px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered p {
  margin-inline: auto;
}

.proof-band {
  padding-top: 18px;
}

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

.proof-strip article {
  min-height: 96px;
  display: grid;
  align-content: center;
  gap: 4px;
  border: 1px solid rgba(5, 8, 7, .08);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--shadow-tight);
}

.proof-strip strong {
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
  font-weight: 940;
}

.proof-strip span,
.review-note {
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.review-note {
  max-width: 760px;
  margin: 18px auto 0;
  text-align: center;
  line-height: 1.6;
}

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

.ecosystem-grid article {
  min-height: 238px;
  display: grid;
  align-content: space-between;
  border: 1px solid rgba(5, 8, 7, .08);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow-tight);
}

.ecosystem-grid span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #07130d;
  background: var(--cta-gradient);
  font-weight: 940;
}

.ecosystem-grid p {
  color: var(--muted);
  line-height: 1.58;
}

.revenue {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1fr);
  gap: 28px;
  align-items: stretch;
}

.revenue > div:first-child p {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.revenue-card {
  display: grid;
  align-content: center;
  gap: 14px;
  border-radius: var(--radius);
  padding: 28px;
  color: #ffffff;
  background: linear-gradient(145deg, #03190f, #052d1b 54%, #070716);
  box-shadow: 0 28px 80px rgba(0, 59, 38, .32);
}

.revenue-card span {
  color: var(--green-hot);
  font-size: 12px;
  font-weight: 920;
  text-transform: uppercase;
}

.revenue-card strong {
  font-size: 28px;
  line-height: 1.08;
}

.revenue-card p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  line-height: 1.6;
}

.goodbye-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.goodbye-cloud span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 15px;
  color: #111814;
  background: rgba(255, 255, 255, .9);
  box-shadow: inset 0 0 0 1px rgba(5, 8, 7, .08), var(--shadow-tight);
  font-size: 14px;
  font-weight: 840;
}

.pillar-page {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1fr);
  gap: 26px;
  align-items: start;
}

.pillar-intro p {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.pillar-mobile-stack {
  display: grid;
  gap: 12px;
}

.pillar-mobile-stack article {
  min-height: 126px;
  display: grid;
  align-content: center;
  gap: 8px;
  border: 1px solid rgba(5, 8, 7, .08);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow-tight);
}

.pillar-mobile-stack strong {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 940;
  text-transform: uppercase;
}

.pillar-mobile-stack span {
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.16;
}

.daily-system {
  padding-top: 0;
}

.daily-card {
  display: grid;
  gap: 22px;
  border: 1px solid rgba(0, 87, 255, .16);
  border-radius: 12px;
  padding: 30px;
  color: #ffffff;
  background:
    radial-gradient(circle at 84% 0, rgba(0, 213, 255, .24), rgba(255, 255, 255, 0) 34%),
    linear-gradient(145deg, #03190f, #052d1b 54%, #070716);
  box-shadow: 0 28px 80px rgba(0, 59, 38, .28);
}

.daily-card .eyebrow {
  width: fit-content;
  color: #03190f;
  background: rgba(0, 213, 255, .9);
}

.daily-card h2 {
  max-width: 760px;
  margin: 0;
  color: #ffffff;
}

.daily-card p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, .76);
  line-height: 1.6;
}

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

.daily-list div {
  min-height: 104px;
  display: grid;
  align-content: space-between;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255, 255, 255, .07);
}

.daily-list b {
  color: var(--green-hot);
  font-size: 12px;
}

.daily-list span {
  color: #ffffff;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.28;
}

.section-heading p {
  max-width: 700px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.value-grid,
.trust-proof-grid,
.emotion-grid,
.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

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

.value-grid article,
.trust-proof-grid article,
.emotion-grid article,
.preview-grid article {
  min-height: 178px;
  display: grid;
  align-content: space-between;
  padding: 24px;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.emotion-grid article {
  min-height: 154px;
  border: 1px solid rgba(5, 8, 7, .08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow-tight);
}

.emotion-grid span {
  color: #6a7770;
  font-size: 14px;
  font-weight: 780;
  line-height: 1.5;
}

.emotion-grid strong {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.12;
}

.value-grid b,
.trust-proof-grid span {
  color: var(--violet);
  font-size: 14px;
  font-weight: 850;
}

.value-grid p,
.trust-proof-grid p,
.emotion-grid p,
.preview-grid p,
.conversion-list p,
.access-grid span,
.faq-list p,
.waitlist-panel p,
.manifesto-copy p,
.legal-page p,
.legal-page li {
  color: var(--muted);
  line-height: 1.56;
}

.conversion,
.faq {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(360px, 1fr);
  gap: 34px;
  align-items: start;
  padding: 62px 0 112px;
}

.conversion > div > p {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.conversion-list {
  display: grid;
  gap: 12px;
}

.conversion-list article {
  min-height: 116px;
  padding: 22px;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.conversion-list p {
  margin: 10px 0 0;
}

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

.access-grid article {
  min-height: 148px;
  display: grid;
  align-content: space-between;
  padding: 22px;
}

.access-grid strong {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #050807;
  background: var(--cta-gradient);
}

.manifesto {
  max-width: 920px;
}

.manifesto h2 {
  max-width: 980px;
}

.manifesto-copy {
  max-width: 760px;
  display: grid;
  gap: 4px;
  margin-top: 26px;
  font-size: 18px;
}

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

.faq-list details {
  padding: 22px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 880;
}

.faq-list p {
  margin: 14px 0 0;
}

.waitlist-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1fr);
  gap: 26px;
  align-items: start;
}

.waitlist-panel > div > p {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.waitlist-form {
  display: grid;
  gap: 14px;
  padding: 24px;
}

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

.waitlist-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.waitlist-form input,
.waitlist-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(5, 8, 7, .12);
  border-radius: var(--radius);
  padding: 0 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, .88);
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
}

.waitlist-form input:focus,
.waitlist-form select:focus {
  border-color: rgba(0, 87, 255, .65);
  box-shadow: 0 0 0 4px rgba(0, 87, 255, .12);
}

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

.waitlist-form .primary-cta:disabled {
  box-shadow: none;
  transform: none;
}

.privacy-microcopy {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.form-status {
  min-height: 22px;
  margin: 0;
  font-size: 13px;
  font-weight: 780;
  line-height: 1.45;
}

.form-status.success {
  color: var(--green-dark);
}

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

.waitlist-form.is-loading {
  opacity: .86;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 28px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

footer a {
  color: var(--ink);
  font-weight: 850;
}

.sticky-access {
  position: fixed;
  left: 24px;
  bottom: 16px;
  z-index: 40;
  width: min(390px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(5, 8, 7, .08);
  border-radius: 12px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 48px rgba(5, 8, 7, .12);
  backdrop-filter: blur(24px) saturate(1.25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity var(--ease), transform var(--ease);
}

body.show-sticky-access .sticky-access {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-access b,
.sticky-access span {
  display: block;
}

.sticky-access b {
  font-size: 13px;
}

.sticky-access span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 740;
}

.sticky-access .primary-cta {
  min-height: 42px;
  padding: 0 18px;
}

.legal-page {
  position: relative;
  z-index: 2;
  width: min(900px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 54px 0 80px;
}

.legal-page > a {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--blue);
  font-weight: 900;
}

.legal-page h1 {
  margin: 16px 0 12px;
  font-size: 58px;
}

.legal-page h2 {
  margin: 34px 0 10px;
  font-size: 30px;
}

.legal-page ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
}

.no-webgl #trilogyWebgl {
  background:
    linear-gradient(118deg, rgba(0, 87, 255, .15), rgba(0, 213, 255, .08) 42%, rgba(255, 255, 255, 0)),
    #ffffff;
}

@media (max-width: 1040px) {
  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 40px;
  }

  .hero,
  .conversion,
  .revenue,
  .pillar-page,
  .faq,
  .waitlist-panel {
    grid-template-columns: 1fr;
  }

  .hero-orbit {
    min-height: 500px;
  }

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

@media (max-width: 760px) {
  body {
    padding-bottom: 84px;
  }

  .page {
    width: min(100vw - 24px, 1120px);
  }

  .signal-bar {
    justify-content: flex-start;
    overflow: hidden;
    white-space: nowrap;
  }

  .signal-bar b {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .site-header {
    grid-template-columns: auto 1fr;
    top: 8px;
    gap: 8px;
  }

  .site-header .brand {
    grid-column: 2;
  }

  .menu-toggle {
    grid-column: 1;
    grid-row: 1;
  }

  .site-header nav {
    display: none;
  }

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

  .menu-toggle {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    gap: 4px;
    border: 1px solid rgba(5, 8, 7, .1);
    border-radius: var(--radius);
    padding: 10px;
    color: var(--ink);
    background: rgba(255, 255, 255, .92);
    box-shadow: var(--shadow-tight);
    transition: transform var(--ease), background var(--ease), border-color var(--ease);
  }

  .menu-toggle span {
    width: 18px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: var(--ink);
    transition: transform var(--ease), opacity var(--ease);
  }

  body.mobile-menu-open .menu-toggle {
    background: rgba(0, 87, 255, .12);
    border-color: rgba(0, 87, 255, .28);
  }

  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;
    top: var(--mobile-menu-top, 118px);
    left: 12px;
    right: 12px;
    z-index: 19;
    max-height: calc(100vh - var(--mobile-menu-top, 118px) - 16px);
    display: grid;
    gap: 8px;
    overflow-y: auto;
    border: 1px solid rgba(5, 8, 7, .08);
    border-radius: 12px;
    padding: 10px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 24px 70px rgba(5, 8, 7, .14);
    backdrop-filter: blur(26px) saturate(1.25);
    transform-origin: top right;
    animation: menuIn 180ms ease both;
  }

  .mobile-menu a {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(5, 8, 7, .07);
    border-radius: var(--radius);
    padding: 0 14px;
    color: var(--ink);
    background: rgba(255, 255, 255, .74);
    font-size: 15px;
    font-weight: 900;
  }

  .mobile-menu a::after {
    content: "›";
    color: var(--muted);
    font-size: 20px;
    line-height: 1;
  }

  .mobile-menu a.active {
    border-color: rgba(0, 87, 255, .24);
    background: rgba(0, 87, 255, .12);
  }

  .mobile-menu .mobile-menu-cta {
    border-color: rgba(5, 8, 7, .05);
    background: var(--cta-gradient);
    box-shadow: 0 14px 32px rgba(0, 168, 107, .26);
  }

  .mobile-menu .mobile-menu-cta::after {
    color: rgba(5, 8, 7, .56);
  }

  .brand span:last-child {
    max-width: 132px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .top-cta {
    min-height: 42px;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero {
    min-height: auto;
    padding: 34px 0 76px;
  }

  h1 {
    font-size: 35px;
    line-height: 1.04;
  }

  h2 {
    font-size: 31px;
    line-height: 1.08;
  }

  h3 {
    font-size: 21px;
  }

  .lead {
    font-size: 16px;
    line-height: 1.62;
  }

  .trust-row,
  .pillar-ribbon,
  .proof-strip,
  .ecosystem-grid,
  .value-grid,
  .trust-proof-grid,
  .emotion-grid,
  .preview-grid,
  .access-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .primary-cta,
  .ghost-cta {
    width: 100%;
  }

  .cta-reassurance {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-orbit {
    min-height: 390px;
  }

  .glass-phone {
    inset: 18px 10px;
    border-radius: 28px;
    transform: none;
  }

  .glass-phone img {
    border-radius: 20px;
  }

  .status-float {
    width: min(214px, 76vw);
  }

  .status-float.one {
    top: 20px;
    left: 0;
  }

  .status-float.two {
    top: auto;
    right: 0;
    bottom: 80px;
  }

  .status-float.three {
    left: 10px;
    bottom: 14px;
  }

  .value,
  .app-preview,
  .trust-stack,
  .emotion-bridge,
  .proof-band,
  .ecosystem,
  .goodbye,
  .revenue,
  .pillar-page,
  .daily-system,
  .waitlist-benefits,
  .access,
  .conversion,
  .faq,
  .manifesto,
  .waitlist-panel {
    padding: 40px 0 78px;
  }

  .pain-strip {
    margin-bottom: 56px;
  }

  .release-rail {
    gap: 6px;
  }

  .release-rail b,
  .hero-chips span {
    font-size: 12px;
  }

  .proof-strip article,
  .ecosystem-grid article,
  .pillar-mobile-stack article,
  .revenue-card {
    padding: 20px;
  }

  .revenue-card strong {
    font-size: 23px;
  }

  .daily-card {
    padding: 22px;
  }

  .daily-list {
    grid-template-columns: 1fr;
  }

  .daily-list div {
    min-height: 76px;
  }

  .waitlist-form {
    padding: 20px;
  }

  .sticky-access {
    left: 12px;
    right: 12px;
    bottom: 10px;
    width: auto;
  }

  .sticky-access .primary-cta {
    width: auto;
    min-width: 92px;
  }

  .legal-page h1 {
    font-size: 42px;
  }

  .legal-page h2 {
    font-size: 26px;
  }
}

/* Trilogy Aura v4: adaptive rooms on a black / emerald / gold signature */
:root {
  --tri-black: #050716;
  --tri-ink: #07110c;
  --tri-emerald: #00e676;
  --tri-emerald-hot: #39ff88;
  --tri-gold: #ffb800;
  --tri-gold-soft: #fff0ae;
  --aura-1: rgba(57, 255, 136, .28);
  --aura-2: rgba(255, 184, 0, .2);
  --aura-3: rgba(0, 213, 255, .16);
  --aura-4: rgba(124, 58, 237, .1);
  --aura-solid-1: #00e676;
  --aura-solid-2: #ffb800;
  --aura-solid-3: #050716;
  --aura-gradient: linear-gradient(135deg, #050716 0%, #0b2f1d 32%, #00e676 68%, #ffb800 100%);
  --aura-card: linear-gradient(145deg, rgba(255,255,255,.92), rgba(255,255,255,.66)),
    radial-gradient(circle at 8% 0, var(--aura-1), transparent 34%),
    radial-gradient(circle at 92% 0, var(--aura-2), transparent 36%);
  --aura-shadow: 0 30px 92px rgba(5, 7, 22, .12), 0 16px 42px rgba(0, 230, 118, .12);
}

body[data-route="money"],
body[data-route="waitlist"] {
  --aura-1: rgba(57, 255, 136, .34);
  --aura-2: rgba(255, 184, 0, .24);
  --aura-3: rgba(0, 230, 118, .18);
  --aura-4: rgba(5, 7, 22, .12);
  --aura-solid-1: #00e676;
  --aura-solid-2: #ffb800;
  --aura-solid-3: #050716;
  --aura-gradient: linear-gradient(135deg, #050716 0%, #0b2f1d 32%, #00e676 68%, #ffb800 100%);
}

body[data-route="match"] {
  --aura-1: rgba(255, 77, 109, .26);
  --aura-2: rgba(255, 184, 0, .18);
  --aura-3: rgba(124, 58, 237, .16);
  --aura-4: rgba(0, 230, 118, .08);
  --aura-solid-1: #ff4d6d;
  --aura-solid-2: #ffb800;
  --aura-solid-3: #7c3aed;
  --aura-gradient: linear-gradient(135deg, #050716 0%, #7c1238 34%, #ff4d6d 68%, #ffb800 100%);
}

body[data-route="fitness"] {
  --aura-1: rgba(189, 255, 0, .28);
  --aura-2: rgba(0, 230, 118, .24);
  --aura-3: rgba(0, 213, 255, .14);
  --aura-4: rgba(255, 184, 0, .12);
  --aura-solid-1: #bdff00;
  --aura-solid-2: #00e676;
  --aura-solid-3: #050716;
  --aura-gradient: linear-gradient(135deg, #050716 0%, #1f3b00 32%, #bdff00 66%, #00e676 100%);
}

body[data-route="mindset"],
body[data-route="system"],
body[data-route="manifesto"],
body[data-route="faq"],
body[data-route="contact"] {
  --aura-1: rgba(124, 58, 237, .24);
  --aura-2: rgba(0, 87, 255, .2);
  --aura-3: rgba(255, 184, 0, .14);
  --aura-4: rgba(0, 230, 118, .1);
  --aura-solid-1: #7c3aed;
  --aura-solid-2: #0057ff;
  --aura-solid-3: #ffb800;
  --aura-gradient: linear-gradient(135deg, #050716 0%, #23146b 34%, #0057ff 68%, #ffb800 100%);
}

body[data-route="social"],
body[data-route="viral-desk"],
body[data-route="community"],
body[data-route="app"],
body[data-route="home"] {
  --aura-1: rgba(0, 213, 255, .28);
  --aura-2: rgba(0, 87, 255, .22);
  --aura-3: rgba(57, 255, 136, .16);
  --aura-4: rgba(255, 184, 0, .12);
  --aura-solid-1: #00d5ff;
  --aura-solid-2: #0057ff;
  --aura-solid-3: #00e676;
  --aura-gradient: linear-gradient(135deg, #050716 0%, #00316b 34%, #00d5ff 68%, #39ff88 100%);
}

body {
  background:
    radial-gradient(circle at 4% -8%, var(--aura-1), transparent 36%),
    radial-gradient(circle at 96% -2%, var(--aura-2), transparent 36%),
    radial-gradient(circle at 70% 18%, var(--aura-4), transparent 38%),
    linear-gradient(180deg, #ffffff 0%, #f9fff9 45%, #f6f8ff 100%);
}

body::before {
  opacity: .42;
  background:
    radial-gradient(circle at 24% 24%, var(--aura-1), transparent 42%),
    radial-gradient(circle at 76% 32%, var(--aura-2), transparent 44%),
    radial-gradient(circle at 56% 78%, var(--aura-3), transparent 48%);
}

body::after {
  opacity: .24;
  background:
    radial-gradient(circle at 28% 34%, var(--aura-2), transparent 38%),
    radial-gradient(circle at 80% 70%, var(--aura-4), transparent 50%);
}

.scene-vignette {
  background:
    linear-gradient(180deg, rgba(255,255,255,.46), rgba(255,255,255,.86) 66%, #ffffff),
    radial-gradient(circle at 16% 0, var(--aura-1), transparent 34%),
    radial-gradient(circle at 96% 0, var(--aura-2), transparent 34%);
}

.site-header,
.mobile-menu,
.sticky-access,
.waitlist-panel,
.waitlist-form,
.hero-visual,
.glass-phone,
.status-float,
.revenue-card,
.proof-card,
.trust-proof-grid article,
.emotion-grid article,
.value-grid article,
.preview-grid article,
.conversion-list article,
.proof-strip article,
.ecosystem-grid article,
.pillar-mobile-stack article,
.daily-card,
.faq-item,
.legal-card {
  border-color: color-mix(in srgb, var(--aura-solid-1) 24%, transparent);
  background: var(--aura-card);
  box-shadow: var(--aura-shadow);
}

.hero-visual,
.revenue-card,
.proof-card,
.status-float {
  color: #ffffff;
  background:
    radial-gradient(circle at 8% 0, var(--aura-1), transparent 34%),
    radial-gradient(circle at 92% 12%, var(--aura-2), transparent 36%),
    linear-gradient(180deg, #10130c 0%, var(--tri-black) 100%);
  border-color: rgba(255, 184, 0, .2);
  box-shadow: 0 34px 110px rgba(5, 7, 22, .24), 0 16px 44px color-mix(in srgb, var(--aura-solid-1) 22%, transparent);
}

.status-float span,
.proof-card p,
.revenue-card p,
.hero-visual p {
  color: rgba(255,255,255,.74);
}

.top-cta,
.primary-cta,
.mobile-menu-cta,
.sticky-access .primary-cta,
button.primary-cta {
  background:
    radial-gradient(circle at 24% 0, rgba(255,255,255,.42), transparent 30%),
    var(--aura-gradient);
  box-shadow: 0 18px 48px color-mix(in srgb, var(--aura-solid-1) 30%, transparent), 0 10px 24px rgba(255,184,0,.16), inset 0 1px 0 rgba(255,255,255,.48);
}

.hero h1,
.section-title h2 {
  background: linear-gradient(135deg, var(--tri-black) 0%, #0f2417 45%, var(--aura-solid-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.eyebrow,
.goodbye-cloud span:nth-child(3n + 2),
.conversion-list article span {
  color: var(--aura-solid-1);
}

.proof-card b,
.revenue-card span,
.goodbye-cloud span:nth-child(3n) {
  color: var(--tri-gold);
}

@media (max-width: 760px) {
  .hero-visual {
    background:
      radial-gradient(circle at 12% 0, var(--aura-1), transparent 34%),
      radial-gradient(circle at 92% 10%, var(--aura-2), transparent 36%),
      linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.68));
  }

  .status-float {
    color: var(--tri-black);
    background: var(--aura-card);
  }

  .status-float span {
    color: #526071;
  }
}

@keyframes menuIn {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

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

/* Trilogy Spectrum: premium high-energy colour system */
body {
  background:
    radial-gradient(circle at 18% 0, rgba(0, 213, 255, .24), transparent 32%),
    radial-gradient(circle at 82% 10%, rgba(255, 45, 85, .15), transparent 30%),
    radial-gradient(circle at 52% 4%, rgba(255, 184, 0, .16), transparent 26%),
    linear-gradient(180deg, #ffffff 0, #fffaff 420px, #f5f7ff 100%),
    var(--bg);
}

body::selection {
  color: #070716;
  background: rgba(255, 184, 0, .42);
}

#trilogyWebgl {
  opacity: .22;
  background:
    linear-gradient(118deg, rgba(0, 213, 255, .22), rgba(0, 87, 255, .12) 44%, rgba(255, 45, 85, .08)),
    #ffffff;
}

.scene-vignette {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .48), rgba(255, 255, 255, .92) 68%, #ffffff),
    radial-gradient(circle at 72% 12%, rgba(255, 184, 0, .16), transparent 28%),
    linear-gradient(96deg, rgba(255, 255, 255, 0), rgba(0, 213, 255, .1) 44%, rgba(255, 255, 255, 0));
}

:focus-visible {
  outline-color: rgba(0, 87, 255, .5);
}

.signal-bar span,
.status-pill,
.proof-chip,
.tag {
  border-color: rgba(0, 87, 255, .2);
  background: rgba(0, 213, 255, .12);
}

.site-header {
  border-color: rgba(7, 7, 22, .08);
  box-shadow: 0 18px 52px rgba(0, 87, 255, .09);
}

.top-cta,
.primary-cta,
.mobile-menu-cta,
.sticky-access .primary-cta,
button.primary-cta {
  color: #ffffff;
  background: var(--cta-gradient);
  box-shadow: 0 16px 34px rgba(0, 87, 255, .24);
}

.top-cta:hover,
.primary-cta:hover,
.mobile-menu-cta:hover {
  box-shadow: 0 20px 42px rgba(124, 58, 237, .25);
}

.ghost-cta {
  border-color: rgba(0, 87, 255, .16);
  background: rgba(255, 255, 255, .72);
}

.eyebrow {
  color: var(--violet);
}

.hero h1,
.section-heading h2,
.waitlist-panel h2 {
  color: var(--ink);
}

.hero-visual,
.revenue-card,
.waitlist-panel,
.sticky-access {
  box-shadow: var(--shadow);
}

.revenue-card,
.proof-card,
.trust-proof-grid article,
.emotion-grid article,
.value-grid article,
.preview-grid article,
.conversion-list article {
  border-color: rgba(0, 87, 255, .1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .86));
}

.revenue-card strong,
.goodbye-cloud span:nth-child(3n + 1),
.value-grid b {
  color: var(--blue);
}

.goodbye-cloud span:nth-child(3n + 2),
.conversion-list article span {
  color: var(--pink);
}

.goodbye-cloud span:nth-child(3n),
.proof-card b,
.revenue-card span {
  color: #9b6f00;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(0, 87, 255, .65);
  box-shadow: 0 0 0 4px rgba(0, 87, 255, .12);
}

/* Trilogy Liquid Glass: shared premium motion surface */
:root {
  --glass-white: rgba(255, 255, 255, .68);
  --glass-strong: rgba(255, 255, 255, .84);
  --glass-line: rgba(255, 255, 255, .64);
  --glass-blue-line: rgba(0, 87, 255, .14);
  --liquid-cyan: rgba(0, 213, 255, .34);
  --liquid-blue: rgba(0, 87, 255, .26);
  --liquid-violet: rgba(124, 58, 237, .24);
  --liquid-pink: rgba(255, 45, 85, .18);
  --liquid-gold: rgba(255, 184, 0, .22);
  --liquid-shadow: 0 34px 110px rgba(0, 87, 255, .16), 0 14px 34px rgba(7, 7, 22, .07);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  z-index: 1;
  pointer-events: none;
  width: min(520px, 70vw);
  height: min(520px, 70vw);
  border-radius: 42% 58% 64% 36% / 45% 42% 58% 55%;
  filter: blur(18px);
  opacity: .5;
  transform: translate3d(0, 0, 0);
  animation: liquidDrift 18s ease-in-out infinite alternate;
}

body::before {
  top: 8vh;
  left: -12vw;
  background:
    radial-gradient(circle at 34% 30%, var(--liquid-cyan), transparent 44%),
    radial-gradient(circle at 72% 62%, var(--liquid-violet), transparent 48%);
}

body::after {
  right: -14vw;
  bottom: 6vh;
  background:
    radial-gradient(circle at 38% 32%, var(--liquid-gold), transparent 42%),
    radial-gradient(circle at 70% 68%, var(--liquid-pink), transparent 52%);
  animation-delay: -7s;
}

#trilogyWebgl {
  opacity: .34;
  filter: saturate(1.25) contrast(1.03);
}

.scene-vignette {
  backdrop-filter: blur(.2px);
}

.scene-vignette::before,
.scene-vignette::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.scene-vignette::before {
  background:
    linear-gradient(116deg, transparent 0 28%, rgba(255, 255, 255, .62) 43%, transparent 54%),
    radial-gradient(circle at 50% 0, rgba(0, 213, 255, .18), transparent 34%);
  mix-blend-mode: screen;
  opacity: .46;
  animation: liquidSheen 13s ease-in-out infinite;
}

.scene-vignette::after {
  background-image:
    linear-gradient(rgba(255, 255, 255, .18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .15) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 50% 0, #000 0, transparent 62%);
  opacity: .16;
}

.site-header,
.mobile-menu,
.sticky-access,
.waitlist-panel,
.waitlist-form,
.hero-visual,
.glass-phone,
.status-float,
.revenue-card,
.proof-card,
.trust-proof-grid article,
.emotion-grid article,
.value-grid article,
.preview-grid article,
.conversion-list article,
.proof-strip article,
.ecosystem-grid article,
.pillar-mobile-stack article,
.daily-card,
.faq-item,
.legal-card {
  border-color: var(--glass-blue-line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .58)),
    radial-gradient(circle at 16% 0, rgba(0, 213, 255, .16), transparent 34%),
    radial-gradient(circle at 92% 12%, rgba(124, 58, 237, .12), transparent 36%);
  box-shadow: var(--liquid-shadow);
  -webkit-backdrop-filter: blur(28px) saturate(1.55);
  backdrop-filter: blur(28px) saturate(1.55);
}

.hero-visual,
.waitlist-panel,
.revenue-card,
.daily-card,
.sticky-access {
  position: relative;
  overflow: hidden;
}

.hero-visual::before,
.waitlist-panel::before,
.revenue-card::before,
.daily-card::before,
.sticky-access::before {
  content: "";
  position: absolute;
  inset: -2px;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(118deg, rgba(255, 255, 255, .66), transparent 28%, rgba(0, 213, 255, .2) 46%, transparent 62%, rgba(255, 184, 0, .22)),
    radial-gradient(circle at var(--glass-x, 50%) var(--glass-y, 18%), rgba(255, 255, 255, .72), transparent 24%);
  mix-blend-mode: screen;
  opacity: .56;
  animation: liquidSheen 10s ease-in-out infinite;
}

.top-cta,
.primary-cta,
.mobile-menu-cta,
.sticky-access .primary-cta,
button.primary-cta {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .38);
  background:
    radial-gradient(circle at 28% 0, rgba(255, 255, 255, .42), transparent 34%),
    linear-gradient(135deg, #76e7ff 0%, #0b63ff 48%, #6157ff 100%);
  box-shadow: 0 18px 46px rgba(0, 87, 255, .28), inset 0 1px 0 rgba(255, 255, 255, .42);
}

.top-cta::after,
.primary-cta::after,
.mobile-menu-cta::after,
.sticky-access .primary-cta::after,
button.primary-cta::after {
  content: "";
  position: absolute;
  inset: -80% -42%;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, .7) 48%, transparent 62%);
  transform: translateX(-46%) rotate(8deg);
  animation: liquidButtonSheen 4.8s ease-in-out infinite;
}

.hero-chips span,
.release-rail b,
.status-pill,
.proof-chip,
.tag,
.signal-bar span {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .82), rgba(255, 255, 255, .52)),
    radial-gradient(circle at 18% 0, rgba(0, 213, 255, .16), transparent 34%);
  border-color: rgba(0, 87, 255, .16);
  -webkit-backdrop-filter: blur(18px) saturate(1.45);
  backdrop-filter: blur(18px) saturate(1.45);
}

@keyframes liquidDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    border-radius: 42% 58% 64% 36% / 45% 42% 58% 55%;
  }
  50% {
    transform: translate3d(7vw, 4vh, 0) scale(1.08) rotate(9deg);
    border-radius: 61% 39% 42% 58% / 39% 62% 38% 61%;
  }
  100% {
    transform: translate3d(3vw, -2vh, 0) scale(.98) rotate(-6deg);
    border-radius: 36% 64% 56% 44% / 58% 42% 55% 45%;
  }
}

@keyframes liquidSheen {
  0%, 100% {
    opacity: .38;
    transform: translate3d(-4%, -2%, 0) rotate(0deg);
  }
  50% {
    opacity: .68;
    transform: translate3d(5%, 3%, 0) rotate(2deg);
  }
}

@keyframes liquidButtonSheen {
  0%, 42% {
    transform: translateX(-58%) rotate(8deg);
    opacity: 0;
  }
  54% {
    opacity: .86;
  }
  76%, 100% {
    transform: translateX(58%) rotate(8deg);
    opacity: 0;
  }
}

@media (max-width: 760px) {
  body::before,
  body::after {
    width: 70vw;
    height: 70vw;
    opacity: .34;
    filter: blur(24px);
  }

  .site-header,
  .mobile-menu,
  .sticky-access,
  .waitlist-panel,
  .hero-visual,
  .revenue-card {
    -webkit-backdrop-filter: blur(20px) saturate(1.35);
    backdrop-filter: blur(20px) saturate(1.35);
  }

  .sticky-access {
    left: 12px;
    right: auto;
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
  }

  .signal-bar {
    justify-content: flex-start;
    overflow: hidden;
  }

  .signal-bar b {
    min-width: 0;
    max-width: calc(100vw - 150px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before,
  body::after,
  .scene-vignette::before,
  .top-cta::after,
  .primary-cta::after,
  .mobile-menu-cta::after,
  .sticky-access .primary-cta::after,
  button.primary-cta::after,
  .hero-visual::before,
  .waitlist-panel::before,
  .revenue-card::before,
  .daily-card::before,
  .sticky-access::before {
    animation: none !important;
  }
}

/* Trilogy Optical Glass v2: calmer luxury layer for mobile-first conversion */
:root {
  --bg: #f8fbff;
  --surface: rgba(255, 255, 255, .78);
  --surface-strong: #ffffff;
  --ink: #07111f;
  --muted: #627086;
  --line: rgba(42, 78, 126, .11);
  --blue: #0b63ff;
  --cyan: #76e7ff;
  --violet: #6157ff;
  --pink: #b75cff;
  --gold: #d59b00;
  --cta-gradient: linear-gradient(135deg, #76e7ff 0%, #0b63ff 48%, #6157ff 100%);
  --glass-white: rgba(255, 255, 255, .72);
  --glass-strong: rgba(255, 255, 255, .88);
  --glass-line: rgba(255, 255, 255, .74);
  --glass-blue-line: rgba(77, 124, 255, .16);
  --liquid-cyan: rgba(118, 231, 255, .2);
  --liquid-blue: rgba(11, 99, 255, .14);
  --liquid-violet: rgba(97, 87, 255, .12);
  --liquid-pink: rgba(183, 92, 255, .06);
  --liquid-gold: rgba(213, 155, 0, .08);
  --shadow: 0 24px 70px rgba(35, 75, 140, .09);
  --liquid-shadow: 0 26px 76px rgba(35, 75, 140, .1), 0 10px 28px rgba(7, 17, 31, .05);
}

body {
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 0, rgba(118, 231, 255, .16), transparent 36%),
    radial-gradient(circle at 84% 6%, rgba(97, 87, 255, .08), transparent 34%),
    linear-gradient(180deg, #ffffff 0, #fbfdff 46%, #f3f8ff 100%);
}

body::before,
body::after {
  opacity: .2;
  filter: blur(38px);
  animation-duration: 26s;
}

body::before {
  background:
    radial-gradient(circle at 34% 30%, rgba(118, 231, 255, .24), transparent 46%),
    radial-gradient(circle at 72% 62%, rgba(97, 87, 255, .12), transparent 50%);
}

body::after {
  background:
    radial-gradient(circle at 38% 32%, rgba(255, 255, 255, .28), transparent 40%),
    radial-gradient(circle at 70% 68%, rgba(11, 99, 255, .1), transparent 54%);
}

#trilogyWebgl {
  opacity: .16;
  filter: saturate(.86) contrast(.98) brightness(1.08);
}

.scene-vignette {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .7), rgba(255, 255, 255, .95) 70%, #ffffff),
    radial-gradient(circle at 50% 0, rgba(118, 231, 255, .1), transparent 38%);
}

.scene-vignette::before {
  opacity: .22;
  animation-duration: 18s;
}

.scene-vignette::after {
  opacity: .06;
}

.site-header,
.mobile-menu,
.sticky-access,
.waitlist-panel,
.waitlist-form,
.hero-visual,
.glass-phone,
.status-float,
.revenue-card,
.proof-card,
.trust-proof-grid article,
.emotion-grid article,
.value-grid article,
.preview-grid article,
.conversion-list article,
.proof-strip article,
.ecosystem-grid article,
.pillar-mobile-stack article,
.daily-card,
.faq-item,
.legal-card {
  border-color: rgba(77, 124, 255, .14);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .9), rgba(255, 255, 255, .68)),
    radial-gradient(circle at 16% 0, rgba(118, 231, 255, .08), transparent 32%),
    radial-gradient(circle at 92% 12%, rgba(97, 87, 255, .055), transparent 36%);
  box-shadow: var(--liquid-shadow);
  -webkit-backdrop-filter: blur(30px) saturate(1.18);
  backdrop-filter: blur(30px) saturate(1.18);
}

.hero-visual::before,
.waitlist-panel::before,
.revenue-card::before,
.daily-card::before,
.sticky-access::before {
  background:
    linear-gradient(118deg, rgba(255, 255, 255, .54), transparent 34%, rgba(118, 231, 255, .11) 50%, transparent 68%),
    radial-gradient(circle at var(--glass-x, 50%) var(--glass-y, 18%), rgba(255, 255, 255, .55), transparent 22%);
  opacity: .28;
  animation-duration: 16s;
}

.top-cta,
.primary-cta,
.mobile-menu-cta,
.sticky-access .primary-cta,
button.primary-cta {
  color: #ffffff;
  border-color: rgba(255, 255, 255, .44);
  background:
    radial-gradient(circle at 28% 0, rgba(255, 255, 255, .36), transparent 34%),
    var(--cta-gradient);
  box-shadow: 0 16px 36px rgba(11, 99, 255, .22), inset 0 1px 0 rgba(255, 255, 255, .42);
}

.top-cta::after,
.primary-cta::after,
.mobile-menu-cta::after,
.sticky-access .primary-cta::after,
button.primary-cta::after {
  background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, .52) 50%, transparent 63%);
  animation-duration: 7.2s;
}

.hero-chips span,
.release-rail b,
.release-rail span,
.status-pill,
.proof-chip,
.tag,
.signal-bar span,
.eyebrow {
  color: #26384f;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .86), rgba(255, 255, 255, .66)),
    radial-gradient(circle at 18% 0, rgba(118, 231, 255, .09), transparent 34%);
  border-color: rgba(77, 124, 255, .13);
  box-shadow: 0 8px 20px rgba(35, 75, 140, .045);
}

.eyebrow {
  color: #5048d8;
}

.goodbye-cloud span:nth-child(3n + 2),
.conversion-list article span {
  color: #5048d8;
}

.goodbye-cloud span:nth-child(3n),
.proof-card b,
.revenue-card span {
  color: #876400;
}

@media (max-width: 760px) {
  body {
    background:
      radial-gradient(circle at 18% -4%, rgba(118, 231, 255, .14), transparent 34%),
      linear-gradient(180deg, #ffffff 0, #f8fbff 100%);
  }

  body::before,
  body::after {
    opacity: .12;
    filter: blur(34px);
  }

  #trilogyWebgl {
    opacity: .1;
  }

  .site-header,
  .mobile-menu,
  .sticky-access,
  .waitlist-panel,
  .hero-visual,
  .revenue-card,
  .value-grid article,
  .preview-grid article,
  .conversion-list article {
    box-shadow: 0 18px 46px rgba(35, 75, 140, .08);
    -webkit-backdrop-filter: blur(22px) saturate(1.08);
    backdrop-filter: blur(22px) saturate(1.08);
  }

  .hero h1 {
    letter-spacing: 0;
  }
}

/* Trilogy Mobile Calm Pass: fewer visible objects, clearer first action */
@media (max-width: 760px) {
  .signal-bar {
    display: none;
  }

  .page {
    padding-top: 10px;
  }

  .site-header {
    position: sticky;
    top: 8px;
    border-radius: 14px;
    padding: 10px 12px;
    box-shadow: 0 14px 34px rgba(35, 75, 140, .065);
  }

  .brand {
    gap: 0;
  }

  .brand span:last-child {
    max-width: none;
    font-size: 18px;
  }

  .hero {
    padding-top: 28px;
    gap: 24px;
  }

  .hero-copy {
    gap: 14px;
  }

  .release-rail {
    display: none;
  }

  .eyebrow {
    width: fit-content;
    max-width: 100%;
    padding: 7px 10px;
    font-size: 10px;
  }

  .hero h1 {
    font-size: clamp(34px, 9.2vw, 39px);
    line-height: 1.03;
  }

  .lead {
    color: #536174;
    font-size: 15px;
    line-height: 1.58;
  }

  .hero-chips {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .hero-chips span {
    min-height: 38px;
    display: inline-grid;
    place-items: center;
    padding: 8px 10px;
    text-align: center;
  }

  .hero-chips span:nth-child(n + 3) {
    display: none;
  }

  .hero-actions {
    gap: 8px;
  }

  .primary-cta,
  .ghost-cta {
    min-height: 50px;
    border-radius: 13px;
  }

  .cta-reassurance {
    min-height: 34px;
    margin-top: 2px;
    color: #536174;
    font-size: 12px;
    box-shadow: none;
  }

  .trust-row {
    display: none;
  }

  .hero-orbit {
    min-height: 350px;
  }

  .sticky-access {
    border-radius: 14px;
    box-shadow: 0 16px 38px rgba(35, 75, 140, .1);
  }
}

/* Trilogy Liquid Dopamine v3: vivid premium glass, smartphone-first */
:root {
  --bg: #f7fff9;
  --ink: #050716;
  --muted: #546172;
  --green: #00e676;
  --green-hot: #39ff88;
  --green-mid: #00b868;
  --blue: #0057ff;
  --cyan: #00d5ff;
  --violet: #7c3aed;
  --pink: #ff2d55;
  --gold: #ffb800;
  --cta-gradient: linear-gradient(135deg, #39ff88 0%, #00d5ff 32%, #0057ff 66%, #7c3aed 100%);
  --liquid-cyan: rgba(0, 213, 255, .34);
  --liquid-blue: rgba(0, 87, 255, .26);
  --liquid-violet: rgba(124, 58, 237, .2);
  --liquid-pink: rgba(255, 45, 85, .1);
  --liquid-gold: rgba(255, 184, 0, .14);
  --liquid-shadow: 0 28px 90px rgba(0, 87, 255, .15), 0 14px 34px rgba(0, 184, 104, .08);
}

body {
  background:
    radial-gradient(circle at 8% -6%, rgba(57, 255, 136, .2), transparent 36%),
    radial-gradient(circle at 96% 0%, rgba(0, 213, 255, .24), transparent 35%),
    radial-gradient(circle at 70% 16%, rgba(124, 58, 237, .12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7fff9 44%, #f4f8ff 100%);
}

body::before {
  opacity: .36;
  background:
    radial-gradient(circle at 24% 24%, rgba(57, 255, 136, .34), transparent 42%),
    radial-gradient(circle at 76% 34%, rgba(0, 213, 255, .3), transparent 42%),
    radial-gradient(circle at 62% 78%, rgba(124, 58, 237, .16), transparent 48%);
}

body::after {
  opacity: .24;
  background:
    radial-gradient(circle at 26% 34%, rgba(255, 184, 0, .22), transparent 38%),
    radial-gradient(circle at 76% 70%, rgba(255, 45, 85, .12), transparent 48%);
}

#trilogyWebgl {
  opacity: .24;
  filter: saturate(1.18) contrast(1.04) brightness(1.03);
}

.scene-vignette {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .5), rgba(255, 255, 255, .86) 66%, #ffffff),
    radial-gradient(circle at 24% 0, rgba(57, 255, 136, .13), transparent 32%),
    radial-gradient(circle at 92% 0, rgba(0, 213, 255, .12), transparent 34%);
}

.site-header,
.mobile-menu,
.sticky-access,
.waitlist-panel,
.waitlist-form,
.hero-visual,
.glass-phone,
.status-float,
.revenue-card,
.proof-card,
.trust-proof-grid article,
.emotion-grid article,
.value-grid article,
.preview-grid article,
.conversion-list article,
.proof-strip article,
.ecosystem-grid article,
.pillar-mobile-stack article,
.daily-card,
.faq-item,
.legal-card {
  border-color: rgba(0, 87, 255, .17);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .68)),
    radial-gradient(circle at 10% 0, rgba(57, 255, 136, .13), transparent 34%),
    radial-gradient(circle at 92% 0, rgba(0, 213, 255, .12), transparent 34%),
    radial-gradient(circle at 80% 90%, rgba(124, 58, 237, .07), transparent 40%);
  box-shadow: var(--liquid-shadow);
  -webkit-backdrop-filter: blur(30px) saturate(1.42);
  backdrop-filter: blur(30px) saturate(1.42);
}

.hero h1,
.section-title h2 {
  color: #050716;
  background: linear-gradient(135deg, #050716 0%, #071f45 48%, #3b168d 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

@supports (-webkit-background-clip: text) {
  .hero h1,
  .section-title h2 {
    -webkit-text-fill-color: transparent;
  }
}

.top-cta,
.primary-cta,
.mobile-menu-cta,
.sticky-access .primary-cta,
button.primary-cta {
  color: #ffffff;
  border-color: rgba(255, 255, 255, .58);
  background:
    radial-gradient(circle at 24% 0, rgba(255, 255, 255, .5), transparent 30%),
    var(--cta-gradient);
  box-shadow: 0 18px 48px rgba(0, 87, 255, .28), 0 10px 24px rgba(0, 230, 118, .18), inset 0 1px 0 rgba(255, 255, 255, .5);
}

.top-cta:hover,
.primary-cta:hover,
.mobile-menu-cta:hover,
.sticky-access .primary-cta:hover,
button.primary-cta:hover {
  box-shadow: 0 22px 58px rgba(0, 87, 255, .34), 0 14px 30px rgba(0, 230, 118, .22), inset 0 1px 0 rgba(255, 255, 255, .58);
}

.hero-chips span,
.release-rail b,
.release-rail span,
.status-pill,
.proof-chip,
.tag,
.signal-bar span,
.eyebrow {
  color: #061525;
  border-color: rgba(0, 213, 255, .18);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .9), rgba(255, 255, 255, .62)),
    radial-gradient(circle at 12% 0, rgba(57, 255, 136, .16), transparent 36%),
    radial-gradient(circle at 92% 0, rgba(0, 213, 255, .12), transparent 38%);
  box-shadow: 0 10px 24px rgba(0, 87, 255, .07);
}

.eyebrow,
.goodbye-cloud span:nth-child(3n + 2),
.conversion-list article span {
  color: #0057ff;
}

.proof-card b,
.revenue-card span,
.goodbye-cloud span:nth-child(3n) {
  color: #00a35e;
}

@media (max-width: 760px) {
  body {
    background:
      radial-gradient(circle at 0% -8%, rgba(57, 255, 136, .24), transparent 36%),
      radial-gradient(circle at 100% -4%, rgba(0, 213, 255, .24), transparent 36%),
      radial-gradient(circle at 72% 20%, rgba(124, 58, 237, .12), transparent 34%),
      linear-gradient(180deg, #ffffff 0%, #f7fff9 54%, #f5f8ff 100%);
  }

  body::before,
  body::after {
    opacity: .28;
  }

  #trilogyWebgl {
    opacity: .18;
  }

  .site-header {
    grid-template-columns: auto 1fr;
    min-height: 66px;
    border-color: rgba(0, 213, 255, .2);
    box-shadow: 0 18px 46px rgba(0, 87, 255, .12), 0 10px 26px rgba(0, 230, 118, .08);
  }

  .menu-toggle {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    width: 44px;
    height: 44px;
    border-color: rgba(0, 213, 255, .22);
    background:
      linear-gradient(145deg, rgba(255,255,255,.94), rgba(255,255,255,.72)),
      radial-gradient(circle at 20% 0, rgba(57,255,136,.22), transparent 40%);
  }

  .menu-toggle span {
    background: #050716;
  }

  .brand {
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
    padding-left: 4px;
  }

  .mobile-menu {
    transform-origin: top left;
  }

  .hero h1 {
    font-size: clamp(36px, 9.7vw, 42px);
  }

  .lead {
    color: #465467;
  }

  .primary-cta,
  .ghost-cta {
    min-height: 52px;
  }
}

/* Trilogy Aura Final Override: keep adaptive rooms above every older layer */
body {
  background:
    radial-gradient(circle at 4% -8%, var(--aura-1), transparent 36%),
    radial-gradient(circle at 96% -2%, var(--aura-2), transparent 36%),
    radial-gradient(circle at 70% 18%, var(--aura-4), transparent 38%),
    linear-gradient(180deg, #ffffff 0%, #f9fff9 45%, #f6f8ff 100%);
}

body::before {
  opacity: .42;
  background:
    radial-gradient(circle at 24% 24%, var(--aura-1), transparent 42%),
    radial-gradient(circle at 76% 32%, var(--aura-2), transparent 44%),
    radial-gradient(circle at 56% 78%, var(--aura-3), transparent 48%);
}

body::after {
  opacity: .24;
  background:
    radial-gradient(circle at 28% 34%, var(--aura-2), transparent 38%),
    radial-gradient(circle at 80% 70%, var(--aura-4), transparent 50%);
}

.scene-vignette {
  background:
    linear-gradient(180deg, rgba(255,255,255,.46), rgba(255,255,255,.86) 66%, #ffffff),
    radial-gradient(circle at 16% 0, var(--aura-1), transparent 34%),
    radial-gradient(circle at 96% 0, var(--aura-2), transparent 34%);
}

.site-header,
.mobile-menu,
.sticky-access,
.waitlist-panel,
.waitlist-form,
.trust-proof-grid article,
.emotion-grid article,
.value-grid article,
.preview-grid article,
.conversion-list article,
.proof-strip article,
.ecosystem-grid article,
.pillar-mobile-stack article,
.daily-card,
.faq-item,
.legal-card {
  border-color: color-mix(in srgb, var(--aura-solid-1) 24%, transparent);
  background: var(--aura-card);
  box-shadow: var(--aura-shadow);
}

.hero-visual,
.revenue-card,
.proof-card,
.status-float {
  color: #ffffff;
  background:
    radial-gradient(circle at 8% 0, var(--aura-1), transparent 34%),
    radial-gradient(circle at 92% 12%, var(--aura-2), transparent 36%),
    linear-gradient(180deg, #10130c 0%, var(--tri-black) 100%);
  border-color: rgba(255, 184, 0, .2);
  box-shadow: 0 34px 110px rgba(5, 7, 22, .24), 0 16px 44px color-mix(in srgb, var(--aura-solid-1) 22%, transparent);
}

.top-cta,
.primary-cta,
.mobile-menu-cta,
.sticky-access .primary-cta,
button.primary-cta {
  background:
    radial-gradient(circle at 24% 0, rgba(255,255,255,.42), transparent 30%),
    var(--aura-gradient);
  box-shadow: 0 18px 48px color-mix(in srgb, var(--aura-solid-1) 30%, transparent), 0 10px 24px rgba(255,184,0,.16), inset 0 1px 0 rgba(255,255,255,.48);
}

.hero h1,
.section-title h2 {
  background: linear-gradient(135deg, var(--tri-black) 0%, #0f2417 45%, var(--aura-solid-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.eyebrow,
.goodbye-cloud span:nth-child(3n + 2),
.conversion-list article span {
  color: var(--aura-solid-1);
}

.proof-card b,
.revenue-card span,
.goodbye-cloud span:nth-child(3n) {
  color: var(--tri-gold);
}

@media (max-width: 760px) {
  .hero-visual {
    background:
      radial-gradient(circle at 12% 0, var(--aura-1), transparent 34%),
      radial-gradient(circle at 92% 10%, var(--aura-2), transparent 36%),
      linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.68));
  }

  .status-float {
    color: var(--tri-black);
    background: var(--aura-card);
  }
}

/* Trilogy Minimal v1: one Apple/Revolut-style color system */
:root,
body,
body[data-route] {
  --bg: #f5f5f7;
  --surface: rgba(255,255,255,.86);
  --surface-strong: #ffffff;
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --line: rgba(29,29,31,.1);
  --soft: #f2f4f8;
  --green: #007aff;
  --green-hot: #0a84ff;
  --green-dark: #1d1d1f;
  --green-mid: #0066cc;
  --cyan: #007aff;
  --blue: #007aff;
  --violet: #007aff;
  --pink: #007aff;
  --gold: #007aff;
  --tri-black: #1d1d1f;
  --tri-emerald: #007aff;
  --tri-emerald-hot: #0a84ff;
  --tri-gold: #007aff;
  --tri-gold-soft: #eaf3ff;
  --aura: #eaf3ff;
  --aura-1: rgba(0,122,255,.095);
  --aura-2: rgba(0,122,255,.07);
  --aura-3: rgba(0,122,255,.045);
  --aura-4: rgba(29,29,31,.035);
  --aura-solid-1: #007aff;
  --aura-solid-2: #0066cc;
  --aura-solid-3: #1d1d1f;
  --aura-gradient: linear-gradient(180deg, #0a84ff 0%, #007aff 52%, #0066cc 100%);
  --cta-gradient: var(--aura-gradient);
  --aura-card: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.78));
  --aura-shadow: 0 24px 70px rgba(29,29,31,.07);
  --shadow: 0 28px 80px rgba(29,29,31,.08);
  --shadow-tight: 0 8px 24px rgba(29,29,31,.06);
}

html,
body {
  background: #f5f5f7;
}

body {
  color: var(--ink);
  background:
    radial-gradient(circle at 50% -12%, rgba(0,122,255,.13), transparent 34%),
    linear-gradient(180deg, #ffffff 0, #fbfbfd 470px, #f5f5f7 100%);
}

body::before,
body::after {
  opacity: .16;
  filter: saturate(.25) blur(2px);
  background:
    radial-gradient(circle at 24% 18%, rgba(0,122,255,.14), transparent 42%),
    radial-gradient(circle at 80% 10%, rgba(0,122,255,.08), transparent 44%);
}

#trilogyWebgl {
  opacity: .08 !important;
  filter: saturate(.22) contrast(.92) brightness(1.08);
}

.scene-vignette {
  background: linear-gradient(180deg, rgba(255,255,255,.5), rgba(255,255,255,.9) 68%, #f5f5f7);
}

.site-header,
.mobile-menu,
.sticky-access,
.waitlist-panel,
.waitlist-form,
.trust-proof-grid article,
.emotion-grid article,
.value-grid article,
.preview-grid article,
.conversion-list article,
.proof-strip article,
.ecosystem-grid article,
.pillar-mobile-stack article,
.daily-card,
.faq-item,
.legal-card,
.revenue-card,
.proof-card,
.status-float {
  color: var(--ink);
  border: 1px solid rgba(29,29,31,.095);
  background: rgba(255,255,255,.82);
  box-shadow: 0 18px 52px rgba(29,29,31,.065);
  backdrop-filter: blur(22px) saturate(1.25);
}

.hero-visual {
  color: var(--ink);
  border-color: rgba(29,29,31,.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.72)),
    radial-gradient(circle at 50% 0, rgba(0,122,255,.13), transparent 44%);
  box-shadow: 0 30px 90px rgba(29,29,31,.09);
}

.top-cta,
.primary-cta,
.mobile-menu-cta,
.sticky-access .primary-cta,
button.primary-cta {
  color: #ffffff;
  border-color: transparent;
  background: var(--cta-gradient);
  box-shadow: 0 14px 34px rgba(0,122,255,.22), inset 0 1px 0 rgba(255,255,255,.34);
}

.top-cta:hover,
.primary-cta:hover,
.mobile-menu-cta:hover,
.sticky-access .primary-cta:hover,
button.primary-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(0,122,255,.26), inset 0 1px 0 rgba(255,255,255,.42);
}

.ghost-cta,
.text-button,
footer a,
nav a:hover,
.eyebrow,
.goodbye-cloud span:nth-child(n),
.conversion-list article span,
.proof-card b,
.revenue-card span {
  color: #007aff;
}

.hero h1,
.section-title h2 {
  color: var(--ink);
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: currentColor;
}

.hero-chips span,
.release-rail b,
.release-rail span,
.status-pill,
.proof-chip,
.tag,
.signal-bar span,
.eyebrow {
  color: #1d1d1f;
  border-color: rgba(29,29,31,.09);
  background: rgba(255,255,255,.78);
  box-shadow: none;
}

.progress-fill,
.xp-track i,
.viral-score-bar i,
.waitlist-form .primary-cta {
  background: var(--cta-gradient);
}

@media (max-width: 760px) {
  body {
    background:
      radial-gradient(circle at 50% -10%, rgba(0,122,255,.12), transparent 34%),
      linear-gradient(180deg, #ffffff 0, #fbfbfd 420px, #f5f5f7 100%);
  }

  .site-header {
    min-height: 62px;
    border-color: rgba(29,29,31,.08);
    box-shadow: 0 10px 34px rgba(29,29,31,.07);
  }

  .menu-toggle,
  .mobile-menu {
    border-color: rgba(29,29,31,.09);
    background: rgba(255,255,255,.88);
    box-shadow: 0 14px 42px rgba(29,29,31,.08);
  }

  .hero h1 {
    font-size: clamp(34px, 9vw, 42px);
    letter-spacing: 0;
  }

  .lead {
    color: #6e6e73;
  }
}

/* Performance layer: render the first promise immediately, defer offscreen work. */
@supports (content-visibility: auto) {
  #routeContent > section:not(.hero) {
    content-visibility: auto;
    contain-intrinsic-size: auto 760px;
  }
}

.waitlist-panel,
.waitlist-form,
.trust-proof-grid article,
.emotion-grid article,
.value-grid article,
.preview-grid article,
.conversion-list article,
.proof-strip article,
.ecosystem-grid article,
.pillar-mobile-stack article,
.daily-card,
.faq-item,
.legal-card,
.revenue-card,
.proof-card,
.status-float {
  contain: layout paint;
}

@media (max-width: 560px) {
  body::before,
  body::after {
    animation: none !important;
    filter: saturate(.22) blur(1px) !important;
    opacity: .1 !important;
  }

  #trilogyWebgl {
    display: none;
  }
}

/* Trilogy Premium Emerald System: final visible palette */
:root {
  --bg: #fbfffc;
  --surface: rgba(255, 255, 255, .9);
  --surface-strong: #ffffff;
  --ink: #07110c;
  --muted: #5d6b62;
  --line: rgba(7, 17, 12, .09);
  --soft: #f2faf5;
  --green: #00a86b;
  --green-hot: #19c37d;
  --green-dark: #006b45;
  --green-mid: #008f5d;
  --cyan: #00a86b;
  --blue: #00a86b;
  --violet: #007a4e;
  --pink: #00a86b;
  --gold: #0f8f4f;
  --aura: #eafff2;
  --cta-gradient: linear-gradient(180deg, #19c37d 0%, #00a86b 100%);
  --shadow: 0 28px 82px rgba(0, 120, 78, .12);
  --shadow-tight: 0 10px 30px rgba(7, 17, 12, .055);
  --liquid-shadow: 0 26px 76px rgba(0, 120, 78, .1), 0 10px 28px rgba(7, 17, 12, .045);
}

body {
  background:
    radial-gradient(circle at 50% 0%, rgba(25, 195, 125, .14), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fbfffc 46%, #f2faf5 100%);
}

body::before,
body::after {
  opacity: .12;
  background: radial-gradient(circle at 50% 30%, rgba(25, 195, 125, .22), transparent 42%);
}

#trilogyWebgl {
  opacity: .1;
  filter: saturate(.78) contrast(.98) brightness(1.04);
}

.scene-vignette {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .74), rgba(255, 255, 255, .96) 70%, #ffffff),
    radial-gradient(circle at 50% 0%, rgba(25, 195, 125, .08), transparent 38%);
}

.hero h1,
.section-title h2 {
  color: var(--ink);
  background: none;
  -webkit-text-fill-color: var(--ink);
}

.site-header,
.mobile-menu,
.sticky-access,
.waitlist-panel,
.waitlist-form,
.hero-visual,
.glass-phone,
.status-float,
.revenue-card,
.proof-card,
.trust-proof-grid article,
.emotion-grid article,
.value-grid article,
.preview-grid article,
.conversion-list article,
.proof-strip article,
.ecosystem-grid article,
.pillar-mobile-stack article,
.daily-card,
.faq-item,
.legal-card {
  border-color: rgba(0, 120, 78, .11);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .94), rgba(255, 255, 255, .76)),
    radial-gradient(circle at 16% 0, rgba(25, 195, 125, .07), transparent 32%);
  box-shadow: var(--liquid-shadow);
  -webkit-backdrop-filter: blur(26px) saturate(1.08);
  backdrop-filter: blur(26px) saturate(1.08);
}

.top-cta,
.primary-cta,
.mobile-menu-cta,
.sticky-access .primary-cta,
button.primary-cta {
  color: #ffffff;
  border-color: rgba(255, 255, 255, .52);
  background:
    radial-gradient(circle at 28% 0, rgba(255, 255, 255, .34), transparent 34%),
    var(--cta-gradient);
  box-shadow: 0 16px 38px rgba(0, 168, 107, .22), inset 0 1px 0 rgba(255, 255, 255, .38);
}

.top-cta:hover,
.primary-cta:hover,
.mobile-menu-cta:hover,
.sticky-access .primary-cta:hover,
button.primary-cta:hover {
  box-shadow: 0 20px 48px rgba(0, 168, 107, .27), inset 0 1px 0 rgba(255, 255, 255, .48);
}

.hero-chips span,
.release-rail b,
.release-rail span,
.status-pill,
.proof-chip,
.tag,
.signal-bar span,
.eyebrow {
  color: #006b45;
  border-color: rgba(0, 168, 107, .13);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .72)),
    radial-gradient(circle at 18% 0, rgba(25, 195, 125, .08), transparent 34%);
  box-shadow: 0 8px 20px rgba(0, 120, 78, .045);
}

.eyebrow,
.conversion-list article span,
.proof-card b,
.revenue-card span {
  color: #008f5d;
}

.waitlist-form input:focus,
.waitlist-form select:focus {
  border-color: rgba(0, 168, 107, .58);
  box-shadow: 0 0 0 4px rgba(0, 168, 107, .11);
}

:focus-visible {
  outline-color: rgba(0, 168, 107, .46);
}

@media (max-width: 760px) {
  body {
    background:
      radial-gradient(circle at 50% -6%, rgba(25, 195, 125, .16), transparent 34%),
      linear-gradient(180deg, #ffffff 0%, #fbfffc 58%, #f2faf5 100%);
  }

  .site-header {
    grid-template-columns: auto 1fr;
    border-color: rgba(0, 168, 107, .13);
    box-shadow: 0 14px 34px rgba(0, 120, 78, .08);
  }

  .menu-toggle {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    border-color: rgba(0, 168, 107, .16);
    background: rgba(255, 255, 255, .92);
  }

  .brand {
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
  }
}

/* Final production lock: one premium emerald system across the live site. */
:root {
  --bg: #fbfffc !important;
  --surface: rgba(255, 255, 255, .9) !important;
  --surface-strong: #ffffff !important;
  --ink: #07110c !important;
  --muted: #5d6b62 !important;
  --line: rgba(7, 17, 12, .09) !important;
  --soft: #f2faf5 !important;
  --green: #00a86b !important;
  --green-hot: #19c37d !important;
  --green-dark: #006b45 !important;
  --green-mid: #008f5d !important;
  --cyan: #00a86b !important;
  --blue: #00a86b !important;
  --violet: #007a4e !important;
  --pink: #00a86b !important;
  --gold: #0f8f4f !important;
  --aura: #eafff2 !important;
  --cta-gradient: linear-gradient(180deg, #19c37d 0%, #00a86b 100%) !important;
}

body {
  background:
    radial-gradient(circle at 50% 0%, rgba(25, 195, 125, .14), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fbfffc 48%, #f2faf5 100%) !important;
}

#trilogyWebgl {
  opacity: .08 !important;
  filter: saturate(.7) contrast(.96) brightness(1.06) !important;
}

.scene-vignette {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .78), rgba(255, 255, 255, .97) 70%, #ffffff),
    radial-gradient(circle at 50% 0%, rgba(25, 195, 125, .07), transparent 38%) !important;
}

.top-cta,
.primary-cta,
.mobile-menu-cta,
.sticky-access .primary-cta,
button.primary-cta {
  color: #ffffff !important;
  background:
    radial-gradient(circle at 28% 0, rgba(255, 255, 255, .34), transparent 34%),
    var(--cta-gradient) !important;
  box-shadow: 0 16px 38px rgba(0, 168, 107, .22), inset 0 1px 0 rgba(255, 255, 255, .38) !important;
}

.top-cta:hover,
.primary-cta:hover,
.mobile-menu-cta:hover,
.sticky-access .primary-cta:hover,
button.primary-cta:hover {
  box-shadow: 0 20px 48px rgba(0, 168, 107, .27), inset 0 1px 0 rgba(255, 255, 255, .48) !important;
}

.hero-chips span,
.status-pill,
.proof-chip,
.tag,
.signal-bar span,
.eyebrow {
  color: #006b45 !important;
  border-color: rgba(0, 168, 107, .13) !important;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .72)),
    radial-gradient(circle at 18% 0, rgba(25, 195, 125, .08), transparent 34%) !important;
}

.site-header,
.mobile-menu,
.sticky-access,
.waitlist-panel,
.waitlist-form,
.glass-phone,
.status-float,
.revenue-card,
.trust-proof-grid article,
.value-grid article,
.preview-grid article,
.conversion-list article,
.proof-strip article,
.ecosystem-grid article,
.pillar-mobile-stack article,
.daily-card {
  border-color: rgba(0, 120, 78, .11) !important;
  box-shadow: 0 26px 76px rgba(0, 120, 78, .1), 0 10px 28px rgba(7, 17, 12, .045) !important;
}

/* Website lock v37: organized, calm, premium waitlist experience. */
:root {
  --bg: #fbfffc !important;
  --surface: rgba(255, 255, 255, .86) !important;
  --surface-strong: #ffffff !important;
  --ink: #07110c !important;
  --muted: #586760 !important;
  --line: rgba(7, 17, 12, .085) !important;
  --soft: #f3faf6 !important;
  --green: #00a86b !important;
  --green-hot: #19c37d !important;
  --green-dark: #006b45 !important;
  --green-mid: #008f5d !important;
  --blue: #00a86b !important;
  --violet: #008f5d !important;
  --gold: #00a86b !important;
  --cta-gradient: linear-gradient(180deg, #19c37d 0%, #00a86b 100%) !important;
}

html {
  scroll-padding-top: 112px;
}

body {
  color: var(--ink) !important;
  letter-spacing: 0 !important;
  background:
    radial-gradient(circle at 50% -8%, rgba(25, 195, 125, .13), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #fbfffc 52%, #f4fbf7 100%) !important;
}

h1,
h2,
h3,
p,
a,
span,
button,
input,
select,
summary {
  letter-spacing: 0 !important;
}

.page-shell,
.hero,
.proof-band,
.ecosystem,
.access,
.value,
.revenue,
.trust-stack,
.app-preview,
.conversion,
.pillar-page,
.daily-system,
.faq,
.manifesto,
.waitlist-benefits,
.waitlist-panel {
  isolation: isolate;
}

.site-header {
  background: rgba(255, 255, 255, .9) !important;
  border: 1px solid rgba(0, 120, 78, .1) !important;
  box-shadow: 0 18px 54px rgba(7, 17, 12, .06) !important;
}

.hero {
  gap: clamp(28px, 5vw, 72px) !important;
  align-items: center !important;
  padding-top: clamp(24px, 3vw, 38px) !important;
  padding-bottom: clamp(28px, 3.4vw, 44px) !important;
}

.hero-copy {
  max-width: 720px !important;
}

.hero-copy h1 {
  max-width: 12ch !important;
}

.lead {
  max-width: 660px !important;
  color: #405048 !important;
}

.trust-row {
  display: none !important;
}

.section-heading {
  max-width: 760px !important;
}

.section-heading.centered {
  margin-inline: auto !important;
}

.section-heading p,
.pillar-intro p,
.conversion p,
.manifesto-copy p,
.waitlist-panel p {
  max-width: 680px !important;
  color: #526159 !important;
}

.hero-chips,
.trust-row,
.proof-strip,
.ecosystem-grid,
.access-grid,
.value-grid,
.preview-grid,
.trust-proof-grid,
.conversion-list,
.pillar-mobile-stack,
.daily-list {
  gap: clamp(10px, 1.5vw, 16px) !important;
}

.hero-chips span,
.trust-row div,
.proof-strip article,
.ecosystem-grid article,
.access-grid article,
.value-grid article,
.preview-grid article,
.trust-proof-grid article,
.conversion-list article,
.pillar-mobile-stack article,
.daily-card,
.revenue-card,
.waitlist-form,
.waitlist-panel,
.status-float {
  background:
    linear-gradient(145deg, rgba(255,255,255,.94), rgba(255,255,255,.74)),
    radial-gradient(circle at 18% 0, rgba(25,195,125,.07), transparent 34%) !important;
  border: 1px solid rgba(0, 120, 78, .105) !important;
  box-shadow: 0 20px 56px rgba(7, 17, 12, .055) !important;
}

.top-cta,
.primary-cta,
.mobile-menu-cta,
.sticky-access .primary-cta,
button.primary-cta {
  min-height: 48px !important;
  color: #fff !important;
  background: var(--cta-gradient) !important;
  box-shadow: 0 16px 36px rgba(0, 168, 107, .22), inset 0 1px 0 rgba(255,255,255,.36) !important;
}

.ghost-cta {
  color: #07110c !important;
  background: rgba(255,255,255,.82) !important;
  border-color: rgba(0, 120, 78, .12) !important;
}

.eyebrow,
.value-grid b,
.ecosystem-grid span,
.conversion-list article span,
.revenue-card span,
.trust-proof-grid article span {
  color: #007a4e !important;
}

.waitlist-form input,
.waitlist-form select {
  min-height: 50px !important;
  background: #ffffff !important;
  border-color: rgba(7, 17, 12, .12) !important;
}

.waitlist-form input:focus,
.waitlist-form select:focus {
  border-color: rgba(0, 168, 107, .62) !important;
  box-shadow: 0 0 0 4px rgba(0, 168, 107, .12) !important;
}

#trilogyWebgl {
  opacity: .06 !important;
}

.scene-vignette {
  background:
    linear-gradient(180deg, rgba(255,255,255,.84), rgba(255,255,255,.98) 72%, #ffffff),
    radial-gradient(circle at 50% -8%, rgba(25,195,125,.07), transparent 34%) !important;
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 92px;
  }

  body {
    background: linear-gradient(180deg, #ffffff 0%, #fbfffc 58%, #f4fbf7 100%) !important;
  }

  .site-header {
    grid-template-columns: auto 1fr auto !important;
    width: min(100% - 18px, 1180px) !important;
    padding: 9px 10px !important;
    border-radius: 24px !important;
  }

  .menu-toggle {
    grid-column: 1 !important;
    grid-row: 1 !important;
    justify-self: start !important;
  }

  .brand {
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-self: start !important;
  }

  .top-cta {
    display: none !important;
  }

  .hero {
    min-height: auto !important;
    padding-top: 28px !important;
    padding-bottom: 18px !important;
    gap: 24px !important;
  }

  .hero-copy h1 {
    max-width: 12ch !important;
    font-size: clamp(38px, 10.8vw, 54px) !important;
    line-height: .95 !important;
  }

  .lead {
    font-size: 16px !important;
    line-height: 1.46 !important;
  }

  .hero-chips {
    display: none !important;
  }

  .trust-row {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  .trust-row div {
    padding: 10px 8px !important;
  }

  .trust-row strong {
    font-size: 12px !important;
  }

  .trust-row span {
    font-size: 10px !important;
    line-height: 1.25 !important;
  }

  .hero-actions,
  .waitlist-form .form-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 9px !important;
  }

  .hero-actions .ghost-cta,
  .cta-reassurance {
    display: none !important;
  }

  .primary-cta,
  .ghost-cta,
  .mobile-menu-cta,
  button.primary-cta {
    width: 100% !important;
    justify-content: center !important;
  }

  .hero-orbit {
    width: min(54vw, 202px) !important;
    height: 128px !important;
    min-height: 0 !important;
    margin-inline: auto !important;
    transform: none !important;
  }

  .glass-phone {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: auto !important;
    padding: 8px !important;
    border-radius: 30px !important;
  }

  .glass-phone img {
    max-height: 190px !important;
    object-fit: cover !important;
  }

  .status-float {
    display: none !important;
  }

  .proof-strip,
  .ecosystem-grid,
  .access-grid,
  .value-grid,
  .preview-grid,
  .trust-proof-grid,
  .conversion-list,
  .pillar-mobile-stack {
    grid-template-columns: 1fr !important;
  }

  .waitlist-panel {
    padding: 18px !important;
  }
}
