
:root {
  --green: #08653a;
  --green-2: #13965c;
  --green-soft: #ecfaf1;
  --green-soft-2: #d8f4e1;
  --bg: #f6fbf8;
  --panel: #ffffff;
  --text: #11273b;
  --soft: #4f6178;
  --muted: #71839b;
  --line: #dde7e2;
  --shadow: 0 24px 60px rgba(6, 64, 34, .10);
  --radius-lg: 32px;
  --radius-md: 22px;
  --max: 1120px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 88% 6%, rgba(19, 150, 92, .12), transparent 20rem),
    radial-gradient(circle at 5% 90%, rgba(8, 101, 58, .10), transparent 19rem),
    var(--bg);
  line-height: 1.65;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
p { margin: 0; color: var(--soft); }
.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.section { padding: 86px 0; }
.app-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(246, 251, 248, .86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 22px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text); font-weight: 850; }
.brand img { width: 46px; height: 46px; border-radius: 15px; object-fit: cover; box-shadow: 0 10px 22px rgba(8,101,58,.18); }
.nav { display: flex; gap: 22px; color: var(--soft); font-size: 14px; font-weight: 760; }
.nav a { text-decoration: none; }
.nav a:hover { color: var(--green); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 14px; background: white; }
.menu-toggle span { display: block; width: 18px; height: 2px; margin: 5px auto; background: var(--text); }
.hero { padding: 84px 0 72px; }
.hero-grid, .section-grid { display: grid; grid-template-columns: minmax(0, 1fr) 430px; gap: 56px; align-items: center; }
.eyebrow { margin: 0 0 14px; color: var(--green); font-size: 13px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
h1, h2, h3, h4 { color: var(--text); }
h1 { margin: 0 0 20px; font-size: clamp(44px, 6vw, 76px); line-height: .98; letter-spacing: -0.06em; }
h2 { margin: 0 0 14px; font-size: clamp(30px, 4.2vw, 52px); line-height: 1.05; letter-spacing: -0.055em; }
h3 { margin: 0 0 8px; font-size: 22px; letter-spacing: -0.025em; }
h4 { margin: 0 0 6px; font-size: 20px; }
.hero-copy p { max-width: 640px; font-size: 18px; }
.hero-actions, .button-row, .support-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button, .email-button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 18px;
  border-radius: 999px; text-decoration: none; font-weight: 850;
}
.button.primary, .email-button { background: linear-gradient(135deg, var(--green), var(--green-2)); color: white; box-shadow: 0 16px 32px rgba(8,101,58,.18); }
.button.secondary { background: white; color: var(--green); border: 1px solid var(--line); }
.hero-preview { display: flex; justify-content: center; padding: 22px; background: linear-gradient(180deg, #fff, #f3fbf6); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.hero-preview img { width: 290px; max-height: 560px; object-fit: cover; object-position: top; border-radius: 28px; box-shadow: 0 20px 40px rgba(16, 44, 28, .16); }
.section-grid { grid-template-columns: .76fr 1.24fr; align-items: start; }
.section-title { position: sticky; top: 112px; }
.section-title.wide { position: static; max-width: 760px; margin-bottom: 28px; }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.feature-card, .support-panel, .privacy-summary, .legal-card, .content-card, .support-card, .promo-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: 0 16px 42px rgba(6, 64, 34, .07);
}
.feature-card, .promo-card { padding: 24px; }
.feature-card span {
  display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px;
  color: var(--green); font-weight: 900; margin-bottom: 16px; background: var(--green-soft); border-radius: 12px;
}
.feature-card p strong { color: var(--text); }
.screenshots-section { background: rgba(236, 250, 241, .52); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.screenshot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: start; }
.screenshot-grid img, .preview-grid img {
  width: 100%; border-radius: 28px; border: 1px solid var(--line); box-shadow: 0 18px 42px rgba(6, 64, 34, .10); background: white;
}
.preview-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 24px; }
.about-panel { display: grid; gap: 18px; }
.copy-card, .info-panel {
  padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: 0 16px 42px rgba(6,64,34,.06);
}
.copy-card p + p { margin-top: 12px; }
.quote-line { font-weight: 700; color: var(--text); }
.privacy-summary { padding: 28px; display: grid; gap: 18px; }
.privacy-summary .policy-item { padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.privacy-summary .policy-item:last-child { padding-bottom: 0; border-bottom: none; }
.support-panel { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 30px; }
.site-footer { border-top: 1px solid var(--line); padding: 28px 0; background: white; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; color: var(--muted); font-size: 14px; }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-links a { text-decoration: none; color: var(--text); font-weight: 760; }
.footer-links a:hover { color: var(--green); }
.legal-page { padding: 72px 0; }
.legal-card { max-width: 860px; margin: 0 auto; padding: 34px; }
.legal-card h1 { margin: 0 0 16px; font-size: clamp(36px, 5vw, 58px); line-height: 1.02; letter-spacing: -0.06em; }
.legal-card h2 { margin-top: 30px; font-size: 26px; }
.legal-card a { color: var(--green); font-weight: 800; }
.content-card { margin: 22px 0 28px; padding: 22px; background: #f8fdf9; }
.content-card p + p { margin-top: 12px; }
.support-card { display: grid; gap: 12px; padding: 24px; }
.faq-list { display: grid; gap: 12px; margin: 18px 0 28px; }
.faq-list details { border: 1px solid var(--line); border-radius: var(--radius-md); background: #ffffff; padding: 16px 18px; }
.faq-list summary { cursor: pointer; color: var(--text); font-weight: 850; }
.faq-list details p { margin-top: 12px; }
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (max-width: 900px) {
  .hero-grid, .section-grid { grid-template-columns: 1fr; }
  .section-title { position: static; }
  .hero-preview { justify-content: flex-start; }
}
@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--max)); }
  .menu-toggle { display: block; }
  .nav { display: none; position: absolute; left: 14px; right: 14px; top: 74px; padding: 14px; border-radius: 18px; border: 1px solid var(--line); background: white; box-shadow: var(--shadow); }
  .nav.open { display: grid; gap: 12px; }
  .section { padding: 62px 0; }
  .hero { padding: 58px 0; }
  .feature-grid, .screenshot-grid, .preview-grid { grid-template-columns: 1fr; }
  .support-panel, .footer-inner { flex-direction: column; align-items: flex-start; }
  h1 { font-size: 46px; }
}


/* Hide feature numbers */
.feature-card span { display: none; }

/* Pretio Google Play call-to-action */
.google-play-cta {
      margin-top: 22px;
    }

    .google-play-link {
      display: inline-flex;
      align-items: center;
      border-radius: 16px;
      transition: transform 160ms ease, filter 160ms ease;
    }

    .google-play-link:hover {
      transform: translateY(-2px);
      filter: brightness(1.06);
    }

    .google-play-link:focus-visible {
      outline: 3px solid rgba(0, 145, 76, 0.35);
      outline-offset: 4px;
    }

    .google-play-badge {
      display: block;
      width: min(260px, 72vw);
      height: auto;
    }

    @media (max-width: 640px) {
      .google-play-cta {
        margin-top: 18px;
      }

      .google-play-badge {
        width: min(235px, 78vw);
      }
    }
