/* ===================== VenueSpy landing — black + neon green ===================== */
:root {
  --green: #5fdc3c;
  --green-bright: #7cff52;
  --green-dim: #3fa028;
  --ink: #0a0e0a;
  --ink-2: #10160f;
  --panel: #151d13;
  --line: rgba(124, 255, 82, 0.14);
  --text: #eef3ec;
  --muted: #9fb09a;
  --white: #ffffff;
  --radius: 18px;
  --maxw: 1120px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.eyebrow {
  color: var(--green);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.eyebrow--center { text-align: center; }
.accent { color: var(--green); }

/* ===================== NAV ===================== */
.nav {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 5;
}
.nav__brand { display: flex; align-items: center; gap: 0.55rem; font-weight: 800; font-size: 1.15rem; }
.nav__brand img { border-radius: 8px; }
.nav__links { display: flex; align-items: center; gap: 1.6rem; font-size: 0.95rem; font-weight: 500; }
.nav__links a { color: var(--muted); transition: color 0.15s; }
.nav__links a:hover { color: var(--text); }
.nav__cta {
  background: var(--green);
  color: #06210a !important;
  padding: 0.5rem 1.05rem;
  border-radius: 999px;
  font-weight: 700;
}
.nav__cta:hover { background: var(--green-bright); }
@media (max-width: 680px) {
  .nav__links a:not(.nav__cta) { display: none; }
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 600px at 70% -10%, rgba(95, 220, 60, 0.10), transparent 60%),
    linear-gradient(180deg, #060806 0%, var(--ink) 100%);
  border-bottom: 1px solid var(--line);
}
.hero__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 3.5rem 1.5rem 4.5rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 2.5rem;
  position: relative;
}
.hero__glow {
  position: absolute;
  right: -5%;
  top: 10%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(95, 220, 60, 0.28), transparent 65%);
  filter: blur(30px);
  pointer-events: none;
  z-index: 0;
}
.hero__copy { position: relative; z-index: 2; }
.hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin-bottom: 1.2rem;
}
.hero__sub { color: var(--muted); font-size: 1.1rem; max-width: 34rem; margin-bottom: 2rem; }
.hero__note { color: var(--green-dim); font-size: 0.9rem; margin-top: 1.3rem; font-weight: 600; }

.hero__device { position: relative; z-index: 2; display: flex; justify-content: center; }
.device {
  width: min(300px, 78%);
  border-radius: 42px;
  padding: 10px;
  background: linear-gradient(160deg, #1d271b, #0c110b);
  border: 1px solid rgba(124, 255, 82, 0.22);
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.6),
    0 30px 80px rgba(0,0,0,0.6),
    0 0 90px rgba(95, 220, 60, 0.18);
}
.device img,
.device video { border-radius: 32px; display: block; width: 100%; }

@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; padding-top: 2rem; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .store-buttons { justify-content: center; }
  .hero__device { margin-top: 2.5rem; order: 2; }
}

/* ===================== STORE BADGES ===================== */
.store-buttons { display: flex; gap: 0.75rem; flex-wrap: wrap; align-items: center; }
.store-buttons--center { justify-content: center; }
.badge-link {
  display: inline-flex;
  transition: transform 0.12s, box-shadow 0.12s;
  border-radius: 9px;
}
.badge-link img { display: block; height: 47px; width: auto; }
.badge-link:not(.is-soon):hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.45); }
.badge-link.is-soon { cursor: default; opacity: 0.85; }

/* ===================== TRUST STRIP ===================== */
.strip {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1.6rem 1.5rem;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
}
.strip__item { text-align: center; }
.strip__item strong { display: block; color: var(--green); font-size: 1.05rem; }
.strip__item span { color: var(--muted); font-size: 0.85rem; }

/* ===================== SECTIONS ===================== */
.section { max-width: var(--maxw); margin: 0 auto; padding: 5rem 1.5rem; }
.section--dark {
  max-width: none;
  background: linear-gradient(180deg, var(--ink-2), #070a07);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section--dark > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.section__head { text-align: center; margin-bottom: 3rem; }
.section__head h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* ===================== FEATURES ===================== */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.feature {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: border-color 0.15s, transform 0.15s;
}
.feature:hover { border-color: rgba(124, 255, 82, 0.4); transform: translateY(-3px); }
.feature__icon {
  font-size: 1.6rem;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(95, 220, 60, 0.1);
  border: 1px solid var(--line);
  border-radius: 13px;
  margin-bottom: 1rem;
}
.feature h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.feature p { color: var(--muted); font-size: 0.95rem; }
.feature em { color: var(--green-dim); font-style: normal; font-weight: 600; }
@media (max-width: 860px) { .features { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .features { grid-template-columns: 1fr; } }

/* ===================== SCREENSHOTS ===================== */
.shots {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  padding: 0.5rem 0.25rem 1.5rem;
  scroll-snap-type: x mandatory;
}
.shot { flex: 0 0 auto; width: 230px; scroll-snap-align: center; text-align: center; }
.shot img {
  border-radius: 26px;
  border: 1px solid rgba(124, 255, 82, 0.18);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.shot figcaption { color: var(--muted); font-size: 0.85rem; margin-top: 0.8rem; font-weight: 600; }

/* ===================== PRICING ===================== */
.pricing__lede {
  text-align: center;
  color: var(--muted);
  max-width: 46rem;
  margin: -1.5rem auto 2.5rem;
  font-size: 1.02rem;
}
.pricing__lede strong { color: var(--text); font-weight: 700; }

.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  align-items: start;
}
.tier {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  position: relative;
  display: flex;
  flex-direction: column;
}
.tier__role {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dim);
  margin-bottom: 0.5rem;
}
.tier--featured .tier__role { color: var(--green); }
.tier__line {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 1.1rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.tier--featured {
  border-color: var(--green);
  box-shadow: 0 0 50px rgba(95, 220, 60, 0.12);
}
.tier__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: #06210a;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.04em;
  padding: 0.3rem 0.85rem; border-radius: 999px; text-transform: uppercase;
}
.tier h3 { font-size: 1.45rem; margin-bottom: 0.3rem; }
.tier__price { font-size: 2.3rem; font-weight: 800; color: var(--green); margin-bottom: 0.9rem; line-height: 1.1; }
.tier__price span { font-size: 0.8rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.tier ul { list-style: none; margin-bottom: 1.2rem; flex: 1; }
.tier li { padding: 0.42rem 0 0.42rem 1.7rem; position: relative; color: var(--text); font-size: 0.95rem; }
.tier li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 800; }
.tier__foot { color: var(--muted); font-size: 0.85rem; margin-top: auto; }
.pricing__note { text-align: center; margin-top: 2rem; color: var(--green); font-weight: 700; letter-spacing: 0.02em; font-size: 1.05rem; }
@media (max-width: 860px) { .tiers { grid-template-columns: 1fr; max-width: 30rem; margin: 0 auto; } }

/* ===================== FAQ ===================== */
.faq { max-width: 46rem; margin: 0 auto; }
.faq__item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 13px;
  margin-bottom: 0.7rem;
  overflow: hidden;
}
.faq__item summary {
  cursor: pointer;
  padding: 1.05rem 3rem 1.05rem 1.3rem;
  font-weight: 650;
  font-size: 1.02rem;
  position: relative;
  list-style: none;
  transition: color 0.15s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--green); }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 1.2rem; top: 50%;
  transform: translateY(-50%);
  color: var(--green);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s;
}
.faq__item[open] summary { color: var(--green); }
.faq__item[open] summary::after { content: "−"; }
.faq__item p {
  padding: 0 1.3rem 1.2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ===================== STICKY MOBILE DOWNLOAD BAR ===================== */
.mobilebar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  padding: 0.7rem 0.9rem calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(10, 14, 10, 0.94);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-top: 1px solid rgba(124, 255, 82, 0.22);
  transform: translateY(110%);
  transition: transform 0.28s ease;
}
.mobilebar.is-visible { transform: translateY(0); }
.mobilebar__info { display: flex; align-items: center; gap: 0.6rem; min-width: 0; }
.mobilebar__info img { border-radius: 9px; flex: 0 0 auto; }
.mobilebar__info strong { display: block; font-size: 0.95rem; line-height: 1.2; }
.mobilebar__info span { display: block; color: var(--muted); font-size: 0.75rem; }
.mobilebar__cta {
  flex: 0 0 auto;
  background: var(--green);
  color: #06210a;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.62rem 1.15rem;
  border-radius: 999px;
}
.mobilebar__cta:active { background: var(--green-bright); }

@media (max-width: 760px) {
  .mobilebar { display: flex; }
}

/* ===================== FINAL CTA ===================== */
.cta {
  position: relative;
  text-align: center;
  padding: 5.5rem 1.5rem;
  background: linear-gradient(180deg, #070a07, #0d150c);
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.cta__glow {
  position: absolute; left: 50%; top: 0; transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(circle, rgba(95, 220, 60, 0.22), transparent 65%);
  filter: blur(40px); pointer-events: none;
}
.cta > * { position: relative; z-index: 2; }
.cta__icon { margin: 0 auto 1.3rem; border-radius: 20px; box-shadow: 0 0 50px rgba(95,220,60,0.35); }
.cta h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 0.6rem; }
.cta p { color: var(--muted); margin-bottom: 2rem; }

/* ===================== FOOTER ===================== */
.footer {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.footer__brand { display: flex; align-items: center; gap: 0.5rem; font-weight: 800; }
.footer__brand img { border-radius: 7px; }
.footer__links { display: flex; gap: 1.4rem; flex-wrap: wrap; justify-content: center; }
.footer__links a { color: var(--muted); font-size: 0.92rem; transition: color 0.15s; }
.footer__links a:hover { color: var(--green); }
.footer__copy { color: #66755f; font-size: 0.82rem; }
