:root {
  --ink: #080b1d;
  --muted: #444960;
  --soft: #f6f4ff;
  --soft-blue: #eef7ff;
  --soft-green: #edfbed;
  --purple: #6e50f5;
  --purple-dark: #563ee6;
  --purple-soft: #b99cff;
  --green: #75d980;
  --line: #eceaf4;
  --shadow: 0 22px 60px rgba(51, 43, 111, 0.12);
  --inner-shadow: 0 14px 34px rgba(65, 53, 133, 0.1);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(133, 99, 255, 0.08), transparent 30rem),
    #ffffff;
  color: var(--ink);
  font-family: Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

button,
input {
  font: inherit;
}

.site-frame {
  width: min(92vw, 1160px);
  margin: 6px auto 20px;
  overflow: hidden;
  border: 1px solid #dedde5;
  border-radius: 64px;
  background: #fff;
  box-shadow: 0 8px 34px rgba(22, 22, 35, 0.05);
}

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 116px;
  padding: 0 66px;
  background: rgba(255, 255, 255, 0.78);
}

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

.brand__mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(145deg, #9b76ff, #643fee);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.16);
  clip-path: polygon(50% 0, 93% 14%, 87% 70%, 50% 100%, 13% 70%, 7% 14%);
}

.brand__shield {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px 8px 10px 10px;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  transform: translateY(-1px);
}

.brand__name {
  font-size: 35px;
  line-height: 1;
}

.brand__name span {
  color: var(--purple);
}

.menu-button {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  padding: 7px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 27px;
  height: 3px;
  border-radius: 999px;
  background: #222640;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.site-menu {
  position: absolute;
  top: 90px;
  right: 58px;
  display: grid;
  min-width: 210px;
  gap: 4px;
  padding: 14px;
  border: 1px solid rgba(116, 93, 222, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--inner-shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.site-menu a {
  padding: 11px 14px;
  border-radius: 14px;
  color: #252a42;
  font-size: 15px;
  font-weight: 750;
}

.site-menu a:hover,
.site-menu a:focus-visible {
  background: var(--soft);
  outline: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(470px, 0.98fr) minmax(430px, 1fr);
  min-height: 610px;
  padding: 66px 0 0 66px;
  background:
    linear-gradient(90deg, rgba(255, 247, 249, 0.9), rgba(251, 248, 255, 0.95) 48%, rgba(239, 231, 255, 0.86)),
    #fcf9ff;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 520px;
}

.hero h1,
.section-space h2,
.feature-panel h2,
.access-panel h2 {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.14;
}

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

.hero h1 span,
.assistant-section h2 span {
  color: var(--purple);
}

.hero__content p {
  margin: 30px 0 0;
  color: #15192b;
  font-size: 20px;
  font-weight: 520;
  line-height: 1.48;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0 36px;
  border: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, #754ff6, #5743e6);
  box-shadow: 0 12px 24px rgba(88, 65, 230, 0.22);
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  font-weight: 860;
  line-height: 1.1;
  transition: transform 180ms ease, box-shadow 180ms ease;
  white-space: nowrap;
}

.primary-button:hover {
  box-shadow: 0 15px 28px rgba(88, 65, 230, 0.28);
  transform: translateY(-1px);
}

.hero .primary-button {
  width: 355px;
  margin-top: 32px;
}

.hero__note {
  width: 355px;
  max-width: 100%;
  margin: 21px 0 0 !important;
  text-align: center;
  font-size: 17px !important;
  line-height: 1.4 !important;
}

.hero__visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.hero__blob {
  position: absolute;
  right: -64px;
  bottom: 0;
  width: 560px;
  height: 548px;
  border-radius: 46% 0 0 0;
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.74), transparent 18rem),
    linear-gradient(135deg, #d9c8ff 0%, #a98af5 64%, #eee5ff 100%);
}

.family-photo {
  position: absolute;
  overflow: hidden;
  margin: 0;
  background: #f5efff;
}

.family-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.family-photo--hero {
  right: -8px;
  bottom: 0;
  width: 430px;
  height: 520px;
  border-radius: 190px 0 0 0;
}

.family-photo--hero img {
  object-position: 61% 54%;
}

.family-photo--footer {
  position: relative;
  inset: auto;
  width: 390px;
  height: 218px;
  border-radius: 130px 44px 44px 0;
}

.family-photo--footer img {
  object-position: 52% 52%;
}

.screen-card,
.ai-tip,
.soft-card,
.feature-panel,
.compare-table,
.insight-list article,
.access-panel {
  border: 1px solid rgba(205, 203, 219, 0.72);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--inner-shadow);
  backdrop-filter: blur(12px);
}

.screen-card--time {
  position: absolute;
  top: 50px;
  left: 72px;
  z-index: 5;
  width: 242px;
  min-height: 338px;
  padding: 24px 24px 20px;
  border-radius: 20px;
}

.screen-card__eyebrow,
.screen-card__label,
.screen-card__sub {
  display: block;
  color: #8d91a6;
  font-size: 12px;
  font-weight: 700;
}

.screen-card__label {
  margin-top: 17px;
}

.screen-card strong {
  display: block;
  margin-top: 13px;
  color: #00030e;
  font-size: 29px;
  line-height: 1;
}

.screen-card__sub {
  margin-top: 8px;
}

.progress-ring {
  position: absolute;
  top: 78px;
  right: 24px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: conic-gradient(var(--purple) 0 68%, #e2dcff 68% 100%);
}

.progress-ring::after {
  position: absolute;
  inset: 9px;
  content: "";
  border-radius: 50%;
  background: #fff;
}

.screen-card ul,
.phone-list {
  display: grid;
  gap: 20px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.screen-card li,
.phone-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #15192b;
  font-size: 13px;
  font-weight: 780;
}

.screen-card li b,
.phone-list li b {
  margin-left: auto;
  color: #303449;
  font-size: 12px;
  font-weight: 600;
}

.app {
  display: inline-grid;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  place-items: center;
  border-radius: 6px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.app--youtube {
  background: #ff202b;
}

.app--youtube::before {
  content: "▶";
  font-size: 10px;
}

.app--games,
.app--social {
  background: linear-gradient(145deg, #805cff, #4f45dc);
}

.app--games::before {
  content: "◓";
}

.app--tiktok {
  background: #090b14;
}

.app--tiktok::before {
  content: "♪";
}

.app--social::before {
  content: "◫";
}

.app--learning {
  background: #ffc94d;
}

.app--learning::before {
  content: "★";
}

.ai-tip {
  position: absolute;
  bottom: 17px;
  left: 18px;
  z-index: 6;
  display: grid;
  grid-template-columns: 46px 1fr;
  width: 272px;
  min-height: 104px;
  gap: 12px;
  padding: 17px;
  border-radius: 22px;
}

.ai-tip__icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 3px solid #56b45e;
  border-radius: 50%;
  background: #e4fae8;
  color: #429b4a;
  font-size: 23px;
  font-weight: 900;
}

.ai-tip span {
  display: block;
  color: #4db05b;
  font-size: 12px;
  font-weight: 760;
}

.ai-tip p {
  margin: 4px 0 0;
  color: #0c1020;
  font-size: 14px;
  font-weight: 780;
  line-height: 1.27;
}

.section-space {
  padding: 39px 42px 0;
}

.section-space h2,
.feature-panel h2,
.access-panel h2 {
  font-size: clamp(25px, 3vw, 34px);
  text-align: center;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 49px;
}

.soft-card {
  min-height: 136px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% -16px, rgba(156, 124, 255, 0.22), transparent 4rem),
    linear-gradient(135deg, rgba(245, 242, 255, 0.96), rgba(255, 255, 255, 0.86));
}

.problem-card {
  position: relative;
  display: grid;
  grid-template-rows: 1fr;
  align-items: start;
  justify-items: center;
  padding: 48px 18px 18px;
  text-align: center;
}

.problem-card--cream {
  background:
    radial-gradient(circle at 50% -16px, rgba(255, 205, 84, 0.22), transparent 4rem),
    linear-gradient(135deg, rgba(255, 251, 237, 0.98), rgba(255, 255, 255, 0.88));
}

.problem-card__icon {
  position: absolute;
  top: -25px;
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border-radius: 22px;
  background: linear-gradient(145deg, #f4f1ff, #ffffff);
  box-shadow: 0 11px 24px rgba(74, 59, 140, 0.13);
  color: #6d51ec;
  font-size: 41px;
  font-weight: 900;
}

.problem-card__icon--warm {
  background: linear-gradient(145deg, #fff5d8, #ffffff);
  color: #f2b333;
}

.problem-card__icon--lock {
  color: #d99619;
}

.problem-card h3 {
  display: grid;
  min-height: 62px;
  align-items: start;
  margin: 0;
  font-size: 16px;
  font-weight: 880;
  line-height: 1.28;
}

.steps-section {
  padding-top: 46px;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(100%, 100%);
  gap: 74px;
  padding: 0;
  margin: 31px auto 0;
  list-style: none;
}

.steps::before {
  position: absolute;
  top: 51px;
  left: 18%;
  right: 18%;
  height: 4px;
  content: "";
  background: repeating-linear-gradient(90deg, #d6d0f1 0 8px, transparent 8px 18px);
}

.steps li {
  position: relative;
  display: grid;
  min-height: 118px;
  justify-items: center;
  align-content: center;
  padding: 22px 16px 16px;
  border-radius: 62px 62px 28px 28px;
  background: linear-gradient(135deg, rgba(244, 242, 255, 0.95), rgba(255, 255, 255, 0.85));
  text-align: center;
}

.step-number {
  position: absolute;
  top: -4px;
  left: 0;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 17px;
  font-weight: 900;
}

.step-number--purple {
  background: var(--purple);
}

.step-icon {
  color: var(--purple);
  font-size: 37px;
  line-height: 1;
}

.steps strong {
  display: grid;
  min-height: 38px;
  align-items: center;
  max-width: 190px;
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.22;
}

.steps-section__caption {
  margin: 20px 0 0;
  color: #373c55;
  text-align: center;
  font-size: 18px;
  line-height: 1.36;
}

.feature-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  min-height: 455px;
  margin: 33px 42px 0;
  overflow: hidden;
  border-radius: 36px;
  background:
    radial-gradient(circle at 88% 84%, rgba(111, 220, 143, 0.24), transparent 12rem),
    radial-gradient(circle at 80% 105%, rgba(137, 93, 255, 0.27), transparent 14rem),
    linear-gradient(120deg, #f6faff, #ffffff 52%, #f4f0ff);
}

.feature-panel__copy {
  padding: 31px 0 26px 64px;
}

.feature-panel h2 {
  text-align: left;
}

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

.check-list li {
  position: relative;
  padding-left: 35px;
  color: #15192b;
  font-size: 19px;
  font-weight: 560;
}

.check-list li::before,
.privacy-note::before {
  position: absolute;
  left: 0;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  content: "✓";
  font-size: 15px;
  font-weight: 900;
}

.phone-mockup {
  position: relative;
  align-self: end;
  justify-self: center;
  width: 265px;
  height: 424px;
  margin: 0 18px -8px 0;
  border: 8px solid #3b3d44;
  border-bottom-width: 12px;
  border-radius: 42px;
  background: #f7f7fa;
  box-shadow: -14px 22px 36px rgba(18, 20, 35, 0.22);
  transform: rotate(9deg);
}

.phone-mockup::before {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 62px;
  height: 8px;
  content: "";
  border-radius: 999px;
  background: #c9cbd3;
  transform: translateX(-50%);
}

.phone-mockup__screen {
  height: 100%;
  overflow: hidden;
  padding: 22px 15px 0;
  border-radius: 32px;
  background: #fff;
}

.phone-mockup__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 900;
}

.child-card {
  display: grid;
  grid-template-columns: 45px 1fr auto;
  gap: 9px;
  align-items: center;
  padding: 14px;
  margin-top: 17px;
  border-radius: 18px;
  background: linear-gradient(130deg, #eefce9, #fff);
}

.avatar {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 50%;
  background: #94df87;
  font-size: 26px;
}

.child-card strong,
.usage-card strong {
  display: block;
  font-size: 15px;
}

.child-card small,
.usage-card small {
  display: block;
  color: #7d8295;
  font-size: 10px;
  font-weight: 700;
}

.child-card em {
  color: #45af51;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.usage-card {
  padding: 12px;
  margin-top: 12px;
  border: 1px solid #eeeef5;
  border-radius: 17px;
}

.usage-card strong span {
  color: #9da0af;
  font-size: 11px;
}

.usage-bar {
  height: 10px;
  margin-top: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: #edeef5;
}

.usage-bar span {
  display: block;
  width: 62%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--purple), #7bd873);
}

.phone-list {
  gap: 14px;
  margin-top: 18px;
}

.phone-list li {
  padding: 10px;
  border: 1px solid #f0eff6;
  border-radius: 15px;
  background: #fff;
}

.phone-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  margin-top: 17px;
  color: #9093a3;
  text-align: center;
  font-size: 9px;
  font-weight: 760;
}

.phone-tabs strong {
  color: var(--purple);
}

.compare-section {
  padding-top: 46px;
}

.compare-table {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 88px 1fr;
  align-items: stretch;
  max-width: 1000px;
  min-height: 202px;
  padding: 19px;
  margin: 25px auto 0;
  border-radius: 33px;
  background:
    linear-gradient(90deg, rgba(248, 244, 255, 0.88), #fff 50%, rgba(249, 246, 255, 0.88));
}

.compare-column {
  display: grid;
  grid-template-rows: repeat(5, 1fr);
  overflow: hidden;
  border-radius: 14px;
}

.compare-column div {
  display: grid;
  place-items: center;
  min-height: 39px;
  border-bottom: 1px solid #eeeef4;
  background: rgba(255, 255, 255, 0.76);
  color: #15192b;
  text-align: center;
  font-size: 15px;
  font-weight: 540;
}

.compare-column div:last-child {
  border-bottom: 0;
}

.compare-head {
  font-weight: 900 !important;
}

.compare-column--ours .compare-head,
.compare-column--ours div:not(.compare-head) {
  color: #209d34;
  font-weight: 790;
}

.compare-column--ours .compare-head {
  color: var(--purple);
}

.compare-vs {
  align-self: center;
  justify-self: center;
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #f4efff, #e7e2f5);
  color: #1e2237;
  font-size: 24px;
  font-weight: 950;
}

.assistant-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 455px;
  gap: 30px;
  align-items: center;
  padding: 42px 120px 0;
}

.assistant-section h2 {
  margin: 0;
  font-size: clamp(25px, 2.7vw, 32px);
  line-height: 1.14;
}

.assistant-intro {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 19px;
  align-items: center;
  margin-top: 25px;
}

.bot-icon {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(145deg, #eee7ff, #b9a5ff);
  color: var(--purple-dark);
  font-size: 38px;
}

.assistant-intro p {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
}

.insight-list {
  display: grid;
  gap: 15px;
}

.insight-list article {
  min-height: 61px;
  padding: 17px 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(245, 241, 255, 0.95), rgba(255, 255, 255, 0.86));
  color: #303449;
  font-size: 15px;
  font-weight: 620;
  line-height: 1.28;
}

.insight-list article:last-child {
  background: linear-gradient(135deg, rgba(232, 250, 236, 0.95), rgba(255, 255, 255, 0.9));
}

.access-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  align-items: end;
  min-height: 248px;
  margin: 38px 42px 20px;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 84% 17%, rgba(178, 144, 255, 0.34), transparent 10rem),
    linear-gradient(125deg, #fff, #fbf8ff 50%, #fff6ee);
}

.access-panel__copy {
  padding: 39px 0 28px 30px;
}

.access-panel h2 {
  text-align: left;
}

.access-panel p {
  max-width: 530px;
  margin: 18px 0 0;
  color: #14182b;
  font-size: 17px;
  line-height: 1.42;
}

.access-form {
  display: grid;
  grid-template-columns: minmax(230px, 310px) minmax(230px, 1fr);
  gap: 17px;
  max-width: 610px;
  margin-top: 30px;
}

.access-form input {
  min-height: 58px;
  width: 100%;
  border: 1px solid #d8d8e4;
  border-radius: 16px;
  padding: 0 19px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-size: 16px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.access-form input:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(110, 80, 245, 0.14);
}

.access-form .primary-button {
  min-height: 58px;
  padding-inline: 21px;
  border-radius: 16px;
  font-size: 16px;
}

.privacy-note {
  position: relative;
  padding-left: 27px;
  color: #8b8fa1 !important;
  font-size: 13px !important;
}

.privacy-note::before {
  top: 1px;
  width: 15px;
  height: 15px;
  border-radius: 4px;
  background: #9a9daf;
  content: "▣";
  font-size: 8px;
}

.form-status {
  min-height: 20px;
  margin-top: 8px !important;
  color: #259d35 !important;
  font-weight: 760;
}

.access-art {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  min-height: 240px;
}

.heart {
  position: absolute;
  display: block;
  width: 26px;
  height: 26px;
  background: #e9c8ff;
  transform: rotate(45deg);
}

.heart::before,
.heart::after {
  position: absolute;
  width: 26px;
  height: 26px;
  content: "";
  border-radius: 50%;
  background: inherit;
}

.heart::before {
  left: -13px;
}

.heart::after {
  top: -13px;
}

.heart--one {
  top: 43px;
  left: 38px;
  opacity: 0.85;
}

.heart--two {
  right: 62px;
  top: 31px;
  width: 18px;
  height: 18px;
  opacity: 0.62;
}

.heart--two::before,
.heart--two::after {
  width: 18px;
  height: 18px;
}

.heart--two::before {
  left: -9px;
}

.heart--two::after {
  top: -9px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 980px) {
  .section-space {
    padding: 28px 42px 0;
  }

  .site-frame {
    width: calc(100vw - 32px);
    border-radius: 48px;
  }

  .site-header {
    height: 92px;
    padding: 0 42px;
  }

  .brand__name {
    font-size: 31px;
  }

  .hero {
    grid-template-columns: 330px minmax(0, 1fr);
    min-height: 400px;
    padding: 38px 0 0 42px;
  }

  .hero h1 {
    font-size: 31px;
  }

  .hero__content p {
    margin-top: 21px;
    font-size: 15px;
  }

  .hero .primary-button {
    width: 285px;
    min-height: 53px;
    margin-top: 23px;
    border-radius: 16px;
    font-size: 15px;
  }

  .hero__note {
    width: 285px;
    margin-top: 15px !important;
    font-size: 14px !important;
  }

  .hero__visual {
    min-height: 362px;
  }

  .hero__blob {
    height: 362px;
  }

  .family-photo--hero {
    right: -54px;
    width: 350px;
    height: 362px;
  }

  .family-photo--hero img {
    object-position: 62% 53%;
  }

  .screen-card--time {
    top: 30px;
    left: 14px;
    width: 198px;
    min-height: 270px;
    padding: 17px;
  }

  .screen-card strong {
    font-size: 25px;
  }

  .progress-ring {
    top: 72px;
    right: 18px;
    width: 62px;
    height: 62px;
  }

  .screen-card ul {
    gap: 15px;
    margin-top: 24px;
  }

  .ai-tip {
    bottom: 15px;
    left: -5px;
    width: 224px;
    min-height: 82px;
    padding: 13px;
  }

  .problem-grid {
    gap: 12px;
    margin-top: 35px;
  }

  .problem-card {
    min-height: 110px;
    padding: 44px 12px 15px;
  }

  .problem-card h3 {
    min-height: 52px;
    font-size: 13px;
  }

  .problem-card__icon {
    top: -22px;
    width: 62px;
    height: 62px;
    border-radius: 20px;
    font-size: 35px;
  }

  .steps-section {
    padding-top: 25px;
  }

  .steps {
    width: min(630px, 100%);
    gap: 42px;
    margin-top: 22px;
  }

  .steps li {
    min-height: 98px;
    padding: 18px 12px 12px;
  }

  .steps-section__caption {
    margin-top: 13px;
    font-size: 15px;
  }

  .feature-panel {
    grid-template-columns: minmax(0, 1fr) 300px;
    min-height: 320px;
    margin: 25px 28px 0;
  }

  .feature-panel__copy {
    padding: 27px 0 20px 42px;
  }

  .check-list {
    gap: 10px;
    margin-top: 22px;
  }

  .check-list li {
    font-size: 16px;
  }

  .phone-mockup {
    width: 202px;
    height: 302px;
    margin-bottom: -10px;
    border-width: 6px;
    border-bottom-width: 9px;
    border-radius: 35px;
  }

  .phone-mockup__screen {
    padding: 19px 12px 0;
    border-radius: 28px;
  }

  .phone-list {
    gap: 9px;
    margin-top: 11px;
  }

  .compare-section {
    padding-top: 30px;
  }

  .compare-table {
    min-height: 174px;
    padding: 14px;
    margin-top: 18px;
    border-radius: 28px;
    grid-template-columns: 1fr 72px 1fr;
  }

  .compare-column div {
    min-height: 32px;
    font-size: 13px;
  }

  .compare-vs {
    width: 60px;
    height: 60px;
    font-size: 19px;
  }

  .assistant-section {
    grid-template-columns: 1fr 365px;
    padding: 28px 72px 0;
  }

  .insight-list {
    gap: 10px;
  }

  .insight-list article {
    min-height: 49px;
    padding: 12px 18px;
    border-radius: 18px;
    font-size: 13px;
  }

  .access-panel {
    grid-template-columns: minmax(0, 1fr) 265px;
    min-height: 238px;
    margin: 28px 28px 16px;
  }

  .access-panel__copy {
    padding: 27px 0 20px 27px;
  }

  .access-panel p {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.35;
  }

  .access-form {
    grid-template-columns: minmax(160px, 205px) minmax(185px, 1fr);
    max-width: 410px;
    gap: 12px;
    margin-top: 18px;
  }

  .access-form input,
  .access-form .primary-button {
    min-height: 50px;
    font-size: 14px;
  }

  .access-form .primary-button {
    padding-inline: 12px;
    font-size: 13px;
  }

  .privacy-note {
    margin-top: 12px !important;
    font-size: 12px !important;
  }

  .family-photo--footer {
    right: -38px;
    width: 292px;
    height: 178px;
  }

  .family-photo--footer img {
    object-position: 49% 52%;
  }

}

@media (max-width: 720px) {
  body {
    background: #fff;
  }

  .site-frame {
    width: min(100vw - 22px, 430px);
    margin-top: 8px;
    border-radius: 34px;
  }

  .site-header {
    height: 76px;
    padding: 0 22px;
  }

  .brand__mark {
    width: 35px;
    height: 35px;
    border-radius: 12px;
  }

  .brand__shield {
    width: 18px;
    height: 18px;
    border-width: 1.5px;
    font-size: 16px;
  }

  .brand__name {
    font-size: 26px;
  }

  .menu-button {
    width: 33px;
    height: 33px;
  }

  .menu-button span {
    width: 23px;
    height: 2px;
  }

  .site-menu {
    top: 66px;
    right: 20px;
  }

  .hero {
    display: block;
    min-height: 0;
    padding: 28px 22px 0;
    background: linear-gradient(180deg, #fff, #fbf8ff 58%, #fff);
  }

  .hero__content {
    max-width: none;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.13;
  }

  .hero__content p {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.48;
  }

  .hero .primary-button {
    width: 100%;
    min-height: 55px;
  }

  .hero__note {
    max-width: none;
    margin-top: 16px !important;
    font-size: 14px !important;
  }

  .hero__visual {
    min-height: 380px;
    margin: 20px -22px 0;
  }

  .hero__blob {
    right: 0;
    bottom: 0;
    width: 100%;
    height: 255px;
    border-radius: 44% 44% 0 0;
  }

  .family-photo--hero {
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 300px;
    border-radius: 90px 90px 0 0;
  }

  .family-photo--hero img {
    object-position: 62% 64%;
  }

  .screen-card--time {
    top: 0;
    left: 22px;
    width: 178px;
    min-height: 220px;
    padding: 15px;
    border-radius: 17px;
  }

  .screen-card strong {
    font-size: 23px;
  }

  .progress-ring {
    top: 69px;
    right: 16px;
    width: 54px;
    height: 54px;
  }

  .progress-ring::after {
    inset: 7px;
  }

  .screen-card ul {
    gap: 12px;
    margin-top: 22px;
  }

  .screen-card li {
    gap: 8px;
    font-size: 11px;
  }

  .screen-card li b {
    font-size: 10px;
  }

  .ai-tip {
    left: 142px;
    bottom: 18px;
    width: 205px;
    grid-template-columns: 34px 1fr;
    padding: 13px;
    border-radius: 18px;
  }

  .ai-tip__icon {
    width: 29px;
    height: 29px;
    font-size: 18px;
  }

  .ai-tip p {
    font-size: 11px;
  }

  .section-space {
    padding: 35px 20px 0;
  }

  .section-space h2,
  .feature-panel h2,
  .access-panel h2 {
    font-size: 25px;
    line-height: 1.16;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 39px;
  }

  .soft-card {
    min-height: 94px;
    border-radius: 20px;
  }

  .problem-card {
    display: grid;
    grid-template-columns: 58px 1fr;
    align-content: center;
    align-items: center;
    justify-items: start;
    padding: 17px 18px;
    text-align: left;
  }

  .problem-card__icon {
    position: static;
    width: 48px;
    height: 48px;
    font-size: 28px;
  }

  .problem-card h3 {
    align-self: center;
    font-size: 15px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 28px;
  }

  .steps::before {
    top: 20px;
    bottom: 20px;
    left: 17px;
    right: auto;
    width: 3px;
    height: auto;
    background: linear-gradient(#cfcbef 50%, transparent 0) 0 0 / 3px 14px repeat-y;
  }

  .steps li {
    min-height: 92px;
    grid-template-columns: 54px 1fr;
    justify-items: start;
    align-content: center;
    padding: 16px;
    border-radius: 24px;
    text-align: left;
  }

  .step-number {
    top: -4px;
    left: -2px;
  }

  .step-icon {
    grid-row: 1;
    font-size: 32px;
  }

  .steps strong {
    min-height: auto;
    max-width: none;
    margin-top: 0;
    font-size: 15px;
  }

  .steps-section__caption {
    font-size: 15px;
  }

  .feature-panel {
    grid-template-columns: 1fr;
    min-height: 0;
    margin: 31px 16px 0;
    border-radius: 28px;
  }

  .feature-panel__copy {
    padding: 28px 22px 8px;
  }

  .check-list {
    gap: 13px;
  }

  .phone-mockup {
    width: 218px;
    height: 352px;
    margin: 12px auto -25px;
    transform: rotate(4deg);
  }

  .compare-section {
    padding-top: 39px;
  }

  .compare-table {
    grid-template-columns: 1fr;
    gap: 13px;
    padding: 16px;
    border-radius: 26px;
  }

  .compare-column {
    grid-template-rows: auto;
  }

  .compare-vs {
    width: 56px;
    height: 56px;
    font-size: 18px;
  }

  .assistant-section {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 36px 22px 0;
  }

  .assistant-intro {
    grid-template-columns: 58px 1fr;
  }

  .bot-icon {
    width: 58px;
    height: 58px;
    font-size: 30px;
  }

  .insight-list article {
    font-size: 14px;
  }

  .access-panel {
    grid-template-columns: 1fr;
    min-height: 0;
    margin: 30px 16px 16px;
    border-radius: 27px;
  }

  .access-panel__copy {
    padding: 28px 20px 0;
  }

  .access-panel p {
    font-size: 15px;
  }

  .access-form {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: none;
    margin-top: 23px;
  }

  .access-art {
    min-height: 198px;
    margin-top: 8px;
    justify-content: center;
  }

  .family-photo--footer {
    right: auto;
    width: 100%;
    height: 198px;
    border-radius: 90px 90px 26px 26px;
  }

  .family-photo--footer img {
    object-position: 50% 52%;
  }
}

@media (max-width: 390px) {
  .site-frame {
    width: calc(100vw - 14px);
  }

  .hero h1 {
    font-size: 31px;
  }

  .primary-button {
    white-space: normal;
  }

  .ai-tip {
    left: 130px;
    width: 190px;
  }

  .compare-column div {
    font-size: 14px;
  }
}
