:root {
  --bg: #f4f6ef;
  --bg-alt: #e8efe3;
  --surface: rgba(255, 255, 255, 0.78);
  --text: #173126;
  --muted: #5a6f65;
  --line: rgba(23, 49, 38, 0.12);
  --primary: #1b7f5b;
  --primary-strong: #126347;
  --secondary: #dcebc6;
  --shadow: 0 24px 60px rgba(23, 49, 38, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(197, 233, 178, 0.65), transparent 28%),
    radial-gradient(circle at top right, rgba(124, 210, 176, 0.4), transparent 24%),
    linear-gradient(180deg, #f7faf3 0%, var(--bg) 42%, #f3f4ee 100%);
}

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

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

.hero,
.policy-header {
  padding-bottom: 36px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
}

.brand {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 0.96rem;
}

.hero-content {
  width: min(1120px, calc(100% - 32px));
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.hero-copy,
.hero-card,
.download-card,
.feature-card,
.screen-card,
.policy section {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  border-radius: 28px;
}

.hero-copy {
  padding: 38px;
}

.hero-card {
  padding: 22px;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--primary);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  max-width: 16ch;
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.hero-text,
.section-text,
.feature-card p,
.screen-card p,
.download-card p,
.policy p,
.policy li {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 54ch;
  margin: 18px 0 0;
  font-size: 1.02rem;
}

.cta-row,
.store-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
}

.button.primary {
  background: var(--primary);
  color: #f6fbf7;
}

.button.primary:hover {
  background: var(--primary-strong);
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.hero-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.94rem;
}

.phone-shell {
  border-radius: 24px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(239, 245, 236, 0.82)),
    var(--bg-alt);
  border: 1px solid rgba(23, 49, 38, 0.09);
  min-height: 450px;
}

.phone-header,
.section-label {
  display: flex;
  justify-content: space-between;
  font-weight: 800;
}

.phone-header {
  margin-bottom: 18px;
}

.phone-section {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  padding: 16px;
  border: 1px solid rgba(23, 49, 38, 0.08);
}

.phone-section + .phone-section {
  margin-top: 14px;
}

.phone-section.accent {
  background: linear-gradient(180deg, rgba(220, 235, 198, 0.94), rgba(210, 233, 222, 0.78));
}

.mini-list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.mini-list.compact {
  list-style: none;
  padding-left: 0;
}

.section {
  padding: 26px 0;
}

.section-heading {
  margin-bottom: 20px;
}

.feature-grid,
.screen-grid {
  display: grid;
  gap: 18px;
}

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

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

.shots {
  align-items: stretch;
}

.feature-card,
.screen-card {
  padding: 22px;
}

.shot-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.shot-placeholder {
  min-height: 260px;
  border-radius: 20px;
  border: 1px dashed rgba(23, 49, 38, 0.18);
  background:
    linear-gradient(135deg, rgba(220, 235, 198, 0.55), rgba(255, 255, 255, 0.88));
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
  font-weight: 700;
}

.alt {
  background: linear-gradient(180deg, rgba(220, 235, 198, 0.18), transparent);
}

.download-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 32px 0 44px;
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.policy-hero {
  width: min(860px, calc(100% - 32px));
  margin: 38px auto 0;
}

.policy-hero h1 {
  max-width: none;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.policy {
  display: grid;
  gap: 18px;
  padding-bottom: 32px;
}

.policy section {
  padding: 24px;
}

.policy h2 {
  max-width: none;
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.policy ul {
  margin: 0;
  padding-left: 18px;
}

@media (max-width: 860px) {
  .hero-content,
  .download-card,
  .feature-grid,
  .screen-grid,
  .footer {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero-copy,
  .hero-card,
  .download-card {
    padding: 24px;
  }
}
