:root {
  --midnight: #141414;
  --midnight-soft: #1c1c1c;
  --ghost: #fdf9f0;
  --ghost-mute: rgba(253, 249, 240, 0.65);
  --lime: #c7ff69;
  --lime-soft: rgba(199, 255, 105, 0.10);
  --lime-border: rgba(199, 255, 105, 0.28);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--midnight);
  color: var(--ghost);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: -25%;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 1100px;
  background: radial-gradient(circle at center, rgba(199, 255, 105, 0.08) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

main {
  flex: 1;
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 24px 28px 40px;
  width: 100%;
}

/* Top nav */
.topnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0 32px;
  font-size: 14px;
}
.topnav .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ghost);
  font-weight: 800;
  letter-spacing: -0.3px;
}
.topnav .brand img { width: 28px; height: 28px; border-radius: 8px; }
.topnav nav { display: flex; gap: 22px; align-items: center; }
.topnav nav a {
  color: var(--ghost-mute);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.15s ease;
}
.topnav nav a:hover, .topnav nav a[aria-current="page"] { color: var(--lime); }

/* Hero */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 56px;
  animation: fadeUp 0.8s ease-out;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero.compact { margin-bottom: 40px; }
.icon {
  width: 124px;
  height: 124px;
  border-radius: 28%;
  box-shadow: 0 16px 48px rgba(199, 255, 105, 0.18), 0 0 0 1px rgba(199, 255, 105, 0.10);
  margin-bottom: 28px;
}
.hero.compact .icon { width: 88px; height: 88px; margin-bottom: 22px; }
h1 {
  font-size: clamp(56px, 9vw, 96px);
  font-weight: 900;
  letter-spacing: -2.5px;
  line-height: 0.96;
  margin: 0 0 18px;
  color: var(--ghost);
}
h1.smaller {
  font-size: clamp(40px, 6vw, 64px);
  letter-spacing: -1.8px;
  max-width: 820px;
}
.tag {
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.45;
  max-width: 620px;
  margin: 0 0 28px;
  color: var(--ghost-mute);
}
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--lime-soft);
  border: 1px solid var(--lime-border);
  color: var(--lime);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px var(--lime);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

/* Store badges */
.badges {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 36px;
}
.badge {
  display: inline-flex;
  transition: transform 0.18s ease, filter 0.18s ease;
}
.badge:hover { transform: translateY(-2px); filter: brightness(1.1); }
.badge img { height: 56px; width: auto; display: block; }

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0 auto 72px;
  max-width: 920px;
}
.feature {
  padding: 28px 24px;
  background: var(--midnight-soft);
  border: 1px solid rgba(253, 249, 240, 0.06);
  border-radius: 20px;
  text-align: left;
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.feature:hover {
  border-color: var(--lime-border);
  transform: translateY(-3px);
}
.feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--lime-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--lime);
}
.feature h3 {
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--ghost);
  letter-spacing: -0.2px;
}
.feature p {
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  color: var(--ghost-mute);
}

/* Prose section (body copy with H2/H3) */
.prose {
  max-width: 760px;
  margin: 0 auto 72px;
  color: var(--ghost-mute);
  font-size: 16px;
  line-height: 1.7;
}
.prose h2 {
  color: var(--ghost);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin: 56px 0 16px;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  color: var(--ghost);
  font-size: 18px;
  font-weight: 800;
  margin: 32px 0 10px;
  letter-spacing: -0.2px;
}
.prose p { margin: 0 0 18px; }
.prose a { color: var(--lime); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { filter: brightness(1.1); }
.prose ul { padding-left: 22px; margin: 0 0 20px; }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--ghost); font-weight: 700; }

/* Comparison grid (we vs them) */
.compare {
  max-width: 920px;
  margin: 0 auto 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.compare-card {
  background: var(--midnight-soft);
  border: 1px solid rgba(253, 249, 240, 0.06);
  border-radius: 20px;
  padding: 28px 26px;
}
.compare-card.win { border-color: var(--lime-border); }
.compare-card h3 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 18px;
  color: var(--ghost-mute);
}
.compare-card.win h3 { color: var(--lime); }
.compare-card ul { padding: 0; margin: 0; list-style: none; }
.compare-card li {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ghost-mute);
  padding: 10px 0;
  border-bottom: 1px solid rgba(253, 249, 240, 0.05);
}
.compare-card li:last-child { border-bottom: 0; }
.compare-card.win li { color: var(--ghost); }
.compare-card li::before {
  content: "✕  ";
  color: rgba(253, 249, 240, 0.35);
  font-weight: 700;
}
.compare-card.win li::before { content: "✓  "; color: var(--lime); }

/* Inline CTA */
.cta {
  text-align: center;
  margin: 64px auto 24px;
  max-width: 720px;
}
.cta h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -1px;
  margin: 0 0 14px;
  color: var(--ghost);
}
.cta p {
  font-size: 17px;
  color: var(--ghost-mute);
  margin: 0 0 28px;
  line-height: 1.5;
}

/* QR section */
.qr-section {
  text-align: center;
  margin-bottom: 24px;
}
.qr-heading {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ghost-mute);
  margin: 0 0 24px;
}
.qrs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  max-width: 520px;
  margin: 0 auto;
}
.qr-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.qr-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: var(--midnight-soft);
  border: 1px solid rgba(253, 249, 240, 0.08);
  border-radius: 18px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.qr-link:hover {
  border-color: var(--lime-border);
  transform: translateY(-2px);
}
.qr-img {
  width: 168px;
  height: 168px;
  display: block;
  border-radius: 8px;
}
.qr-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--ghost-mute);
  text-decoration: none;
}

/* FAQ */
.faq {
  max-width: 720px;
  margin: 72px auto 24px;
}
.faq h2 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ghost-mute);
  text-align: center;
  margin: 0 0 28px;
}
.faq details {
  background: var(--midnight-soft);
  border: 1px solid rgba(253, 249, 240, 0.06);
  border-radius: 16px;
  padding: 18px 22px;
  margin-bottom: 12px;
  transition: border-color 0.18s ease;
}
.faq details[open], .faq details:hover { border-color: var(--lime-border); }
.faq summary {
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  color: var(--ghost);
  letter-spacing: -0.2px;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--lime); font-weight: 800; }
.faq details[open] summary::after { content: "–"; }
.faq details p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ghost-mute);
  margin: 12px 0 0;
}

/* Footer */
footer {
  position: relative;
  z-index: 1;
  padding: 32px 24px;
  text-align: center;
  font-size: 13px;
  color: rgba(253, 249, 240, 0.40);
}
footer a {
  color: rgba(253, 249, 240, 0.7);
  text-decoration: none;
  margin: 0 6px;
  transition: color 0.15s ease;
}
footer a:hover { color: var(--lime); }
footer .divider { color: rgba(253, 249, 240, 0.25); }
footer .copy { margin-top: 8px; font-size: 12px; }
footer .footnav { margin-bottom: 12px; font-weight: 600; }

@media (max-width: 720px) {
  main { padding: 16px 22px 32px; }
  .topnav { padding: 14px 0 24px; font-size: 13px; }
  .topnav nav { gap: 16px; }
  .hero { margin-bottom: 48px; }
  .icon { width: 104px; height: 104px; margin-bottom: 24px; }
  h1 { letter-spacing: -1.6px; }
  .badges { gap: 14px; margin-top: 28px; }
  .badge img { height: 48px; }
  .features {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 56px;
  }
  .feature { padding: 22px 20px; }
  .compare { grid-template-columns: 1fr; }
  .qrs { gap: 22px; max-width: 360px; }
  .qr-img { width: 132px; height: 132px; }
  .qr-link { padding: 10px; border-radius: 14px; }
}

@media (max-width: 380px) {
  .qrs { grid-template-columns: 1fr; max-width: 240px; }
  .qr-img { width: 180px; height: 180px; }
}

.language-switcher { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 0 0 28px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }
.language-switcher a { color: var(--ghost-mute); text-decoration: none; border: 1px solid rgba(253, 249, 240, 0.10); border-radius: 999px; padding: 7px 11px; }
.language-switcher a:hover, .language-switcher a[aria-current="true"] { color: var(--lime); border-color: var(--lime-border); background: var(--lime-soft); }
.feature-icon { font-weight: 900; font-size: 14px; }
