:root {
  --bg: #fbfaf6;
  --paper: #fffef9;
  --panel: #ffffff;
  --text: #0b1723;
  --muted: #60707d;
  --soft: #f0f5ef;
  --line: rgba(13, 32, 43, 0.1);
  --green: #0b8d72;
  --green-dark: #08725f;
  --blue: #2a72d8;
  --blue-soft: #edf4ff;
  --mint: #e8f6ef;
  --shadow: 0 26px 80px rgba(13, 32, 43, 0.12);
  --soft-shadow: 0 12px 32px rgba(13, 32, 43, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(135deg, rgba(232, 246, 239, 0.86), rgba(237, 244, 255, 0.82)),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body,
button,
input,
textarea,
select {
  font: 16px/1.45 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  padding: 0 20px;
  border-bottom: 1px solid rgba(13, 32, 43, 0.08);
  background: rgba(255, 254, 249, 0.9);
  backdrop-filter: blur(18px);
}

.brand,
.top-actions,
.language-switch,
nav,
.hero-actions,
.footer-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 9px;
  font-size: 18px;
  font-weight: 900;
  white-space: nowrap;
}

.brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

nav {
  display: none;
}

.top-actions {
  gap: 8px;
}

.language-switch {
  gap: 2px;
  min-height: 38px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
}

.language-switch button {
  min-width: 42px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.language-switch button.active {
  background: var(--text);
  color: #fff;
}

.button,
.store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  padding: 0 18px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.button-primary,
.primary-store {
  background: linear-gradient(180deg, #13a77f, var(--green-dark));
  color: #fff;
  box-shadow: 0 14px 30px rgba(8, 114, 95, 0.22);
}

.button-secondary,
.store-button {
  border-color: rgba(13, 32, 43, 0.18);
  background: rgba(255, 255, 255, 0.86);
  color: #102033;
}

.compact-button {
  display: none;
}

.section-pad {
  padding: 54px 20px;
}

.hero {
  padding-top: 36px;
}

.hero-grid {
  display: grid;
  gap: 28px;
}

.hero-copy {
  display: grid;
  gap: 16px;
}

.eyebrow,
.micro-label {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  min-height: 24px;
  align-items: center;
  border-radius: 999px;
  padding: 0 10px;
  background: var(--mint);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 950;
  white-space: nowrap;
}

h1 {
  display: grid;
  gap: 2px;
  max-width: 360px;
  font-size: 48px;
  line-height: 0.98;
  font-weight: 950;
}

h1 span {
  white-space: nowrap;
}

.accent-line {
  color: var(--green);
}

.lead {
  max-width: 280px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 10px;
}

.dual-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 280px;
}

.dual-cards article {
  min-height: 78px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--soft-shadow);
}

.dual-cards article:nth-child(2) {
  border-color: rgba(42, 114, 216, 0.22);
  background: #f7faff;
}

.dual-cards strong,
.dual-cards span {
  display: block;
  white-space: nowrap;
}

.dual-cards strong {
  font-size: 15px;
}

.dual-cards span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

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

.loop-card {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 98px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  width: min(100%, 330px);
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--soft-shadow);
}

.loop-ring {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border: 12px solid rgba(11, 141, 114, 0.16);
  border-top-color: var(--green);
  border-right-color: var(--blue);
  border-radius: 999px;
  text-align: center;
}

.loop-ring strong {
  display: block;
  font-size: 26px;
  line-height: 1;
  white-space: nowrap;
}

.loop-ring span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  white-space: nowrap;
}

.loop-card > div:last-child strong,
.loop-card > div:last-child span {
  display: block;
  white-space: nowrap;
}

.loop-card > div:last-child strong {
  color: var(--green);
  font-size: 13px;
}

.loop-card > div:last-child span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
}

.visual-photo {
  position: absolute;
  inset: 94px 0 0 38px;
  overflow: hidden;
  border-radius: 8px;
  background: #f2eee8;
  box-shadow: var(--shadow);
}

.visual-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-preview {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 132px;
  height: 286px;
  overflow: hidden;
  border: 7px solid #111820;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 22px 52px rgba(13, 32, 43, 0.28);
}

.phone-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 660px;
}

.section-heading.center {
  margin: 0 auto;
  text-align: center;
}

.section-heading.center .eyebrow {
  margin: 0 auto;
}

h2 {
  font-size: 34px;
  line-height: 1.04;
  font-weight: 950;
}

.section-heading > p:not(.eyebrow),
.family-content > p:not(.eyebrow),
.download-section > div > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.product-grid,
.growth-grid,
.family-section,
.download-section {
  display: grid;
  gap: 22px;
  margin-top: 28px;
}

.app-budget-list,
.product-copy,
.growth-grid,
.mode-grid,
.family-list,
.trust-grid,
.price-grid,
.download-notes {
  display: grid;
  gap: 12px;
}

.app-budget-list article,
.product-copy article,
.growth-card,
.mode-grid article,
.family-list article,
.trust-grid article,
.price-grid article,
.download-notes article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--soft-shadow);
}

.app-budget-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px;
  align-items: center;
  gap: 12px;
  padding: 14px;
}

.app-budget-list strong,
.app-budget-list span,
.app-budget-list b {
  display: block;
  white-space: nowrap;
}

.app-budget-list strong {
  font-size: 15px;
}

.app-budget-list span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.app-budget-list b {
  text-align: right;
  font-size: 16px;
}

.app-budget-list i {
  display: block;
  width: 100%;
  height: 7px;
  margin-top: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: #e9eef3;
}

.app-budget-list i::before {
  display: block;
  width: var(--progress);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--blue));
  content: "";
}

.product-copy article,
.growth-card,
.family-list article,
.trust-grid article,
.download-notes article {
  padding: 16px;
}

.product-copy strong,
.growth-card strong,
.family-list strong,
.trust-grid strong,
.download-notes strong {
  display: block;
  font-size: 16px;
}

.product-copy p,
.growth-card p,
.family-list span,
.trust-grid p,
.download-notes p {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.growth-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(232, 246, 239, 0.52));
}

.growth-grid {
  grid-template-columns: 1fr;
}

.growth-card {
  display: grid;
  align-content: start;
  min-height: 190px;
  position: relative;
  overflow: hidden;
}

.growth-card::after {
  position: absolute;
  right: -32px;
  bottom: -36px;
  width: 118px;
  height: 118px;
  border: 22px solid rgba(11, 141, 114, 0.12);
  border-radius: 999px;
  content: "";
}

.growth-card-primary {
  background: linear-gradient(135deg, rgba(11, 141, 114, 0.96), rgba(42, 114, 216, 0.78));
  color: #fff;
}

.growth-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  white-space: nowrap;
}

.growth-card-primary span,
.growth-card-primary p {
  color: rgba(255, 255, 255, 0.78);
}

.growth-card strong {
  position: relative;
  z-index: 1;
  max-width: 330px;
  font-size: 22px;
  line-height: 1.12;
}

.growth-card p {
  position: relative;
  z-index: 1;
  max-width: 340px;
  margin-top: 10px;
}

.growth-card a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 38px;
  margin-top: 18px;
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.growth-card:not(.growth-card-primary) a {
  background: var(--text);
  color: #fff;
}

.challenge-dots {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  position: relative;
  z-index: 1;
  margin-top: 20px;
}

.challenge-dots i {
  height: 10px;
  border-radius: 999px;
  background: var(--soft);
}

.challenge-dots i:nth-child(-n + 4) {
  background: var(--green);
}

.modes-section {
  background: rgba(255, 255, 255, 0.34);
}

.mode-grid {
  margin-top: 24px;
}

.mode-grid article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  padding: 16px;
}

.mode-grid b {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--green);
}

.mode-grid .child-mode b {
  background: var(--blue-soft);
  color: var(--blue);
}

.mode-grid b {
  grid-row: 1 / span 2;
}

.mode-grid strong,
.mode-grid p {
  display: block;
  grid-column: 2;
}

.mode-grid strong {
  font-size: 16px;
  white-space: nowrap;
}

.mode-grid p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.36;
}

.family-media {
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1.24;
  background: #f2eee8;
  box-shadow: var(--shadow);
}

.family-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.family-content {
  display: grid;
  gap: 12px;
}

.trust-section {
  background: rgba(255, 255, 255, 0.32);
}

.pricing-section {
  background: rgba(255, 254, 249, 0.62);
}

.price-grid {
  margin-top: 26px;
}

.price-grid article {
  position: relative;
  padding: 20px;
}

.price-grid article > strong,
.price-line b,
.price-line span {
  white-space: nowrap;
}

.price-grid article > strong {
  font-size: 18px;
}

.price-line {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
}

.price-line b {
  font-size: 36px;
  line-height: 1;
}

.price-line span,
.price-grid p {
  color: var(--muted);
  font-size: 13px;
}

.price-grid p {
  margin-top: 12px;
}

.highlight-plan {
  border-color: rgba(8, 114, 95, 0.36) !important;
  background: linear-gradient(135deg, #fff, #eef9f4) !important;
}

.highlight-plan em {
  position: absolute;
  top: 18px;
  right: 18px;
  border-radius: 999px;
  padding: 5px 9px;
  background: var(--green);
  color: #fff;
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
  white-space: nowrap;
}

.download-section {
  align-items: start;
  margin: 0;
}

.download-panel {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--soft-shadow);
}

.qr {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
  width: 110px;
  height: 110px;
  padding: 9px;
  border-radius: 8px;
  background: #f3f6f7;
  color: #15212c;
}

.qr i {
  border-radius: 2px;
  background: currentColor;
}

.qr i:nth-child(3n),
.qr i:nth-child(4n + 1),
.qr i:nth-child(7n + 2) {
  opacity: 0.18;
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.store-button {
  min-width: 120px;
}

.download-status {
  min-height: 20px;
  color: var(--muted);
  font-size: 13px;
}

.footer {
  display: grid;
  gap: 14px;
  padding: 28px 20px 36px;
  border-top: 1px solid rgba(13, 32, 43, 0.08);
  background: rgba(255, 254, 249, 0.82);
}

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

.footer-links {
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

html[lang="en"] h1 {
  font-size: 42px;
}

@media (min-width: 760px) {
  .compact-button {
    display: inline-flex;
  }

  .section-pad {
    padding: 72px 48px;
  }

  .topbar {
    padding: 0 48px;
  }

  .hero-grid,
  .product-grid,
  .family-section,
  .download-section {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: 44px;
  }

  .hero {
    padding-top: 58px;
  }

  h1 {
    max-width: 520px;
    font-size: 66px;
  }

  html[lang="en"] h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 44px;
  }

  .lead,
  .dual-cards {
    max-width: 380px;
  }

  .hero-visual {
    min-height: 560px;
  }

  .visual-photo {
    inset: 72px 0 20px 72px;
  }

  .phone-preview {
    width: 164px;
    height: 354px;
  }

  .mode-grid,
  .growth-grid,
  .trust-grid,
  .price-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .footer {
    grid-template-columns: auto minmax(220px, 1fr) auto;
    align-items: center;
    padding: 34px 48px;
  }
}

@media (min-width: 1120px) {
  nav {
    display: flex;
    gap: 30px;
    color: #24323e;
    font-size: 13px;
    font-weight: 900;
  }

  nav a {
    white-space: nowrap;
  }

  .topbar {
    padding: 0 72px;
  }

  .section-pad {
    padding: 82px 72px;
  }

  .hero-grid,
  .product-grid,
  .family-section,
  .download-section {
    max-width: 1360px;
    margin-left: auto;
    margin-right: auto;
  }

  h1 {
    font-size: 76px;
  }

  html[lang="en"] h1 {
    font-size: 64px;
  }

  .hero-visual {
    min-height: 620px;
  }

  .loop-card {
    margin-left: 20px;
  }

  .phone-preview {
    width: 190px;
    height: 410px;
  }

  .visual-photo {
    inset: 76px 0 18px 90px;
  }

  .section-heading.center,
  .price-grid,
  .mode-grid,
  .trust-grid {
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
  }

  .app-budget-list {
    max-width: 560px;
  }
}
