/* APNA Live public website — shared styles. Brand: the Play Store icon's
   deep green-black ground, lime "Live" green and the orange mic/camera. */
:root {
  color-scheme: dark;
  --bg: #07100b;
  --bg-2: #0b1a12;
  --surface: #0f1f16;
  --surface-2: #142a1d;
  --line: rgba(156, 255, 18, 0.14);
  --line-soft: rgba(255, 255, 255, 0.08);
  --text: #eef5ea;
  --text-2: #b7c6b4;
  --text-3: #85967f;
  --lime: #9cff12;
  --lime-deep: #6fd000;
  --orange: #ff7a1a;
  --radius: 18px;
  --wrap: 1120px;
  --font: "Segoe UI", system-ui, -apple-system, Roboto, "Noto Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--lime); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
  border-radius: 6px;
}

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

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7, 16, 11, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.01em;
}
.brand:hover { text-decoration: none; }
.brand img { width: 36px; height: 36px; border-radius: 9px; }
.brand b { color: var(--lime); font-weight: 800; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  display: block;
  padding: 8px 12px;
  border-radius: 10px;
  color: var(--text-2);
  font-weight: 600;
  font-size: 15px;
}
.nav-links a:hover, .nav-links a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  text-decoration: none;
}
.nav-toggle { display: none; }

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid var(--line-soft);
    background: transparent;
    color: var(--text);
    font-size: 20px;
    cursor: pointer;
  }
  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 64px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 12px 14px;
    background: var(--bg-2);
    border-bottom: 1px solid var(--line-soft);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px; }
  .nav .btn-play { display: none; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 16px;
  line-height: 1.2;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
@media (prefers-reduced-motion: reduce) { .btn:hover { transform: none; } }
.btn-primary { background: var(--lime); color: #0a1400; }
.btn-primary:hover { background: #b4ff4a; }
.btn-ghost { border-color: var(--line); color: var(--text); background: rgba(156, 255, 18, 0.05); }
.btn-play { padding: 9px 16px; font-size: 14px; border-radius: 12px; }
.btn svg { width: 20px; height: 20px; flex: none; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 64px;
  background:
    radial-gradient(60% 70% at 85% 30%, rgba(156, 255, 18, 0.14), transparent 70%),
    radial-gradient(40% 50% at 10% 90%, rgba(255, 122, 26, 0.10), transparent 70%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--lime);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 122, 26, 0.2);
}
.hero h1 {
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 18px 0 16px;
  text-wrap: balance;
}
.hero h1 .accent { color: var(--lime); }
.hero .lead {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--text-2);
  max-width: 34em;
  margin: 0 0 28px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-note { margin-top: 18px; color: var(--text-3); font-size: 14px; }
.hero-art {
  position: relative;
  justify-self: center;
  width: min(100%, 380px);
}
.hero-art img {
  width: 100%;
  border-radius: 36px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px var(--line);
}
.live-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(10, 22, 14, 0.92);
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}
.live-chip.one { top: 8%; left: -8%; }
.live-chip.two { bottom: -18px; right: 8%; }
.live-chip .pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff3b3b;
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.6); }
  100% { box-shadow: 0 0 0 10px rgba(255, 59, 59, 0); }
}
@media (prefers-reduced-motion: reduce) { .live-chip .pulse { animation: none; } }

@media (max-width: 860px) {
  .hero { padding: 44px 0 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-art { width: min(80%, 300px); }
  .live-chip.one { left: -4%; }
  .live-chip.two { right: 4%; }
}

/* ---------- sections ---------- */
section { padding: 72px 0; }
.section-alt { background: var(--bg-2); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.section-head { max-width: 40em; margin-bottom: 36px; }
.section-head .kicker {
  color: var(--orange);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.section-head h2 {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 8px 0 12px;
  text-wrap: balance;
}
.section-head p { color: var(--text-2); margin: 0; font-size: 17px; }
@media (max-width: 860px) { section { padding: 52px 0; } }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 900px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 24px;
}
.card h3 { margin: 14px 0 6px; font-size: 19px; letter-spacing: -0.01em; }
.card p { margin: 0; color: var(--text-2); font-size: 15px; }
.icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: rgba(156, 255, 18, 0.1);
  color: var(--lime);
}
.icon.orange { background: rgba(255, 122, 26, 0.12); color: var(--orange); }
.icon svg { width: 24px; height: 24px; }

/* how coins work */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; counter-reset: step; }
.step { position: relative; padding-top: 58px; }
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 22px;
  left: 24px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--lime);
  color: #0a1400;
  font-weight: 900;
  font-size: 15px;
}
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }

.facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 20px; }
.fact {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  font-size: 15px;
  color: var(--text-2);
}
.fact strong { color: var(--text); }
.fact .mark {
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 13px;
}
.fact .mark.yes { background: rgba(156, 255, 18, 0.15); color: var(--lime); }
.fact .mark.no { background: rgba(255, 90, 90, 0.14); color: #ff7a7a; }
@media (max-width: 700px) { .facts { grid-template-columns: 1fr; } }

/* pricing table */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line-soft); }
table { width: 100%; border-collapse: collapse; min-width: 420px; }
th, td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line-soft); }
th {
  background: var(--surface-2);
  color: var(--text-3);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
td { font-variant-numeric: tabular-nums; }
tr:last-child td { border-bottom: 0; }
td.coins { font-weight: 800; }
td.price { color: var(--lime); font-weight: 800; }
.tag {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(255, 122, 26, 0.14);
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  vertical-align: middle;
}
.small { font-size: 14px; color: var(--text-3); }

/* call to action band */
.cta-band {
  border-radius: 24px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background:
    radial-gradient(80% 120% at 100% 0%, rgba(156, 255, 18, 0.18), transparent 60%),
    var(--surface);
  border: 1px solid var(--line);
}
.cta-band h2 { margin: 0 0 6px; font-size: clamp(24px, 3vw, 32px); letter-spacing: -0.02em; }
.cta-band p { margin: 0; color: var(--text-2); }
@media (max-width: 620px) { .cta-band { padding: 28px 22px; } }

/* ---------- document pages (terms, refund, about, contact) ---------- */
.doc-hero { padding: 56px 0 28px; border-bottom: 1px solid var(--line-soft); }
.doc-hero h1 { font-size: clamp(32px, 5vw, 46px); letter-spacing: -0.02em; margin: 10px 0 6px; line-height: 1.1; }
.doc-hero p { color: var(--text-3); margin: 0; }
.doc { max-width: 780px; padding: 36px 20px 80px; margin: 0 auto; }
.doc h2 { font-size: 22px; margin: 40px 0 10px; color: var(--lime); letter-spacing: -0.01em; }
.doc h3 { font-size: 17px; margin: 24px 0 6px; }
.doc p, .doc li { color: var(--text-2); }
.doc ul, .doc ol { padding-left: 22px; }
.doc li { margin: 6px 0; }
.doc strong { color: var(--text); }
.doc .card { margin: 20px 0; }
.doc dl { display: grid; grid-template-columns: max-content 1fr; gap: 10px 20px; margin: 0; }
.doc dt { color: var(--text-3); font-size: 14px; }
.doc dd { margin: 0; color: var(--text); font-weight: 600; overflow-wrap: anywhere; }
@media (max-width: 560px) { .doc dl { grid-template-columns: 1fr; gap: 2px; } .doc dd { margin-bottom: 12px; } }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--line-soft); background: #050b07; padding: 48px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
.footer-grid h4 {
  margin: 0 0 12px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-3);
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin: 8px 0; }
.footer-grid a { color: var(--text-2); }
.footer-grid a:hover { color: var(--lime); }
.footer-biz { color: var(--text-3); font-size: 14px; line-height: 1.7; }
.footer-biz strong { color: var(--text-2); }
.footer-bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--text-3);
  font-size: 13px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 24px; } }
