:root {
  --blue: #3c7df2;
  --blue-deep: #245ec8;
  --blue-soft: #eaf2ff;
  --blue-pale: #f4f8ff;
  --ink: #1d2738;
  --muted: #68758a;
  --cream: #fffaf2;
  --paper: #ffffff;
  --line: #e7edf6;
  --purple: #8b5cf6;
  --orange: #f97345;
  --green: #19a57e;
  --yellow: #f6c84c;
  --navy: #173453;
  --shadow: 0 24px 70px rgba(42, 75, 132, 0.13);
  --shadow-soft: 0 14px 40px rgba(42, 75, 132, 0.09);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
  --font-serif: "Songti SC", "STSong", "SimSun", serif;
  --font-sans: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.32;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
}

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

img,
svg {
  display: block;
}

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

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(60, 125, 242, 0.42);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 16px;
  color: #fff;
  background: var(--blue-deep);
  border-radius: 10px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  padding: 16px 0;
  transition: padding 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  padding: 9px 0;
  background: rgba(255, 253, 248, 0.88);
  border-bottom: 1px solid rgba(231, 237, 246, 0.85);
  box-shadow: 0 10px 35px rgba(36, 74, 130, 0.08);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(calc(100% - 48px), 1240px);
  min-height: 56px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: none;
  gap: 12px;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  box-shadow: 0 8px 20px rgba(60, 125, 242, 0.22);
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand strong {
  font-size: 18px;
  letter-spacing: 0.08em;
}

.brand small {
  margin-top: 4px;
  color: #77869a;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 30px;
}

.site-nav a {
  position: relative;
  color: #445269;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--blue);
  border-radius: 99px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.site-nav a:hover {
  color: var(--blue-deep);
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  flex: none;
  gap: 10px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
  cursor: pointer;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: var(--ink);
  border-radius: 9px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

.menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 700;
  border: 1px solid transparent;
  border-radius: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-small {
  min-height: 42px;
  padding: 9px 17px;
  font-size: 13px;
}

.button-large {
  min-height: 54px;
  padding: 14px 23px;
  font-size: 15px;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #4a89f7, #2869e2);
  box-shadow: 0 12px 25px rgba(44, 108, 226, 0.25);
}

.button-primary:hover {
  box-shadow: 0 16px 30px rgba(44, 108, 226, 0.33);
}

.button-ghost {
  color: #385171;
  background: rgba(255, 255, 255, 0.58);
  border-color: rgba(61, 92, 132, 0.16);
}

.button-soft {
  color: #345475;
  background: #fff;
  border-color: #e1e9f4;
  box-shadow: 0 10px 25px rgba(39, 76, 126, 0.08);
}

.hero {
  position: relative;
  min-height: 850px;
  padding: 150px 0 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 16%, rgba(113, 172, 255, 0.18), transparent 29%),
    radial-gradient(circle at 10% 15%, rgba(255, 212, 140, 0.2), transparent 28%),
    linear-gradient(180deg, #fffaf2 0%, #fffdf9 72%, #f8fbff 100%);
}

.hero::after {
  position: absolute;
  right: -10%;
  bottom: 10%;
  left: -10%;
  height: 150px;
  content: "";
  background: #f7fbff;
  border-radius: 50% 50% 0 0 / 60% 60% 0 0;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  top: 120px;
  left: -130px;
  width: 320px;
  height: 320px;
  background: rgba(255, 216, 154, 0.16);
}

.hero-glow-two {
  top: 125px;
  right: -80px;
  width: 440px;
  height: 440px;
  background: rgba(96, 156, 255, 0.11);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
}

.hero-copy {
  padding-bottom: 72px;
}

.eyebrow,
.section-kicker {
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  background: rgba(234, 242, 255, 0.8);
  border: 1px solid rgba(60, 125, 242, 0.12);
  border-radius: 999px;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--blue);
  border: 3px solid rgba(60, 125, 242, 0.18);
  border-radius: 50%;
  box-sizing: content-box;
}

.hero h1 {
  max-width: 720px;
  margin: 25px 0 22px;
  font-family: var(--font-serif);
  font-size: clamp(44px, 5vw, 66px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.045em;
}

.hero h1 em {
  position: relative;
  color: var(--blue);
  font-style: normal;
}

.hero h1 em::after {
  position: absolute;
  right: 2%;
  bottom: -11px;
  left: 5%;
  height: 10px;
  content: "";
  background: url("data:image/svg+xml,%3Csvg width='500' height='12' viewBox='0 0 500 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 8C100 2 208 11 300 5c70-5 140-2 198 0' fill='none' stroke='%23f6c84c' stroke-width='5' stroke-linecap='round' opacity='.65'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}

.hero-lead {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 32px;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 25px;
  color: #68758a;
  font-size: 13px;
}

.hero-notes span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-notes i {
  display: grid;
  width: 19px;
  height: 19px;
  color: var(--green);
  background: rgba(25, 165, 126, 0.1);
  border-radius: 50%;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  place-items: center;
}

.hero-visual {
  position: relative;
  min-height: 575px;
}

.phone {
  position: absolute;
  top: 5px;
  left: 50%;
  z-index: 3;
  width: 310px;
  padding: 9px;
  background: #172236;
  border: 3px solid #33435c;
  border-radius: 42px;
  box-shadow: 0 42px 80px rgba(29, 58, 108, 0.28), 0 10px 25px rgba(29, 58, 108, 0.12);
  transform: translateX(-50%) rotate(1deg);
}

.phone-speaker {
  position: absolute;
  top: 16px;
  left: 50%;
  z-index: 2;
  width: 77px;
  height: 19px;
  background: #172236;
  border-radius: 0 0 12px 12px;
  transform: translateX(-50%);
}

.phone-screen {
  min-height: 545px;
  padding: 15px 15px 10px;
  overflow: hidden;
  background: linear-gradient(180deg, #f3f8ff 0%, #fff 34%);
  border-radius: 31px;
}

.phone-status {
  display: flex;
  justify-content: space-between;
  padding: 0 8px;
  color: #1f2a3b;
  font-size: 9px;
  font-weight: 700;
}

.phone-welcome {
  display: flex;
  flex-direction: column;
  margin: 27px 3px 14px;
  line-height: 1.35;
}

.phone-welcome span {
  color: #7b8799;
  font-size: 10px;
}

.phone-welcome strong {
  margin-top: 3px;
  font-size: 16px;
}

.focus-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 0, rgba(255, 255, 255, 0.23), transparent 35%),
    linear-gradient(135deg, #4e8bf6, #2d68df);
  border-radius: 18px;
  box-shadow: 0 14px 26px rgba(45, 104, 223, 0.23);
}

.focus-card > div:first-child {
  display: flex;
  flex-direction: column;
}

.focus-card small {
  font-size: 9px;
  opacity: 0.82;
}

.focus-card strong {
  margin: 3px 0;
  font-size: 22px;
}

.focus-card span {
  font-size: 9px;
  opacity: 0.86;
}

.focus-ring {
  display: grid;
  width: 61px;
  height: 61px;
  background: conic-gradient(#fff 0 75%, rgba(255, 255, 255, 0.25) 75%);
  border-radius: 50%;
  place-items: center;
}

.focus-ring::before {
  width: 48px;
  height: 48px;
  content: "";
  background: #477fe6;
  border-radius: 50%;
}

.focus-ring span {
  position: absolute;
  font-size: 11px;
  font-weight: 700;
}

.phone-section-title {
  display: flex;
  justify-content: space-between;
  margin: 17px 2px 9px;
  font-size: 11px;
}

.phone-section-title span {
  color: var(--blue);
  font-size: 9px;
}

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

.phone-training {
  display: grid;
  grid-template-columns: 39px 1fr auto;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  background: #fff;
  border: 1px solid #edf1f7;
  border-radius: 12px;
  box-shadow: 0 5px 16px rgba(43, 74, 120, 0.05);
}

.training-symbol {
  display: grid;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  font-size: 19px;
  font-weight: 800;
  place-items: center;
}

.symbol-blue {
  color: #3c7df2;
  background: #eaf2ff;
}

.symbol-purple {
  color: #8b5cf6;
  background: #f1ebff;
}

.symbol-orange {
  color: #f27642;
  background: #fff0e7;
}

.phone-training > span:nth-child(2) {
  display: flex;
  flex-direction: column;
  line-height: 1.45;
}

.phone-training strong {
  font-size: 10px;
}

.phone-training small {
  color: #8c98a9;
  font-size: 8px;
}

.phone-training i {
  color: #9aa7b8;
  font-size: 19px;
  font-style: normal;
}

.phone-tabs {
  display: flex;
  justify-content: space-around;
  margin: 13px -10px -5px;
  padding-top: 10px;
  color: #9aa6b6;
  border-top: 1px solid #eef2f7;
  font-size: 15px;
}

.phone-tabs span {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.phone-tabs small {
  margin-top: 5px;
  font-size: 7px;
}

.phone-tabs .active {
  color: var(--blue);
}

.floating-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(45, 81, 133, 0.15);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  animation: float 5s ease-in-out infinite;
}

.floating-card-top {
  top: 90px;
  left: -10px;
}

.floating-card-bottom {
  right: -8px;
  bottom: 105px;
  animation-delay: -2.2s;
}

.floating-card > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}

.floating-card small {
  color: #8490a2;
  font-size: 9px;
}

.floating-card strong {
  font-size: 12px;
}

.floating-icon {
  display: grid;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  place-items: center;
}

.floating-icon svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linejoin: round;
}

.floating-icon-yellow {
  color: #d99800;
  background: #fff4ce;
}

.trend-mini {
  display: flex;
  align-items: end;
  width: 49px;
  height: 35px;
  gap: 3px;
}

.trend-mini i {
  flex: 1;
  background: linear-gradient(#66a0ff, #3979e8);
  border-radius: 3px 3px 1px 1px;
}

.orbit {
  position: absolute;
  top: 46%;
  left: 50%;
  border: 1px dashed rgba(60, 125, 242, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one {
  width: 430px;
  height: 430px;
}

.orbit-two {
  width: 520px;
  height: 520px;
}

.hero-star {
  position: absolute;
  z-index: 2;
  color: var(--yellow);
  line-height: 1;
  animation: twinkle 3.4s ease-in-out infinite;
}

.star-one {
  top: 28px;
  right: 52px;
  font-size: 28px;
}

.star-two {
  bottom: 65px;
  left: 24px;
  color: #8bb2fa;
  font-size: 19px;
  animation-delay: -1.4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes twinkle {
  0%, 100% { opacity: 0.45; transform: scale(0.82) rotate(0); }
  50% { opacity: 1; transform: scale(1.12) rotate(12deg); }
}

.metric-strip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  margin-top: 22px;
  padding: 25px 38px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(224, 233, 245, 0.86);
  border-radius: 23px;
  box-shadow: var(--shadow-soft);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.metric-strip > div {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 9px;
}

.metric-strip strong {
  color: var(--blue);
  font-family: var(--font-serif);
  font-size: 32px;
}

.metric-strip span {
  color: #667487;
  font-size: 13px;
  font-weight: 600;
}

.metric-strip > i {
  width: 1px;
  height: 34px;
  background: var(--line);
}

.section {
  padding: 112px 0;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 48px;
}

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

.section-heading h2,
.parent-copy h2,
.promise-copy h2,
.report-copy h2 {
  margin: 12px 0 15px;
  font-family: var(--font-serif);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.section-heading p,
.parent-copy > p,
.promise-copy > p,
.report-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.abilities {
  position: relative;
  background: #f7fbff;
}

.ability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.ability-card {
  position: relative;
  min-height: 292px;
  padding: 28px 25px 23px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 32px rgba(44, 76, 123, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ability-card::after {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 135px;
  height: 135px;
  content: "";
  background: currentColor;
  border-radius: 50%;
  opacity: 0.055;
}

.ability-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 45px rgba(44, 76, 123, 0.11);
}

.ability-icon {
  display: grid;
  width: 55px;
  height: 55px;
  margin-bottom: 23px;
  color: currentColor;
  background: color-mix(in srgb, currentColor 10%, white);
  border-radius: 17px;
  place-items: center;
}

.ability-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ability-card h3 {
  margin: 0 0 9px;
  color: var(--ink);
  font-size: 20px;
}

.ability-card p {
  margin: 0 0 19px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.ability-label {
  display: inline-block;
  color: currentColor;
  font-size: 11px;
  font-weight: 700;
}

.ability-blue { color: #3478eb; }
.ability-purple { color: #8657e9; }
.ability-orange { color: #ef7340; }
.ability-green { color: #159b77; }
.ability-pink { color: #e76591; }

.ability-grid-brain {
	grid-template-columns: repeat(3, 1fr);
}

.ability-grid-brain .ability-card {
  min-height: 268px;
  padding: 24px 19px 20px;
}

.motion-strip {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(300px, 1.2fr);
  gap: 26px;
  align-items: center;
  margin-top: 34px;
  padding: 28px 30px;
  background: #fff;
  border: 1px solid #edf0f4;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.motion-copy h3 {
  margin: 10px 0 8px;
  color: var(--ink);
  font-size: 24px;
}

.motion-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.motion-chips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.motion-chip {
  display: grid;
  gap: 6px;
  padding: 16px 14px;
  background: #fff;
  border: 1px solid #e4ebf4;
  border-radius: 16px;
}

.motion-chip strong {
  font-size: 15px;
}

.motion-chip small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

.chip-blue { color: #3478eb; background: color-mix(in srgb, #3478eb 6%, white); }
.chip-orange { color: #ef7340; background: color-mix(in srgb, #ef7340 6%, white); }
.chip-green { color: #159b77; background: color-mix(in srgb, #159b77 6%, white); }

.system {
  background: #fffdf9;
}

.journey {
  display: grid;
  grid-template-columns: 1fr 34px 1fr 34px 1fr 34px 1fr 34px 1fr;
  align-items: center;
  padding: 32px 24px 26px;
  background: #fff;
  border: 1px solid #edf0f4;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.journey article {
  position: relative;
  min-height: 224px;
  padding: 20px 12px;
  text-align: center;
}

.journey-number {
  position: absolute;
  top: -2px;
  right: 10px;
  color: #edf1f7;
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 800;
}

.journey-icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin: 12px auto 18px;
  background: #edf4ff;
  border-radius: 19px;
  place-items: center;
}

.journey-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.journey h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.journey p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.journey-arrow {
  color: #c3cddd;
  font-size: 24px;
  text-align: center;
}

.icon-blue { color: var(--blue); background: #eaf2ff; }
.icon-purple { color: var(--purple); background: #f2edff; }
.icon-orange { color: var(--orange); background: #fff0e9; }
.icon-green { color: var(--green); background: #e9f8f3; }
.icon-pink { color: #e76591; background: #ffedf3; }

.games {
  background: #f7fbff;
}

.heading-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  max-width: none;
  gap: 70px;
}

.heading-row h2 {
  margin-bottom: 0;
}

.heading-row > p {
  padding-bottom: 5px;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.game-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid #e6edf6;
  border-radius: 22px;
  box-shadow: 0 10px 32px rgba(43, 75, 122, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 42px rgba(43, 75, 122, 0.12);
}

.game-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.74;
  background: #eaf2ff;
}

.game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.game-card:hover img {
  transform: scale(1.035);
}

.game-image span {
  position: absolute;
  top: 13px;
  left: 13px;
  padding: 5px 10px;
  color: #385374;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(47, 76, 120, 0.1);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.game-copy {
  padding: 18px 20px 20px;
}

.game-copy h3 {
  margin: 0 0 5px;
  font-size: 18px;
}

.game-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.more-games {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.more-games::before {
  align-self: center;
  margin-right: 6px;
  color: #738197;
  content: "还有";
  font-size: 12px;
  font-weight: 700;
}

.more-games span {
  padding: 8px 13px;
  color: #53647a;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid #e4ebf4;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}

.report-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 92% 5%, rgba(94, 159, 255, 0.18), transparent 30%),
    radial-gradient(circle at 20% 100%, rgba(25, 165, 126, 0.14), transparent 32%),
    var(--navy);
}

.report-dots {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: radial-gradient(rgba(255, 255, 255, 0.6) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(90deg, transparent 5%, #000 45%, transparent 100%);
}

.report-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 72px;
}

.section-kicker-light {
  color: #80b5ff;
}

.report-copy h2 {
  font-size: clamp(36px, 4vw, 50px);
}

.report-copy > p {
  color: #b8c7d8;
}

.check-list {
  display: grid;
  gap: 19px;
  margin: 31px 0 29px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 13px;
}

.check-list li > span {
  display: grid;
  flex: none;
  width: 30px;
  height: 30px;
  color: #9de5cc;
  background: rgba(77, 199, 157, 0.13);
  border: 1px solid rgba(113, 222, 184, 0.22);
  border-radius: 10px;
  font-size: 13px;
  place-items: center;
}

.check-list div {
  display: flex;
  flex-direction: column;
}

.check-list strong {
  font-size: 14px;
}

.check-list small {
  color: #9fb0c4;
  font-size: 11px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 800;
}

.text-link span {
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.light-link {
  color: #9fc3ff;
}

.report-dashboard {
  padding: 23px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 29px;
  box-shadow: 0 30px 65px rgba(4, 25, 51, 0.26);
}

.dashboard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.dashboard-head > div {
  display: flex;
  flex-direction: column;
}

.dashboard-head small {
  color: #7b899b;
  font-size: 10px;
}

.dashboard-head strong {
  font-size: 18px;
}

.dashboard-head > span {
  padding: 7px 10px;
  color: #64758b;
  background: #f3f6fa;
  border-radius: 9px;
  font-size: 9px;
}

.dashboard-body {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 14px;
}

.radar-card,
.mini-stat {
  background: #f8faff;
  border: 1px solid #e9eef6;
  border-radius: 18px;
}

.radar-card {
  padding: 15px;
}

.radar-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.radar-title strong {
  font-size: 12px;
}

.radar-title span {
  color: var(--blue);
  font-size: 9px;
}

.radar {
  width: 100%;
  max-height: 275px;
  margin: 5px auto 0;
  overflow: visible;
}

.radar-grid polygon,
.radar-grid line {
  fill: none;
  stroke: #dce4f1;
  stroke-width: 1;
}

.radar-fill {
  fill: rgba(60, 125, 242, 0.21);
  stroke: #4a86ef;
  stroke-width: 2;
}

.radar-points circle {
  fill: #fff;
  stroke: #4a86ef;
  stroke-width: 2;
}

.radar-labels text {
  fill: #728096;
  font-family: var(--font-sans);
  font-size: 9px;
  text-anchor: middle;
}

.dashboard-side {
  display: grid;
  gap: 14px;
}

.mini-stat {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 145px;
  padding: 16px;
  overflow: hidden;
}

.mini-stat-icon {
  display: grid;
  width: 29px;
  height: 29px;
  margin-bottom: 12px;
  color: var(--green);
  background: #e6f7f2;
  border-radius: 9px;
  font-size: 14px;
  font-style: normal;
  place-items: center;
}

.mini-stat-purple {
  color: var(--purple);
  background: #f0ebff;
}

.mini-stat small {
  color: #7c899a;
  font-size: 9px;
}

.mini-stat strong {
  margin: 2px 0;
  font-size: 23px;
}

.mini-stat strong i {
  color: #728096;
  font-size: 9px;
  font-style: normal;
}

.mini-stat em {
  color: var(--green);
  font-size: 8px;
  font-style: normal;
}

.sparkline {
  display: flex;
  align-items: end;
  height: 34px;
  margin-top: auto;
  gap: 4px;
}

.sparkline i {
  flex: 1;
  background: linear-gradient(#a883ff, #7954e4);
  border-radius: 3px 3px 1px 1px;
}

.parents {
  background: #fffdf9;
}

.parent-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 100px;
}

.parent-visual {
  position: relative;
  min-height: 480px;
}

.parent-visual::before {
  position: absolute;
  top: 5%;
  left: 3%;
  width: 390px;
  height: 390px;
  content: "";
  background: linear-gradient(145deg, #e9f2ff, #fff2df);
  border-radius: 44% 56% 50% 50%;
  transform: rotate(-7deg);
}

.parent-card {
  position: absolute;
  z-index: 2;
  background: #fff;
  border: 1px solid #e8edf5;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.parent-card-main {
  top: 48px;
  left: 42px;
  width: min(430px, calc(100% - 60px));
  padding: 25px;
  transform: rotate(-1.5deg);
}

.parent-card-head {
  display: flex;
  align-items: center;
  gap: 11px;
}

.avatar {
  display: grid;
  flex: none;
  width: 42px;
  height: 42px;
  color: #fff;
  border: 3px solid #fff;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 5px 15px rgba(43, 75, 122, 0.12);
  place-items: center;
}

.avatar-blue { background: linear-gradient(135deg, #6ca2fb, #3a79e9); }
.avatar-orange { background: linear-gradient(135deg, #ffa47b, #ef7040); }

.parent-card-head > span:nth-child(2) {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.parent-card-head strong {
  font-size: 13px;
}

.parent-card-head small {
  color: #8491a3;
  font-size: 9px;
}

.parent-card-head > i {
  color: #a4afbd;
  font-style: normal;
  letter-spacing: 2px;
}

.week-row {
  display: flex;
  justify-content: space-between;
  margin: 28px 0;
}

.week-row > span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.week-row small {
  color: #8a96a6;
  font-size: 9px;
}

.week-row i {
  display: grid;
  width: 31px;
  height: 31px;
  color: #728096;
  background: #f5f7fa;
  border-radius: 10px;
  font-size: 9px;
  font-style: normal;
  place-items: center;
}

.week-row i.done {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 6px 14px rgba(60, 125, 242, 0.2);
}

.parent-progress > div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 9px;
  font-size: 11px;
}

.parent-progress > div span {
  color: var(--blue);
  font-weight: 700;
}

.parent-progress > i {
  display: block;
  height: 8px;
  overflow: hidden;
  background: #eaf0f7;
  border-radius: 99px;
}

.parent-progress > i span {
  display: block;
  width: 75%;
  height: 100%;
  background: linear-gradient(90deg, #4c8af6, #77a7fa);
  border-radius: inherit;
}

.child-switcher {
  right: -3px;
  bottom: 45px;
  width: 175px;
  padding: 18px;
}

.child-switcher > small {
  color: #7d899a;
  font-size: 9px;
}

.child-switcher > div {
  display: flex;
  margin-top: 11px;
}

.child-switcher .avatar {
  margin-right: -7px;
}

.child-switcher .add-child {
  display: grid;
  width: 42px;
  height: 42px;
  margin-left: 8px;
  color: var(--blue);
  background: #eef4ff;
  border: 1px dashed #94b8f5;
  border-radius: 14px;
  place-items: center;
}

.parent-badge {
  position: absolute;
  bottom: 17px;
  left: 3px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  background: #fff;
  border: 1px solid #e8edf5;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.parent-badge > span {
  display: grid;
  width: 34px;
  height: 34px;
  color: var(--green);
  background: #e7f8f2;
  border-radius: 11px;
  place-items: center;
}

.parent-badge > div {
  display: flex;
  flex-direction: column;
}

.parent-badge strong {
  font-size: 11px;
}

.parent-badge small {
  color: #8995a5;
  font-size: 8px;
}

.parent-copy h2 {
  max-width: 520px;
}

.parent-points {
  display: grid;
  gap: 20px;
  margin-top: 33px;
}

.parent-points article {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.parent-points article > span {
  display: grid;
  flex: none;
  width: 46px;
  height: 46px;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 14px;
  place-items: center;
}

.parent-points svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.parent-points h3 {
  margin: 0 0 3px;
  font-size: 15px;
}

.parent-points p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.promise {
  padding-top: 25px;
  background: #fffdf9;
}

.promise-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 65px;
  padding: 53px;
  background:
    radial-gradient(circle at 95% 0, rgba(117, 173, 255, 0.15), transparent 30%),
    linear-gradient(135deg, #f0f6ff, #fff9ef);
  border: 1px solid #e3ebf7;
  border-radius: var(--radius-xl);
}

.promise-copy h2 {
  margin-top: 10px;
  font-size: clamp(31px, 3.5vw, 43px);
}

.promise-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 25px;
}

.promise-links a {
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 800;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.promise-grid article {
  display: flex;
  flex-direction: column;
  min-height: 155px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 19px;
  box-shadow: 0 8px 24px rgba(45, 76, 120, 0.05);
}

.promise-grid span {
  color: #8db1ed;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 800;
}

.promise-grid strong {
  margin: 9px 0 5px;
  font-size: 14px;
}

.promise-grid small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.faq {
  background: #f7fbff;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: start;
  gap: 95px;
}

.faq-grid .section-heading {
  position: sticky;
  top: 115px;
  margin-bottom: 0;
}

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

.faq-list details {
  padding: 0 23px;
  background: #fff;
  border: 1px solid #e6edf6;
  border-radius: 17px;
  box-shadow: 0 7px 22px rgba(47, 77, 121, 0.04);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary span {
  color: var(--blue);
  font-size: 20px;
  font-weight: 400;
  transition: transform 0.2s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: -5px 0 20px;
  padding-right: 32px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.download {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(120deg, #3778ea, #4d8cf6 62%, #6b9ffc);
}

.download::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.15;
  background-image: radial-gradient(#fff 1px, transparent 1px);
  background-size: 24px 24px;
}

.download-shape {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 50%;
}

.shape-one {
  top: -120px;
  right: -40px;
  width: 360px;
  height: 360px;
}

.shape-two {
  bottom: -160px;
  left: 7%;
  width: 300px;
  height: 300px;
}

.download-inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.download-icon {
  width: 122px;
  height: 122px;
  border: 5px solid rgba(255, 255, 255, 0.25);
  border-radius: 29px;
  box-shadow: 0 20px 45px rgba(24, 70, 151, 0.25);
}

.download-copy > span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  opacity: 0.8;
}

.download-copy h2 {
  margin: 7px 0 4px;
  font-family: var(--font-serif);
  font-size: clamp(29px, 3.5vw, 42px);
  line-height: 1.3;
}

.download-copy p {
  margin: 0;
  font-size: 13px;
  opacity: 0.8;
}

.download-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.button-white {
  color: var(--blue-deep);
  background: #fff;
  box-shadow: 0 12px 25px rgba(27, 65, 131, 0.18);
}

.button-dark {
  color: #fff;
  background: rgba(19, 47, 88, 0.72);
  border-color: rgba(255, 255, 255, 0.16);
}

.site-footer {
  color: #c0c9d4;
  background: #152235;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 0.65fr 0.65fr 1fr;
  gap: 60px;
  padding: 62px 0 43px;
}

.footer-logo strong {
  color: #fff;
}

.footer-logo small {
  color: #8090a3;
  font-size: 9px;
}

.footer-brand p {
  max-width: 270px;
  margin: 18px 0 0;
  color: #8796a9;
  font-size: 11px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-size: 11px;
}

.footer-column strong {
  margin-bottom: 5px;
  color: #fff;
  font-size: 13px;
}

.footer-column a,
.footer-column span {
  color: #8f9dae;
}

.footer-column a:hover {
  color: #fff;
}

.contact-column span {
  line-height: 1.65;
}

.footer-bottom {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 70px;
  padding: 15px 0;
  color: #718095;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 10px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a:hover {
  color: #b6c2d1;
}

.footer-disclaimer {
  margin-left: auto !important;
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 1080px) {
  .site-nav {
    gap: 18px;
  }

  .nav-actions .button-ghost {
    display: none;
  }

  .hero-grid {
    gap: 25px;
  }

  .floating-card-top {
    left: -5px;
  }

  .floating-card-bottom {
    right: -5px;
  }

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

  .ability-grid-brain {
    grid-template-columns: repeat(2, 1fr);
  }

  .motion-strip {
    grid-template-columns: 1fr;
  }

  .journey {
    grid-template-columns: repeat(5, 1fr);
  }

  .journey-arrow {
    display: none;
  }

  .parent-grid {
    gap: 55px;
  }

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

  .download-actions {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .site-header {
    padding: 10px 0;
    background: rgba(255, 253, 248, 0.9);
    border-bottom: 1px solid rgba(231, 237, 246, 0.8);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
  }

  .nav-shell {
    position: relative;
    width: min(calc(100% - 30px), 1240px);
  }

  .brand {
    flex: 1;
  }

  .menu-button {
    display: block;
    order: 3;
  }

  .nav-actions {
    order: 2;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: 0;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 10px;
    visibility: hidden;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 17px;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 12px 14px;
    border-radius: 10px;
  }

  .site-nav a:hover {
    background: var(--blue-soft);
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    padding-top: 130px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    padding-bottom: 20px;
  }

  .hero h1,
  .hero-lead {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions,
  .hero-notes {
    justify-content: center;
  }

  .hero-visual {
    width: min(100%, 560px);
    margin: 0 auto;
  }

  .metric-strip {
    margin-top: 0;
  }

  .heading-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

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

  .report-grid,
  .parent-grid,
  .promise-card,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .report-grid {
    gap: 55px;
  }

  .parent-grid {
    gap: 40px;
  }

  .parent-visual {
    width: min(100%, 570px);
    margin: 0 auto;
  }

  .promise-card {
    gap: 40px;
  }

  .faq-grid {
    gap: 35px;
  }

  .faq-grid .section-heading {
    position: static;
  }

  .footer-main {
    grid-template-columns: 1.4fr repeat(2, 0.7fr);
  }

  .contact-column {
    grid-column: 1 / -1;
    flex-flow: row wrap;
    align-items: center;
  }

  .contact-column strong {
    width: 100%;
  }
}

@media (max-width: 650px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .brand img {
    width: 41px;
    height: 41px;
    border-radius: 12px;
  }

  .brand strong {
    font-size: 16px;
  }

  .nav-actions {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 118px 0 50px;
  }

  .hero::after {
    display: none;
  }

  .hero h1 {
    margin-top: 20px;
    font-size: 39px;
    line-height: 1.25;
  }

  .hero h1 br {
    display: none;
  }

  .hero-lead {
    font-size: 14px;
    line-height: 1.85;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-notes {
    gap: 10px 16px;
  }

  .hero-visual {
    min-height: 555px;
    transform: scale(0.9);
    transform-origin: top center;
  }

  .phone {
    width: 292px;
  }

  .phone-screen {
    min-height: 515px;
  }

  .floating-card-top {
    top: 74px;
    left: -8px;
  }

  .floating-card-bottom {
    right: -9px;
    bottom: 72px;
  }

  .orbit-one {
    width: 360px;
    height: 360px;
  }

  .orbit-two {
    width: 440px;
    height: 440px;
  }

  .metric-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 8px;
    margin-top: -40px;
    padding: 22px 13px;
  }

  .metric-strip > i {
    display: none;
  }

  .metric-strip > div {
    flex-direction: column;
    gap: 0;
  }

  .metric-strip strong {
    font-size: 27px;
    line-height: 1.2;
  }

  .section {
    padding: 78px 0;
  }

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

  .section-heading h2,
  .parent-copy h2,
  .promise-copy h2,
  .report-copy h2 {
    font-size: 32px;
  }

  .section-heading p,
  .parent-copy > p,
  .promise-copy > p,
  .report-copy > p {
    font-size: 14px;
  }

  .ability-grid,
  .game-grid,
  .promise-grid {
    grid-template-columns: 1fr;
  }

  .ability-grid-brain {
    grid-template-columns: 1fr;
  }

  .motion-strip {
    padding: 22px 18px;
  }

  .motion-chips {
    grid-template-columns: 1fr;
  }

  .ability-card {
    min-height: auto;
  }

  .journey {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 18px;
  }

  .journey article {
    display: grid;
    grid-template-columns: auto 1fr;
    min-height: 0;
    column-gap: 15px;
    padding: 16px 11px;
    text-align: left;
  }

  .journey article:not(:last-child) {
    border-bottom: 1px solid var(--line);
  }

  .journey-number {
    top: 17px;
    right: 8px;
    font-size: 26px;
  }

  .journey-icon {
    grid-row: 1 / 3;
    width: 50px;
    height: 50px;
    margin: 0;
    border-radius: 15px;
  }

  .journey h3 {
    align-self: end;
  }

  .journey p {
    align-self: start;
    padding-right: 35px;
  }

  .report-dashboard {
    padding: 15px;
  }

  .dashboard-body {
    grid-template-columns: 1fr;
  }

  .dashboard-side {
    grid-template-columns: repeat(2, 1fr);
  }

  .mini-stat {
    min-height: 135px;
  }

  .parent-visual {
    min-height: 420px;
  }

  .parent-card-main {
    top: 35px;
    left: 10px;
    width: calc(100% - 22px);
    padding: 18px;
  }

  .week-row i {
    width: 28px;
    height: 28px;
  }

  .child-switcher {
    right: -2px;
    bottom: 19px;
  }

  .parent-badge {
    bottom: 9px;
    left: -3px;
  }

  .promise {
    padding-top: 10px;
  }

  .promise-card {
    padding: 31px 22px;
  }

  .promise-grid article {
    min-height: 135px;
  }

  .faq-list details {
    padding: 0 17px;
  }

  .download {
    padding: 64px 0;
  }

  .download-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .download-icon {
    width: 105px;
    height: 105px;
    margin: 0 auto;
  }

  .download-actions {
    display: grid;
    grid-column: auto;
    width: 100%;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 38px 25px;
    padding-top: 48px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .contact-column {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    padding: 22px 0;
  }

  .footer-disclaimer {
    margin-left: 0 !important;
    text-align: left;
  }
}

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

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

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

@supports not (background: color-mix(in srgb, red 10%, white)) {
  .ability-icon {
    background: #eef4ff;
  }
}
