:root {
  --navy: #0B3D3A;
  --navy-light: #12564F;
  --accent: #0F7A6B;
  --accent-soft: #E3F2EF;
  --blue: #5170FF;
  --text: #101312;
  --text-secondary: #5B655F;
  --text-muted: #8B958E;
  --bg: #F4F6F5;
  --card: #FFFFFF;
  --border: #E1E5E3;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

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

h1, h2, h3 { color: var(--navy); margin: 0; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(244, 246, 245, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 17px;
  color: var(--navy);
}
.brand-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: cover;
}
.nav { display: flex; gap: 28px; }
.nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}
.nav a:hover { color: var(--accent); }

/* Hero */
.hero { padding: 64px 0 40px; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 12px;
}
.hero h1 {
  font-size: 40px;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 18px;
}
.lead {
  font-size: 16.5px;
  color: var(--text-secondary);
  margin: 0 0 28px;
  max-width: 480px;
}
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 14px; }
.btn {
  display: inline-block;
  padding: 13px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
}
.btn-primary { background: var(--navy); color: #FFFFFF; }
.btn-primary:hover { background: var(--navy-light); }
.btn-ghost { border: 1px solid var(--border); background: var(--card); color: var(--navy); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.store-note { font-size: 13px; color: var(--text-muted); margin: 0; }

.store-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }
.store-badges-center { justify-content: center; margin-top: 24px; margin-bottom: 0; }
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0B0F0E;
  color: #FFFFFF;
  padding: 9px 16px;
  border-radius: 10px;
  border: 1px solid #0B0F0E;
  transition: opacity 0.15s ease;
}
.store-badge:hover { opacity: 0.85; }
.store-badge svg { width: 22px; height: 22px; fill: #FFFFFF; flex-shrink: 0; }
.store-badge .badge-text { display: flex; flex-direction: column; line-height: 1.15; }
.store-badge .small { font-size: 10px; font-weight: 500; letter-spacing: 0.02em; color: rgba(255,255,255,0.85); }
.store-badge .big { font-size: 15.5px; font-weight: 700; }

.hero-shot { display: flex; justify-content: center; }
.hero-shot img {
  width: 100%;
  max-width: 300px;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(11, 61, 58, 0.22);
  border: 8px solid #0B0F0E;
}

/* Features */
.features { padding: 72px 0; }
.features h2, .screenshots h2, .contact h2 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 10px;
}
.section-lead {
  text-align: center;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 44px;
  font-size: 15px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 20px;
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}
.feature-card h3 {
  font-size: 15.5px;
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 13.5px;
  color: var(--text-secondary);
  margin: 0;
}

/* Screenshots */
.screenshots { padding: 60px 0 72px; background: #EDF1EF; }
.shot-strip {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 8px 4px 20px;
  scroll-snap-type: x mandatory;
}
.shot-strip figure {
  margin: 0;
  flex: 0 0 auto;
  scroll-snap-align: start;
  text-align: center;
}
.shot-strip img {
  width: 220px;
  border-radius: 20px;
  border: 6px solid #0B0F0E;
  box-shadow: 0 16px 40px rgba(11, 61, 58, 0.18);
  display: block;
}
.shot-strip figcaption {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

/* Disclaimer */
.disclaimer { padding: 32px 0; }
.disclaimer p {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
  font-style: italic;
}

/* Contact */
.contact { padding: 64px 0 88px; }
.contact-inner { text-align: center; }
.contact p {
  color: var(--text-secondary);
  max-width: 460px;
  margin: 0 auto 26px;
  font-size: 15px;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: #FFFFFF;
  font-size: 16px;
}
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-size: 13.5px; color: rgba(255,255,255,0.75); }
.footer-links a:hover { color: #FFFFFF; }
.footer-legal { font-size: 12px; color: rgba(255,255,255,0.5); margin: 0; max-width: 480px; }

/* Responsive */
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-shot { order: -1; }
  .hero h1 { font-size: 30px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .nav { display: none; }
}
@media (max-width: 480px) {
  .feature-grid { grid-template-columns: 1fr; }
}
