:root {
  --bg: #f5efe4;
  --surface: #fffdf8;
  --surface-soft: #f0e9de;
  --ink: #171918;
  --muted: #746f66;
  --line: rgba(23, 25, 24, 0.14);
  --aqua: #9fd4d6;
  --aqua-deep: #75bdc0;
  --coral: #f38b82;
  --green: #b5df7e;
  --amber: #f6b45d;
  --shadow-solid: 0 7px 0 var(--ink);
  --shadow-soft: 0 24px 70px rgba(43, 36, 27, 0.13);
  --radius-sm: 20px;
  --radius-md: 32px;
  --radius-lg: 48px;
  --container: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Thmanyah Sans", "SF Arabic", "Noto Sans Arabic", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--aqua);
  color: var(--ink);
}

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

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

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

button {
  font: inherit;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  font-family: "Thmanyah Serif Display", "Thmanyah Sans", serif;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

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

.section {
  position: relative;
  padding-block: 116px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  padding: 10px 18px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--surface);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.announcement {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 6px 20px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.announcement__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(181, 223, 126, 0.15);
  animation: pulse 2.2s ease-in-out infinite;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(245, 239, 228, 0.72);
  backdrop-filter: blur(18px);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 12px 35px rgba(43, 36, 27, 0.06);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: "Thmanyah Serif Display", serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.brand img {
  width: 47px;
  height: 47px;
  border: 2px solid var(--ink);
  border-radius: 15px;
  object-fit: cover;
}

.site-header .brand img {
  border: 0;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(23, 25, 24, 0.11);
}

.ui-arrow {
  width: 20px;
  height: 20px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.5vw, 38px);
  color: #3f403d;
  font-size: 15px;
  font-weight: 500;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -7px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--surface);
  box-shadow: 0 4px 0 var(--ink);
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-cta svg {
  width: 18px;
  fill: currentColor;
}

.nav-cta:hover {
  background: var(--aqua);
  transform: translateY(-2px);
  box-shadow: 0 6px 0 var(--ink);
}

.nav-cta:active {
  transform: translateY(3px);
  box-shadow: 0 1px 0 var(--ink);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  min-height: calc(100svh - 112px);
  overflow: clip;
  padding-top: 88px;
  padding-bottom: 76px;
  isolation: isolate;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: clamp(60px, 8vw, 110px);
}

.hero__content {
  position: relative;
  z-index: 2;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #5d5a53;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero h1 {
  max-width: 700px;
  margin-bottom: 25px;
  font-size: clamp(54px, 6vw, 88px);
}

.hero h1 span,
.section-heading em,
.method h2 em,
.final-cta h2 em {
  position: relative;
  color: #398f92;
  font-style: normal;
  white-space: nowrap;
}

.hero h1 span::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset-inline: -8px;
  bottom: 8px;
  height: 17px;
  border-radius: 999px;
  background: rgba(159, 212, 214, 0.52);
  transform: rotate(-1deg) scaleX(0);
  transform-origin: right;
  animation: underline-in 0.9s 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero__lead {
  max-width: 600px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 31px;
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 23px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button--dark {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 7px 0 #7abfc2;
}

.button--dark:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 0 #7abfc2;
}

.button--dark:active {
  transform: translateY(6px);
  box-shadow: 0 1px 0 #7abfc2;
}

.button--store {
  min-width: 206px;
  justify-content: flex-start;
  padding: 10px 24px;
}

.button--store svg {
  width: 27px;
  flex: 0 0 auto;
  fill: currentColor;
}

.button--store span {
  display: flex;
  flex-direction: column;
  font-family: Arial, sans-serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.05;
  direction: ltr;
}

.button--store small {
  margin-bottom: 3px;
  font-family: "Thmanyah Sans", sans-serif;
  font-size: 10px;
  font-weight: 400;
  direction: rtl;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
}

.text-link .arrow-chip {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.75);
  box-shadow: 0 3px 0 var(--ink);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.text-link .ui-arrow {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.text-link:hover .arrow-chip {
  background: var(--aqua);
  box-shadow: 0 1px 0 var(--ink);
  transform: translateY(2px);
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #5e5b54;
  font-size: 14px;
}

.hero__proof li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero__proof .check-icon {
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(23, 25, 24, 0.28);
  border-radius: 50%;
  background: var(--green);
  color: var(--ink);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.32);
}

.hero__proof .check-icon svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.hero-visual {
  position: relative;
  width: min(100%, 485px);
  justify-self: center;
  padding: 20px 45px 8px;
}

.stack-card {
  position: absolute;
  width: 65%;
  height: 76%;
  inset-block-start: 12%;
  inset-inline-start: 13%;
  border: 3px solid var(--ink);
  border-radius: 56px;
  box-shadow: var(--shadow-soft);
}

.stack-card--coral {
  background: var(--coral);
  transform: rotate(9deg) translateX(-60px);
  animation: float-coral 7s ease-in-out infinite;
}

.stack-card--aqua {
  background: var(--aqua);
  transform: rotate(4deg) translateX(-28px);
  animation: float-aqua 6s 0.6s ease-in-out infinite;
}

.phone-frame {
  position: relative;
  z-index: 3;
  overflow: hidden;
  border: 4px solid var(--ink);
  border-radius: 54px;
  background: #0f1010;
  box-shadow: 0 34px 80px rgba(37, 31, 24, 0.24), 0 9px 0 rgba(23, 25, 24, 0.13);
}

.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-phone {
  width: 100%;
  aspect-ratio: 860 / 1760;
}

.hero-phone img {
  transition: opacity 0.28s ease, transform 0.5s ease;
}

.hero-phone img.is-changing {
  opacity: 0;
  transform: translateY(10px) scale(0.99);
}

.hero-note {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--surface);
  box-shadow: 0 5px 0 var(--ink);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.hero-note--top {
  inset-block-start: 12%;
  inset-inline-end: -32px;
  animation: note-float 5s ease-in-out infinite;
}

.hero-note--bottom {
  inset-block-end: 12%;
  inset-inline-start: -30px;
  animation: note-float 5s 1.2s ease-in-out infinite;
}

.note-icon {
  width: 39px;
  height: 29px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(23, 25, 24, 0.65);
  border-radius: 10px;
  background: var(--amber);
  box-shadow: 0 2px 0 var(--ink);
  font-family: "Thmanyah Sans", Arial, sans-serif;
  font-size: 10px;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(181, 223, 126, 0.25);
}

.hero-logo {
  position: absolute;
  z-index: 7;
  inset-block-start: 2px;
  inset-inline-start: 5px;
  width: 82px;
  height: 82px;
  border: 3px solid var(--ink);
  border-radius: 27px;
  box-shadow: 0 8px 0 var(--ink);
  object-fit: cover;
  transform: rotate(-8deg);
  animation: logo-bob 6s ease-in-out infinite;
}

.hero__glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.45;
  pointer-events: none;
}

.hero__glow--aqua {
  width: 480px;
  height: 480px;
  inset-block-start: 7%;
  inset-inline-start: -220px;
  background: radial-gradient(circle, rgba(159, 212, 214, 0.76), transparent 68%);
}

.hero__glow--coral {
  width: 380px;
  height: 380px;
  inset-block-end: 8%;
  inset-inline-end: -220px;
  background: radial-gradient(circle, rgba(243, 139, 130, 0.48), transparent 70%);
}

.hero-strip {
  position: relative;
  z-index: 4;
  min-height: 112px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  margin-top: 90px;
  padding: 20px clamp(28px, 5vw, 70px);
  border: 2px solid var(--ink);
  border-radius: 34px;
  background: rgba(255, 253, 248, 0.85);
  box-shadow: 0 8px 0 rgba(23, 25, 24, 0.96);
}

.hero-strip > div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 12px;
}

.strip-number {
  grid-row: span 2;
  position: relative;
  width: 47px;
  height: 43px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--ink);
  border-radius: 14px;
  background: var(--aqua);
  box-shadow: 0 3px 0 var(--ink);
  font-family: "Thmanyah Sans", Arial, sans-serif;
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.strip-number::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 9px;
  pointer-events: none;
}

.hero-strip > div:nth-of-type(2) .strip-number {
  background: var(--amber);
}

.hero-strip > div:nth-of-type(3) .strip-number {
  background: var(--green);
}

.hero-strip strong {
  font-size: 18px;
  line-height: 1.2;
}

.hero-strip small {
  color: var(--muted);
  font-size: 13px;
}

.strip-arrow {
  width: 44px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(23, 25, 24, 0.14);
  border-radius: 999px;
  background: var(--surface-soft);
  color: #77736b;
}

.strip-arrow .ui-arrow {
  width: 25px;
  height: 17px;
  stroke-width: 1.7;
}

.problem {
  overflow: hidden;
  background: var(--surface);
}

.problem__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(70px, 10vw, 140px);
}

.section-heading h2,
.method h2,
.final-cta h2 {
  margin: 14px 0 25px;
  font-size: clamp(45px, 5.6vw, 76px);
}

.section-heading p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 19px;
}

.section-heading em {
  color: var(--coral);
}

.memory-demo {
  position: relative;
  min-height: 435px;
  perspective: 900px;
}

.memory-card {
  position: absolute;
  inset-inline-start: 50%;
  width: min(100%, 520px);
  height: 310px;
  padding: 32px;
  border: 3px solid var(--ink);
  border-radius: 40px;
  background: var(--surface);
  box-shadow: var(--shadow-solid);
  transform-origin: center bottom;
}

.memory-card--back {
  inset-block-start: 24px;
  display: grid;
  place-items: end center;
  background: var(--coral);
  transform: translateX(50%) rotate(8deg);
}

.memory-card--middle {
  inset-block-start: 48px;
  display: grid;
  place-items: end center;
  background: var(--aqua);
  transform: translateX(50%) rotate(-4deg);
}

.memory-card--back span,
.memory-card--middle span {
  color: rgba(23, 25, 24, 0.55);
  font-size: 12px;
  font-weight: 700;
}

.memory-card--front {
  inset-block-start: 82px;
  text-align: center;
  transform: translateX(50%);
}

.memory-card__top {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
}

.memory-card--front strong {
  display: block;
  margin-top: 45px;
  font-family: Georgia, serif;
  font-size: clamp(45px, 6vw, 70px);
  line-height: 1;
}

.memory-card--front p {
  margin: 13px 0 28px;
  font-size: 22px;
}

.memory-card__bar {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #e7e1d8;
}

.memory-card__bar span {
  display: block;
  width: 74%;
  height: 100%;
  border-radius: inherit;
  background: var(--aqua);
}

.section-heading--center {
  max-width: 770px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-heading--center p {
  margin-inline: auto;
}

.how {
  background-image: radial-gradient(rgba(23, 25, 24, 0.1) 1px, transparent 1px);
  background-size: 23px 23px;
}

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

.step-card {
  position: relative;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 30px;
  border: 3px solid var(--ink);
  border-radius: 46px;
  box-shadow: var(--shadow-solid);
  isolation: isolate;
  transform-origin: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.step-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 190px;
  height: 190px;
  inset-block-start: -92px;
  inset-inline-end: -70px;
  border: 1px solid rgba(23, 25, 24, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.step-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 35px;
  pointer-events: none;
}

.step-card:hover {
  transform: translateY(-7px) scale(1.01) rotate(-0.35deg);
  box-shadow: 0 13px 0 var(--ink);
}

.step-card:active {
  transform: translateY(-2px) scale(1.035);
  box-shadow: 0 6px 0 var(--ink);
}

.step-card.is-tapped {
  animation: card-tap 0.44s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.step-card--coral {
  background: linear-gradient(150deg, #f9b1ab 0%, #f38f87 100%);
}

.step-card--aqua {
  background: linear-gradient(150deg, #c0e8e8 0%, #98d2d5 100%);
}

.step-card--green {
  background: linear-gradient(150deg, #d1edae 0%, #b5df7e 100%);
}

.step-card__icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  margin-bottom: 49px;
  border: 2px solid var(--ink);
  border-radius: 25px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 6px 0 var(--ink);
  transform: rotate(-2deg);
}

.step-card__icon svg {
  width: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.step-card h3 {
  margin-bottom: 13px;
  font-size: clamp(29px, 2.75vw, 35px);
  font-weight: 900;
  letter-spacing: -0.018em;
  line-height: 1.28;
}

.step-card > p {
  color: rgba(23, 25, 24, 0.68);
  font-size: 17px;
  line-height: 1.75;
}

.mini-input,
.mini-card {
  min-height: 49px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  padding: 8px 14px;
  border: 2px solid rgba(23, 25, 24, 0.45);
  border-radius: 15px;
  background: rgba(255, 253, 248, 0.65);
}

.mini-input span {
  color: rgba(23, 25, 24, 0.45);
  font-family: Arial, sans-serif;
  font-size: 13px;
}

.mini-input b {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
}

.mini-input b svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.mini-card {
  justify-content: center;
  gap: 18px;
}

.step-card .rating-dots {
  margin-top: auto;
}

.mini-card strong {
  font-family: Georgia, serif;
  font-size: 19px;
}

.mini-card span {
  color: var(--muted);
  font-size: 14px;
}

.rating-dots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding-top: 24px;
}

.rating-dots span {
  min-height: 41px;
  display: grid;
  place-items: center;
  padding: 5px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: var(--coral);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
}

.rating-dots span:nth-child(2) {
  background: var(--amber);
}

.rating-dots span:nth-child(3) {
  background: var(--green);
}

.rating-dots span:nth-child(4) {
  background: var(--aqua);
}

.method {
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.method::before,
.method::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.method::before {
  inset-block-start: -180px;
  inset-inline-start: -80px;
}

.method::after {
  inset-block-end: -260px;
  inset-inline-end: -80px;
}

.method__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: clamp(50px, 7vw, 92px);
}

.section-kicker--light {
  padding: 13px 24px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  background: var(--aqua);
  box-shadow: 0 6px 0 rgba(255, 255, 255, 0.24);
  color: var(--ink);
  font-size: clamp(23px, 2.4vw, 31px);
  font-weight: 900;
  letter-spacing: 0;
}

.method h2 {
  margin-bottom: 27px;
  font-size: clamp(50px, 5vw, 72px);
}

.method h2 em {
  color: var(--aqua);
}

.method__copy p {
  max-width: 490px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 19px;
  line-height: 1.85;
}

.method__promise {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.method__promise span {
  width: 29px;
  height: 29px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--ink);
  font-size: 15px;
}

.method-demo {
  position: relative;
  padding: 28px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 38px;
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 9px 0 var(--aqua);
}

.method-demo__head {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.method-demo__head > div,
.method-result__copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.method-demo__head small,
.method-result__copy small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.method-demo__head strong,
.method-result__copy strong {
  font-size: 20px;
}

.method-demo__step {
  width: 48px;
  height: 34px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: var(--aqua);
  box-shadow: 0 3px 0 var(--ink);
  font-family: "Thmanyah Sans", Arial, sans-serif;
  font-size: 10px;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.recall-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
}

.recall-option {
  min-height: 82px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  padding: 11px 8px;
  border: 1.5px solid var(--ink);
  border-radius: 18px;
  text-align: center;
}

.recall-option strong {
  font-size: 14px;
}

.recall-option small {
  color: rgba(23, 25, 24, 0.62);
  font-size: 9px;
  font-weight: 700;
}

.recall-option--forgot { background: var(--coral); }
.recall-option--hard { background: var(--amber); }
.recall-option--good { background: var(--green); }
.recall-option--easy { background: var(--aqua); }

.method.is-visible .recall-option--good {
  animation: recall-choice 3.8s 1s ease-in-out infinite;
}

.method-demo__flow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 15px 0;
  color: var(--muted);
}

.method-demo__flow span {
  height: 1px;
  flex: 1;
  background: rgba(23, 25, 24, 0.16);
}

.method-demo__flow .ui-arrow {
  width: 22px;
  height: 22px;
}

.method-result {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 17px;
  border-radius: 22px;
  background: var(--ink);
  color: #fff;
}

.method-demo__step--light {
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 3px 0 rgba(255, 255, 255, 0.35);
}

.method-result__copy small {
  color: rgba(255, 255, 255, 0.58);
}

.method-result__date {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 100px;
  padding: 9px 12px;
  border-radius: 14px;
  background: var(--aqua);
  color: var(--ink);
  text-align: center;
}

.method-result__date b {
  font-size: 13px;
}

.method-result__date small {
  font-size: 8px;
  font-weight: 700;
}

.method-schedule {
  display: grid;
  grid-template-columns: auto 1fr auto 1.35fr auto 1.8fr auto;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 0 5px;
}

.method-schedule span {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 42px;
}

.method-schedule span::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-bottom: 5px;
  border: 2px solid var(--surface);
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 0 1px var(--ink);
}

.method-schedule span:last-child::before {
  background: var(--green);
}

.method-schedule b {
  font-size: 10px;
}

.method-schedule small {
  color: var(--muted);
  font-size: 8px;
}

.method-schedule i {
  height: 1px;
  margin-top: -27px;
  background: repeating-linear-gradient(90deg, rgba(23, 25, 24, 0.34) 0 4px, transparent 4px 8px);
}

.inside {
  overflow: hidden;
  background: var(--surface);
}

.section-heading--split {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 38px;
}

.section-heading--split h2 {
  margin-bottom: 0;
}

.section-heading--split > p {
  padding-bottom: 8px;
}

.showcase-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-bottom: 28px;
}

.gallery-button {
  width: 52px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--ink);
  border-radius: 16px;
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 4px 0 var(--ink);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-button .ui-arrow {
  width: 21px;
  height: 21px;
  stroke-width: 1.8;
}

.gallery-button:hover {
  background: var(--aqua);
  box-shadow: 0 2px 0 var(--ink);
  transform: translateY(2px);
}

.gallery-button:active {
  box-shadow: 0 0 0 var(--ink);
  transform: translateY(4px);
}

.gallery-progress {
  width: 130px;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: #e3ded5;
}

.gallery-progress span {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: var(--ink);
  transform-origin: right;
  transition: width 0.25s ease;
}

.screens-track {
  width: calc(100vw - max(24px, (100vw - var(--container)) / 2));
  display: flex;
  gap: 25px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 6px 0 36px 25px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.screens-track::-webkit-scrollbar {
  display: none;
}

.screen-card {
  min-width: min(82vw, 680px);
  min-height: 720px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 30px;
  overflow: hidden;
  padding: 42px 40px 0;
  border: 2px solid var(--ink);
  border-radius: 44px;
  background: #f4eee4;
  box-shadow: 0 8px 0 var(--ink);
  scroll-snap-align: start;
}

.screen-card:nth-child(2) { background: #d9eeee; }
.screen-card:nth-child(3) { background: #f8c3bd; }
.screen-card:nth-child(4) { background: #e1efcb; }
.screen-card:nth-child(5) { background: #f7d9ad; }

.screen-card__copy {
  align-self: start;
  padding-top: 50px;
}

.screen-card__copy > span {
  display: inline-block;
  margin-bottom: 14px;
  padding: 5px 11px;
  border: 1px solid rgba(23, 25, 24, 0.26);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.screen-card__copy h3 {
  margin-bottom: 14px;
  font-family: "Thmanyah Serif Display", serif;
  font-size: 39px;
  font-weight: 900;
  line-height: 1.15;
}

.screen-card__copy p {
  margin-bottom: 0;
  color: rgba(23, 25, 24, 0.65);
  font-size: 15px;
}

.phone-frame--gallery {
  width: 310px;
  height: 636px;
  align-self: end;
  justify-self: center;
  border-width: 3px;
  border-radius: 43px 43px 0 0;
  box-shadow: 0 25px 50px rgba(43, 36, 27, 0.2);
  transform: translateY(16px);
  transition: transform 0.35s ease;
}

.screen-card:hover .phone-frame--gallery {
  transform: translateY(6px);
}

.benefits {
  background: var(--bg);
}

.learning-path {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
  padding: 17px 22px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  box-shadow: 0 6px 0 var(--aqua);
  color: #fff;
}

.learning-path span {
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 800;
}

.learning-path b {
  width: 34px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--aqua);
  color: var(--ink);
  font-family: "Thmanyah Sans", Arial, sans-serif;
  font-size: 9px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.05em;
}

.learning-path .ui-arrow {
  width: 21px;
  height: 21px;
  justify-self: center;
  color: rgba(255, 255, 255, 0.45);
}

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

.learning-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  padding: 25px;
  border: 2px solid var(--ink);
  border-radius: 34px;
  background: var(--surface);
  box-shadow: 0 7px 0 var(--ink);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.learning-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 11px 0 var(--ink);
}

.learning-card--context { background: #f7c0bb; }
.learning-card--sound { background: #c8e7e7; }
.learning-card--recall { background: #f7d19a; }
.learning-card--review { background: #d5edb7; }

.learning-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.learning-card__number {
  width: 44px;
  height: 29px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 3px 0 var(--ink);
  font-family: "Thmanyah Sans", Arial, sans-serif;
  font-size: 9px;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.learning-card__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 17px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 4px 0 var(--ink);
}

.learning-card__icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.learning-card__label {
  margin-bottom: 8px;
  color: rgba(23, 25, 24, 0.58);
  font-size: 12px;
  font-weight: 800;
}

.learning-card h3 {
  margin-bottom: 10px;
  font-size: 25px;
  line-height: 1.2;
}

.learning-card > p {
  margin-bottom: 24px;
  color: rgba(23, 25, 24, 0.68);
  font-size: 14px;
  line-height: 1.65;
}

.learning-card__result {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding: 11px 12px;
  border: 1px solid rgba(23, 25, 24, 0.24);
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.58);
  font-size: 11px;
  font-weight: 800;
}

.learning-card__result span {
  width: 21px;
  height: 21px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 10px;
}

.for-you {
  padding-top: 0;
}

.for-you__card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  padding: clamp(44px, 6vw, 80px);
  border: 3px solid var(--ink);
  border-radius: 50px;
  background: var(--aqua);
  box-shadow: 0 9px 0 var(--ink);
}

.for-you__copy h2 {
  margin: 0;
  font-size: clamp(40px, 4.2vw, 57px);
}

.for-you__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.for-you__list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(23, 25, 24, 0.28);
  font-size: 17px;
  font-weight: 700;
}

.for-you__list li:last-child {
  border-bottom: 0;
}

.for-you__list span {
  width: 46px;
  height: 31px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.68);
  box-shadow: 0 3px 0 rgba(23, 25, 24, 0.8);
  font-family: "Thmanyah Sans", Arial, sans-serif;
  font-size: 10px;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  letter-spacing: 0.07em;
}

.faq {
  background: var(--surface);
}

.faq__grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 100px;
}

.faq__intro {
  position: relative;
}

.faq__intro h2 {
  margin: 16px 0 14px;
  font-size: clamp(44px, 5vw, 67px);
}

.faq__intro p {
  color: var(--muted);
}

.faq__list {
  border-top: 2px solid var(--ink);
}

.faq details {
  border-bottom: 1px solid var(--ink);
}

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

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

.faq summary span {
  width: 36px;
  height: 36px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  transition: transform 0.25s ease, background 0.25s ease;
}

.faq summary span svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.7;
}

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

.faq details p {
  max-width: 650px;
  margin: -7px 0 25px;
  padding-inline-end: 20px;
  color: var(--muted);
  font-size: 16px;
}

.faq-answer {
  max-width: 650px;
  display: grid;
  gap: 13px;
  margin: -7px 0 25px;
  padding-inline-end: 20px;
}

.faq-answer p {
  max-width: none;
  margin: 0;
  padding: 0;
}

.final-cta {
  overflow: hidden;
}

.final-cta__card {
  position: relative;
  overflow: hidden;
  padding: 80px 30px;
  border: 3px solid var(--ink);
  border-radius: 56px;
  background: var(--coral);
  box-shadow: 0 9px 0 var(--ink);
  text-align: center;
  isolation: isolate;
}

.final-cta__card > img {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  border: 3px solid var(--ink);
  border-radius: 31px;
  box-shadow: 0 7px 0 var(--ink);
  object-fit: cover;
  transform: rotate(-4deg);
}

.final-cta h2 {
  margin-top: 12px;
  font-size: clamp(55px, 7vw, 92px);
}

.final-cta h2 em {
  color: var(--surface);
  text-shadow: 2px 2px 0 var(--ink);
}

.final-cta__card > p {
  max-width: 530px;
  margin: 0 auto 30px;
  color: rgba(23, 25, 24, 0.7);
}

.final-cta__card .button {
  position: relative;
  z-index: 2;
  margin-inline: auto;
  box-shadow: 0 7px 0 #fff0e8;
}

.final-cta__card .button:hover {
  box-shadow: 0 10px 0 #fff0e8;
}

.final-cta__note {
  display: block;
  margin-top: 20px;
  color: rgba(23, 25, 24, 0.6);
  font-size: 12px;
}

.site-footer {
  padding: 65px 0 30px;
  background: var(--ink);
  color: #fff;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding-bottom: 55px;
}

.brand--footer img {
  border-color: rgba(255, 255, 255, 0.75);
}

.footer__top p {
  margin: 0;
  color: rgba(255, 255, 255, 0.57);
  font-size: 14px;
}

.footer-up {
  width: 48px;
  height: 48px;
  display: grid;
  justify-self: end;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  transition: background 0.2s ease, color 0.2s ease;
}

.footer-up .ui-arrow {
  width: 20px;
  height: 20px;
}

.footer-up:hover {
  background: var(--aqua);
  color: var(--ink);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
}

.footer__contact {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__contact:hover,
.footer__contact:focus-visible {
  color: var(--aqua);
}

.mobile-store-bar {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal--delay {
  transition-delay: 0.12s;
}

.reveal--delay-2 {
  transition-delay: 0.22s;
}

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

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 5px rgba(181, 223, 126, 0.12); }
  50% { box-shadow: 0 0 0 8px rgba(181, 223, 126, 0.03); }
}

@keyframes recall-choice {
  0%, 22%, 100% { transform: translateY(0); box-shadow: none; }
  8%, 14% { transform: translateY(-4px); box-shadow: 0 5px 0 var(--ink); }
}

@keyframes card-tap {
  0%, 100% { transform: translateY(0) scale(1); }
  45% { transform: translateY(-5px) scale(1.045); }
}

@keyframes underline-in {
  to { transform: rotate(-1deg) scaleX(1); }
}

@keyframes float-coral {
  0%, 100% { transform: rotate(9deg) translate(-60px, 0); }
  50% { transform: rotate(7deg) translate(-64px, -8px); }
}

@keyframes float-aqua {
  0%, 100% { transform: rotate(4deg) translate(-28px, 0); }
  50% { transform: rotate(5deg) translate(-24px, 9px); }
}

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

@keyframes logo-bob {
  0%, 100% { transform: rotate(-8deg) translateY(0); }
  50% { transform: rotate(-4deg) translateY(-7px); }
}

@keyframes draw-line {
  to { transform: scaleX(1); }
}

@keyframes point-in {
  to { transform: scale(1); }
}

@media (max-width: 1050px) {
  .desktop-nav {
    display: none;
  }

  .nav-cta {
    margin-inline-start: auto;
  }

  .hero__grid {
    grid-template-columns: 1fr 0.82fr;
    gap: 45px;
  }

  .hero h1 {
    font-size: clamp(52px, 6.5vw, 72px);
  }

  .hero-visual {
    padding-inline: 32px;
  }

  .hero-note--top {
    inset-inline-end: -12px;
  }

  .hero-note--bottom {
    inset-inline-start: -13px;
  }

  .steps-grid {
    gap: 16px;
  }

  .step-card {
    padding: 25px;
  }

  .method__inner {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 55px;
  }

  .screen-card {
    min-width: min(86vw, 650px);
  }

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

  .faq__grid {
    gap: 60px;
  }
}

@media (max-width: 780px) {
  :root {
    --radius-md: 26px;
    --radius-lg: 36px;
  }

  body {
    font-size: 16px;
    padding-bottom: 80px;
  }

  .container {
    width: min(calc(100% - 34px), var(--container));
  }

  .section {
    padding-block: 82px;
  }

  .announcement {
    min-height: 30px;
    font-size: 11px;
  }

  .nav-wrap {
    min-height: 69px;
  }

  .brand {
    font-size: 24px;
  }

  .brand img {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
    display: grid;
    place-content: center;
    gap: 6px;
    padding: 0;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--surface);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--ink);
    transition: transform 0.25s ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 90;
    inset: 99px 0 auto;
    height: calc(100svh - 99px);
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 28px 24px 40px;
    background: var(--bg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu > a:not(.button) {
    padding: 17px 2px;
    border-bottom: 1px solid var(--line);
    font-size: 21px;
    font-weight: 700;
  }

  .mobile-menu .button {
    margin-top: auto;
  }

  .hero {
    min-height: auto;
    padding-top: 55px;
    padding-bottom: 67px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .hero__content {
    text-align: center;
  }

  .hero h1 {
    margin-inline: auto;
    margin-bottom: 21px;
    font-size: clamp(46px, 13vw, 64px);
    line-height: 1.07;
  }

  .hero h1 span::after {
    bottom: 4px;
    height: 12px;
  }

  .hero__lead {
    max-width: 530px;
    margin-inline: auto;
    margin-bottom: 29px;
    font-size: 17px;
  }

  .hero__actions {
    flex-direction: column;
    gap: 22px;
  }

  .hero__proof {
    justify-content: center;
  }

  .hero-visual {
    width: min(91%, 410px);
    padding-inline: 42px;
  }

  .hero-note--top {
    inset-inline-end: -4px;
  }

  .hero-note--bottom {
    inset-inline-start: -4px;
  }

  .hero-logo {
    inset-inline-start: 8px;
    width: 67px;
    height: 67px;
    border-radius: 21px;
  }

  .hero-strip {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 5px;
    margin-top: 62px;
    padding: 15px 12px;
    border-radius: 32px;
  }

  .hero-strip > div {
    gap: 5px;
    padding: 8px 1px;
  }

  .strip-arrow {
    width: 25px;
    height: 25px;
    display: grid;
    align-self: center;
    border: 0;
    background: transparent;
  }

  .strip-arrow .ui-arrow {
    width: 19px;
  }

  .strip-number {
    width: 35px;
    height: 32px;
    border-radius: 11px;
    font-size: 8px;
  }

  .strip-number::after {
    inset: 3px;
    border-radius: 7px;
  }

  .hero-strip strong {
    font-size: 14px;
  }

  .hero-strip small {
    font-size: 9px;
  }

  .problem__grid,
  .method__inner,
  .faq__grid,
  .for-you__card {
    grid-template-columns: 1fr;
  }

  .problem__grid {
    gap: 60px;
  }

  .section-heading h2,
  .method h2,
  .final-cta h2 {
    font-size: clamp(42px, 11vw, 58px);
  }

  .section-heading p {
    font-size: 17px;
  }

  .memory-demo {
    min-height: 340px;
  }

  .memory-card {
    height: 245px;
    padding: 23px;
    border-radius: 31px;
  }

  .memory-card--front {
    inset-block-start: 66px;
  }

  .memory-card--front strong {
    margin-top: 27px;
    font-size: 47px;
  }

  .memory-card--front p {
    margin: 8px 0 18px;
    font-size: 18px;
  }

  .section-heading--center {
    margin-bottom: 42px;
  }

  .steps-grid {
    width: calc(100vw - 17px);
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 8px 0 24px 17px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .steps-grid::-webkit-scrollbar {
    display: none;
  }

  .step-card {
    width: min(82vw, 320px);
    min-width: min(82vw, 320px);
    min-height: 430px;
    scroll-snap-align: start;
  }

  .step-card__icon {
    margin-bottom: 52px;
  }

  .method__inner {
    gap: 48px;
  }

  .method__copy {
    text-align: center;
  }

  .method__copy p {
    margin-inline: auto;
  }

  .method__promise {
    margin-inline: auto;
  }

  .method-demo {
    padding: 19px;
    border-radius: 29px;
  }

  .method-demo__head strong,
  .method-result__copy strong {
    font-size: 17px;
  }

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

  .recall-option {
    min-height: 74px;
  }

  .method-result {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 15px;
  }

  .method-result__date {
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
  }

  .method-schedule {
    gap: 5px;
    padding: 0;
  }

  .method-schedule span {
    min-width: 34px;
  }

  .method-schedule small {
    font-size: 7px;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 28px;
  }

  .showcase-controls {
    justify-content: center;
  }

  .screens-track {
    width: calc(100vw - 17px);
    gap: 16px;
    padding-inline-end: 0;
    padding-inline-start: 17px;
  }

  .screen-card {
    min-width: calc(100vw - 42px);
    min-height: 650px;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    gap: 15px;
    padding: 28px 23px 0;
    border-radius: 34px;
  }

  .screen-card__copy {
    align-self: auto;
    padding-top: 0;
    text-align: center;
  }

  .screen-card__copy h3 {
    margin-bottom: 7px;
    font-size: 31px;
  }

  .screen-card__copy p {
    max-width: 360px;
    margin-inline: auto;
    font-size: 14px;
  }

  .phone-frame--gallery {
    width: min(72vw, 285px);
    height: auto;
    aspect-ratio: 860 / 1760;
  }

  .learning-path {
    grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
    gap: 4px;
    padding: 12px 9px;
    border-radius: 999px;
  }

  .learning-path span {
    flex-direction: column;
    gap: 4px;
    font-size: 10px;
  }

  .learning-path b {
    width: 27px;
    height: 21px;
    font-size: 8px;
  }

  .learning-path .ui-arrow {
    width: 15px;
    height: 15px;
  }

  .learning-grid {
    width: calc(100vw - 17px);
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 8px 0 24px 17px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .learning-grid::-webkit-scrollbar {
    display: none;
  }

  .learning-card {
    width: min(82vw, 320px);
    min-width: min(82vw, 320px);
    min-height: 340px;
    scroll-snap-align: start;
  }

  .for-you__card {
    gap: 35px;
    padding: 42px 25px;
    border-radius: 36px;
  }

  .for-you__copy h2 {
    font-size: 40px;
  }

  .faq__grid {
    gap: 52px;
  }

  .faq summary {
    font-size: 18px;
  }

  .final-cta__card {
    padding: 60px 20px;
    border-radius: 39px;
  }

  .final-cta__card > img {
    width: 83px;
    height: 83px;
    border-radius: 25px;
  }

  .footer__top {
    grid-template-columns: 1fr auto;
    gap: 25px;
  }

  .footer__top p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 7px;
  }

  .mobile-store-bar {
    position: fixed;
    z-index: 80;
    inset-inline: 12px;
    inset-block-end: 11px;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 2px solid #fff;
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    box-shadow: 0 10px 35px rgba(23, 25, 24, 0.28);
    font-size: 15px;
    font-weight: 700;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .mobile-store-bar.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-store-bar svg {
    width: 22px;
    fill: currentColor;
  }
}

@keyframes draw-line-mobile {
  to { transform: scaleY(1); }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 43px;
  }

  .hero__proof {
    gap: 9px 12px;
    font-size: 12px;
  }

  .hero-note {
    padding: 8px 11px;
    font-size: 11px;
  }

  .hero-note--top {
    inset-inline-end: -10px;
  }

  .hero-note--bottom {
    inset-inline-start: -10px;
  }

  .screen-card {
    min-height: 610px;
  }
}

@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;
  }
}
