:root {
  --coral: #ff5a4f;
  --coral-dark: #ec463d;
  --teal: #00afa5;
  --teal-dark: #008c84;
  --yellow: #fdb515;
  --blue: #3fa7f5;
  --green: #43b66e;
  --charcoal: #20242e;
  --navy: #101d35;
  --slate: #667085;
  --mist: #e6ebf2;
  --cloud: #f7f9fc;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(32, 36, 46, 0.14);
  --soft-shadow: 0 12px 36px rgba(32, 36, 46, 0.1);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--white);
  font-family: "Nunito Sans", "Aptos", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(20px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(230, 235, 242, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--charcoal);
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
  font-weight: 900;
  letter-spacing: 0;
}

.brand span:last-child {
  background: linear-gradient(90deg, var(--coral) 0 34%, var(--teal) 34% 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-mark {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 4px solid var(--coral);
  border-radius: var(--radius);
  color: var(--yellow);
  background: var(--white);
  box-shadow: inset 0 -14px 0 rgba(0, 175, 165, 0.16);
}

.brand-mark .brand-star {
  display: block;
  color: inherit;
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
}

.site-footer .brand-mark,
.mockup-header .brand-mark {
  width: 42px;
  height: 42px;
  border-width: 3px;
}

.site-footer .brand-star,
.mockup-header .brand-star {
  font-size: 1.7rem;
}

.brand-roof,
.brand-base {
  display: none;
}

.brand > .brand-mark,
.brand > span:last-child {
  flex: 0 0 auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 38px);
  color: var(--navy);
  font-weight: 800;
}

.site-nav a {
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--teal-dark);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 22px;
  color: var(--white) !important;
  background: var(--coral);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(255, 90, 79, 0.22);
}

.nav-cta:hover {
  background: var(--coral-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--radius);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--charcoal);
  border-radius: 2px;
}

.section-pad {
  padding: clamp(64px, 8vw, 112px) clamp(20px, 4vw, 64px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(560px, 1.1fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  min-height: calc(100vh - 78px);
  overflow: hidden;
  background:
    radial-gradient(circle at 99% 35%, rgba(63, 167, 245, 0.14) 0 52px, transparent 53px),
    linear-gradient(180deg, #ffffff 0%, #ffffff 76%, #e9fbfa 76%, #f6fdfd 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: -70px;
  bottom: 24px;
  width: 230px;
  height: 82px;
  background: rgba(0, 175, 165, 0.14);
  border-radius: 50% 50% 0 0;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 24px;
  color: var(--navy);
  font-size: clamp(3.8rem, 6vw, 5.6rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
}

h2 {
  color: var(--navy);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: 0;
}

h3 {
  color: var(--navy);
  font-size: 1.18rem;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 580px;
  margin-bottom: 12px;
  color: #4c5b73;
  font-size: clamp(1.08rem, 1.55vw, 1.3rem);
  line-height: 1.38;
  font-weight: 700;
}

.hero-support {
  margin-bottom: 30px;
  color: var(--slate);
  font-size: 1.05rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 62px;
  padding: 0 28px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-size: 1.05rem;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 14px 32px rgba(255, 90, 79, 0.26);
}

.button-primary:hover {
  background: var(--coral-dark);
}

.button-secondary {
  color: var(--teal-dark);
  background: var(--white);
  border-color: var(--teal);
}

.button-icon {
  font-size: 1.25rem;
}

.play-icon {
  position: relative;
  width: 26px;
  height: 26px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.play-icon::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 5px;
  border-left: 8px solid currentColor;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.hero-cues {
  display: grid;
  grid-template-columns: repeat(4, minmax(110px, 1fr));
  gap: 12px;
  max-width: 620px;
}

.hero-cues article {
  min-height: 122px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.cue-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
  color: var(--white);
  border-radius: 50%;
  font-weight: 900;
}

.cue-teal {
  background: var(--teal);
}

.cue-yellow {
  background: var(--yellow);
}

.cue-coral {
  background: var(--coral);
}

.hero-cues strong {
  display: block;
  color: var(--navy);
  font-size: 1.85rem;
  line-height: 1;
  font-weight: 900;
}

.hero-cues span:last-child {
  display: block;
  margin-top: 4px;
  color: var(--navy);
  font-size: 0.83rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.product-shell {
  display: grid;
  grid-template-columns: 170px 1fr;
  max-width: 780px;
  margin-left: auto;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.product-sidebar {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 16px;
  color: var(--white);
  background: linear-gradient(180deg, #10213c 0%, #0a182d 100%);
}

.mini-brand {
  margin-bottom: 12px;
  font-size: 1.25rem;
  font-weight: 900;
}

.product-sidebar a {
  display: block;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.88);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 800;
}

.product-sidebar .side-active {
  color: var(--white);
  background: var(--teal);
}

.level-card {
  margin-top: auto;
  padding: 14px 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
}

.level-card span {
  display: block;
  margin-bottom: 10px;
  font-weight: 900;
}

.level-bar,
.mission-bar,
.reward-progress {
  height: 8px;
  overflow: hidden;
  background: rgba(230, 235, 242, 0.75);
  border-radius: 999px;
}

.level-bar span,
.mission-bar span,
.reward-progress span {
  display: block;
  height: 100%;
  background: var(--teal);
  border-radius: inherit;
}

.level-bar span {
  width: 64%;
}

.level-card small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.86);
}

.dashboard {
  padding: 24px;
  background: linear-gradient(180deg, #fbfdff 0%, #ffffff 100%);
}

.dashboard-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.dashboard-top .muted {
  margin-bottom: 2px;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 900;
}

.dashboard-top h2 {
  margin: 0;
  color: var(--slate);
  font-size: 0.88rem;
  line-height: 1.35;
  font-weight: 700;
}

.family-avatars {
  display: flex;
  gap: 6px;
}

.family-avatars span,
.family-avatars button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--white);
  background: var(--teal);
  border: 0;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 900;
}

.family-avatars span:nth-child(2) {
  background: var(--coral);
}

.family-avatars span:nth-child(3) {
  background: var(--yellow);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
}

.panel {
  min-width: 0;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(16, 29, 53, 0.06);
}

.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.panel-title h3,
.panel p {
  margin-bottom: 0;
}

.panel-title span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 24px;
  color: var(--white);
  background: var(--teal);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 900;
}

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

.quest-list li {
  display: grid;
  grid-template-columns: 1fr auto 22px;
  gap: 10px;
  align-items: center;
  min-height: 42px;
  padding: 8px 10px;
  border: 1px solid var(--mist);
  border-radius: 7px;
  font-size: 0.86rem;
}

.quest-list strong {
  color: var(--navy);
  font-size: 0.8rem;
}

.quest-list em,
.quest-list i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
  font-style: normal;
  font-weight: 900;
}

.quest-list i {
  background: var(--white);
  border: 2px solid var(--mist);
}

.quest-panel a {
  display: block;
  color: var(--teal-dark);
  font-size: 0.86rem;
  font-weight: 900;
  text-align: center;
}

.points-panel {
  display: grid;
  justify-items: center;
  text-align: center;
  background: linear-gradient(180deg, rgba(0, 175, 165, 0.09), #ffffff);
}

.coin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin: 18px 0 6px;
  color: var(--white);
  background: var(--yellow);
  border: 7px solid #ffd66b;
  border-radius: 50%;
  font-size: 1.75rem;
}

.points-panel strong {
  color: var(--navy);
  font-size: 3rem;
  line-height: 1;
}

.points-panel span {
  margin-bottom: 12px;
  color: var(--slate);
  font-weight: 800;
}

.points-panel small {
  color: var(--teal-dark);
  font-weight: 900;
}

.reward-panel p {
  margin-bottom: 14px;
  color: var(--navy);
  font-weight: 900;
}

.reward-row {
  display: flex;
  gap: 14px;
  align-items: center;
}

.reward-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  color: var(--white);
  background: var(--coral);
  border-radius: 50%;
  font-size: 1.6rem;
}

.reward-row strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
}

.reward-progress {
  width: min(160px, 100%);
}

.reward-progress span {
  width: 95%;
}

.reward-panel em {
  display: block;
  margin-top: 10px;
  color: var(--navy);
  font-style: normal;
  font-weight: 800;
}

.streak-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 20px;
  align-items: center;
  background: #fff9e8;
  border-color: #ffe39c;
}

.streak-panel strong {
  color: var(--navy);
}

.streak-panel span {
  color: var(--slate);
  font-size: 0.88rem;
}

.days {
  grid-row: span 2;
  display: flex;
  gap: 7px;
}

.days b,
.days i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: var(--white);
  background: var(--yellow);
  border-radius: 50%;
  font-size: 0.75rem;
  font-style: normal;
}

.days i {
  color: var(--slate);
  background: var(--white);
  border: 1px solid var(--mist);
}

.section-intro {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-intro p:not(.eyebrow) {
  color: var(--slate);
  font-size: 1.14rem;
  font-weight: 700;
}

.problem {
  background: var(--white);
}

.value-grid,
.steps,
.reward-shop,
.progress-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: var(--container);
  margin: 0 auto;
}

.value-grid article,
.steps article,
.reward-shop article,
.progress-grid article {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.value-grid span {
  color: var(--teal-dark);
  font-weight: 900;
}

.value-grid p,
.steps p,
.reward-shop p {
  margin-bottom: 0;
  color: var(--slate);
  font-weight: 700;
}

.how {
  background: linear-gradient(180deg, #eafafa 0%, #f8fdfd 100%);
}

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

.steps article {
  position: relative;
  min-height: 270px;
}

.step-number {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
  font-weight: 900;
}

.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  margin: 18px auto 22px;
  color: var(--teal);
  background: rgba(0, 175, 165, 0.1);
  border-radius: 50%;
  font-size: 2.8rem;
  font-weight: 900;
}

.steps article:nth-child(2) .step-icon {
  color: var(--blue);
  background: rgba(63, 167, 245, 0.12);
}

.steps article:nth-child(4) .step-icon {
  color: var(--coral);
  background: rgba(255, 90, 79, 0.12);
}

.trust-loop {
  background: var(--white);
}

.loop-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: 40px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(32px, 5vw, 56px);
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.loop-card .eyebrow,
.loop-card h2,
.loop-card p {
  color: var(--white);
}

.loop-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

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

.loop-list span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  font-weight: 900;
}

.audience {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  gap: clamp(38px, 7vw, 96px);
  align-items: center;
  max-width: calc(var(--container) + 128px);
  margin: 0 auto;
}

.audience-kids {
  grid-template-columns: minmax(360px, 0.8fr) minmax(0, 0.9fr);
  background: var(--cloud);
}

.audience-copy p:not(.eyebrow) {
  color: var(--slate);
  font-size: 1.12rem;
  font-weight: 700;
}

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

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--navy);
  font-weight: 900;
}

.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
  font-size: 0.8rem;
}

.parent-card,
.kid-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.approval-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 66px;
  padding: 12px 0;
  border-top: 1px solid var(--mist);
}

.approval-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
  font-weight: 900;
}

.approval-item:nth-child(3) span {
  background: var(--coral);
}

.approval-item:nth-child(4) span {
  background: var(--yellow);
}

.approval-item button {
  min-height: 38px;
  padding: 0 14px;
  color: var(--white);
  background: var(--teal);
  border: 0;
  border-radius: var(--radius);
  font-size: 0.86rem;
  font-weight: 900;
}

.kid-card {
  color: var(--white);
  background:
    radial-gradient(circle at 18% 18%, rgba(253, 181, 21, 0.28), transparent 34%),
    linear-gradient(150deg, var(--teal) 0%, #087c9c 100%);
}

.kid-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 26px;
  font-weight: 900;
}

.big-points {
  margin-bottom: 22px;
  font-size: 5.4rem;
  line-height: 1;
  font-weight: 900;
}

.big-points span {
  display: block;
  margin-top: 6px;
  font-size: 1rem;
}

.mission-card {
  padding: 18px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius);
}

.mission-card small,
.mission-card strong {
  display: block;
}

.mission-card strong {
  margin-bottom: 12px;
}

.mission-bar span {
  width: 72%;
}

.kid-card > p {
  margin: 20px 0 0;
  font-size: 1.15rem;
  font-weight: 900;
}

.rewards {
  background: var(--white);
}

.reward-shop {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.reward-shop article {
  text-align: center;
}

.reward-shop span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
  font-weight: 900;
}

.reward-shop article:nth-child(2) span {
  background: var(--yellow);
}

.reward-shop article:nth-child(3) span {
  background: var(--coral);
}

.reward-shop article:nth-child(4) span {
  background: var(--blue);
}

.featured-reward {
  border-color: rgba(255, 90, 79, 0.38) !important;
  box-shadow: 0 18px 48px rgba(255, 90, 79, 0.16) !important;
}

.shop-note {
  max-width: 720px;
  margin: 28px auto 0;
  color: var(--slate);
  font-weight: 800;
  text-align: center;
}

.progress {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(400px, 1fr);
  gap: 48px;
  align-items: center;
  background: var(--cloud);
}

.progress > div:first-child {
  max-width: 560px;
}

.progress p:not(.eyebrow) {
  color: var(--slate);
  font-size: 1.13rem;
  font-weight: 700;
}

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

.progress-grid article {
  min-height: 130px;
}

.progress-grid strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 1.45rem;
  font-weight: 900;
}

.progress-grid span {
  color: var(--slate);
  font-weight: 800;
}

.visual-proof {
  background: var(--white);
}

.visual-proof img,
.mockup-preview {
  width: min(1120px, 100%);
  margin: 0 auto;
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mockup-preview {
  overflow: hidden;
  background: var(--white);
}

.mockup-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid var(--mist);
}

.mockup-header .brand {
  font-size: 1.7rem;
}

.mockup-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: var(--navy);
  font-weight: 900;
}

.mockup-cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  color: var(--white);
  background: var(--coral);
  border-radius: var(--radius);
  font-weight: 900;
}

.mockup-body {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(520px, 1.15fr);
  gap: 36px;
  align-items: center;
  padding: clamp(28px, 5vw, 58px);
  background:
    radial-gradient(circle at 100% 40%, rgba(63, 167, 245, 0.12) 0 48px, transparent 49px),
    linear-gradient(180deg, #ffffff 0%, #ffffff 72%, #e9fbfa 72%, #f6fdfd 100%);
}

.mockup-copy h3 {
  max-width: 430px;
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.98;
}

.mockup-copy p {
  max-width: 430px;
  color: #4c5b73;
  font-size: 1.18rem;
  font-weight: 800;
}

.mockup-actions,
.mockup-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.mockup-actions {
  margin: 24px 0 28px;
}

.mockup-actions span {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border: 2px solid var(--teal);
  border-radius: var(--radius);
  color: var(--teal-dark);
  background: var(--white);
  font-weight: 900;
}

.mockup-actions span:first-child {
  border-color: var(--coral);
  color: var(--white);
  background: var(--coral);
}

.mockup-stats span {
  min-width: 118px;
  padding: 14px;
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: var(--soft-shadow);
}

.mockup-stats strong {
  display: block;
  font-size: 1.6rem;
  line-height: 1;
}

.mockup-dashboard {
  display: grid;
  grid-template-columns: 150px 1fr;
  overflow: hidden;
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.mockup-sidebar {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 390px;
  padding: 22px 14px;
  color: var(--white);
  background: linear-gradient(180deg, #10213c 0%, #0a182d 100%);
}

.mockup-sidebar strong {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.mockup-sidebar span {
  padding: 10px;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.86rem;
  font-weight: 800;
}

.mockup-sidebar span:first-of-type {
  color: var(--white);
  background: var(--teal);
}

.mockup-panels {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
  padding: 22px;
  background: linear-gradient(180deg, #fbfdff 0%, #ffffff 100%);
}

.mockup-panel {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  background: var(--white);
}

.mockup-panel strong,
.mockup-panel span {
  display: block;
}

.mockup-panel strong {
  color: var(--navy);
  font-weight: 900;
}

.mockup-panel span {
  margin-top: 10px;
  color: var(--slate);
  font-size: 0.86rem;
  font-weight: 800;
}

.mockup-panel em {
  float: right;
  color: var(--navy);
  font-style: normal;
}

.mockup-panel.points {
  display: grid;
  place-items: center;
  text-align: center;
  background: linear-gradient(180deg, rgba(0, 175, 165, 0.09), #ffffff);
}

.mockup-panel.points strong {
  font-size: 3rem;
}

.mockup-panel.reward {
  grid-column: 1 / -1;
  background: #fff9e8;
  border-color: #ffe39c;
}

.early-access {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.7fr);
  gap: 44px;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 175, 165, 0.92), rgba(16, 29, 53, 0.96)),
    var(--navy);
}

.early-access h2,
.early-access p,
.early-access .eyebrow {
  color: var(--white);
}

.early-access p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.13rem;
  font-weight: 700;
}

.signup-form {
  padding: 26px;
  color: var(--navy);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.signup-form label {
  display: block;
  margin-bottom: 10px;
  font-weight: 900;
}

.signup-form div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.signup-form input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  color: var(--navy);
  font-weight: 800;
}

.signup-form input:focus {
  outline: 3px solid rgba(0, 175, 165, 0.2);
  border-color: var(--teal);
}

.signup-form button {
  min-height: 54px;
  padding: 0 18px;
  color: var(--white);
  background: var(--coral);
  border: 0;
  border-radius: var(--radius);
  font-weight: 900;
}

.form-message {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--teal-dark);
  font-weight: 900;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 34px clamp(20px, 4vw, 64px);
  background: var(--white);
  border-top: 1px solid var(--mist);
}

.site-footer .brand {
  font-size: 1.6rem;
}

.site-footer p {
  margin: 0;
  color: var(--slate);
  font-weight: 800;
}

.site-footer nav {
  display: flex;
  gap: 18px;
  color: var(--navy);
  font-weight: 900;
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
  }

  .product-shell {
    margin-left: 0;
  }

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

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

@media (max-width: 880px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 78px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
    border-radius: var(--radius);
  }

  .nav-cta {
    justify-content: center;
    margin-top: 8px;
  }

  .mockup-header {
    grid-template-columns: 1fr auto;
  }

  .mockup-nav {
    display: none;
  }

  h1 {
    font-size: clamp(3.35rem, 13vw, 4.8rem);
  }

  .hero-cues,
  .value-grid,
  .steps,
  .reward-shop,
  .progress-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-shell {
    grid-template-columns: 1fr;
  }

  .product-sidebar {
    display: none;
  }

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

  .mockup-sidebar {
    display: none;
  }

  .audience,
  .audience-kids,
  .progress,
  .early-access,
  .loop-card {
    grid-template-columns: 1fr;
  }

  .audience-kids .kid-card {
    order: 2;
  }

  .audience-kids .audience-copy {
    order: 1;
  }

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

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
  }

  .site-nav {
    top: 68px;
  }

  .brand {
    font-size: 1.55rem;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-width: 3px;
  }

  .brand-mark .brand-star {
    font-size: 1.7rem;
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
  }

  .hero-actions,
  .signup-form div {
    grid-template-columns: 1fr;
    display: grid;
  }

  .mockup-header,
  .mockup-body,
  .mockup-panels {
    padding: 16px;
  }

  .mockup-header {
    gap: 12px;
  }

  .mockup-header .brand {
    font-size: 1.35rem;
  }

  .mockup-cta {
    display: none;
  }

  .mockup-copy h3 {
    font-size: 2.35rem;
  }

  .button,
  .signup-form button {
    width: 100%;
  }

  .hero-cues,
  .value-grid,
  .steps,
  .reward-shop,
  .progress-grid,
  .dashboard-grid,
  .loop-list {
    grid-template-columns: 1fr;
  }

  .dashboard {
    padding: 16px;
  }

  .dashboard-top,
  .streak-panel {
    grid-template-columns: 1fr;
  }

  .family-avatars {
    justify-content: flex-start;
  }

  .days {
    grid-row: auto;
    flex-wrap: wrap;
  }

  .approval-item {
    grid-template-columns: 44px 1fr;
  }

  .approval-item button {
    grid-column: 1 / -1;
  }
}
