@font-face {
  font-family: "WealthBoost Nunito";
  src: url("assets/fonts/Nunito-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 1000;
  font-stretch: 100%;
  font-display: swap;
}

:root {
  --background: #080012;
  --background-raised: #0d031b;
  --surface: #130925;
  --surface-soft: rgba(255, 255, 255, 0.055);
  --text: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.72);
  --text-faint: rgba(255, 255, 255, 0.5);
  --purple: #814cff;
  --purple-light: #a57aff;
  --green: #20d6a1;
  --cyan: #50d5fa;
  --gold: #eab63f;
  --coral: #ef6c7b;
  --header-height: 72px;
  --content-width: 1180px;
  --page-padding: 28px;
  --section-space: 132px;
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--background);
  color-scheme: dark;
  overflow-x: clip;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background: var(--background);
  color: var(--text);
  font-family: "WealthBoost Nunito", "Nunito", "SF Pro Rounded", "SF Pro Display", -apple-system, BlinkMacSystemFont, sans-serif;
  font-optical-sizing: auto;
  font-synthesis: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
  letter-spacing: 0;
}

button {
  color: inherit;
}

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

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

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 8px;
  background: #ffffff;
  color: #16072d;
  font-weight: 800;
  transform: translateY(-160%);
}

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

.site-header {
  position: fixed;
  top: 12px;
  right: 0;
  left: 0;
  z-index: 100;
  padding: 0 var(--page-padding);
  pointer-events: none;
}

.header-inner {
  width: min(100%, var(--content-width));
  min-height: var(--header-height);
  margin: 0 auto;
  padding: 10px 12px 10px 17px;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  background: rgba(16, 7, 33, 0.67);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  pointer-events: auto;
  transition: background 240ms ease, border-color 240ms ease, transform 300ms var(--ease-premium);
}

.site-header.is-scrolled .header-inner {
  background: rgba(10, 3, 24, 0.86);
  border-color: rgba(255, 255, 255, 0.13);
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  font-size: 19px;
  font-weight: 850;
  line-height: 1;
}

.brand-mark {
  width: 31px;
  height: 31px;
  object-fit: contain;
  flex: 0 0 auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.desktop-nav a {
  padding: 10px 12px;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 750;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.075);
  color: #ffffff;
}

.header-download {
  justify-self: end;
  border-radius: 9px;
  transition: transform 200ms var(--ease-premium), filter 200ms ease;
}

.header-download:hover,
.header-download:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.header-download img {
  width: 127px;
  height: auto;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.menu-button span {
  position: absolute;
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 240ms var(--ease-premium);
}

.menu-button span:first-child {
  transform: translateY(-4px);
}

.menu-button span:last-child {
  transform: translateY(4px);
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.consent-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  width: min(520px, calc(100vw - 44px));
  padding: 17px 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(17, 7, 35, 0.92);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(26px) saturate(150%);
  -webkit-backdrop-filter: blur(26px) saturate(150%);
}

.consent-banner[hidden] {
  display: none;
}

.consent-copy strong {
  display: block;
  margin-bottom: 3px;
  font-size: 15px;
  font-weight: 850;
}

.consent-copy p {
  margin: 0;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.4;
}

.consent-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.consent-button {
  min-height: 38px;
  padding: 0 13px;
  border: 0;
  border-radius: 13px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 180ms var(--ease-premium), background 180ms ease;
}

.consent-button:hover,
.consent-button:focus-visible {
  transform: translateY(-1px);
}

.consent-decline {
  background: rgba(255, 255, 255, 0.075);
  color: var(--text-soft);
}

.consent-accept {
  background: #ffffff;
  color: #18052e;
}

.footer-link-button {
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text-soft);
  cursor: pointer;
  text-align: left;
}

.footer-link-button:hover,
.footer-link-button:focus-visible {
  color: #ffffff;
}

.resource-main {
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% 3%, color-mix(in srgb, var(--resource-accent, #a75cff) 20%, transparent), transparent 28%),
    radial-gradient(circle at 8% 34%, color-mix(in srgb, var(--resource-accent, #a75cff) 8%, transparent), transparent 24%),
    var(--background);
}

.resource-accent-purple { --resource-accent: #a75cff; }
.resource-accent-green { --resource-accent: #54d89a; }
.resource-accent-cyan { --resource-accent: #49c9e8; }
.resource-accent-coral { --resource-accent: #ff8279; }
.resource-accent-blue { --resource-accent: #5d8dff; }
.resource-accent-gold { --resource-accent: #f3b85c; }
.resource-accent-pink { --resource-accent: #ef74bf; }
.resource-accent-orange { --resource-accent: #ef8a48; }

.resource-hero {
  position: relative;
  overflow: hidden;
  padding: 158px 0 76px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.resource-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--resource-accent) 60%, transparent), transparent);
}

.resource-hero-inner {
  max-width: 900px;
}

.resource-mark {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--resource-accent) 14%, rgba(8, 2, 18, 0.88));
  box-shadow: inset 0 0 24px color-mix(in srgb, var(--resource-accent) 22%, transparent), 0 0 34px color-mix(in srgb, var(--resource-accent) 16%, transparent);
}

.resource-mark img {
  width: 31px;
  height: 31px;
  object-fit: contain;
}

.resource-hero h1 {
  max-width: 820px;
  margin: 10px 0 20px;
  font-size: clamp(42px, 5.4vw, 68px);
  font-weight: 900;
  line-height: 1.04;
}

.resource-lead {
  max-width: 780px;
  margin: 0;
  color: var(--text-soft);
  font-size: 21px;
  line-height: 1.58;
}

.resource-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 30px;
}

.resource-tags span {
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.065);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.resource-article {
  max-width: 980px;
  padding-top: 76px;
  padding-bottom: 128px;
}

.resource-section {
  padding-bottom: 58px;
  margin-bottom: 58px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.085);
}

.resource-section:last-of-type {
  border-bottom: 0;
}

.resource-section h2 {
  max-width: 760px;
  margin: 0 0 20px;
  font-size: 38px;
  font-weight: 880;
  line-height: 1.12;
}

.resource-section h3 {
  margin: 30px 0 10px;
  font-size: 21px;
  font-weight: 850;
}

.resource-section p,
.resource-section li {
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.72;
}

.resource-section p {
  max-width: 820px;
  margin: 0 0 17px;
}

.resource-section ul,
.resource-section ol {
  max-width: 820px;
  margin: 18px 0 0;
  padding-left: 24px;
}

.resource-section li {
  padding: 5px 0;
}

.resource-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.resource-fact {
  min-height: 164px;
  padding: 26px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--resource-accent) 24%, transparent), transparent 48%),
    color-mix(in srgb, var(--resource-accent) 7%, #090410);
  box-shadow: inset 0 0 32px color-mix(in srgb, var(--resource-accent) 8%, transparent);
}

.resource-fact strong {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.25;
}

.resource-fact span {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.55;
}

.resource-note {
  margin-top: 28px;
  padding: 24px 26px;
  border-radius: 24px;
  background: color-mix(in srgb, var(--resource-accent) 8%, rgba(255, 255, 255, 0.035));
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.6;
}

.resource-related {
  padding: 34px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 0% 100%, color-mix(in srgb, var(--resource-accent) 18%, transparent), transparent 46%),
    rgba(18, 8, 30, 0.76);
}

.resource-related h2 {
  margin: 0 0 22px;
  font-size: 26px;
}

.resource-related-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.resource-related a {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 13px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms var(--ease-premium), background 180ms ease;
}

.resource-related a:hover,
.resource-related a:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.11);
}

.resource-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  margin-top: 56px;
  padding: 32px 0 0;
}

.resource-cta-row p {
  max-width: 560px;
  margin: 0;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.55;
}

.resource-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.resource-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 24px;
}

.resource-footer-nav a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 750;
}

.resource-footer-nav a:hover,
.resource-footer-nav a:focus-visible {
  color: #ffffff;
}

.discovery-section {
  padding: 112px 0 126px;
  background:
    radial-gradient(circle at 78% 18%, rgba(124, 73, 255, 0.12), transparent 30%),
    #080211;
}

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

.discovery-grid a {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: space-between;
  gap: 26px;
  padding: 24px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0%, rgba(158, 94, 255, 0.15), transparent 48%),
    rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 0 28px rgba(151, 88, 255, 0.05);
  transition: transform 220ms var(--ease-premium), background 180ms ease;
}

.discovery-grid a:hover,
.discovery-grid a:focus-visible {
  transform: translateY(-3px);
  background:
    radial-gradient(circle at 100% 0%, rgba(158, 94, 255, 0.22), transparent 50%),
    rgba(255, 255, 255, 0.07);
}

.discovery-grid strong {
  color: #ffffff;
  font-size: 17px;
  line-height: 1.25;
}

.discovery-grid span {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.5;
}

.faq-more-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  font-weight: 800;
}

.faq-more-link:hover,
.faq-more-link:focus-visible {
  color: #ffffff;
}

@media (max-width: 820px) {
  .resource-hero {
    padding: 136px 0 60px;
  }

  .resource-hero h1 {
    font-size: clamp(39px, 11vw, 56px);
  }

  .resource-lead {
    font-size: 18px;
  }

  .resource-article {
    padding-top: 56px;
    padding-bottom: 96px;
  }

  .resource-facts,
  .resource-related-links {
    grid-template-columns: 1fr;
  }

  .resource-fact {
    min-height: 0;
  }

  .resource-cta-row,
  .resource-footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 520px) {
  .resource-section h2 {
    font-size: 32px;
  }

  .resource-section p,
  .resource-section li {
    font-size: 16px;
  }

  .resource-related {
    padding: 26px;
    border-radius: 28px;
  }
}

.legal-main {
  min-height: 100vh;
  background:
    radial-gradient(circle at 76% 5%, rgba(129, 76, 255, 0.17), transparent 30%),
    var(--background);
}

.legal-hero {
  padding: 164px 0 82px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-hero-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
}

.legal-hero h1 {
  margin: 8px 0 16px;
  font-size: 38px;
  font-weight: 900;
  line-height: 1.08;
}

.legal-intro {
  max-width: 680px;
  margin: 0;
  color: var(--text-soft);
  font-size: 19px;
  line-height: 1.5;
}

.legal-date {
  flex: 0 0 auto;
  margin: 0;
  color: var(--text-faint);
  font-size: 14px;
  line-height: 1.55;
  text-align: right;
}

.legal-date strong {
  color: var(--text-soft);
  font-size: 16px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  justify-content: space-between;
  gap: 80px;
  padding-top: 80px;
  padding-bottom: 130px;
}

.legal-toc {
  position: sticky;
  top: 118px;
  align-self: start;
  display: grid;
  gap: 10px;
}

.legal-toc p {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.legal-toc a {
  width: fit-content;
  color: var(--text-faint);
  font-size: 14px;
  font-weight: 700;
  transition: color 180ms ease;
}

.legal-toc a:hover,
.legal-toc a:focus-visible {
  color: #ffffff;
}

.legal-content > section {
  scroll-margin-top: 118px;
  padding: 0 0 52px;
  margin: 0 0 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.legal-content > section:last-child {
  margin-bottom: 0;
}

.legal-content h2 {
  margin: 0 0 22px;
  font-size: 38px;
  font-weight: 880;
  line-height: 1.12;
}

.legal-content h3 {
  margin: 28px 0 8px;
  font-size: 19px;
  font-weight: 850;
}

.legal-content p,
.legal-content li {
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.72;
}

.legal-content p {
  margin: 0 0 17px;
}

.legal-content ul {
  margin: 10px 0 20px;
  padding: 0;
  list-style: none;
}

.legal-content li {
  position: relative;
  padding: 7px 0 7px 25px;
}

.legal-content li::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--purple-light);
  box-shadow: 0 0 13px rgba(165, 122, 255, 0.7);
}

.legal-content strong {
  color: rgba(255, 255, 255, 0.93);
  font-weight: 800;
}

.legal-content a {
  color: #c5aaff;
  text-decoration: underline;
  text-decoration-color: rgba(197, 170, 255, 0.35);
  text-underline-offset: 3px;
}

.legal-contact {
  padding: 38px !important;
  border: 1px solid rgba(169, 121, 255, 0.26) !important;
  border-radius: 32px;
  background:
    radial-gradient(circle at 100% 0%, rgba(154, 92, 255, 0.22), transparent 45%),
    rgba(26, 10, 46, 0.72);
}

.legal-contact h2 {
  margin-top: 8px;
}

@media (max-width: 780px) {
  .legal-hero {
    padding: 138px 0 60px;
  }

  .legal-hero-inner {
    align-items: start;
    flex-direction: column;
    gap: 26px;
  }

  .legal-date {
    text-align: left;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 55px;
    padding-top: 50px;
    padding-bottom: 90px;
  }

  .legal-toc {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .legal-toc p {
    grid-column: 1 / -1;
  }

  .legal-content > section {
    padding-bottom: 42px;
    margin-bottom: 42px;
  }

  .legal-content p,
  .legal-content li {
    font-size: 16px;
  }

  .legal-contact {
    padding: 28px !important;
    border-radius: 28px;
  }
}

.hero {
  position: relative;
  isolation: isolate;
  height: 100svh;
  min-height: 680px;
  max-height: none;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #080012;
}

.hero-product {
  position: absolute;
  inset: 0;
  z-index: -3;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 22px;
  overflow: hidden;
  opacity: 0.72;
}

.hero-phone {
  flex: 0 0 auto;
  width: 340px;
  aspect-ratio: 1206 / 2622;
  overflow: hidden;
  border: 6px solid rgba(229, 226, 236, 0.72);
  border-bottom: 0;
  border-radius: 60px 60px 0 0;
  background: #040008;
  box-shadow: 0 0 70px rgba(129, 76, 255, 0.24), 0 30px 80px rgba(0, 0, 0, 0.64);
}

.hero-phone img,
.device img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-phone-center {
  width: 400px;
  transform: translateY(38%);
  z-index: 2;
  border-color: rgba(246, 244, 250, 0.88);
}

.hero-phone-left {
  transform: translateY(49%) rotate(-5deg);
  transform-origin: bottom right;
}

.hero-phone-right {
  transform: translateY(49%) rotate(5deg);
  transform-origin: bottom left;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: rgba(6, 0, 15, 0.8);
}

.hero-content {
  width: min(100%, 860px);
  margin: 0 auto;
  padding: 104px var(--page-padding) 78px;
  text-align: center;
}

.hero-brand-lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 23px;
}

.hero-brand-mark-wrap {
  position: relative;
  isolation: isolate;
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
}

.hero-brand-mark-wrap::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 142px;
  height: 142px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(150, 94, 255, 0.52) 0%, rgba(129, 76, 255, 0.24) 38%, rgba(129, 76, 255, 0) 72%);
  filter: blur(10px);
  opacity: 0.62;
  animation: hero-logo-pulse 4.8s ease-in-out infinite;
}

.hero-brand-lockup img {
  position: relative;
  width: 96px;
  height: 96px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(169, 121, 255, 0.28));
}

.hero-statement {
  margin: 0 0 18px;
  font-size: 50px;
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 17px;
  margin-top: 44px;
  transform: translateY(12px);
}

.app-store-badge {
  display: inline-block;
  flex: 0 0 auto;
  border-radius: 12px;
  transition: transform 220ms var(--ease-premium), filter 220ms ease;
}

.app-store-badge:hover,
.app-store-badge:focus-visible {
  transform: translateY(-2px) scale(1.015);
  filter: brightness(1.08);
}

.app-store-badge img {
  width: 174px;
  height: auto;
}

.hero-actions .app-store-badge img {
  width: 148px;
}

.secondary-link,
.text-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 850;
  color: #ffffff;
}

.secondary-link span,
.text-cta span {
  transition: transform 180ms var(--ease-premium);
}

.secondary-link:hover span,
.secondary-link:focus-visible span {
  transform: translateY(3px);
}

.hero-scroll-cue {
  width: 44px;
  height: 34px;
  display: grid;
  place-items: center;
  font-size: 29px;
  font-weight: 650;
  line-height: 1;
  color: rgba(255, 255, 255, 0.82);
}

.hero-scroll-cue span {
  display: block;
  animation: hero-scroll-pulse 2.8s ease-in-out infinite;
}

.hero-scroll-cue:hover span,
.hero-scroll-cue:focus-visible span {
  transform: none;
}

@keyframes hero-logo-pulse {
  0%, 100% {
    opacity: 0.48;
    transform: scale(0.90);
  }
  50% {
    opacity: 0.82;
    transform: scale(1.08);
  }
}

@keyframes hero-scroll-pulse {
  0%, 100% {
    opacity: 0.52;
    transform: translateY(-2px) scale(0.88);
  }
  50% {
    opacity: 1;
    transform: translateY(3px) scale(1.12);
  }
}

.text-cta:hover span,
.text-cta:focus-visible span {
  transform: translateX(4px);
}

.hero-note {
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 650;
}

.section-shell,
.header-inner,
.footer-inner {
  width: min(100%, var(--content-width));
  margin-right: auto;
  margin-left: auto;
}

.section-shell {
  padding-right: var(--page-padding);
  padding-left: var(--page-padding);
}

.goal-cloud-section,
.personalized-section,
.inside-section,
.saved-section,
.how-section,
.trust-section,
.faq-section {
  position: relative;
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.goal-cloud-section {
  scroll-margin-top: 20px;
  padding-top: 92px;
  background: #0d031b;
}

.personalized-section,
.how-section,
.faq-section {
  background: var(--background);
}

.inside-section,
.trust-section {
  background: #0b0218;
}

.saved-section {
  overflow: hidden;
  background: #110625;
}

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

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--purple-light);
  font-size: 12px;
  font-weight: 950;
  line-height: 1.3;
  letter-spacing: 0;
}

.section-heading h2,
.saved-copy h2,
.trust-heading h2,
.final-cta h2 {
  margin: 0;
  font-size: 38px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading > p:last-child,
.saved-copy > p,
.final-cta p {
  max-width: 680px;
  margin: 19px 0 0;
  color: var(--text-soft);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.55;
}

.section-heading-centered > p:last-child {
  margin-right: auto;
  margin-left: auto;
}

.goal-cloud-shell {
  max-width: 1040px;
}

.goal-cloud {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 32px 0;
}

.goal-bubble + .goal-bubble {
  margin-top: -3px;
}

.goal-bubble {
  --bubble-rgb: 129, 76, 255;
  --bubble-core: #170929;
  --bubble-rotate: 0deg;
  position: relative;
  isolation: isolate;
  width: 50%;
  min-height: 86px;
  padding: 18px 24px;
  border: 0;
  border-radius: 43px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 74% 68% at 50% 54%, rgba(2, 1, 6, 0.76) 0%, rgba(2, 1, 6, 0.62) 54%, rgba(2, 1, 6, 0) 88%),
    radial-gradient(ellipse 56% 52% at 50% -10%, rgba(var(--bubble-rgb), 0.70) 0%, rgba(var(--bubble-rgb), 0.17) 48%, rgba(var(--bubble-rgb), 0) 76%),
    radial-gradient(ellipse 27% 96% at -5% 52%, rgba(var(--bubble-rgb), 0.60) 0%, rgba(var(--bubble-rgb), 0.13) 50%, rgba(var(--bubble-rgb), 0) 80%),
    radial-gradient(ellipse 27% 96% at 105% 58%, rgba(var(--bubble-rgb), 0.54) 0%, rgba(var(--bubble-rgb), 0.12) 50%, rgba(var(--bubble-rgb), 0) 80%),
    radial-gradient(ellipse 58% 36% at 50% 106%, rgba(var(--bubble-rgb), 0.48) 0%, rgba(var(--bubble-rgb), 0.10) 54%, rgba(var(--bubble-rgb), 0) 80%),
    var(--bubble-core);
  color: #ffffff;
  font-size: 22px;
  font-weight: 850;
  line-height: 1.25;
  text-align: center;
  cursor: pointer;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.46);
  box-shadow:
    inset 0 0 28px rgba(var(--bubble-rgb), 0.16),
    inset 0 0 2px rgba(255, 255, 255, 0.16),
    0 18px 42px rgba(0, 0, 0, 0.24);
  transform: rotate(var(--bubble-rotate));
  transition: transform 260ms var(--ease-premium), filter 220ms ease;
}

.goal-bubble:hover,
.goal-bubble:focus-visible {
  z-index: 3;
  transform: translateY(-5px) scale(1.015) rotate(var(--bubble-rotate));
  filter: brightness(1.11);
}

.goal-bubble-purple {
  --bubble-rgb: 142, 88, 255;
  --bubble-core: #170829;
  --bubble-rotate: -2.4deg;
  width: 45%;
  align-self: flex-start;
  margin-left: 4%;
}

.goal-bubble-green {
  --bubble-rgb: 38, 216, 160;
  --bubble-core: #061d18;
  --bubble-rotate: 1.3deg;
  width: 43%;
  align-self: flex-end;
  margin-right: 5%;
}

.goal-bubble-cyan {
  --bubble-rgb: 80, 213, 250;
  --bubble-core: #061923;
  --bubble-rotate: -0.5deg;
  width: 54%;
  align-self: flex-start;
  min-height: 96px;
  margin-left: 1%;
}

.goal-bubble-gold {
  --bubble-rgb: 234, 182, 63;
  --bubble-core: #211606;
  --bubble-rotate: 2.8deg;
  width: 44%;
  align-self: flex-end;
  margin-right: 8%;
}

.goal-bubble-coral {
  --bubble-rgb: 239, 108, 123;
  --bubble-core: #260b15;
  --bubble-rotate: -1.6deg;
  width: 50%;
  align-self: flex-start;
  min-height: 94px;
  margin-left: 6%;
}

.goal-bubble-orange {
  --bubble-rgb: 242, 135, 64;
  --bubble-core: #251006;
  --bubble-rotate: 0.6deg;
  width: 48%;
  align-self: flex-end;
  margin-right: 2%;
}

.goal-bubble-blue {
  --bubble-rgb: 96, 137, 255;
  --bubble-core: #07112a;
  --bubble-rotate: -3.1deg;
  width: 46%;
  align-self: flex-start;
  margin-left: 10%;
}

.goal-bubble-pink {
  --bubble-rgb: 224, 92, 181;
  --bubble-core: #23091d;
  --bubble-rotate: 2deg;
  width: 52%;
  align-self: flex-end;
  margin-right: 5%;
}

.goal-cloud-caption {
  margin: 26px 0 0;
  color: var(--text-soft);
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.goal-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.goal-picker-button {
  min-height: 48px;
  padding: 10px 18px;
  border: 0;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.065);
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 200ms var(--ease-premium), background 200ms ease, color 200ms ease;
}

.goal-picker-button:hover,
.goal-picker-button:focus-visible {
  color: #ffffff;
  transform: translateY(-1px);
}

.goal-picker-button.is-selected {
  background: rgba(129, 76, 255, 0.34);
  color: #ffffff;
  box-shadow: inset 0 0 24px rgba(165, 122, 255, 0.16), 0 9px 24px rgba(0, 0, 0, 0.2);
}

.guidance-demo {
  max-width: 950px;
  min-height: 560px;
  padding: 38px 42px 44px;
  border-radius: 48px;
  background: radial-gradient(circle at 7% 6%, rgba(132, 75, 255, 0.9), transparent 34%), radial-gradient(circle at 96% 100%, rgba(92, 44, 204, 0.67), transparent 41%), #160925;
  box-shadow: inset 0 0 74px rgba(113, 58, 238, 0.18), 0 32px 82px rgba(0, 0, 0, 0.34);
  transition: min-height 620ms var(--ease-premium), filter 240ms ease;
}

.guidance-demo.is-changing {
  filter: brightness(0.84);
}

.guidance-demo.is-changing .guidance-section,
.guidance-demo.is-changing .guidance-goal {
  opacity: 0;
  transform: translateY(8px);
}

.guidance-demo-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 42px;
  color: var(--purple-light);
  font-size: 12px;
  font-weight: 950;
}

.guidance-goal {
  max-width: 60%;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 800;
  text-align: right;
  transition: opacity 200ms ease, transform 300ms var(--ease-premium);
}

.guidance-section {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 20px;
  transition: opacity 200ms ease, transform 300ms var(--ease-premium);
}

.guidance-section > img {
  width: 42px;
  height: 42px;
  margin-top: 3px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.guidance-label {
  margin: 0 0 10px;
  color: var(--purple-light);
  font-size: 12px;
  font-weight: 950;
}

.guidance-section h3 {
  margin: 0 0 11px;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.18;
}

.guidance-section > div > p:last-child {
  max-width: 700px;
  margin: 0;
  color: var(--text-soft);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.55;
}

.guidance-divider {
  height: 1px;
  margin: 38px 0;
  background: linear-gradient(90deg, transparent, rgba(165, 122, 255, 0.46), transparent);
}

.showcase-list {
  display: grid;
  gap: 34px;
}

.showcase {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 410px);
  align-items: center;
  gap: 54px;
  padding: 64px 76px 0;
  border-radius: 48px;
  box-shadow: inset 0 0 78px rgba(255, 255, 255, 0.035), 0 30px 74px rgba(0, 0, 0, 0.28);
}

.showcase-purple {
  background: radial-gradient(circle at 4% 6%, rgba(129, 76, 255, 0.76), transparent 35%), radial-gradient(circle at 96% 92%, rgba(99, 47, 213, 0.5), transparent 38%), #140823;
}

.showcase-green {
  grid-template-columns: minmax(280px, 410px) minmax(0, 1fr);
  background: radial-gradient(circle at 94% 8%, rgba(32, 214, 161, 0.64), transparent 34%), radial-gradient(circle at 4% 94%, rgba(18, 133, 99, 0.5), transparent 38%), #061c17;
}

.showcase-cyan {
  background: radial-gradient(circle at 5% 8%, rgba(80, 213, 250, 0.62), transparent 35%), radial-gradient(circle at 94% 94%, rgba(25, 128, 165, 0.47), transparent 38%), #071923;
}

.showcase-coral {
  grid-template-columns: minmax(280px, 410px) minmax(0, 1fr);
  background: radial-gradient(circle at 94% 8%, rgba(239, 108, 123, 0.64), transparent 34%), radial-gradient(circle at 5% 94%, rgba(176, 55, 81, 0.48), transparent 38%), #240b14;
}

.showcase-copy {
  align-self: center;
  padding-bottom: 64px;
}

.showcase-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 25px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.showcase-copy .eyebrow {
  color: rgba(255, 255, 255, 0.68);
}

.showcase-copy h3 {
  margin: 0;
  font-size: 43px;
  font-weight: 900;
  line-height: 1.09;
}

.showcase-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 19px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.55;
}

.benefit-list {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  font-weight: 750;
}

.benefit-list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.9;
}

.device {
  position: relative;
  width: min(100%, 330px);
  aspect-ratio: 1206 / 2622;
  align-self: end;
  justify-self: center;
  margin: 0;
  overflow: hidden;
  border: 7px solid rgba(235, 233, 239, 0.86);
  border-bottom: 0;
  border-radius: 58px 58px 0 0;
  background: #050009;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.48), 0 0 42px rgba(255, 255, 255, 0.05);
}

.saved-layout {
  min-height: 750px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  align-items: center;
  gap: 80px;
}

.saved-copy {
  max-width: 600px;
}

.saved-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.saved-copy .text-cta {
  margin-top: 30px;
}

.device-saved {
  width: min(100%, 380px);
  border-bottom: 7px solid rgba(235, 233, 239, 0.86);
  border-radius: 62px;
  align-self: center;
}

.steps-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps-list li {
  min-width: 0;
  padding: 8px 42px 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.steps-list li:first-child {
  padding-left: 0;
  border-left: 0;
}

.steps-list li:last-child {
  padding-right: 0;
}

.step-number {
  width: 48px;
  height: 48px;
  margin-bottom: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(129, 76, 255, 0.24);
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  box-shadow: inset 0 0 18px rgba(165, 122, 255, 0.18);
}

.steps-list h3,
.trust-point h3 {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
}

.steps-list p,
.trust-point p {
  margin: 0;
  color: var(--text-soft);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.55;
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 96px;
}

.trust-heading {
  position: sticky;
  top: 132px;
  align-self: start;
}

.trust-points {
  display: grid;
}

.trust-point {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-point:first-child {
  padding-top: 0;
  border-top: 0;
}

.faq-shell {
  display: grid;
  grid-template-columns: minmax(250px, 0.65fr) minmax(0, 1.35fr);
  gap: 90px;
}

.faq-list {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-list details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-list summary {
  position: relative;
  padding: 25px 44px 25px 0;
  color: #ffffff;
  font-size: 19px;
  font-weight: 850;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 4px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.075);
  color: rgba(255, 255, 255, 0.76);
  font-size: 20px;
  font-weight: 500;
  transform: translateY(-50%);
  transition: transform 250ms var(--ease-premium), background 200ms ease;
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
  background: rgba(129, 76, 255, 0.25);
}

.faq-list details p {
  max-width: 680px;
  margin: -5px 0 0;
  padding: 0 48px 27px 0;
  color: var(--text-soft);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
}

.final-cta {
  padding: 88px 0;
  background: #1a0b32;
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
}

.final-app-icon {
  width: 108px;
  height: 108px;
  border-radius: 27px;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.32);
}

.final-cta h2 {
  font-size: 38px;
}

.final-cta p:not(.eyebrow) {
  margin-top: 10px;
  font-size: 16px;
}

.apps-cta {
  background: #0a2145;
  border-top: 1px solid rgba(101, 177, 255, 0.17);
  border-bottom: 1px solid rgba(101, 177, 255, 0.12);
  box-shadow: inset 0 24px 70px rgba(74, 132, 255, 0.08), inset 0 -24px 70px rgba(55, 210, 250, 0.04);
}

.apps-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 52px;
}

.apps-cta .eyebrow {
  color: rgba(145, 207, 255, 0.76);
}

.apps-cta-button {
  min-width: 190px;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 21px;
  border-radius: 27px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 16px;
  font-weight: 850;
  box-shadow: inset 0 0 24px rgba(80, 180, 255, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 15px 34px rgba(0, 0, 0, 0.18);
  transition: transform 240ms var(--ease-premium), background 200ms ease, box-shadow 200ms ease;
}

.apps-cta-button span:last-child {
  font-size: 21px;
  line-height: 1;
  transition: transform 240ms var(--ease-premium);
}

.apps-cta-button:hover,
.apps-cta-button:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 0 28px rgba(80, 180, 255, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.17), 0 19px 40px rgba(0, 0, 0, 0.22);
}

.apps-cta-button:hover span:last-child,
.apps-cta-button:focus-visible span:last-child {
  transform: translate(2px, -2px);
}

.site-footer {
  padding: 76px var(--page-padding) 46px;
  background: #05000c;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 80px;
}

.footer-brand-column > p {
  max-width: 360px;
  margin: 19px 0 0;
  color: var(--text-soft);
  font-size: 15px;
  font-weight: 600;
}

.footer-brand-column .copyright {
  margin-top: 56px;
  color: var(--text-faint);
  font-size: 13px;
}

.footer-link-groups {
  display: grid;
  grid-template-columns: repeat(4, minmax(118px, 1fr));
  gap: 42px;
}

.footer-link-groups > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-link-groups h2 {
  margin: 0 0 5px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 12px;
  font-weight: 900;
}

.footer-link-groups a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 700;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-link-groups a:hover,
.footer-link-groups a:focus-visible {
  color: #ffffff;
  transform: translateX(2px);
}

.footer-link-groups .social-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.social-link img {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  object-fit: contain;
  opacity: 0.68;
  transition: opacity 180ms ease, transform 220ms var(--ease-premium);
}

.social-link:hover img,
.social-link:focus-visible img {
  opacity: 1;
  transform: scale(1.08);
}

:focus-visible {
  outline: 3px solid rgba(80, 213, 250, 0.9);
  outline-offset: 4px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 720ms var(--ease-premium), transform 720ms var(--ease-premium);
}

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

@media (min-width: 861px) {
  .hero-actions {
    margin-top: 52px;
    transform: translateY(64px);
  }

  .hero-scroll-cue {
    margin-top: 40px;
  }
}

@media (max-width: 1040px) {
  :root {
    --section-space: 108px;
  }

  .header-inner {
    grid-template-columns: minmax(170px, 1fr) auto minmax(150px, 1fr);
  }

  .desktop-nav a {
    padding-right: 8px;
    padding-left: 8px;
    font-size: 13px;
  }

  .hero-phone {
    width: 300px;
  }

  .hero-phone-center {
    width: 360px;
  }

  .showcase {
    gap: 38px;
    padding-right: 48px;
    padding-left: 48px;
  }

  .trust-layout {
    gap: 62px;
  }

  .footer-inner {
    gap: 52px;
  }

  .footer-link-groups {
    gap: 34px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 64px;
    --page-padding: 20px;
  }

  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    border-radius: 23px;
  }

  .desktop-nav,
  .header-download {
    display: none;
  }

  .menu-button {
    position: relative;
    display: grid;
    place-items: center;
  }

  .mobile-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: var(--page-padding);
    left: var(--page-padding);
    width: min(calc(100% - (var(--page-padding) * 2)), var(--content-width));
    margin: 0 auto;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    background: rgba(10, 3, 24, 0.94);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.52), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(26px) saturate(150%);
    -webkit-backdrop-filter: blur(26px) saturate(150%);
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top center;
    pointer-events: none;
    transition: opacity 220ms ease, transform 300ms var(--ease-premium);
  }

  .mobile-nav.is-open {
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .mobile-nav a {
    padding: 13px 15px;
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 800;
  }

  .mobile-nav a:hover,
  .mobile-nav a:focus-visible {
    background: rgba(255, 255, 255, 0.07);
    color: #ffffff;
  }

  .mobile-nav .mobile-download {
    margin-top: 6px;
    background: rgba(129, 76, 255, 0.3);
    color: #ffffff;
    text-align: center;
  }

  .mobile-nav .mobile-apps {
    margin-top: 6px;
    background: rgba(80, 167, 250, 0.16);
    color: #ffffff;
    text-align: center;
  }

  .hero-statement {
    font-size: 44px;
  }

  .legal-hero h1,
  .legal-content h2 {
    font-size: 36px;
  }

  .section-heading h2,
  .saved-copy h2,
  .trust-heading h2,
  .final-cta h2 {
    font-size: 36px;
  }

  .hero-phone-left,
  .hero-phone-right {
    opacity: 0.5;
  }

  .goal-cloud {
    min-height: 500px;
  }

  .goal-bubble {
    font-size: 20px;
  }

  .showcase,
  .showcase-green,
  .showcase-coral {
    min-height: 610px;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 310px);
    padding-right: 38px;
    padding-left: 38px;
  }

  .showcase-green .device,
  .showcase-coral .device {
    order: 2;
  }

  .showcase-green .showcase-copy,
  .showcase-coral .showcase-copy {
    order: 1;
  }

  .showcase-copy h3 {
    font-size: 36px;
  }

  .saved-layout {
    gap: 42px;
  }

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

  .steps-list li,
  .steps-list li:first-child,
  .steps-list li:last-child {
    display: grid;
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 22px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 0;
  }

  .steps-list li:first-child {
    border-top: 0;
  }

  .step-number {
    margin-bottom: 0;
  }

  .trust-layout,
  .faq-shell {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .trust-heading {
    position: static;
  }

  .final-cta-inner {
    grid-template-columns: 90px minmax(0, 1fr);
  }

  .final-cta-inner .app-store-badge {
    grid-column: 2;
  }

  .final-app-icon {
    width: 90px;
    height: 90px;
    border-radius: 23px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --section-space: 84px;
    --page-padding: 16px;
  }

  .site-header {
    top: 8px;
  }

  .header-inner {
    min-height: 60px;
    padding: 8px 8px 8px 15px;
    border-radius: 22px;
  }

  .brand {
    gap: 9px;
    font-size: 17px;
  }

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

  .hero {
    height: 78svh;
    min-height: 600px;
    max-height: 680px;
  }

  .goal-cloud-section {
    padding-top: 54px;
  }

  .hero-product {
    gap: 10px;
  }

  .hero-phone {
    width: 230px;
    border-width: 4px;
    border-radius: 42px 42px 0 0;
  }

  .hero-phone-center {
    width: 270px;
    transform: translateY(50%);
  }

  .hero-phone-left {
    margin-right: -104px;
    transform: translateY(59%) rotate(-5deg);
  }

  .hero-phone-right {
    margin-left: -104px;
    transform: translateY(59%) rotate(5deg);
  }

  .hero-shade {
    background: rgba(6, 0, 15, 0.82);
  }

  .hero-content {
    padding: 92px 19px 58px;
  }

  .hero-brand-lockup {
    gap: 6px;
    margin-bottom: 20px;
  }

  .hero-brand-mark-wrap {
    width: 84px;
    height: 84px;
  }

  .hero-brand-mark-wrap::before {
    width: 116px;
    height: 116px;
  }

  .hero-brand-lockup img {
    width: 78px;
    height: 78px;
  }

  .hero-statement {
    margin-bottom: 16px;
    font-size: 38px;
    line-height: 1.02;
  }

  .hero-copy {
    font-size: 17px;
    line-height: 1.48;
  }

  .hero-actions {
    gap: 13px;
    margin-top: 25px;
    transform: translateY(80px);
  }

  .hero-scroll-cue {
    margin-top: 38px;
  }

  .app-store-badge img {
    width: 158px;
  }

  .hero-actions .app-store-badge img {
    width: 134px;
  }

  .hero-note {
    max-width: 290px;
    margin-right: auto;
    margin-left: auto;
    font-size: 12px;
  }

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

  .section-heading h2,
  .saved-copy h2,
  .trust-heading h2,
  .final-cta h2 {
    font-size: 31px;
    line-height: 1.1;
  }

  .legal-hero h1,
  .legal-content h2 {
    font-size: 31px;
  }

  .section-heading > p:last-child,
  .saved-copy > p,
  .final-cta p {
    margin-top: 15px;
    font-size: 17px;
  }

  .goal-cloud {
    min-height: 0;
    gap: 0;
    padding: 12px 0;
  }

  .goal-bubble + .goal-bubble {
    margin-top: -2px;
  }

  .goal-bubble {
    width: 80%;
    min-height: 76px;
    padding: 15px 20px;
    border-radius: 38px;
    font-size: 18px;
  }

  .goal-bubble-purple {
    width: 72%;
    margin-left: 2%;
  }

  .goal-bubble-green {
    width: 70%;
    margin-right: 2%;
  }

  .goal-bubble-cyan {
    width: 82%;
    min-height: 88px;
    margin-left: 0;
  }

  .goal-bubble-gold {
    width: 72%;
    margin-right: 3%;
  }

  .goal-bubble-coral {
    width: 80%;
    min-height: 86px;
    margin-left: 3%;
  }

  .goal-bubble-orange {
    width: 74%;
    margin-right: 1%;
  }

  .goal-bubble-blue {
    width: 76%;
    margin-left: 5%;
  }

  .goal-bubble-pink {
    width: 82%;
    margin-right: 2%;
  }

  .goal-cloud-caption {
    margin-top: 20px;
    font-size: 16px;
  }

  .goal-picker {
    gap: 8px;
  }

  .goal-picker-button {
    min-height: 44px;
    padding: 9px 14px;
    font-size: 14px;
  }

  .guidance-demo {
    min-height: 0;
    padding: 28px 24px 32px;
    border-radius: 36px;
  }

  .guidance-demo-topline {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 31px;
  }

  .guidance-goal {
    max-width: 100%;
    text-align: left;
  }

  .guidance-section {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 13px;
  }

  .guidance-section > img {
    width: 32px;
    height: 32px;
  }

  .guidance-section h3 {
    font-size: 24px;
  }

  .guidance-section > div > p:last-child {
    font-size: 16px;
  }

  .guidance-divider {
    margin: 29px 0;
  }

  .showcase-list {
    gap: 22px;
  }

  .showcase,
  .showcase-green,
  .showcase-coral {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 38px 25px 0;
    border-radius: 36px;
  }

  .showcase-copy,
  .showcase-green .showcase-copy,
  .showcase-coral .showcase-copy {
    order: 1;
    padding-bottom: 0;
  }

  .showcase .device,
  .showcase-green .device,
  .showcase-coral .device {
    order: 2;
  }

  .showcase-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 21px;
  }

  .showcase-copy h3 {
    font-size: 32px;
  }

  .showcase-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .benefit-list {
    margin-top: 24px;
  }

  .benefit-list li {
    font-size: 15px;
  }

  .device {
    width: min(82%, 300px);
    border-width: 5px;
    border-bottom: 0;
    border-radius: 46px 46px 0 0;
  }

  .saved-layout {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .saved-icon {
    width: 50px;
    height: 50px;
  }

  .device-saved {
    width: min(88%, 340px);
    border-bottom: 5px solid rgba(235, 233, 239, 0.86);
    border-radius: 50px;
  }

  .steps-list li,
  .steps-list li:first-child,
  .steps-list li:last-child {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 16px;
    padding: 25px 0;
  }

  .step-number {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .steps-list h3,
  .trust-point h3 {
    font-size: 21px;
  }

  .steps-list p,
  .trust-point p {
    font-size: 16px;
  }

  .faq-shell {
    gap: 25px;
  }

  .faq-list summary {
    padding-top: 22px;
    padding-bottom: 22px;
    font-size: 17px;
  }

  .faq-list details p {
    padding-right: 34px;
    font-size: 15px;
  }

  .final-cta {
    padding: 70px 0;
  }

  .final-cta-inner {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 20px;
  }

  .final-app-icon {
    width: 72px;
    height: 72px;
    border-radius: 19px;
  }

  .final-cta-inner .app-store-badge {
    grid-column: 1 / -1;
    margin-top: 10px;
  }

  .apps-cta-inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .apps-cta-button {
    min-width: 176px;
    justify-self: start;
  }

  .site-footer {
    padding-top: 62px;
  }

  .footer-inner {
    gap: 50px;
  }

  .footer-link-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 28px;
  }

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

  .footer-brand-column .copyright {
    margin-top: 28px;
  }
}

@media (max-width: 390px) {
  .hero-statement {
    font-size: 34px;
  }

  .section-heading h2,
  .saved-copy h2,
  .trust-heading h2,
  .final-cta h2 {
    font-size: 29px;
  }

  .legal-hero h1,
  .legal-content h2 {
    font-size: 29px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .goal-bubble {
    font-size: 17px;
  }

  .guidance-demo {
    padding-right: 19px;
    padding-left: 19px;
  }

  .guidance-section {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 10px;
  }

  .guidance-section > img {
    width: 28px;
    height: 28px;
  }

}

@media (max-width: 600px) {
  .discovery-section {
    padding: 82px 0 94px;
  }

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

  .discovery-grid a {
    min-height: 0;
    gap: 12px;
  }

  .consent-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    grid-template-columns: 1fr;
    gap: 13px;
    padding: 17px;
  }

  .consent-actions {
    justify-content: flex-end;
  }
}

@media (max-width: 350px) {
  .footer-link-groups {
    grid-template-columns: 1fr;
  }
}

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

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

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