@font-face {
  font-family: Inter;
  src: url("/assets/Inter-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url("/assets/Inter-Bold.ttf") format("truetype");
  font-weight: 700 900;
  font-display: swap;
}
:root {
  --teal: #087f75;
  --teal-dark: #075d56;
  --mint: #e6f5f2;
  --coral: #f06449;
  --coral-ink: #be3d26;
  --peach: #fff0eb;
  --yellow: #f4c95d;
  --yellow-soft: #fff5d5;
  --ink: #20262b;
  --muted: #5c686a;
  --paper: #fff;
  --background: #f7faf9;
  --border: #dce5e1;
  --cream: #fffdf8;
  --radius: 24px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font:
    400 16px/1.65 Inter,
    system-ui,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button,
input {
  font: inherit;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 700;
  line-height: 1.1;
}
h1,
h2 {
  letter-spacing: -2.5px;
}
button:disabled {
  cursor: default;
}
button,
a,
summary {
  touch-action: manipulation;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--coral-ink);
  outline-offset: 6px;
  border-radius: 6px;
}
[hidden] {
  display: none !important;
}
::selection {
  color: var(--ink);
  background: var(--yellow);
}
.container {
  width: min(1232px, calc(100% - 96px));
  margin-inline: auto;
}
.icon-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.skip-link {
  position: fixed;
  z-index: 20;
  top: 10px;
  left: 10px;
  padding: 14px 24px;
  background: var(--ink);
  color: white;
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: none;
}
.announcement {
  height: 36px;
  background: var(--teal);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 11px;
  letter-spacing: 0.2px;
}
.announcement > .icon {
  width: 12px;
  height: 12px;
  color: var(--yellow);
}
.announcement a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.announcement a span {
  margin-left: 8px;
}
.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  background: rgba(255, 253, 248, 0.97);
  border-bottom: 1px solid rgba(32, 38, 43, 0.07);
}
.header-inner {
  height: 91px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}
.brand img {
  width: 47px;
  height: 47px;
  object-fit: contain;
}
.brand-dot {
  color: var(--coral);
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
  margin-right: 34px;
  font-size: 13px;
}
.desktop-nav a {
  position: relative;
  padding-block: 12px;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  height: 2px;
  background: var(--teal);
  bottom: 5px;
  left: 0;
  right: 100%;
  transition: right 0.25s;
}
.desktop-nav a:hover::after {
  right: 0;
}
.button {
  border: 0;
  border-radius: 999px;
  background: var(--teal);
  color: white;
  min-height: 57px;
  padding: 16px 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  box-shadow: 0 4px 0 var(--teal-dark);
  transition:
    transform 0.2s,
    background 0.2s,
    box-shadow 0.2s;
}
.button:hover {
  background: var(--teal-dark);
  transform: translateY(-3px);
  box-shadow: 0 7px 0 #064d47;
}
.button:active {
  transform: translateY(2px);
  box-shadow: 0 1px 0 var(--teal-dark);
}
.button .icon {
  width: 20px;
  height: 20px;
}
.button-small {
  min-height: 44px;
  padding: 12px 19px;
  font-size: 12px;
  box-shadow: none;
  gap: 14px;
}
.button-small:hover {
  box-shadow: none;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
}
.text-link > .icon {
  transition: transform 0.25s;
}
.text-link:hover {
  color: var(--teal);
}
.text-link:hover > .icon {
  transform: translateX(4px);
}
.menu-toggle {
  display: none;
}
.mobile-nav {
  padding: 16px 24px 26px;
  border-top: 1px solid var(--border);
}
.mobile-nav a {
  display: block;
  padding: 12px;
  font-weight: 700;
  color: var(--teal);
}
.hero {
  display: grid;
  grid-template-columns: 1.04fr 1fr;
  gap: 44px;
  min-height: 677px;
  padding-top: 62px;
  padding-bottom: 76px;
  align-items: center;
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 1.8px;
  font-weight: 700;
  color: var(--teal);
  display: block;
  line-height: 1.6;
}
.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 1.4px;
}
.little-spark {
  color: var(--coral-ink);
  font-size: 22px;
  line-height: 1;
}
.hero h1 {
  font-size: clamp(52px, 5.45vw, 78px);
  line-height: 1.05;
  letter-spacing: -3.7px;
  margin: 21px 0 25px;
}
.coral-word {
  color: var(--coral-ink);
  position: relative;
  display: inline-block;
}
.coral-word svg {
  position: absolute;
  width: 99%;
  height: 16px;
  bottom: -13px;
  left: 0;
  fill: none;
  stroke: var(--coral);
  stroke-width: 3;
  stroke-linecap: round;
}
.hero-description {
  max-width: 440px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  margin-top: 30px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 23px;
  margin-top: 30px;
}
.play-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: 50%;
}
.play-circle .icon {
  width: 14px;
  height: 14px;
  transform: translateX(-1px);
}
.hero-note {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  color: var(--muted);
  margin-top: 20px;
}
.hero-note .icon {
  width: 14px;
  height: 14px;
  stroke: var(--teal);
  stroke-width: 2;
}
.hero-visual {
  height: 510px;
  position: relative;
  margin: 0 0 0 2px;
  isolation: isolate;
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 50%;
  border-radius: 46% 45% 24% 24%;
  position: relative;
  z-index: 1;
}
.photo-backdrop {
  position: absolute;
  inset: 11px -16px -9px 2px;
  transform: rotate(5deg);
  background: #dceee7;
  border-radius: 47% 46% 21% 23%;
  z-index: -1;
}
.hello-bubble {
  position: absolute;
  z-index: 2;
  top: 24px;
  left: -26px;
  width: 147px;
  background: var(--yellow);
  padding: 14px 24px 16px;
  border-radius: 24px 24px 24px 5px;
  transform: rotate(-9deg);
  box-shadow: 0 8px 25px #20262b09;
}
.hello-bubble > span:first-child {
  display: block;
  font-size: 37px;
  line-height: 1.2;
}
.hello-bubble > span:last-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-weight: 700;
  font-size: 12px;
  margin-top: 6px;
}
.bubble-wave {
  font-size: 22px;
}
.hero-flower {
  width: 87px;
  height: 87px;
  position: absolute;
  top: 7px;
  right: -20px;
  z-index: 2;
  color: var(--coral);
}
.photo-caption {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  right: -19px;
  bottom: 122px;
  padding: 14px 17px;
  background: white;
  z-index: 3;
  transform: rotate(7deg);
  border-radius: 12px;
  font-size: 11px;
  line-height: 1.5;
  box-shadow: 0 10px 30px #20262b0a;
}
.caption-icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--peach);
  color: var(--coral-ink);
  border-radius: 50%;
}
.caption-icon .icon {
  width: 17px;
  height: 17px;
}
.sound-sticker {
  position: absolute;
  z-index: 3;
  bottom: -24px;
  left: 23px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  background: white;
  box-shadow: 0 10px 30px #20262b0b;
  border: 1px solid #f0efe8;
  border-radius: 14px;
  transform: rotate(-5deg);
  text-align: left;
  transition: transform 0.2s;
}
.sound-sticker:hover {
  transform: rotate(-2deg) translateY(-3px);
}
.sound-sticker strong {
  font-size: 12px;
  display: block;
  line-height: 1.6;
}
.sound-sticker small {
  font-size: 9px;
  color: var(--muted);
  display: block;
}
.audio-circle {
  width: 41px;
  height: 41px;
  background: var(--teal);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.audio-circle .icon {
  width: 19px;
}
.wave-bars {
  height: 24px;
  display: flex;
  align-items: center;
  gap: 3px;
  margin-left: 4px;
}
.wave-bars i {
  width: 3px;
  border-radius: 3px;
  height: 9px;
  background: var(--teal);
}
.wave-bars i:nth-child(2),
.wave-bars i:nth-child(4) {
  height: 17px;
}
.wave-bars i:nth-child(3) {
  height: 24px;
}
.is-playing .wave-bars i {
  animation: wave 0.5s ease-in-out infinite alternate;
}
.is-playing .wave-bars i:nth-child(2n) {
  animation-delay: -0.25s;
}
.hero-dot {
  position: absolute;
  bottom: 37px;
  left: -20px;
  width: 15px;
  height: 15px;
  background: var(--coral);
  border-radius: 50%;
}
.promise-strip {
  background: var(--mint);
  border-block: 1px solid #dcece6;
}
.promise-strip > .container {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.promise-strip span {
  font-size: 12px;
  font-weight: 700;
  display: flex;
  gap: 11px;
  align-items: center;
  color: var(--teal-dark);
}
.promise-strip .icon {
  color: var(--teal);
  width: 20px;
  height: 20px;
}
.section {
  padding-block: 103px;
}
.section-heading {
  text-align: center;
  margin-bottom: 48px;
}
.section-heading h2 {
  font-size: 49px;
  margin: 18px 0 20px;
  line-height: 1.13;
}
.section-heading p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
}
.hand-highlight {
  position: relative;
  isolation: isolate;
  white-space: nowrap;
}
.hand-highlight:after {
  content: "";
  background: var(--yellow);
  position: absolute;
  inset: 52% -5px 1px;
  z-index: -1;
  transform: rotate(-2deg);
  border-radius: 3px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.step-art {
  height: 230px;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
}
.art-listen {
  background: var(--mint);
  padding-top: 24px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.listening-word {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  padding: 12px 32px;
  border-radius: 13px;
  transform: rotate(-6deg);
  box-shadow: 0 6px 14px #087f7508;
}
.listening-word > span:first-child {
  font-size: 36px;
  line-height: 1.4;
  color: var(--teal);
}
.listening-word > span:last-child {
  font-size: 11px;
}
.sound-line {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  height: 48px;
}
.sound-line i {
  width: 5px;
  height: 21px;
  background: var(--teal);
  border-radius: 5px;
}
.sound-line i:nth-child(2n) {
  height: 33px;
}
.sound-line i:nth-child(3n) {
  height: 45px;
}
.sound-line i:nth-child(5n) {
  height: 14px;
}
.art-sticker {
  position: absolute;
  right: 22px;
  bottom: 23px;
  font-size: 12px;
  font-weight: 700;
  background: var(--yellow);
  padding: 8px 13px;
  border-radius: 20px;
  transform: rotate(9deg);
}
.art-play {
  background: var(--yellow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
}
.mini-flashcard {
  width: 109px;
  height: 131px;
  background: white;
  border: 1px solid #eee6cc;
  box-shadow: 0 5px 0 #eadfc299;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  position: relative;
}
.card-apple {
  transform: rotate(-12deg) translateY(-4px);
}
.card-apple > span {
  font-size: 49px;
  line-height: 1.2;
}
.mini-flashcard strong {
  font-size: 13px;
}
.card-farsi {
  transform: rotate(8deg) translateY(9px);
  border: 2px solid var(--teal);
}
.card-farsi > span:first-child {
  font-size: 39px;
  line-height: 1.5;
  color: var(--teal);
}
.match-tick {
  width: 24px;
  height: 24px;
  background: var(--teal);
  color: white;
  display: grid;
  place-items: center;
  position: absolute;
  right: -11px;
  top: -11px;
  border-radius: 50%;
  font-size: 16px;
}
.play-spark {
  color: var(--coral);
  position: absolute;
  top: 12px;
  right: 23px;
  font-size: 29px;
}
.art-speak {
  background: var(--peach);
  padding: 39px 26px;
}
.conversation {
  font-size: 12px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: max-content;
  max-width: 100%;
}
.c-one {
  background: white;
  border-radius: 13px 13px 13px 2px;
  transform: rotate(-5deg);
}
.c-two {
  background: var(--teal);
  color: white;
  position: relative;
  margin: 13px 0 0 auto;
  border-radius: 13px 13px 2px 13px;
  transform: rotate(5deg);
  font-size: 21px;
  font-weight: 700;
}
.c-two > .icon {
  height: 19px;
  stroke: var(--yellow);
}
.encouragement {
  font-size: 11px;
  color: var(--coral-ink);
  display: flex;
  gap: 6px;
  align-items: center;
  margin-top: 13px;
}
.encouragement .icon {
  width: 14px;
  height: 14px;
}
.step-text {
  display: flex;
  gap: 14px;
  margin-top: 23px;
}
.step-number {
  color: var(--teal);
  font-size: 11px;
  min-width: 27px;
  height: 27px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.step-text h3 {
  font-size: 17px;
  letter-spacing: -0.5px;
  line-height: 1.5;
  margin-bottom: 9px;
}
.step-text p {
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 295px;
}
.try-section {
  background: var(--teal);
  color: white;
  padding-block: 83px;
  position: relative;
  overflow: hidden;
}
.try-section:before,
.try-section:after {
  position: absolute;
  content: "";
  width: 330px;
  height: 330px;
  border: 1px solid #ffffff12;
  pointer-events: none;
  border-radius: 50%;
}
.try-section:before {
  left: -170px;
  bottom: -70px;
}
.try-section:after {
  right: -170px;
  top: -160px;
}
.try-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
  align-items: center;
}
.try-copy .eyebrow {
  color: var(--yellow);
  font-size: 10px;
}
.try-copy h2 {
  font-size: 49px;
  line-height: 1.17;
  margin: 21px 0;
}
.try-copy > p {
  color: #e1f1ed;
  font-size: 14px;
  line-height: 1.9;
  max-width: 400px;
}
.try-benefits {
  margin-top: 30px;
  display: grid;
  gap: 10px;
}
.try-benefits span {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
}
.try-benefits .icon {
  width: 15px;
  height: 15px;
  stroke: var(--yellow);
}
.hand-note {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  margin-top: 25px;
  font-size: 17px;
  font-style: italic;
  font-family: Georgia, serif;
  color: var(--yellow);
  transform: rotate(-4deg);
}
.hand-note svg {
  width: 81px;
  height: 52px;
  fill: none;
  stroke: var(--yellow);
  stroke-width: 2;
  margin-left: 9px;
}
.demo-wrap {
  position: relative;
  max-width: 460px;
  width: 100%;
  justify-self: end;
}
.lesson-card {
  background: var(--cream);
  color: var(--ink);
  padding: 28px;
  border-radius: 24px;
  box-shadow: 10px 10px 0 #055a533d;
  min-height: 486px;
  position: relative;
}
.demo-spark {
  position: absolute;
  top: -41px;
  right: -39px;
  font-size: 74px;
  line-height: 1;
  color: var(--yellow);
  transform: rotate(-14deg);
  z-index: 1;
}
.lesson-topline {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 9px;
  color: var(--muted);
}
.lesson-topline > span:first-child {
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 6px;
}
.lesson-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}
.lesson-progress {
  height: 5px;
  background: #e7ece5;
  border-radius: 8px;
  margin-top: 14px;
  overflow: hidden;
}
.lesson-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--teal);
  border-radius: 8px;
  transition: width 0.4s;
}
.word-prompt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-block: 24px 22px;
  min-height: 87px;
}
.word-emoji {
  font-size: 59px;
  margin-right: 9px;
  line-height: 1.2;
}
.word-prompt > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.farsi-word {
  font-family: Tahoma, Arial, sans-serif;
  font-size: 47px;
  line-height: 1.4;
  color: var(--ink);
}
.roman-word {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}
.word-audio {
  width: 34px;
  height: 34px;
  background: var(--mint);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  margin-left: 12px;
}
.word-audio .icon {
  width: 17px;
  height: 17px;
}
.word-audio:hover {
  background: #cbe7df;
}
.word-audio.is-playing {
  box-shadow: 0 0 0 5px #087f7522;
}
.lesson-card h3 {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 16px;
  letter-spacing: -0.2px;
}
.answer-options {
  display: grid;
  gap: 9px;
}
.answer-options button {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 13px;
  min-height: 45px;
  border: 1px solid var(--border);
  background: white;
  border-radius: 9px;
  text-align: left;
  font-size: 12px;
  transition:
    border-color 0.15s,
    background 0.15s,
    transform 0.15s;
}
.answer-options button > span:first-child {
  border: 1px solid var(--border);
  font-size: 9px;
  border-radius: 5px;
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  color: var(--muted);
}
.answer-options button:hover:not(:disabled) {
  background: var(--mint);
  border-color: var(--teal);
  transform: translateX(3px);
}
.answer-options .correct,
.answer-options .correct:disabled {
  background: var(--mint);
  border-color: var(--teal);
  color: var(--teal-dark);
}
.answer-options .correct::after {
  content: "✓";
  margin-left: auto;
  color: var(--teal);
  font-weight: 700;
}
.answer-options .try-again {
  background: var(--peach);
  border-color: var(--coral);
  animation: little-shake 0.2s ease-in-out 2;
}
.lesson-feedback {
  font-size: 10px;
  color: var(--muted);
  line-height: 1.6;
  min-height: 32px;
  margin-top: 16px;
}
.lesson-feedback.success {
  color: var(--teal-dark);
}
.lesson-next {
  font-size: 12px;
  min-height: 44px;
  padding: 12px 19px;
  width: 100%;
  margin-top: 7px;
  box-shadow: none;
}
.demo-footnote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 22px;
  font-size: 9px;
  color: #e1f1ed;
}
.demo-footnote .icon {
  width: 14px;
  height: 14px;
  stroke: var(--yellow);
}
.lesson-complete {
  text-align: center;
  padding-top: 20px;
}
.complete-flower {
  font-size: 63px;
  color: var(--coral-ink);
  display: block;
  line-height: 1.2;
}
.lesson-complete h3 {
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: -1px;
  margin: 14px 0;
}
.lesson-complete p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
}
.learned-words {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 22px 0;
}
.learned-words span {
  background: var(--mint);
  color: var(--teal-dark);
  font-size: 10px;
  border-radius: 99px;
  padding: 6px 8px;
}
.lesson-complete .button {
  font-size: 12px;
  min-height: 45px;
  padding: 12px 17px;
  gap: 10px;
}
.restart-button {
  display: block;
  border: 0;
  background: none;
  font-size: 11px;
  color: var(--teal);
  margin: 16px auto 0;
  padding: 10px;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.explore-section {
  padding-bottom: 85px;
}
.explore-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 42px;
}
.explore-heading h2 {
  font-size: 48px;
  line-height: 1.16;
  margin-top: 15px;
}
.explore-heading > p {
  max-width: 335px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
  margin-bottom: 6px;
}
.topic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.topic-card {
  border: 1px solid transparent;
  border-radius: 19px;
  padding: 25px 21px 19px;
  min-height: 245px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  text-align: left;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.topic-card:hover {
  transform: translateY(-7px) rotate(-1deg);
  box-shadow: 0 10px 0 #20262b07;
}
.topic-yellow {
  background: var(--yellow-soft);
}
.topic-mint {
  background: var(--mint);
}
.topic-peach {
  background: var(--peach);
}
.topic-lilac {
  background: #f0ecf8;
}
.topic-emoji {
  font-size: 47px;
  line-height: 1.2;
  display: block;
  margin-bottom: 21px;
  transform: rotate(-6deg);
}
.topic-label {
  font-size: 16px;
  letter-spacing: -0.5px;
  font-weight: 700;
  line-height: 1.5;
}
.topic-caption {
  font-size: 10px;
  color: var(--muted);
  margin-top: 4px;
}
.topic-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  width: 100%;
  font-size: 10px;
  font-weight: 700;
  padding-top: 19px;
  margin-top: auto;
}
.topic-link .icon {
  width: 18px;
  height: 18px;
}
.explore-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 26px;
}
.explore-footer > span {
  font-size: 11px;
  color: var(--muted);
}
.explore-footer .text-link {
  font-size: 11px;
  color: var(--teal);
}
.explore-footer .icon {
  width: 16px;
  height: 16px;
}
.family-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
  padding-block: 24px 96px;
}
.family-photo-wrap {
  position: relative;
  max-width: 550px;
}
.family-photo-wrap img {
  height: 460px;
  width: 100%;
  object-fit: cover;
  object-position: 51% 50%;
  border-radius: 25px 125px 25px 25px;
}
.family-photo-note {
  position: absolute;
  bottom: 25px;
  left: 25px;
  border-radius: 10px;
  transform: rotate(-4deg);
  background: var(--yellow);
  padding: 12px 18px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 9px;
}
.family-photo-note .icon {
  width: 17px;
  height: 17px;
}
.family-spark {
  fill: none;
  stroke: var(--coral);
  stroke-width: 1.5;
  position: absolute;
  top: -30px;
  left: -31px;
  width: 65px;
  height: 65px;
  transform: rotate(18deg);
}
.family-copy h2 {
  font-size: 43px;
  letter-spacing: -2px;
  line-height: 1.18;
  margin: 16px 0 23px;
}
.family-copy > p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
  margin-bottom: 14px;
}
.family-values {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 24px;
  border-block: 1px solid var(--border);
  padding-block: 18px;
  margin: 23px 0;
}
.family-values span {
  font-size: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
}
.family-values .icon {
  width: 16px;
  height: 16px;
  color: var(--teal);
}
.family-copy > .text-link {
  color: var(--teal);
  font-size: 12px;
}
.faq-section {
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 110px;
  padding-top: 83px;
  padding-bottom: 89px;
}
.faq-intro h2 {
  font-size: 43px;
  line-height: 1.15;
  margin: 17px 0;
}
.faq-intro > p {
  font-size: 12px;
  color: var(--muted);
  max-width: 270px;
}
.question-doodle {
  margin-top: 24px;
  margin-left: 14px;
  font-size: 99px;
  line-height: 1;
  color: var(--coral-ink);
  font-family: Georgia, serif;
  font-style: italic;
  transform: rotate(16deg);
  width: max-content;
}
.faq-list details {
  border-bottom: 1px solid var(--border);
}
.faq-list details:first-child {
  border-top: 1px solid var(--border);
}
.faq-list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  list-style: none;
  padding: 21px 0;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary > span {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--mint);
  flex: 0 0 auto;
  position: relative;
}
.faq-list summary > span:after,
.faq-list summary > span:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 6px;
  width: 9px;
  height: 1px;
  background: var(--teal);
}
.faq-list summary > span:after {
  transform: rotate(90deg);
  transition: transform 0.2s;
}
.faq-list details[open] summary > span:after {
  transform: rotate(0);
}
.faq-list details[open] summary {
  color: var(--teal);
}
.faq-list details p {
  padding: 0 34px 22px 0;
  font-size: 12px;
  line-height: 1.85;
  color: var(--muted);
}
.closing-section {
  background: var(--mint);
  padding: 73px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing-inner {
  position: relative;
}
.closing-section h2 {
  font-size: 48px;
  line-height: 1.16;
  margin: 18px 0;
}
.closing-section h2 > span {
  color: var(--teal);
}
.closing-section p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 26px;
}
.button-yellow {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 4px 0 #d9aa38;
}
.button-yellow:hover {
  background: #f7d477;
  box-shadow: 0 7px 0 #d9aa38;
}
.closing-spark {
  position: absolute;
  top: 16px;
  left: 6%;
  font-size: 100px;
  line-height: 1;
  color: var(--coral);
  transform: rotate(-15deg);
}
.closing-heart {
  position: absolute;
  bottom: 20px;
  right: 8%;
  font-size: 100px;
  line-height: 1;
  color: var(--teal);
  transform: rotate(18deg);
  font-family: Georgia, serif;
}
.site-footer {
  background: var(--cream);
  padding: 54px 0 20px;
}
.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  padding-bottom: 36px;
}
.footer-main .brand {
  font-size: 30px;
}
.footer-main .brand img {
  width: 40px;
  height: 40px;
}
.footer-main p {
  font-size: 10px;
  color: var(--muted);
  margin: 12px 0 0 6px;
}
.footer-main nav {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 14px 40px;
  font-size: 11px;
  padding-top: 7px;
}
.footer-main nav a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
  color: var(--teal);
}
.footer-app {
  font-size: 11px;
  color: var(--teal);
  margin-top: 7px;
}
.footer-app .icon {
  width: 17px;
  height: 17px;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 19px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 9px;
  color: var(--muted);
}
.topic-dialog {
  border: 0;
  border-radius: 24px;
  background: var(--cream);
  width: min(490px, calc(100% - 32px));
  max-height: calc(100% - 48px);
  padding: 34px;
  box-shadow: 0 30px 100px #20262b26;
  color: var(--ink);
}
.topic-dialog::backdrop {
  background: #152e2aca;
  backdrop-filter: blur(5px);
}
.dialog-close {
  position: absolute;
  top: 10px;
  right: 14px;
  line-height: 1;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 0;
  font-size: 30px;
  color: var(--muted);
  border-radius: 50%;
}
.dialog-close:hover {
  background: var(--mint);
}
.topic-dialog-content {
  text-align: center;
  padding-top: 7px;
}
.topic-dialog-emoji {
  font-size: 60px;
  display: block;
  margin: 23px 0 17px;
  line-height: 1.2;
}
.topic-dialog h2 {
  font-size: 30px;
  letter-spacing: -1.3px;
}
.topic-dialog p {
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted);
  margin: 14px auto;
}
.topic-words {
  margin: 22px 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.topic-word {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding: 12px 17px;
  text-align: left;
  background: white;
  border-bottom: 1px solid var(--border);
}
.topic-word:last-child {
  border: 0;
}
.topic-word > div {
  display: flex;
  flex-direction: column;
}
.topic-word strong {
  font-size: 13px;
  line-height: 1.5;
}
.topic-word small {
  font-size: 10px;
  color: var(--muted);
}
.topic-word > span {
  font-size: 25px;
  font-family: Tahoma, Arial, sans-serif;
}
.topic-dialog .button {
  min-height: 46px;
  font-size: 12px;
  padding: 12px 20px;
  margin-top: 7px;
}
.audio-message {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 20px;
  border-radius: 10px;
  background: var(--ink);
  color: white;
  font-size: 12px;
  z-index: 30;
  max-width: calc(100% - 32px);
  box-shadow: 0 8px 30px #20262b22;
  pointer-events: none;
}
.audio-message:empty {
  display: none;
}
.confetti-bit {
  width: 8px;
  height: 13px;
  border-radius: 3px;
  position: absolute;
  top: 45%;
  left: 50%;
  pointer-events: none;
  animation: confetti 0.95s ease-out both;
  z-index: 4;
}
.reveal {
  opacity: 1;
  transform: none;
}
.motion-ready .reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(22px);
}
.motion-ready .reveal {
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.steps-grid > .reveal:nth-child(2),
.topic-grid > .reveal:nth-child(2) {
  transition-delay: 0.08s;
}
.steps-grid > .reveal:nth-child(3),
.topic-grid > .reveal:nth-child(3) {
  transition-delay: 0.16s;
}
.topic-grid > .reveal:nth-child(4) {
  transition-delay: 0.24s;
}
.float-slow {
  animation: float 2.4s ease-in-out 2;
}
.photo-caption {
  animation-delay: 0s;
}
.spin-slow {
  animation: gentle-turn 4.5s ease-in-out 1;
}
.hero-copy {
  animation: enter 0.75s ease both;
}
.hero-visual {
  animation: enter 0.9s 0.12s ease both;
}
.step:hover .sound-line i {
  animation: wave 0.6s ease-in-out infinite alternate;
}
.step:hover .sound-line i:nth-child(2n) {
  animation-delay: -0.3s;
}
@keyframes float {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -8px;
  }
}
@keyframes gentle-turn {
  0%,
  100% {
    rotate: 0deg;
  }
  50% {
    rotate: 24deg;
  }
}
@keyframes wave {
  from {
    scale: 1 0.5;
  }
  to {
    scale: 1 1;
  }
}
@keyframes enter {
  from {
    opacity: 0;
    translate: 0 14px;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}
@keyframes little-shake {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 3px 0;
  }
}
@keyframes confetti {
  0% {
    opacity: 1;
    transform: translate(0, 0) rotate(0);
  }
  100% {
    opacity: 0;
    transform: translate(var(--dx), var(--dy)) rotate(var(--rotation));
  }
}
@media (min-width: 1600px) {
  .container {
    width: min(1340px, calc(100% - 128px));
  }
  .hero {
    gap: 80px;
    min-height: 745px;
  }
  .hero-visual {
    height: 555px;
  }
  .hero h1 {
    font-size: 83px;
  }
  .hero-description {
    font-size: 17px;
    max-width: 475px;
  }
  .hero-actions {
    margin-top: 35px;
  }
}
@media (max-width: 1150px) {
  .container {
    width: calc(100% - 64px);
  }
  .desktop-nav {
    gap: 23px;
    margin-right: 12px;
  }
  .hero {
    gap: 28px;
    min-height: 632px;
    padding-block: 56px 74px;
  }
  .hero h1 {
    font-size: 65px;
  }
  .hero-visual {
    height: 450px;
  }
  .hero-description {
    font-size: 14px;
  }
  .hero-actions {
    gap: 14px;
  }
  .hero-actions .button {
    padding: 15px 19px;
    font-size: 12px;
  }
  .hero-actions .text-link {
    font-size: 11px;
  }
  .hero-flower {
    right: -13px;
    width: 70px;
  }
  .hello-bubble {
    left: -17px;
    top: 12px;
    width: 125px;
    padding: 13px 20px;
  }
  .hello-bubble > span:first-child {
    font-size: 32px;
  }
  .photo-caption {
    right: -12px;
    font-size: 9px;
    padding: 11px;
  }
  .sound-sticker {
    left: 4px;
    padding: 12px;
    gap: 9px;
  }
  .sound-sticker strong {
    font-size: 10px;
  }
  .sound-sticker small {
    font-size: 8px;
  }
  .sound-sticker .wave-bars {
    display: none;
  }
  .try-layout {
    gap: 70px;
  }
  .try-copy h2 {
    font-size: 43px;
  }
  .demo-spark {
    right: -21px;
  }
  .topic-card {
    padding: 23px 16px 18px;
  }
  .topic-label {
    font-size: 14px;
  }
  .topic-caption {
    font-size: 9px;
  }
  .family-section {
    gap: 55px;
  }
  .family-copy h2 {
    font-size: 38px;
  }
  .family-photo-wrap img {
    height: 420px;
  }
  .faq-section {
    gap: 70px;
  }
  .closing-spark {
    left: 2%;
    font-size: 77px;
  }
  .closing-heart {
    right: 3%;
    font-size: 78px;
  }
}
@media (max-width: 950px) {
  .desktop-nav {
    gap: 19px;
    font-size: 11px;
    margin: 0;
  }
  .header-inner {
    gap: 18px;
    height: 80px;
  }
  .brand {
    font-size: 30px;
  }
  .brand img {
    width: 41px;
    height: 41px;
  }
  .hero {
    gap: 28px;
    min-height: 582px;
  }
  .hero h1 {
    font-size: 56px;
    letter-spacing: -2.8px;
  }
  .hero .eyebrow {
    font-size: 8px;
    letter-spacing: 1px;
  }
  .hero-visual {
    height: 390px;
  }
  .hero-description {
    font-size: 12px;
    line-height: 1.9;
  }
  .hero-actions {
    gap: 18px;
    align-items: flex-start;
    flex-direction: column;
  }
  .hero-actions .button {
    min-height: 48px;
  }
  .hero-actions .text-link {
    font-size: 11px;
  }
  .hero-note {
    font-size: 8px;
    margin-top: 17px;
  }
  .photo-caption {
    bottom: 110px;
    right: -16px;
  }
  .hero-flower {
    right: -18px;
    top: -6px;
    width: 59px;
  }
  .hello-bubble {
    width: 104px;
    padding: 10px 17px;
  }
  .hello-bubble > span:first-child {
    font-size: 26px;
  }
  .hello-bubble > span:last-child {
    font-size: 10px;
  }
  .sound-sticker {
    bottom: -18px;
    left: 8px;
  }
  .hero-dot {
    left: -12px;
    bottom: 40px;
    width: 11px;
    height: 11px;
  }
  .promise-strip > .container {
    gap: 15px;
  }
  .promise-strip span {
    font-size: 9px;
    gap: 7px;
  }
  .promise-strip .icon {
    width: 17px;
    height: 17px;
  }
  .section {
    padding-block: 80px;
  }
  .steps-grid {
    gap: 18px;
  }
  .step-art {
    height: 204px;
  }
  .step-text {
    gap: 8px;
  }
  .step-text h3 {
    font-size: 14px;
  }
  .step-text p {
    font-size: 11px;
  }
  .step-number {
    min-width: 23px;
    height: 23px;
    font-size: 9px;
  }
  .mini-flashcard {
    width: 82px;
    height: 114px;
  }
  .card-apple > span {
    font-size: 39px;
  }
  .card-farsi > span:first-child {
    font-size: 32px;
  }
  .art-speak {
    padding: 36px 14px;
  }
  .conversation {
    font-size: 10px;
    padding: 11px;
  }
  .c-two {
    font-size: 18px;
  }
  .encouragement {
    font-size: 9px;
  }
  .try-layout {
    gap: 38px;
  }
  .try-copy h2 {
    font-size: 36px;
    letter-spacing: -1.6px;
  }
  .try-copy > p {
    font-size: 12px;
  }
  .try-benefits span {
    font-size: 10px;
  }
  .lesson-card {
    padding: 22px;
  }
  .try-section {
    padding-block: 70px;
  }
  .topic-grid {
    gap: 12px;
  }
  .topic-label {
    font-size: 12px;
  }
  .topic-caption {
    font-size: 9px;
    line-height: 1.5;
  }
  .topic-link {
    font-size: 9px;
  }
  .topic-emoji {
    font-size: 40px;
  }
  .topic-card {
    min-height: 228px;
    padding: 24px 14px 18px;
  }
  .family-section {
    gap: 33px;
  }
  .family-copy h2 {
    font-size: 31px;
    letter-spacing: -1.4px;
  }
  .family-copy > p {
    font-size: 11px;
  }
  .family-values {
    margin-block: 17px;
    padding-block: 15px;
  }
  .family-photo-wrap img {
    height: 399px;
  }
  .family-photo-note {
    left: 14px;
    font-size: 10px;
    padding: 11px;
  }
  .faq-section {
    gap: 40px;
  }
  .faq-intro h2 {
    font-size: 36px;
  }
  .faq-list summary {
    font-size: 11px;
  }
  .faq-list details p {
    font-size: 11px;
  }
  .closing-section h2 {
    font-size: 40px;
  }
  .closing-spark {
    font-size: 55px;
    left: -1%;
    top: 34px;
  }
  .closing-heart {
    font-size: 58px;
    right: 0;
  }
  .footer-app {
    font-size: 10px;
  }
  .footer-main nav {
    gap: 13px 25px;
  }
  .footer-bottom {
    font-size: 8px;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 90px;
  }
  .container {
    width: calc(100% - 44px);
  }
  .announcement {
    height: 32px;
    font-size: 9px;
    gap: 10px;
  }
  .announcement > span,
  .announcement > .icon {
    display: none;
  }
  .header-inner {
    height: 73px;
    gap: 12px;
  }
  .brand {
    font-size: 30px;
  }
  .brand img {
    width: 39px;
    height: 39px;
  }
  .desktop-nav {
    display: none;
  }
  .header-cta {
    margin-left: auto;
    font-size: 10px;
    min-height: 38px;
    padding: 10px 15px;
    gap: 10px;
  }
  .header-cta .icon {
    width: 15px;
    height: 15px;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: transparent;
  }
  .menu-toggle span {
    display: block;
    width: 15px;
    height: 1.5px;
    background: var(--ink);
    transition: transform 0.2s;
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.75px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.75px) rotate(-45deg);
  }
  .hero {
    display: flex;
    flex-direction: column;
    gap: 45px;
    padding-block: 38px 64px;
    min-height: 0;
  }
  .hero-copy {
    width: 100%;
    text-align: center;
  }
  .hero .eyebrow {
    justify-content: center;
    font-size: 8px;
    letter-spacing: 1.2px;
  }
  .hero h1 {
    font-size: clamp(49px, 9.5vw, 72px);
    letter-spacing: -2.8px;
    line-height: 1.05;
    margin-top: 16px;
  }
  .coral-word svg {
    height: 13px;
    bottom: -12px;
  }
  .hero-description {
    font-size: 14px;
    line-height: 1.75;
    max-width: 460px;
    margin: 29px auto 0;
  }
  .hero-actions {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-top: 25px;
  }
  .hero-actions .button {
    padding: 14px 20px;
    font-size: 12px;
  }
  .hero-actions .text-link {
    font-size: 10px;
    gap: 7px;
  }
  .play-circle {
    width: 27px;
    height: 27px;
  }
  .hero-note {
    justify-content: center;
    font-size: 9px;
    margin-top: 19px;
  }
  .hero-visual {
    width: 87%;
    height: 460px;
    max-width: 530px;
    margin-inline: auto;
  }
  .hero-photo {
    border-radius: 42% 43% 23% 23%;
    object-position: center;
  }
  .photo-backdrop {
    inset: 6px -11px -8px 2px;
  }
  .hello-bubble {
    width: 115px;
    top: 17px;
    left: -17px;
    padding: 13px 20px;
  }
  .hello-bubble > span:first-child {
    font-size: 30px;
  }
  .hello-bubble > span:last-child {
    font-size: 11px;
  }
  .hero-flower {
    width: 65px;
    height: 65px;
    right: -16px;
    top: 8px;
  }
  .photo-caption {
    bottom: 110px;
    right: -29px;
    font-size: 10px;
    padding: 11px 13px;
  }
  .sound-sticker {
    bottom: -20px;
    left: 3px;
    gap: 11px;
    padding: 13px 15px;
  }
  .sound-sticker strong {
    font-size: 11px;
  }
  .sound-sticker small {
    font-size: 9px;
  }
  .sound-sticker .wave-bars {
    display: flex;
  }
  .promise-strip > .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    gap: 19px 15px;
    padding-block: 25px;
    max-width: 530px;
  }
  .promise-strip span {
    font-size: 10px;
    gap: 8px;
  }
  .promise-strip .icon {
    width: 18px;
    height: 18px;
  }
  .section {
    padding-block: 68px;
  }
  .section-heading {
    margin-bottom: 34px;
  }
  .section-heading h2 {
    font-size: 39px;
    letter-spacing: -1.7px;
    margin-block: 16px 18px;
  }
  .section-heading p {
    font-size: 12px;
  }
  .eyebrow {
    font-size: 8px;
    letter-spacing: 1.4px;
  }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    max-width: 490px;
    margin: auto;
  }
  .step-art {
    height: 245px;
    border-radius: 19px;
  }
  .art-listen {
    padding-top: 27px;
  }
  .listening-word {
    padding: 10px 40px;
  }
  .listening-word > span:first-child {
    font-size: 43px;
  }
  .listening-word > span:last-child {
    font-size: 12px;
  }
  .sound-line {
    margin-top: 16px;
    gap: 8px;
  }
  .art-sticker {
    right: 35px;
    bottom: 27px;
    font-size: 12px;
  }
  .step-text {
    gap: 12px;
    margin-top: 20px;
  }
  .step-number {
    min-width: 26px;
    height: 26px;
    font-size: 11px;
  }
  .step-text h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .step-text p {
    font-size: 12px;
    max-width: 100%;
  }
  .mini-flashcard {
    width: 120px;
    height: 150px;
  }
  .card-apple > span {
    font-size: 57px;
  }
  .card-farsi > span:first-child {
    font-size: 45px;
  }
  .mini-flashcard strong {
    font-size: 15px;
  }
  .art-play {
    gap: 21px;
  }
  .play-spark {
    right: 41px;
    top: 15px;
    font-size: 34px;
  }
  .art-speak {
    padding: 30px max(35px, 8vw);
  }
  .conversation {
    font-size: 12px;
    padding: 14px 18px;
  }
  .c-two {
    font-size: 23px;
    margin-top: 20px;
  }
  .encouragement {
    font-size: 12px;
    margin-top: 18px;
  }
  .try-section {
    padding-block: 61px;
  }
  .try-layout {
    grid-template-columns: 1fr;
    gap: 36px;
    max-width: 534px;
  }
  .try-copy h2 {
    font-size: 41px;
    letter-spacing: -2px;
    line-height: 1.13;
    margin-block: 17px;
  }
  .try-copy > p {
    font-size: 13px;
    line-height: 1.8;
    max-width: 440px;
  }
  .try-copy h2 br {
    display: none;
  }
  .try-benefits {
    gap: 9px;
    margin-top: 23px;
  }
  .try-benefits span {
    font-size: 11px;
  }
  .hand-note {
    display: none;
  }
  .demo-wrap {
    max-width: 100%;
    justify-self: stretch;
  }
  .demo-spark {
    font-size: 49px;
    right: -10px;
    top: -28px;
  }
  .lesson-card {
    padding: 25px;
    min-height: 489px;
  }
  .lesson-topline {
    font-size: 9px;
  }
  .word-prompt {
    margin-block: 24px;
  }
  .lesson-card h3 {
    font-size: 15px;
  }
  .answer-options button {
    font-size: 13px;
    padding: 12px;
    min-height: 47px;
  }
  .lesson-feedback {
    font-size: 11px;
    margin-top: 17px;
    min-height: 32px;
  }
  .lesson-next {
    margin-top: 9px;
  }
  .demo-footnote {
    font-size: 9px;
  }
  .explore-heading {
    display: block;
    margin-bottom: 28px;
  }
  .explore-heading h2 {
    font-size: 40px;
    letter-spacing: -1.8px;
  }
  .explore-heading h2 br {
    display: none;
  }
  .explore-heading > p {
    font-size: 12px;
    max-width: 400px;
    margin-top: 20px;
  }
  .topic-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
  }
  .topic-card {
    min-height: 230px;
    padding: 22px 17px 16px;
  }
  .topic-label {
    font-size: 14px;
    line-height: 1.4;
  }
  .topic-caption {
    font-size: 10px;
    margin-top: 7px;
  }
  .topic-link {
    font-size: 9px;
  }
  .topic-emoji {
    font-size: 44px;
    margin-bottom: 21px;
  }
  .explore-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-top: 23px;
  }
  .explore-footer > span {
    font-size: 10px;
  }
  .explore-footer .text-link {
    font-size: 11px;
  }
  .family-section {
    display: flex;
    flex-direction: column;
    gap: 39px;
    padding-top: 4px;
    padding-bottom: 64px;
  }
  .family-photo-wrap {
    width: 100%;
    max-width: 100%;
  }
  .family-photo-wrap img {
    height: 390px;
    border-radius: 20px 90px 20px 20px;
  }
  .family-photo-note {
    left: 19px;
    bottom: 24px;
    font-size: 12px;
    padding: 13px 17px;
  }
  .family-spark {
    width: 47px;
    height: 47px;
    top: -19px;
    left: -16px;
  }
  .family-copy {
    width: 100%;
  }
  .family-copy h2 {
    font-size: 37px;
    line-height: 1.16;
    letter-spacing: -1.8px;
    margin: 16px 0 20px;
  }
  .family-copy > p {
    font-size: 13px;
    line-height: 1.85;
  }
  .family-values {
    margin-block: 23px;
    padding-block: 18px;
    gap: 15px 25px;
  }
  .family-values span {
    font-size: 10px;
  }
  .family-copy > .text-link {
    font-size: 12px;
  }
  .faq-section {
    display: block;
    padding-top: 60px;
    padding-bottom: 64px;
  }
  .faq-intro {
    margin-bottom: 29px;
  }
  .faq-intro h2 {
    font-size: 37px;
    letter-spacing: -1.8px;
    margin-block: 14px;
  }
  .faq-intro h2 br {
    display: none;
  }
  .faq-intro p {
    font-size: 12px;
    max-width: 100%;
  }
  .question-doodle {
    display: none;
  }
  .faq-list summary {
    font-size: 12px;
    padding: 21px 0;
    line-height: 1.7;
    gap: 16px;
  }
  .faq-list details p {
    font-size: 12px;
    padding-right: 22px;
  }
  .closing-section {
    padding-block: 58px 65px;
  }
  .closing-section .eyebrow {
    max-width: 220px;
    margin: auto;
  }
  .closing-section h2 {
    font-size: 36px;
    letter-spacing: -1.9px;
    line-height: 1.15;
    max-width: 470px;
    margin: 19px auto 17px;
  }
  .closing-section p {
    font-size: 12px;
  }
  .closing-section .button {
    min-height: 49px;
    font-size: 12px;
    padding: 14px 20px;
    gap: 13px;
  }
  .closing-spark {
    font-size: 44px;
    left: -5px;
    top: -27px;
  }
  .closing-heart {
    font-size: 43px;
    right: 0;
    bottom: -39px;
  }
  .site-footer {
    padding-top: 36px;
  }
  .footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px 18px;
    padding-bottom: 29px;
  }
  .footer-main nav {
    gap: 13px;
    font-size: 10px;
    grid-template-columns: 1fr;
    justify-self: end;
    padding-top: 0;
  }
  .footer-main p {
    font-size: 9px;
    line-height: 1.8;
    max-width: 150px;
  }
  .footer-main .brand {
    font-size: 28px;
  }
  .footer-main .brand img {
    width: 37px;
    height: 37px;
  }
  .footer-app {
    font-size: 11px;
    margin: 0;
    grid-column: 1/-1;
  }
  .footer-bottom {
    display: block;
    font-size: 8px;
    line-height: 1.8;
    padding-top: 19px;
  }
  .footer-bottom span {
    display: block;
  }
  .footer-bottom #year {
    display: inline;
  }
  .topic-dialog {
    padding: 28px 23px;
  }
  .topic-dialog h2 {
    font-size: 28px;
  }
  .topic-dialog-emoji {
    margin-top: 21px;
  }
  .topic-word {
    padding: 11px 14px;
  }
  .topic-dialog .eyebrow {
    font-size: 8px;
  }
}
@media (max-width: 390px) {
  .container {
    width: calc(100% - 36px);
  }
  .brand {
    font-size: 26px;
    gap: 2px;
  }
  .brand img {
    width: 36px;
    height: 36px;
  }
  .header-inner {
    gap: 9px;
  }
  .header-cta {
    font-size: 9px;
    padding: 10px 12px;
    gap: 7px;
  }
  .menu-toggle {
    width: 36px;
    height: 36px;
  }
  .hero {
    padding-top: 30px;
    gap: 37px;
  }
  .hero .eyebrow {
    font-size: 7px;
    letter-spacing: 1px;
  }
  .hero h1 {
    font-size: 48px;
    letter-spacing: -2.8px;
  }
  .hero-description {
    font-size: 12px;
  }
  .hero-actions {
    gap: 16px;
  }
  .hero-actions .button {
    font-size: 10px;
    padding: 13px 16px;
    gap: 11px;
  }
  .hero-actions .text-link {
    font-size: 9px;
    gap: 5px;
  }
  .hero-note {
    font-size: 8px;
  }
  .hero-visual {
    height: 326px;
    width: 90%;
  }
  .hello-bubble {
    width: 95px;
    left: -12px;
    padding: 10px 17px;
    top: 3px;
  }
  .hello-bubble > span:first-child {
    font-size: 25px;
  }
  .hello-bubble > span:last-child {
    font-size: 9px;
  }
  .hero-flower {
    width: 50px;
    height: 50px;
    right: -8px;
    top: 0;
  }
  .photo-caption {
    bottom: 90px;
    right: -15px;
    font-size: 8px;
    padding: 9px;
    gap: 7px;
  }
  .caption-icon {
    width: 28px;
    height: 28px;
  }
  .sound-sticker {
    left: 0;
    padding: 11px;
    gap: 8px;
    bottom: -24px;
  }
  .sound-sticker strong {
    font-size: 9px;
  }
  .sound-sticker small {
    font-size: 8px;
  }
  .sound-sticker .wave-bars {
    display: none;
  }
  .audio-circle {
    width: 34px;
    height: 34px;
  }
  .promise-strip span {
    font-size: 8px;
    gap: 6px;
  }
  .promise-strip .icon {
    width: 16px;
    height: 16px;
  }
  .section-heading h2 {
    font-size: 34px;
  }
  .try-copy h2 {
    font-size: 35px;
  }
  .try-benefits span {
    font-size: 10px;
  }
  .lesson-card {
    padding: 20px;
  }
  .lesson-card h3 {
    font-size: 13px;
  }
  .lesson-topline {
    font-size: 8px;
  }
  .demo-footnote {
    font-size: 8px;
  }
  .topic-card {
    padding: 20px 13px 15px;
    min-height: 219px;
  }
  .topic-label {
    font-size: 13px;
  }
  .topic-caption {
    font-size: 9px;
  }
  .topic-link {
    font-size: 8px;
  }
  .topic-link .icon {
    width: 14px;
    height: 14px;
  }
  .family-photo-wrap img {
    height: 320px;
  }
  .family-copy h2 {
    font-size: 32px;
  }
  .family-values span {
    font-size: 9px;
  }
  .faq-list summary {
    font-size: 11px;
  }
  .closing-section h2 {
    font-size: 31px;
  }
  .closing-spark {
    font-size: 33px;
    top: -15px;
  }
  .topic-dialog h2 {
    font-size: 25px;
  }
  .footer-main p {
    font-size: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .motion-ready .reveal:not(.is-visible) {
    opacity: 1;
    transform: none;
  }
  .confetti-bit {
    display: none;
  }
}
