:root {
  --bg: #fbfaf7;
  --text: #161616;
  --muted: #565656;
  --card: #ffffff;
  --border: rgba(0,0,0,0.08);
  --accent: #1f5c4c;
  --accent2: #123a31;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

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

.container {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand { font-weight: 700; letter-spacing: 0.2px; }
.brand.small { font-size: 14px; }

.nav { display: flex; gap: 16px; align-items: center; font-size: 14px; }

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

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  padding: 42px 0 18px;
  align-items: center;
}

.hero-right {
  display: flex;
  justify-content: flex-end;
}

.hero-shot {
  width: min(320px, 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(0,0,0,0.14);
}

.hero-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-image {
  width: 100%;
  max-width: 280px;
  border-radius: 26px;
  box-shadow: 0 22px 50px rgba(0,0,0,0.14);
  display: block;
  margin: 0 auto;
}

h1 {
  margin: 0 0 10px;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.05;
}

.lead { margin: 0 0 18px; font-size: 18px; color: var(--muted); }

.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin: 18px 0 10px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.7);
  font-weight: 600;
}

.btn.primary {
  background: var(--accent);
  color: white;
  border-color: transparent;
}
.btn.primary:hover { text-decoration: none; background: var(--accent2); }
.btn:hover { text-decoration: none; }

.fineprint { margin-top: 10px; font-size: 13px; color: var(--muted); }

.section { padding: 34px 0; }

h2 { margin: 0 0 12px; font-size: 26px; }
.muted { color: var(--muted); }

.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}
.grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}
.card.big { padding: 20px; font-size: 16px; }

.screens {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 280px));
  justify-content: center;
  gap: 28px;
  margin-top: 24px;
}

.screen-img {
  width: 100%;
  max-width: 280px;
  border-radius: 26px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
  background: white;
}

.store-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }
.store {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.7);
  font-weight: 600;
}
.store.disabled {
  opacity: 0.55;
  pointer-events: none;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 0 40px;
  border-top: 1px solid var(--border);
  margin-top: 20px;
}
.footer-right { display: flex; gap: 14px; font-size: 14px; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { justify-content: flex-start; }
  .hero-shot { width: min(300px, 100%); }
  .hero-image {
    max-width: 270px;
  }
  .grid3 { grid-template-columns: 1fr; }
  .grid2 { grid-template-columns: 1fr; }
  .screens { grid-template-columns: 1fr; }
  .nav { display: none; }
}