:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --surface: #161616;
  --border: #232323;
  --text: #f4f4f4;
  --muted: #9a9a9a;
  --accent: #22e07a;
  --accent-2: #22e07a;
  --accent-soft: rgba(34, 224, 122, 0.12);
  --radius: 16px;
}

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

html { scroll-behavior: smooth; }

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

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

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(10, 10, 10, 0.7);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 18px;
}
.brand img { width: 28px; height: 28px; object-fit: contain; }
.brand-dot { color: var(--muted); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  border: 1px solid transparent;
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent-2);
  color: #04140a;
  box-shadow: 0 8px 30px rgba(34, 224, 122, 0.25);
}
.btn-primary:hover { transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--accent); }

/* Hero */
.hero {
  padding: 96px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -20% 20% auto 20%;
  height: 520px;
  background: radial-gradient(ellipse at center, rgba(34, 224, 122, 0.18), transparent 65%);
  pointer-events: none;
}

.hero-mockup {
  margin: 64px auto 0;
  max-width: 980px;
  position: relative;
}
.hero-mockup img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6));
}
.eyebrow {
  display: inline-block;
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(40px, 7vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 800;
  margin-bottom: 22px;
}
.hero h1 em { font-style: normal; color: var(--muted); }
.hero p.lead {
  color: var(--muted);
  font-size: 18px;
  max-width: 620px;
  margin: 0 auto 36px;
}
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 760px;
  margin: 72px auto 0;
}
.metric {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  background: var(--surface);
}
.metric .num {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.metric .lbl {
  color: var(--muted);
  font-size: 13.5px;
  margin-top: 4px;
}

/* Section */
section { padding: 96px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head h2 {
  font-size: clamp(30px, 4.5vw, 48px);
  letter-spacing: -0.03em;
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 16px;
}
.section-head p { color: var(--muted); font-size: 17px; }

/* Pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pillar {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  background: var(--surface);
  transition: border-color .2s ease, transform .2s ease;
}
.pillar:hover { border-color: var(--accent); transform: translateY(-2px); }
.pillar img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 18px;
  filter: grayscale(1) brightness(1.4);
}
.pillar h3 {
  font-size: 19px;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.pillar p { color: var(--muted); font-size: 14.5px; }

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
}
.feature .tag {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.feature h3 { font-size: 22px; margin-bottom: 10px; letter-spacing: -0.015em; }
.feature p { color: var(--muted); font-size: 15px; }

/* Testimonials */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.quote {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--surface);
}
.quote .stars { color: var(--accent); letter-spacing: 2px; font-size: 14px; margin-bottom: 12px; }
.quote p { font-size: 15px; margin-bottom: 14px; }
.quote .who { color: var(--muted); font-size: 13px; }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid var(--border);
  padding: 22px 4px;
  cursor: pointer;
}
.faq summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--muted); font-size: 22px; }
.faq details[open] summary::after { content: "−"; }
.faq details p { color: var(--muted); padding-top: 12px; font-size: 15px; }

/* Final CTA */
.final {
  text-align: center;
  background: radial-gradient(ellipse at top, rgba(255,255,255,0.06), transparent 60%), var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.final h2 { font-size: clamp(32px, 5vw, 56px); letter-spacing: -0.03em; line-height: 1.05; margin-bottom: 16px; }
.final p { color: var(--muted); margin-bottom: 32px; }
.stores { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  font-weight: 600;
  font-size: 14px;
}
.store small { display: block; color: var(--muted); font-size: 11px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; }
.store:hover { border-color: var(--accent); }
.store-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}
.store-disabled small { color: var(--accent); }

/* Footer */
footer {
  padding: 48px 0 56px;
  color: var(--muted);
  font-size: 14px;
}
.foot-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}
.foot-links { display: flex; gap: 22px; flex-wrap: wrap; }
.foot-links a:hover { color: var(--text); }

/* Legal pages */
.legal {
  max-width: 780px;
  margin: 0 auto;
  padding: 80px 24px 96px;
}
.legal h1 {
  font-size: clamp(32px, 5vw, 48px);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.legal .updated { color: var(--muted); margin-bottom: 36px; font-size: 14px; }
.legal h2 {
  font-size: 22px;
  margin-top: 36px;
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}
.legal p, .legal li {
  color: #cfcfcf;
  font-size: 15.5px;
  margin-bottom: 12px;
}
.legal ul { padding-left: 22px; }
.legal a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

/* Responsive */
@media (max-width: 900px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: 1fr; }
  .quotes { grid-template-columns: 1fr; }
  .metrics { grid-template-columns: 1fr; }
  section { padding: 72px 0; }
  .hero { padding: 64px 0 40px; }
}
