/* v2026092305 — official store badges */
:root {
  --brand: #00a870;
  --brand-strong: #00895c;
  --brand-soft: #e9fbf3;
  --accent: #f5a524;
  --accent-soft: #fef0c7;
  --bg: #f7f8fa;
  --surface: #ffffff;
  --surface-sunken: #eef1f4;
  --ink: #141922;
  --ink-soft: #4b5563;
  --ink-muted: #6b7684;
  --line: rgba(20, 25, 34, 0.1);
  --shadow: 0 24px 60px rgba(11, 14, 20, 0.12);
  --max: 1140px;
  --nav-h: 72px;
  --radius: 16px;
  --font: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background:
    radial-gradient(900px 480px at 100% -10%, rgba(0, 168, 112, 0.12), transparent 60%),
    radial-gradient(700px 400px at 0% 0%, rgba(245, 165, 36, 0.08), transparent 55%),
    var(--bg);
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
svg { max-width: 100%; }
.brand svg {
  width: 30px;
  height: 30px;
  max-width: none;
  display: block;
}
a { color: inherit; }
button, summary { font: inherit; color: inherit; }
::selection { background: #c6f4e0; color: var(--ink); }

.sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip {
  position: absolute;
  left: 16px;
  top: -40px;
  background: var(--brand-strong);
  color: #fff;
  padding: 8px 12px;
  z-index: 20;
  border-radius: 8px;
  text-decoration: none;
}
.skip:focus { top: 12px; }

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  backdrop-filter: blur(16px);
  background: rgba(247, 248, 250, 0.9);
  border-bottom: 1px solid transparent;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.03em;
}
.nav-panel {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-panel a {
  text-decoration: none;
  color: var(--ink-muted);
  font-size: 15px;
  font-weight: 500;
}
.nav-panel a:hover,
.nav-panel a[aria-current="page"] { color: var(--ink); }
.nav-panel a[aria-current="page"] { box-shadow: inset 0 -2px 0 var(--brand); }
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  padding: 0;
}
.nav-toggle > span:last-child,
.nav-toggle > span:last-child::before,
.nav-toggle > span:last-child::after {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--ink);
  position: relative;
  margin: 0 auto;
  border-radius: 999px;
}
.nav-toggle > span:last-child::before,
.nav-toggle > span:last-child::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle > span:last-child::before { top: -5px; }
.nav-toggle > span:last-child::after { top: 5px; }

.hero { padding: 36px 0 72px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 320px);
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
}
.kicker {
  margin: 0 0 14px;
  color: var(--brand-strong);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.display {
  margin: 0;
  font-weight: 800;
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.lede {
  margin: 20px 0 0;
  max-width: 36em;
  color: var(--ink-soft);
  font-size: 18px;
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  background: transparent;
}
.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 168, 112, 0.24);
}
.btn-primary:hover { background: var(--brand-strong); }
.btn-ghost {
  border-color: var(--line);
  background: var(--surface);
}
.btn-ghost:hover { background: var(--surface-sunken); }
.fine {
  margin: 14px 0 0;
  color: var(--ink-muted);
  font-size: 14px;
}

.hero-stage {
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 100%;
}
.hero-download {
  width: 100%;
  max-width: 380px;
  margin-inline: auto;
  padding: 28px 24px;
  border-radius: 24px;
  background:
    linear-gradient(160deg, rgba(0, 168, 112, 0.08), rgba(255, 255, 255, 0.92)),
    var(--surface);
  border: 1px solid rgba(0, 168, 112, 0.14);
  box-shadow: var(--shadow);
}
.download-kicker {
  margin: 0 0 8px;
  color: var(--brand-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.download-title {
  margin: 0;
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.download-copy {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}
.store-buttons {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}
.store-badge-link {
  display: block;
  width: fit-content;
  max-width: 100%;
  text-decoration: none;
  border-radius: 12px;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.store-badge-link:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}
.store-badge-link img {
  display: block;
  height: 52px;
  width: auto;
  max-width: 100%;
}
.download-points {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.download-points li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 14px;
}
.download-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--brand);
}

.promises {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.promises li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}
.promises strong { display: block; font-size: 17px; margin-bottom: 4px; }
.promises span { color: var(--ink-soft); font-size: 14px; }

.section { padding: 24px 0 72px; }
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}
.section-head h2 {
  margin: 0;
  font-size: clamp(30px, 3.8vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
}
.section-head p { margin: 0; max-width: 34em; color: var(--ink-soft); }

.mode-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.mode-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
}
.mode-card.accent {
  background: linear-gradient(160deg, #fff9ee, #fff);
  border-color: rgba(245, 165, 36, 0.28);
}
.mode-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-strong);
  background: var(--brand-soft);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.mode-card.accent .mode-badge {
  color: #b45309;
  background: var(--accent-soft);
}
.mode-card h3 {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.mode-card p { margin: 0; color: var(--ink-soft); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.feature {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
}
.index-no {
  margin: 0 0 8px;
  color: var(--brand-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.feature h3 {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.feature p { margin: 0; color: var(--ink-soft); font-size: 15px; }

.brand-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.brand-chip {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
}

.band {
  margin: 8px 0 64px;
  padding: 56px 0;
  background: linear-gradient(120deg, var(--brand-strong), var(--brand));
  color: #fff;
}
.band-inner {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
}
.band blockquote {
  margin: 0;
  max-width: 16em;
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.band p { margin: 0; max-width: 28em; color: rgba(255, 255, 255, 0.86); }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
}
.step h3 {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 800;
}
.step p { margin: 0; color: var(--ink-soft); font-size: 15px; }

.permit-grid, .faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
}
.permits { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.permit {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
}
.permit h3 { margin: 0 0 6px; font-size: 17px; font-weight: 700; }
.permit p { margin: 0; color: var(--ink-soft); font-size: 14px; }

.faq details { border-top: 1px solid var(--line); padding: 16px 0; }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-weight: 600;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--brand-strong); font-weight: 800; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 10px 0 0; color: var(--ink-soft); }

.closer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  padding: 24px;
  margin-bottom: 72px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
}
.closer h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.footer {
  background: var(--ink);
  color: #fff;
  padding: 48px 0 28px;
}
.footer a { color: #fff; text-decoration: none; }
.footer a:hover { text-decoration: underline; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 24px;
}
.footer strong { font-size: 24px; font-weight: 800; }
.footer p, .footer li { color: rgba(255, 255, 255, 0.72); font-size: 14px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer h2 {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}
.legal-note {
  margin-top: 28px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.page-hero { padding: 36px 0 10px; }
.page-hero h1 {
  margin: 0;
  font-size: clamp(36px, 4.8vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 800;
}
.updated { color: var(--ink-muted); margin-top: 10px; font-size: 14px; }
.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 42px;
  padding-bottom: 80px;
}
.toc {
  position: sticky;
  top: 96px;
  align-self: start;
  display: grid;
  gap: 8px;
  font-size: 14px;
}
.toc a { color: var(--ink-muted); text-decoration: none; }
.toc a:hover { color: var(--ink); }
.prose { max-width: 72ch; }
.prose h2 {
  margin: 36px 0 8px;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.prose h3 { margin: 22px 0 6px; font-size: 17px; font-weight: 700; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul, .prose ol { padding-left: 1.2em; }
.summary {
  background: var(--surface);
  border-radius: 18px;
  padding: 18px 20px;
  border: 1px solid var(--line);
}
.summary ul { margin-bottom: 0; }
.contact-card {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  background: var(--brand);
  color: #fff;
  border-radius: 20px;
  padding: 22px;
  margin: 18px 0 28px;
}
.contact-card a { color: #fff; }
.contact-card p { margin: 6px 0 0; color: rgba(255, 255, 255, 0.86); }
.steps-list { display: grid; gap: 12px; padding: 0; list-style: none; }
.steps-list li {
  background: var(--surface);
  border-radius: 16px;
  padding: 14px 16px;
  border: 1px solid var(--line);
}
.steps-list strong { display: block; margin-bottom: 4px; }

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .hero-grid, .feature-grid, .steps, .permit-grid, .faq-grid, .footer-grid, .legal-layout, .promises, .mode-grid {
    grid-template-columns: 1fr;
  }
  .hero-stage { padding-top: 12px; }
  .hero-download { max-width: none; }
  .store-buttons {
    grid-template-columns: 1fr 1fr;
  }
  .band-inner { flex-direction: column; align-items: start; }
  .closer, .section-head, .contact-card { flex-direction: column; align-items: start; }
  .toc { position: static; display: flex; flex-wrap: wrap; gap: 8px 16px; }
}

@media (max-width: 760px) {
  .nav-toggle { display: inline-block; }
  .nav-panel {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 22px 20px;
    background: rgba(247, 248, 250, 0.98);
    border-bottom: 1px solid var(--line);
  }
  .nav-panel.is-open { display: flex; }
  .wrap, .nav-inner, .band-inner { width: min(var(--max), calc(100% - 28px)); }
  .permits { grid-template-columns: 1fr; }
  .store-buttons { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

@media print {
  .nav, .footer, .actions, .hero-download, .toc { display: none !important; }
  body { background: white; }
  .legal-layout { display: block; }
  a { text-decoration: underline; }
}
