:root {
  --ink: #14101f;
  --muted: #66616f;
  --purple: #7c3aed;
  --purple-dark: #5b21b6;
  --lavender: #eee8ff;
  --mint: #dff8ed;
  --yellow: #fff2c7;
  --paper: #ffffff;
  --soft: #f7f6f9;
  --line: rgba(20, 16, 31, 0.12);
  --display: "Manrope", ui-sans-serif, system-ui, sans-serif;
  --body: "DM Sans", ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-150%);
  border-radius: 6px;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(20, 16, 31, 0.04);
}
.nav-shell,
.hero-inner,
.trust-inner,
.section,
.community-inner,
.download-inner,
.footer-inner {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}
.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 74px;
  gap: 36px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--display);
  font-weight: 800;
}
.brand img { width: 42px; height: 42px; border-radius: 10px; }
.nav-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  border-radius: 6px;
  padding: 11px 18px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 720px;
  padding-top: 74px;
  overflow: hidden;
  background: #faf9fc;
}
.hero::after {
  content: "";
  position: absolute;
  right: -8vw;
  bottom: -280px;
  width: 680px;
  height: 590px;
  border: 150px solid rgba(124, 58, 237, 0.09);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
  align-items: center;
  gap: 64px;
  min-height: 646px;
  padding: 56px 0 28px;
}
.hero-copy { max-width: 650px; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--purple-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.eyebrow > span { width: 28px; height: 2px; background: currentColor; }
.hero h1,
.section h2,
.community-band h2,
.download-section h2 {
  margin: 0;
  font-family: var(--display);
  letter-spacing: 0;
}
.hero h1 {
  font-size: clamp(54px, 6.1vw, 84px);
  line-height: .98;
  font-weight: 800;
}
.hero h1 strong { color: var(--purple); font-weight: 800; }
.hero-lede {
  max-width: 590px;
  margin: 28px 0 32px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}
.store-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.store-button {
  display: inline-flex;
  min-width: 176px;
  min-height: 58px;
  align-items: center;
  gap: 11px;
  border: 1px solid var(--ink);
  border-radius: 7px;
  padding: 9px 16px;
  background: var(--ink);
  color: #fff;
  transition: transform 160ms ease, background 160ms ease;
}
.store-button:hover { transform: translateY(-2px); background: #282231; }
.store-button svg { width: 26px; height: 26px; flex: 0 0 26px; fill: currentColor; }
.store-button .play-icon { width: 29px; height: 29px; }
.store-button span {
  display: grid;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.05;
}
.store-button small {
  margin-bottom: 3px;
  font-family: var(--body);
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.hero-proof { display: flex; align-items: center; gap: 14px; margin-top: 28px; }
.proof-check {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: #117047;
  font-weight: 800;
}
.proof-avatars { display: flex; padding-left: 8px; }
.proof-avatars span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  margin-left: -8px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--lavender);
  color: var(--purple-dark);
  font-size: 11px;
  font-weight: 800;
}
.proof-avatars span:nth-child(2) { background: var(--mint); color: #126245; }
.proof-avatars span:nth-child(3) { background: var(--yellow); color: #7a5510; }
.hero-proof > div:last-child { display: grid; gap: 3px; }
.hero-proof strong { font-size: 14px; }
.hero-proof strong span { color: #e5ad38; letter-spacing: 1px; }
.hero-proof small { color: var(--muted); font-size: 12px; }
.hero-visual {
  position: relative;
  align-self: end;
  display: flex;
  justify-content: center;
  height: 646px;
}
.hero-phone {
  width: auto;
  height: 620px;
  max-width: 100%;
  align-self: flex-end;
  filter: drop-shadow(0 32px 36px rgba(35, 21, 65, .18));
}
.hero-note {
  position: absolute;
  z-index: 2;
  display: grid;
  min-width: 142px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 8px;
  padding: 14px 16px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 18px 48px rgba(36,25,60,.12);
  backdrop-filter: blur(12px);
}
.hero-note strong { color: var(--purple); font-family: var(--display); font-size: 23px; }
.hero-note span { color: var(--muted); font-size: 12px; }
.hero-note--top { top: 70px; right: 0; }
.hero-note--bottom { bottom: 105px; left: -12px; }

.trust-strip { border-block: 1px solid var(--line); background: var(--paper); }
.trust-inner {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: center;
  gap: 30px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}
.trust-inner i { width: 4px; height: 4px; border-radius: 50%; background: var(--purple); }

.section { padding-block: 96px; }
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .7fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 58px;
}
.section-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -14px; }
.section-heading h2,
.split-copy h2,
.reviews h2 {
  font-size: clamp(40px, 5vw, 66px);
  line-height: 1.05;
}
.section-heading > p:last-child,
.split-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}
.feature-stage {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(340px, 1.15fr);
  align-items: end;
  min-height: 594px;
  overflow: visible;
  border-radius: 8px;
  padding: 54px 64px 0;
}
.feature-stage--lavender { background: var(--lavender); }
.feature-copy { align-self: center; padding-bottom: 54px; }
.feature-number {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 30px;
  border: 1px solid rgba(20,16,31,.22);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
}
.feature-copy h3 {
  max-width: 430px;
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: 40px;
  line-height: 1.1;
}
.feature-copy > p {
  max-width: 450px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}
.feature-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 700;
}
.feature-list li { display: flex; align-items: center; gap: 10px; }
.feature-list span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  font-size: 12px;
}
.feature-phone {
  width: auto;
  height: 540px;
  max-width: 100%;
  justify-self: end;
  align-self: end;
  filter: drop-shadow(0 30px 35px rgba(42,30,72,.17));
}

.practice-section { padding-top: 24px; }
.progress-section { padding-top: 0; }
.split-feature {
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 76px;
}
.split-feature--reverse .split-visual { order: 2; }
.split-visual {
  display: flex;
  height: 590px;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
  padding: 44px 54px 0;
}
.split-visual--mint { background: var(--mint); }
.split-visual--yellow { background: var(--yellow); }
.split-visual img { width: auto; height: 540px; max-width: 100%; filter: drop-shadow(0 28px 34px rgba(29,35,33,.16)); }
.split-copy { padding: 30px 0; }
.split-copy .eyebrow { margin-bottom: 18px; }
.split-copy h2 { max-width: 600px; margin-bottom: 24px; }
.split-copy > p { max-width: 570px; }
.metric-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 38px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.metric-row div { display: grid; gap: 5px; }
.metric-row strong { font-family: var(--display); font-size: 21px; }
.metric-row span { color: var(--muted); font-size: 13px; }
blockquote {
  max-width: 560px;
  margin: 38px 0 0;
  border-left: 3px solid var(--purple);
  padding-left: 22px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
}

.community-band { overflow: hidden; background: var(--ink); color: #fff; }
.community-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  align-items: center;
  min-height: 620px;
  gap: 80px;
  padding-top: 60px;
}
.eyebrow--light { color: #c9adff; }
.community-copy h2 {
  max-width: 680px;
  color: #fff;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.07;
}
.community-copy > p:last-child {
  max-width: 590px;
  margin: 26px 0 0;
  color: #b9b4c2;
  font-size: 18px;
  line-height: 1.7;
}
.community-inner > img {
  width: auto;
  height: 580px;
  max-width: 100%;
  justify-self: center;
  align-self: end;
  filter: drop-shadow(0 28px 40px rgba(0,0,0,.3));
}

.reviews { padding-block: 96px 110px; }
.reviews-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 52px;
}
.reviews-heading .eyebrow { margin-bottom: 0; }
.reviews-heading h2 { max-width: 680px; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--line);
}
.review-grid article {
  min-height: 280px;
  padding: 38px 34px;
  border-right: 1px solid var(--line);
}
.review-grid article:last-child { border-right: 0; }
.review-index {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--purple);
  font-size: 13px;
  font-weight: 800;
}
.review-grid h3 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: 24px;
}
.review-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
}

.download-section {
  padding: 110px 24px;
  background: var(--purple);
  color: #fff;
  text-align: center;
}
.download-inner { display: flex; flex-direction: column; align-items: center; }
.download-icon {
  width: 94px;
  height: 94px;
  margin-bottom: 30px;
  border-radius: 22px;
  box-shadow: 0 22px 38px rgba(32, 10, 78, .24);
}
.download-section h2 {
  color: #fff;
  font-size: clamp(48px, 6vw, 76px);
  line-height: 1;
}
.download-section .download-inner > p:not(.eyebrow) {
  max-width: 590px;
  margin: 26px auto 32px;
  color: #e7dbff;
  font-size: 18px;
  line-height: 1.65;
}
.store-actions--center { justify-content: center; }
.store-button--light { border-color: #fff; background: #fff; color: var(--ink); }
.store-button--light:hover { background: #f5f2fa; }

.site-footer { background: var(--ink); color: #fff; }
.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 42px 0;
}
.brand--footer img { width: 36px; height: 36px; border-radius: 9px; }
.footer-inner > p { margin: 0; color: #aaa5b2; font-size: 14px; }
.footer-links {
  display: flex;
  gap: 22px;
  color: #d7d3dc;
  font-size: 13px;
  font-weight: 700;
}
.footer-links a:hover { color: #fff; }
.footer-inner > small {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: #77727f;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-shell { grid-template-columns: 1fr auto; }
  .hero-inner { grid-template-columns: 1fr 380px; gap: 20px; }
  .hero-note { display: none; }
  .section { padding-block: 88px; }
  .feature-stage { padding-inline: 44px; }
  .split-feature { gap: 46px; }
  .split-visual { height: 600px; padding-inline: 34px; }
  .community-inner { grid-template-columns: 1fr 360px; gap: 30px; }
  .community-inner > img { width: 340px; }
}

@media (max-width: 760px) {
  main,
  section,
  .hero-copy,
  .split-copy { min-width: 0; max-width: 100%; }
  .nav-shell,
  .hero-inner,
  .trust-inner,
  .section,
  .community-inner,
  .download-inner,
  .footer-inner { width: min(100% - 32px, 1180px); }
  .site-header { position: absolute; }
  .nav-shell { min-height: 66px; gap: 12px; }
  .brand { font-size: 15px; }
  .brand img { width: 36px; height: 36px; }
  .nav-cta { padding: 9px 13px; font-size: 12px; }
  .hero { min-height: auto; padding-top: 66px; }
  .hero::after { display: none; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: 0;
    padding: 70px 0 0;
    text-align: center;
  }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .eyebrow { justify-content: center; font-size: 11px; letter-spacing: .09em; }
  .hero h1 { max-width: 100%; font-size: 44px; line-height: 1.02; }
  .hero-lede { margin-top: 22px; font-size: 17px; }
  .store-actions { width: 100%; justify-content: center; }
  .store-button { min-width: 0; flex: 0 1 182px; padding-inline: 10px; }
  .hero-proof { max-width: 100%; margin-top: 22px; text-align: left; }
  .hero-visual { height: 470px; }
  .hero-phone { width: auto; height: 450px; }
  .trust-inner {
    flex-wrap: wrap;
    min-height: 112px;
    gap: 12px 16px;
    padding-block: 22px;
    font-size: 12px;
  }
  .section { padding-block: 76px; }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 38px;
    text-align: center;
  }
  .section-heading .eyebrow { margin-bottom: 0; }
  .section-heading h2,
  .split-copy h2,
  .reviews h2 { font-size: 41px; }
  .section-heading > p:last-child,
  .split-copy > p { font-size: 16px; }
  .feature-stage {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 46px 22px 0;
    text-align: center;
  }
  .feature-copy { padding-bottom: 36px; }
  .feature-copy h3 { font-size: 34px; }
  .feature-list { justify-content: center; text-align: left; }
  .feature-phone { width: auto; height: 470px; justify-self: center; }
  .practice-section,
  .progress-section { padding-top: 0; }
  .split-feature { grid-template-columns: 1fr; gap: 36px; }
  .split-feature--reverse .split-visual { order: 0; }
  .split-visual { height: 500px; padding-top: 36px; }
  .split-visual img { width: auto; height: 460px; }
  .split-copy { padding: 0 4px; text-align: center; }
  .metric-row,
  blockquote { text-align: left; }
  .community-inner {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 76px;
    text-align: center;
  }
  .community-copy h2 { font-size: 41px; }
  .community-copy > p:last-child { font-size: 16px; }
  .community-inner > img { width: auto; height: 500px; justify-self: center; }
  .reviews { padding-block: 76px 90px; }
  .reviews-heading { display: grid; text-align: left; }
  .review-grid { grid-template-columns: 1fr; }
  .review-grid article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-inline: 20px;
  }
  .review-grid article:last-child { border-bottom: 0; }
  .download-section { padding: 82px 16px; }
  .download-section h2 { font-size: 46px; }
  .footer-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .footer-inner > small { width: 100%; grid-column: 1; }
}

@media (max-width: 390px) {
  .hero h1 { font-size: 40px; }
  .store-actions { width: 100%; }
  .store-button { width: 100%; flex-basis: 100%; justify-content: center; }
  .hero-visual { height: 420px; }
  .hero-phone { width: auto; height: 405px; }
  .metric-row { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}
