:root {
  --ink: #17211b;
  --muted: #5f6f66;
  --paper: #fffaf0;
  --soft: #f2f7ed;
  --line: #dce6d9;
  --green: #2f8f63;
  --green-dark: #176142;
  --orange: #f0a33a;
  --blue: #3979b8;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(23, 33, 27, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

a {
  color: inherit;
}

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 250, 240, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  text-decoration: none;
}

.mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--green);
  color: var(--white);
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 15px;
}

.nav-links a {
  text-decoration: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 0;
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(47, 143, 99, 0.24);
}

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

.button.secondary {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}

.download-label {
  display: inline-flex;
  margin-top: 24px;
  padding: 6px 10px;
  border-radius: 6px;
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.download-actions {
  margin-top: 10px;
}

.button.android-download {
  min-height: 54px;
  padding-inline: 22px;
  background: var(--ink);
  font-size: 17px;
  box-shadow: 0 12px 24px rgba(24, 36, 31, 0.24);
}

.button.android-download:hover {
  background: var(--green-dark);
}

.download-note {
  max-width: 620px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.hero {
  padding: 70px 0 42px;
  background:
    linear-gradient(140deg, rgba(47, 143, 99, 0.13), transparent 44%),
    linear-gradient(45deg, rgba(240, 163, 58, 0.16), transparent 48%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 44px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--green-dark);
  font-weight: 800;
  font-size: 14px;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(42px, 6vw, 72px);
}

h2 {
  font-size: clamp(30px, 4vw, 46px);
  margin-bottom: 14px;
}

h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.lead {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 20px;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 14px;
}

.pill {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.phone-wrap {
  display: flex;
  justify-content: center;
}

.phone {
  width: min(380px, 100%);
  border-radius: 34px;
  padding: 14px;
  background: #1b2921;
  box-shadow: var(--shadow);
}

.screen {
  min-height: 680px;
  overflow: hidden;
  border-radius: 25px;
  background: var(--soft);
  padding: 20px;
}

.screen-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  font-weight: 800;
}

.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--orange);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.metric-main {
  padding: 18px;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--blue));
}

.big-number {
  display: block;
  margin-top: 8px;
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
}

.progress {
  height: 10px;
  margin-top: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  overflow: hidden;
}

.progress span {
  display: block;
  width: 68%;
  height: 100%;
  background: var(--orange);
}

.mini-grid,
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mini-grid {
  margin-top: 12px;
}

.mini-card,
.coach-card,
.challenge-card,
.panel,
.feature,
.mock-screen {
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
}

.mini-card,
.coach-card,
.challenge-card {
  padding: 15px;
}

.coach-card,
.challenge-card {
  margin-top: 12px;
}

.label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.value {
  display: block;
  margin-top: 4px;
  font-size: 24px;
  font-weight: 900;
}

.coach-line {
  margin: 8px 0 0;
  font-weight: 800;
}

.days {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin-top: 10px;
}

.day {
  display: grid;
  place-items: center;
  height: 32px;
  border-radius: 8px;
  background: var(--soft);
  font-weight: 800;
  font-size: 12px;
}

.day.done {
  background: var(--green);
  color: var(--white);
}

section,
.page {
  padding: 78px 0;
}

.band {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-head p,
.panel p,
.feature span,
.muted {
  color: var(--muted);
}

.section-head p,
.panel p {
  font-size: 18px;
}

.panel {
  padding: 26px;
}

.band .panel {
  background: var(--soft);
}

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

.image-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.photo-card {
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
}

.photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.photo-card div {
  padding: 14px;
}

.photo-card strong {
  display: block;
  margin-bottom: 4px;
}

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

.feature {
  min-height: 132px;
  padding: 18px;
}

.icon {
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--soft);
  color: var(--green-dark);
  font-weight: 900;
}

.feature strong {
  display: block;
  margin-bottom: 5px;
}

.modes {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.mode {
  padding: 18px 14px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  text-align: center;
  font-weight: 900;
}

.mode.active {
  background: var(--green);
  color: var(--white);
}

.quote {
  margin-top: 18px;
  padding: 24px;
  border-radius: 8px;
  color: var(--white);
  background: #1f3328;
  font-size: 24px;
  font-weight: 900;
}

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

.mock {
  min-height: 300px;
  padding: 18px;
  border-radius: 18px;
  background: #1b2921;
  color: var(--white);
  box-shadow: 0 16px 40px rgba(23, 33, 27, 0.14);
}

.mock-screen {
  height: 100%;
  min-height: 264px;
  padding: 16px;
  background: var(--soft);
  color: var(--ink);
}

.list {
  display: grid;
  gap: 9px;
  margin-top: 14px;
}

.list span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 10px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  font-weight: 800;
}

.fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.field {
  padding: 12px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  font-weight: 800;
}

.notice {
  margin-top: 18px;
  padding: 14px;
  border-radius: 8px;
  background: #fff4df;
  border: 1px solid #f2cf91;
  color: #684314;
  font-weight: 700;
}

.cta {
  text-align: center;
  color: var(--white);
  background: #1f3328;
}

.cta p {
  max-width: 680px;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
}

.legal h2 {
  margin-top: 34px;
  font-size: 26px;
}

.legal p {
  color: var(--muted);
  font-size: 17px;
}

footer {
  padding: 24px 0;
  background: #17211b;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.visitor-counter {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.78);
}

.visitor-counter strong {
  min-width: 34px;
  color: var(--white);
  font-size: 17px;
  font-variant-numeric: tabular-nums;
}

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

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

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

  .image-strip {
    grid-template-columns: 1fr;
  }
}

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

  h1 {
    font-size: 42px;
  }

  .features,
  .fields,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  section,
  .page {
    padding: 56px 0;
  }
}
