:root {
  --ink: #20173e;
  --ink-soft: #5f5877;
  --canvas: #f8f7ff;
  --surface: #ffffff;
  --purple: #6948f5;
  --purple-bright: #7b5cff;
  --purple-deep: #4322b9;
  --teal: #18b9c8;
  --teal-soft: #dff8fa;
  --gold: #ffbd2e;
  --coral: #ff6d86;
  --green: #2cc879;
  --line: #e4e0f2;
  --soft-purple: #eeeaff;
  --display: ui-rounded, "SF Pro Rounded", "Arial Rounded MT Bold", "Avenir Next", sans-serif;
  --body: "Avenir Next", Avenir, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --data: ui-monospace, "SFMono-Regular", Menlo, Monaco, Consolas, monospace;
  --shadow-sm: 0 12px 32px rgba(44, 25, 112, .10);
  --shadow-lg: 0 30px 75px rgba(44, 25, 112, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 98px; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--canvas);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  margin-bottom: 0;
  font-family: var(--display);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.06em;
  text-wrap: balance;
}
h1 { font-size: clamp(3.4rem, 6.35vw, 5.8rem); }
h2 { font-size: clamp(2.65rem, 5vw, 4.65rem); }
h3 { font-size: clamp(2rem, 3.3vw, 3rem); }

.skip-link {
  position: fixed;
  left: 18px;
  top: 12px;
  z-index: 100;
  padding: 11px 16px;
  border-radius: 10px;
  color: #fff;
  background: var(--ink);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}
.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.site-header-shell {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(228, 224, 242, .84);
  background: rgba(248, 247, 255, .88);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}
.site-header {
  width: min(1180px, calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -.08em;
  text-decoration: none;
}
.brand-logo {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 13px;
  object-fit: cover;
  box-shadow: 0 5px 14px rgba(39, 20, 112, .18);
}
.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.8vw, 36px);
}
.main-nav a {
  color: var(--ink-soft);
  font-size: .92rem;
  font-weight: 720;
  text-decoration: none;
  transition: color 150ms ease;
}
.main-nav a:hover { color: var(--purple-deep); }
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 17px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  color: #fff;
  background: var(--ink);
  font-family: var(--display);
  font-size: .9rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 5px 0 var(--gold);
  transition: transform 150ms ease, box-shadow 150ms ease;
}
.header-cta:hover { transform: translateY(-2px); box-shadow: 0 7px 0 var(--gold); }

.hero {
  position: relative;
  isolation: isolate;
  min-height: 740px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--canvas);
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  width: 510px;
  height: 510px;
  right: -220px;
  top: -170px;
  border-radius: 50%;
  background: var(--teal-soft);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -2;
  width: 430px;
  height: 430px;
  left: -260px;
  bottom: -250px;
  border-radius: 50%;
  background: #fff2c9;
}
.hero-dots {
  position: absolute;
  z-index: -1;
  width: 190px;
  height: 140px;
  opacity: .62;
  background-image: radial-gradient(var(--purple) 2px, transparent 2.5px);
  background-size: 18px 18px;
}
.dots-one { left: 2.5%; top: 62px; transform: rotate(-8deg); }
.dots-two { right: 3%; bottom: 24px; transform: rotate(8deg); }
.hero-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(460px, .92fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  padding: 70px 0 96px;
}
.hero-copy { position: relative; z-index: 3; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--purple-deep);
  font-family: var(--data);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 8px;
  border-radius: 99px;
  background: var(--teal);
  transform: rotate(-4deg);
}
.eyebrow.light { color: #fff5c7; }
.eyebrow.light::before { background: var(--gold); }
.hero h1 { max-width: 675px; }
.marker {
  position: relative;
  z-index: 0;
  color: var(--purple);
}
.marker::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -.02em;
  right: -.03em;
  bottom: .05em;
  height: .18em;
  border-radius: 999px 60px 999px 70px;
  background: rgba(255, 189, 46, .48);
  transform: rotate(-1.4deg);
}
.hero-lead {
  max-width: 610px;
  margin: 26px 0 29px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.7vw, 1.26rem);
}
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 21px; }
.app-store-badge {
  display: inline-flex;
  border-radius: 13px;
  line-height: 0;
  transition: transform 160ms ease, filter 160ms ease;
}
.app-store-badge img { display: block; width: 199px; height: auto; }
.app-store-badge:hover { transform: translateY(-3px); filter: drop-shadow(0 10px 16px rgba(31, 19, 77, .2)); }
.text-link, .source-link, .light-link {
  font-weight: 800;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}
.text-link { color: var(--purple-deep); }
.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 17px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
  color: var(--ink-soft);
  font-size: .78rem;
  font-weight: 700;
}
.hero-checks li::before { content: "✓"; margin-right: 6px; color: var(--green); font-weight: 900; }

.product-stage {
  position: relative;
  min-height: 575px;
  width: 100%;
  max-width: 555px;
  justify-self: end;
}
.stage-panel {
  position: absolute;
  inset: 50px 4px 20px 67px;
  border: 3px solid var(--ink);
  border-radius: 58px;
  background: var(--purple);
  box-shadow: 15px 15px 0 var(--gold);
  transform: rotate(2deg);
}
.stage-panel::before {
  content: "";
  position: absolute;
  inset: 19px;
  border: 2px dashed rgba(255, 255, 255, .38);
  border-radius: 43px;
}
.phone-frame {
  overflow: hidden;
  border: 7px solid #17131f;
  border-radius: 48px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}
.phone-frame > img { display: block; width: 100%; height: auto; }
.hero-phone {
  position: absolute;
  z-index: 2;
  width: 267px;
  left: 143px;
  top: 0;
  transform: rotate(3.2deg);
}
.hero-mascot {
  position: absolute;
  z-index: 4;
  width: 235px;
  height: auto;
  right: -24px;
  bottom: -6px;
  filter: drop-shadow(0 18px 18px rgba(31, 17, 91, .24));
}
.goal-card, .next-move-card {
  position: absolute;
  z-index: 5;
  padding: 15px 17px;
  border: 2px solid var(--ink);
  border-radius: 19px;
  background: #fff;
  box-shadow: 7px 7px 0 var(--ink);
}
.goal-card { left: -12px; top: 70px; width: 200px; transform: rotate(-5deg); }
.next-move-card { left: 9px; bottom: 39px; width: 222px; transform: rotate(3deg); }
.goal-card span, .next-move-card span {
  display: block;
  color: var(--purple-deep);
  font-family: var(--data);
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .08em;
}
.goal-card strong {
  display: block;
  margin: 3px 0 2px;
  color: var(--purple);
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
}
.next-move-card strong { display: block; margin-top: 3px; font-family: var(--display); font-size: 1.23rem; }
.goal-card small, .next-move-card small { display: block; color: var(--ink-soft); font-size: .66rem; font-weight: 700; line-height: 1.25; }

.proof-bar {
  position: relative;
  z-index: 6;
  width: min(1080px, calc(100% - 40px));
  margin: -42px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: 0 10px 0 rgba(105, 72, 245, .18), var(--shadow-sm);
}
.proof-bar > div { padding: 20px 24px; text-align: center; }
.proof-bar > div + div { border-left: 1px solid var(--line); }
.proof-bar strong { display: block; color: var(--purple); font-family: var(--display); font-size: 1.75rem; line-height: 1; }
.proof-bar span { color: var(--ink-soft); font-size: .78rem; font-weight: 750; }

.why-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: .92fr 1fr;
  align-items: start;
  gap: clamp(50px, 9vw, 130px);
  padding: 145px 0 132px;
}
.section-heading { max-width: 690px; }
.section-heading.centered { margin: 0 auto 58px; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading > p:not(.eyebrow) { margin: 22px auto 0; color: var(--ink-soft); font-size: 1.1rem; }
.why-copy > p { max-width: 560px; margin: 5px 0 30px; color: var(--ink-soft); font-size: 1.18rem; }
.clarity-list { display: grid; gap: 13px; }
.clarity-list > div {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: start;
  gap: 15px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: var(--surface);
}
.clarity-list span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 39px;
  border-radius: 12px;
  color: var(--purple-deep);
  background: var(--soft-purple);
  font-family: var(--data);
  font-size: .68rem;
  font-weight: 900;
}
.clarity-list p { margin: 0; color: var(--ink-soft); }
.clarity-list b { color: var(--ink); }

.inside-section {
  padding: 126px 20px 140px;
  border-top: 1px solid var(--line);
  background: #fff;
}
.inside-section > .section-heading { max-width: 800px; }
.product-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
}
.product-card {
  position: relative;
  overflow: hidden;
  min-height: 590px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: var(--canvas);
  box-shadow: var(--shadow-sm);
}
.product-copy { position: relative; z-index: 3; }
.product-copy h3 { margin: 9px 0 15px; }
.product-copy > p:not(.card-kicker) { color: var(--ink-soft); }
.card-kicker {
  margin: 0;
  color: var(--purple-deep);
  font-family: var(--data);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.card-kicker.light { color: #fff5c7; }
.adaptive-card {
  grid-column: span 7;
  padding: 45px 42px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 265px;
  gap: 27px;
  background: var(--teal-soft);
}
.adaptive-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -95px;
  top: -75px;
  border: 28px solid rgba(24, 185, 200, .16);
  border-radius: 50%;
}
.adaptive-card .product-copy { padding-top: 16px; }
.micro-list { display: grid; gap: 10px; padding: 0; margin: 28px 0 0; list-style: none; font-size: .9rem; font-weight: 750; }
.micro-list li::before { content: "✓"; margin-right: 8px; color: var(--teal); font-weight: 900; }
.screenshot-crop {
  width: 265px;
  height: 570px;
  align-self: end;
  border-bottom: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: 0 24px 48px rgba(10, 93, 103, .2);
}
.explanation-card {
  grid-column: span 5;
  padding: 45px 38px 36px;
  background: #fff8de;
}
.explanation-demo {
  position: absolute;
  left: 38px;
  right: 38px;
  bottom: 36px;
  padding: 20px;
  border: 2px solid var(--ink);
  border-radius: 22px;
  background: #fff;
  box-shadow: 8px 8px 0 var(--gold);
}
.demo-top { display: flex; justify-content: space-between; color: var(--ink-soft); font-family: var(--data); font-size: .66rem; letter-spacing: .06em; }
.demo-answer { display: flex; align-items: center; gap: 12px; margin-top: 13px; padding: 11px; border-radius: 13px; }
.demo-answer > span { display: grid; place-items: center; width: 28px; height: 28px; flex: 0 0 28px; border-radius: 50%; color: #fff; font-weight: 900; }
.demo-answer p { margin: 0; line-height: 1.2; }
.demo-answer small { display: block; color: var(--ink-soft); font-size: .65rem; }
.demo-answer b { font-size: .78rem; }
.demo-answer.wrong { background: #fff0f3; }
.demo-answer.wrong > span { background: var(--coral); }
.demo-answer.right { background: #e7faf1; }
.demo-answer.right > span { background: var(--green); }
.demo-note { display: grid; grid-template-columns: auto 1fr; gap: 10px; margin-top: 13px; padding: 12px; border-radius: 13px; color: #423c5b; background: var(--soft-purple); font-size: .72rem; line-height: 1.4; }
.demo-note > span { color: var(--purple); font-size: 1.2rem; }
.demo-note p { margin: 0; }
.progress-card {
  grid-column: span 7;
  padding: 0 40px 40px 0;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  align-items: center;
  gap: 40px;
  background: var(--soft-purple);
}
.progress-visual { position: relative; min-height: 590px; }
.progress-phone {
  position: absolute;
  width: 275px;
  left: -12px;
  top: 40px;
  border-left: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.school-card {
  position: absolute;
  z-index: 3;
  left: 33px;
  bottom: 60px;
  width: 310px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 11px;
  padding: 14px;
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: #fff;
  box-shadow: 8px 8px 0 var(--teal);
}
.school-icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 13px; color: #fff; background: var(--purple); font-size: 1.4rem; }
.school-card span { display: block; color: var(--purple-deep); font-family: var(--data); font-size: .59rem; font-weight: 900; letter-spacing: .06em; }
.school-card strong { display: block; font-family: var(--display); font-size: 1.24rem; line-height: 1.05; }
.school-card small { display: block; margin-top: 3px; color: var(--ink-soft); font-size: .55rem; line-height: 1.25; }
.progress-card .product-copy { padding-top: 28px; }
.source-link { display: inline-block; margin-top: 12px; color: var(--purple-deep); font-size: .73rem; }
.quest-card {
  grid-column: span 5;
  padding: 45px 38px 0;
  color: #fff;
  background: var(--purple-deep);
}
.quest-card .product-copy > p:not(.card-kicker) { color: rgba(255, 255, 255, .86); }
.quest-tag {
  display: inline-flex;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 99px;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  font-size: .7rem;
  font-weight: 750;
}
.quest-board { position: absolute; inset: auto 23px 0; height: 290px; overflow: hidden; }
.quest-board::before {
  content: "";
  position: absolute;
  inset: 45px 25px -55px;
  border: 2px dashed rgba(255, 255, 255, .3);
  border-radius: 48% 55% 10% 10%;
  transform: rotate(-8deg);
}
.quest-board img { position: absolute; z-index: 4; width: 152px; right: -6px; bottom: -13px; filter: drop-shadow(0 12px 14px rgba(21, 10, 75, .35)); }
.quest-node {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border: 3px solid rgba(255, 255, 255, .55);
  border-radius: 50%;
  color: rgba(255, 255, 255, .7);
  background: #5a38ce;
  font-family: var(--display);
  font-weight: 900;
  box-shadow: 0 7px 0 rgba(23, 10, 80, .35);
}
.quest-node.done { color: #fff; border-color: #79e5ec; background: var(--teal); }
.quest-node.current { width: 55px; height: 55px; color: var(--ink); border-color: #fff1b0; background: var(--gold); box-shadow: 0 0 0 8px rgba(255, 189, 46, .18), 0 7px 0 #b87a00; }
.quest-node.finish { color: var(--ink); border-color: #fff; background: #fff; }
.n1 { left: 24px; bottom: 32px; }
.n2 { left: 73px; top: 92px; }
.n3 { left: 153px; top: 52px; }
.n4 { left: 245px; top: 90px; }
.n5 { right: 70px; top: 30px; }
.n6 { right: 12px; top: 83px; }
.combo-chip { position: absolute; z-index: 6; left: 136px; bottom: 22px; display: flex; align-items: center; gap: 7px; padding: 7px 11px; border-radius: 99px; color: var(--ink); background: #fff; font-size: .72rem; box-shadow: 0 7px 18px rgba(17, 8, 63, .25); }

.study-loop { padding: 115px 20px; color: #fff; background: var(--ink); }
.loop-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: clamp(50px, 9vw, 130px);
  align-items: center;
}
.loop-copy > p:not(.eyebrow) { max-width: 490px; margin: 23px 0 0; color: rgba(255, 255, 255, .72); font-size: 1.06rem; }
.loop-steps { position: relative; display: grid; gap: 20px; padding: 0; margin: 0; list-style: none; }
.loop-steps::before { content: ""; position: absolute; left: 30px; top: 40px; bottom: 40px; border-left: 2px dashed rgba(255, 255, 255, .24); }
.loop-steps li { position: relative; display: grid; grid-template-columns: 62px 1fr; gap: 19px; align-items: center; }
.loop-steps li > span { z-index: 2; display: grid; place-items: center; width: 62px; height: 62px; border: 3px solid #fff; border-radius: 20px; color: var(--ink); background: var(--gold); font-family: var(--display); font-size: 1.35rem; font-weight: 900; transform: rotate(-3deg); }
.loop-steps li:nth-child(2) > span { color: #fff; background: var(--teal); transform: rotate(3deg); }
.loop-steps li:nth-child(3) > span { color: #fff; background: var(--purple); }
.loop-steps b { font-family: var(--display); font-size: 1.18rem; }
.loop-steps p { margin: 2px 0 0; color: rgba(255, 255, 255, .68); }

.privacy-section { padding: 130px 20px; background: #fff; }
.privacy-card {
  position: relative;
  width: min(1180px, 100%);
  min-height: 590px;
  margin: 0 auto;
  overflow: hidden;
  display: grid;
  grid-template-columns: .72fr 1fr;
  align-items: center;
  gap: 55px;
  padding: 68px 74px 68px 30px;
  border-radius: 42px;
  color: #fff;
  background: var(--purple-deep);
  box-shadow: 14px 14px 0 var(--teal);
}
.privacy-card::before { content: ""; position: absolute; width: 480px; height: 480px; left: -210px; bottom: -190px; border: 2px dashed rgba(255, 255, 255, .22); border-radius: 50%; }
.privacy-mascot-wrap { position: relative; align-self: end; height: 475px; }
.privacy-mascot-wrap::before { content: ""; position: absolute; left: 50%; bottom: 25px; width: 320px; height: 320px; border-radius: 50%; background: var(--gold); transform: translateX(-50%); }
.privacy-mascot-wrap img { position: absolute; z-index: 2; width: 415px; left: 50%; bottom: -69px; max-width: none; transform: translateX(-50%); filter: drop-shadow(0 18px 22px rgba(22, 9, 81, .35)); }
.privacy-copy { position: relative; z-index: 3; }
.privacy-copy > p:not(.eyebrow) { margin: 21px 0 28px; color: rgba(255, 255, 255, .83); font-size: 1.08rem; }
.privacy-points { display: grid; gap: 15px; }
.privacy-points > div { display: grid; grid-template-columns: 31px 1fr; gap: 12px; align-items: start; }
.privacy-points > div > span { display: grid; place-items: center; width: 31px; height: 31px; border-radius: 10px; color: var(--ink); background: var(--gold); font-weight: 900; }
.privacy-points p { margin: 0; }
.privacy-points b { display: block; }
.privacy-points small { display: block; margin-top: 1px; color: rgba(255, 255, 255, .65); font-size: .76rem; }
.light-link { display: inline-block; margin-top: 30px; color: #fff; }

.faq-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: clamp(45px, 8vw, 120px);
  padding: 135px 0;
}
.faq-list { display: grid; align-content: start; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list details:first-child { border-top: 1px solid var(--line); }
.faq-list summary { display: grid; grid-template-columns: 1fr 32px; gap: 15px; align-items: center; padding: 23px 0; cursor: pointer; font-weight: 800; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; color: var(--purple-deep); background: var(--soft-purple); font-family: var(--display); font-size: 1.25rem; transition: transform 180ms ease, background 180ms ease; }
.faq-list details[open] summary span { color: #fff; background: var(--purple); transform: rotate(45deg); }
.faq-list details p { max-width: 680px; margin: -8px 48px 24px 0; color: var(--ink-soft); }

.final-cta {
  position: relative;
  isolation: isolate;
  min-height: 520px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 700px) minmax(230px, 370px);
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 76px 40px 0;
  color: #fff;
  background: var(--purple);
}
.final-cta::before { content: ""; position: absolute; z-index: -1; width: 640px; height: 640px; right: -90px; bottom: -380px; border-radius: 50%; background: var(--teal); }
.cta-route { position: absolute; z-index: -1; width: 720px; height: 310px; left: -190px; bottom: -210px; border: 3px dashed rgba(255, 255, 255, .24); border-radius: 50%; transform: rotate(12deg); }
.cta-copy { padding-bottom: 65px; }
.cta-copy h2 { max-width: 730px; }
.cta-copy > p:not(.eyebrow) { margin: 22px 0 28px; color: rgba(255, 255, 255, .85); font-size: 1.08rem; }
.cta-mascot { align-self: end; width: 355px; filter: drop-shadow(0 16px 20px rgba(24, 10, 86, .35)); }

.site-footer { color: #fff; background: #171228; }
.footer-inner { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 45px 0 30px; display: flex; justify-content: space-between; gap: 30px; }
.site-footer .brand { color: #fff; }
.footer-brand p { max-width: 500px; margin: 14px 0 0; color: rgba(255, 255, 255, .66); font-size: .82rem; }
.footer-links { display: flex; flex-wrap: wrap; align-content: start; justify-content: end; gap: 15px 22px; }
.footer-links a { color: rgba(255, 255, 255, .82); font-size: .84rem; font-weight: 700; text-decoration: none; }
.footer-links a:hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
.footer-legal { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 18px 0 28px; border-top: 1px solid rgba(255, 255, 255, .11); color: rgba(255, 255, 255, .48); font-size: .7rem; }

.has-js [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition: opacity 600ms ease, transform 720ms cubic-bezier(.2, .82, .22, 1);
}
.has-js [data-reveal].is-visible { opacity: 1; transform: none; }

/* Legal and support pages */
.legal-page { min-height: 100vh; background: var(--canvas); }
.legal-header { color: #fff; background: var(--purple-deep); }
.legal-header .site-header { display: flex; justify-content: space-between; }
.legal-header .brand { color: #fff; }
.legal-header .site-header nav { display: flex; gap: 24px; color: rgba(255, 255, 255, .82); font-size: .9rem; font-weight: 750; }
.legal-header .site-header nav a { text-decoration: none; }
.legal-content { width: min(800px, calc(100% - 40px)); margin: 0 auto; padding: 84px 0 110px; }
.legal-kicker { color: var(--purple); font-family: var(--data); font-size: .75rem; font-weight: 850; letter-spacing: .1em; }
.legal-content h1 { margin: 15px 0; font-size: clamp(3rem, 7vw, 4.8rem); }
.legal-content > p.lead { color: var(--ink-soft); font-size: 1.18rem; }
.legal-content h2 { margin: 47px 0 13px; font-size: 1.82rem; }
.legal-content p, .legal-content li { color: #4f4b68; font-size: 1rem; }
.legal-content ul { padding-left: 21px; }
.legal-note { margin-top: 40px; padding: 20px; border-left: 4px solid var(--teal); background: #e9fafa; color: #25545a; }
.support-card { margin-top: 37px; padding: 31px; border-radius: 22px; background: var(--surface); box-shadow: var(--shadow-sm); }
.support-card h2 { margin-top: 0; }
.support-link { color: var(--purple-deep); font-weight: 800; }

@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: minmax(0, 1fr) minmax(410px, .85fr); }
  .product-stage { transform: scale(.91); transform-origin: center right; }
  .adaptive-card { grid-template-columns: minmax(0, 1fr) 220px; padding-inline: 32px; }
  .screenshot-crop { width: 220px; }
  .progress-card { grid-template-columns: 255px minmax(0, 1fr); gap: 28px; padding-right: 32px; }
  .progress-phone { width: 245px; }
  .school-card { left: 24px; width: 285px; }
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .hero-inner { grid-template-columns: 1fr; padding-top: 62px; }
  .hero-copy { max-width: 720px; }
  .product-stage { justify-self: center; width: min(555px, 100%); margin: 16px auto 25px; transform: none; }
  .proof-bar { grid-template-columns: repeat(2, 1fr); }
  .proof-bar > div:nth-child(3) { border-top: 1px solid var(--line); border-left: 0; }
  .proof-bar > div:nth-child(4) { border-top: 1px solid var(--line); }
  .why-section, .loop-inner, .faq-section { grid-template-columns: 1fr; }
  .why-section { gap: 40px; }
  .product-grid { grid-template-columns: 1fr; }
  .adaptive-card, .explanation-card, .progress-card, .quest-card { grid-column: 1; }
  .privacy-card { grid-template-columns: .72fr 1fr; padding-right: 45px; gap: 20px; }
  .final-cta { grid-template-columns: 1fr 260px; }
}

@media (max-width: 680px) {
  html { scroll-padding-top: 78px; }
  .site-header { width: min(100% - 28px, 1180px); min-height: 70px; }
  .header-cta { padding: 9px 13px; font-size: .78rem; }
  .brand-logo { width: 37px; height: 37px; flex-basis: 37px; border-radius: 11px; }
  .hero-inner, .why-section, .faq-section { width: min(100% - 32px, 1180px); }
  .hero-inner { padding: 48px 0 80px; }
  h1 { font-size: clamp(3rem, 14vw, 4.45rem); }
  h2 { font-size: clamp(2.45rem, 12vw, 3.65rem); }
  .hero-lead { font-size: 1.05rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 14px; }
  .hero-checks { display: grid; gap: 6px; }
  .product-stage { min-height: 485px; margin-top: 34px; }
  .stage-panel { inset: 48px 0 18px 35px; border-radius: 42px; box-shadow: 9px 9px 0 var(--gold); }
  .hero-phone { width: 213px; left: 50%; top: 4px; transform: translateX(-50%) rotate(2deg); }
  .hero-mascot { width: 175px; right: -22px; bottom: -5px; }
  .goal-card { left: -2px; top: 75px; width: 154px; padding: 12px; }
  .goal-card strong { font-size: 1.52rem; }
  .goal-card small { font-size: .54rem; }
  .next-move-card { left: 3px; bottom: 34px; width: 180px; padding: 12px; }
  .next-move-card strong { font-size: 1rem; }
  .proof-bar { width: min(100% - 32px, 1080px); border-radius: 20px; }
  .proof-bar > div { padding: 16px 10px; }
  .why-section { padding: 110px 0 98px; }
  .inside-section { padding: 98px 16px 105px; }
  .section-heading.centered { margin-bottom: 40px; text-align: left; }
  .section-heading.centered .eyebrow { justify-content: flex-start; }
  .product-card { min-height: 0; border-radius: 27px; }
  .adaptive-card { grid-template-columns: 1fr; padding: 34px 25px 0; }
  .screenshot-crop { width: 230px; height: 500px; justify-self: center; }
  .explanation-card { min-height: 610px; padding: 34px 25px; }
  .explanation-demo { left: 24px; right: 24px; bottom: 27px; padding: 15px; }
  .progress-card { grid-template-columns: 1fr; padding: 0 24px 36px; }
  .progress-visual { min-height: 530px; margin: 0 -24px; }
  .progress-phone { width: 248px; left: 0; top: 25px; }
  .school-card { left: 35px; bottom: 37px; width: min(300px, calc(100% - 58px)); }
  .progress-card .product-copy { padding-top: 0; }
  .quest-card { min-height: 620px; padding: 34px 25px 0; }
  .quest-board { inset-inline: 0; }
  .quest-node { transform: scale(.86); }
  .n1 { left: 15px; }
  .n2 { left: 54px; }
  .n3 { left: 123px; }
  .n4 { left: auto; right: 135px; }
  .n5 { right: 70px; }
  .combo-chip { left: 104px; }
  .study-loop { padding: 95px 20px; }
  .privacy-section { padding: 95px 16px 105px; }
  .privacy-card { grid-template-columns: 1fr; gap: 0; padding: 45px 25px 0; border-radius: 30px; box-shadow: 9px 9px 0 var(--teal); }
  .privacy-copy { order: 1; }
  .privacy-mascot-wrap { order: 2; height: 320px; margin-top: 15px; }
  .privacy-mascot-wrap::before { width: 230px; height: 230px; }
  .privacy-mascot-wrap img { width: 305px; bottom: -52px; }
  .faq-section { gap: 35px; padding: 105px 0; }
  .faq-list summary { font-size: .94rem; }
  .final-cta { min-height: 710px; grid-template-columns: 1fr; align-items: start; padding: 80px 24px 0; }
  .cta-copy { padding: 0; }
  .cta-mascot { width: 300px; justify-self: center; margin-top: -10px; }
  .footer-inner { flex-direction: column; }
  .footer-links { justify-content: start; }
  .legal-header .site-header nav { display: none; }
  .legal-content { padding-top: 60px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .001ms !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
  .has-js [data-reveal] { opacity: 1; transform: none; }
}
