:root {
  --accent: #00A86B;
  --accent-dark: #00935D;
  --accent-soft: #E7F6EF;
  --bg: #FFFFFF;
  --card: #F7F8F8;
  --card-border: #E4E6EA;
  --text: #0F1115;
  --text-2: #5C636A;
  --text-3: #8A9099;
  --gold: #D4A437;
  --radius: 18px;
  --maxw: 1080px;
  --shadow: 0 1px 2px rgba(15,17,21,.04), 0 12px 40px rgba(15,17,21,.06);
  --shadow-lg: 0 8px 24px rgba(15,17,21,.08), 0 32px 80px rgba(15,17,21,.10);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--card-border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 62px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 700; color: var(--text); font-size: 16px; letter-spacing: -.01em; }
.brand img { width: 30px; height: 30px; border-radius: 8px; box-shadow: 0 1px 3px rgba(0,0,0,.12); }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { color: var(--text-2); font-weight: 500; font-size: 14.5px; }
.nav-links a:hover { color: var(--text); }
.nav-cta { background: var(--accent); color: #fff !important; padding: 8px 16px; border-radius: 980px; font-weight: 600; }
.nav-cta:hover { background: var(--accent-dark); }
@media (max-width: 640px) { .nav-links a.hide-sm { display: none; } }

/* ---------- Hero ---------- */
.hero { text-align: center; padding: 96px 0 60px; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(900px 480px at 50% -8%, var(--accent-soft), transparent 70%);
  z-index: -1;
}
.hero-icon { width: 124px; height: 124px; border-radius: 28px; box-shadow: var(--shadow-lg); margin-bottom: 26px; }
.hero h1 { font-size: clamp(34px, 6vw, 58px); line-height: 1.05; letter-spacing: -.03em; font-weight: 800; max-width: 760px; margin: 0 auto 18px; }
.hero h1 .accent { color: var(--accent); }
.hero p.sub { font-size: clamp(17px, 2.4vw, 21px); color: var(--text-2); max-width: 600px; margin: 0 auto 30px; }
.cta-row { display: flex; gap: 14px; justify-content: center; align-items: center; flex-wrap: wrap; }
.btn-store {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--text); color: #fff; padding: 13px 22px; border-radius: 14px;
  font-weight: 600; font-size: 16px; box-shadow: var(--shadow);
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-store:hover { color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn-store svg { width: 22px; height: 22px; }
.btn-store small { display: block; font-size: 10.5px; font-weight: 500; opacity: .72; line-height: 1; margin-bottom: 2px; }
.btn-store .big { font-size: 17px; line-height: 1.05; }
.req { color: var(--text-3); font-size: 14px; font-weight: 500; }
.trust { margin-top: 30px; display: flex; gap: 8px 22px; justify-content: center; flex-wrap: wrap; color: var(--text-2); font-size: 14.5px; font-weight: 500; }
.trust span { display: inline-flex; align-items: center; gap: 7px; }
.trust b { color: var(--accent); font-weight: 700; }
.dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); display: inline-block; }

/* ---------- Section ---------- */
section { padding: 72px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.eyebrow { color: var(--accent); font-weight: 700; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 12px; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); letter-spacing: -.025em; font-weight: 800; line-height: 1.1; margin-bottom: 14px; }
.section-head p { color: var(--text-2); font-size: 17px; }

/* ---------- Features ---------- */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 860px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid { grid-template-columns: 1fr; } }
.feature {
  background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius);
  padding: 26px 24px; transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.feature:hover { border-color: #d6dade; transform: translateY(-2px); box-shadow: var(--shadow); }
.f-ic {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent); margin-bottom: 16px;
}
.f-ic svg { width: 24px; height: 24px; }
.feature h3 { font-size: 17px; font-weight: 700; letter-spacing: -.01em; margin-bottom: 7px; }
.feature p { color: var(--text-2); font-size: 14.5px; }

/* ---------- Shots ---------- */
.shots { background: linear-gradient(180deg, #FbFcFc, #F4F6F6); border-top: 1px solid var(--card-border); border-bottom: 1px solid var(--card-border); }
.shot-stack { display: flex; flex-direction: column; gap: 26px; max-width: 940px; margin: 0 auto; }
.shot { border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--card-border); background: #fff; }
.shot img { width: 100%; display: block; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: step; }
@media (max-width: 700px) { .steps { grid-template-columns: 1fr; } }
.step { padding: 8px; }
.step .num { width: 38px; height: 38px; border-radius: 50%; background: var(--accent); color: #fff; font-weight: 700; display: grid; place-items: center; margin-bottom: 14px; font-size: 16px; }
.step h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.step p { color: var(--text-2); font-size: 14.5px; }

/* ---------- CTA band ---------- */
.band { text-align: center; background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: #fff; border-radius: 28px; padding: 56px 32px; margin: 0 auto; max-width: var(--maxw); }
.band h2 { font-size: clamp(26px, 4vw, 38px); font-weight: 800; letter-spacing: -.025em; margin-bottom: 12px; }
.band p { opacity: .92; font-size: 17px; max-width: 480px; margin: 0 auto 26px; }
.band .btn-store { background: #fff; color: var(--text); }
.band .btn-store:hover { color: var(--text); }

/* ---------- Footer ---------- */
footer { padding: 56px 0 40px; border-top: 1px solid var(--card-border); margin-top: 16px; }
.foot-top { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; margin-bottom: 34px; }
.foot-brand { max-width: 320px; }
.foot-brand .brand { margin-bottom: 12px; }
.foot-brand p { color: var(--text-2); font-size: 14px; }
.foot-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.foot-col h4 { font-size: 12px; text-transform: uppercase; letter-spacing: .07em; color: var(--text-3); margin-bottom: 12px; font-weight: 700; }
.foot-col a { display: block; color: var(--text-2); font-size: 14.5px; margin-bottom: 9px; font-weight: 500; }
.foot-col a:hover { color: var(--accent); }
.disclaimer { color: var(--text-3); font-size: 12.5px; line-height: 1.6; border-top: 1px solid var(--card-border); padding-top: 22px; }
.disclaimer .copy { color: var(--text-2); font-weight: 600; margin-bottom: 6px; }

/* ---------- Legal pages ---------- */
.legal { max-width: 760px; margin: 0 auto; padding: 56px 24px 80px; }
.legal .back { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 14.5px; margin-bottom: 28px; }
.legal h1 { font-size: clamp(30px, 5vw, 42px); letter-spacing: -.03em; font-weight: 800; margin-bottom: 8px; }
.legal .updated { color: var(--text-3); font-size: 14px; margin-bottom: 36px; }
.legal h2 { font-size: 21px; font-weight: 700; letter-spacing: -.015em; margin: 38px 0 12px; }
.legal h3 { font-size: 16.5px; font-weight: 700; margin: 24px 0 8px; }
.legal p, .legal li { color: #2c3138; font-size: 16px; margin-bottom: 14px; }
.legal ul { padding-left: 22px; margin-bottom: 14px; }
.legal li { margin-bottom: 8px; }
.legal strong { color: var(--text); }
.legal .callout { background: var(--accent-soft); border: 1px solid #cdeadd; border-radius: 14px; padding: 18px 20px; margin: 22px 0; }
.legal .callout p { margin: 0; color: #0c5a3c; font-weight: 500; }
.legal a { font-weight: 600; }
.legal .note { color: var(--text-3); font-size: 14px; border-top: 1px solid var(--card-border); margin-top: 40px; padding-top: 22px; }

/* ---------- Support extras ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.qa { border-bottom: 1px solid var(--card-border); padding: 22px 0; }
.qa:last-child { border-bottom: none; }
.qa h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.qa p { color: var(--text-2); font-size: 15.5px; }
.contact-card { background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 30px; text-align: center; max-width: 520px; margin: 36px auto 0; }
.contact-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.contact-card p { color: var(--text-2); margin-bottom: 18px; }
.contact-card a.mail { display: inline-block; background: var(--accent); color: #fff; padding: 12px 26px; border-radius: 12px; font-weight: 600; }
.contact-card a.mail:hover { background: var(--accent-dark); color: #fff; }
