/* Landing page. Deliberately quiet: the first version leaned on drifting glows,
   a marquee and a fake map panel, and the effects ended up doing the talking.
   What's left is type, space, hairlines and one accent — the app's own register. */

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

/* ── Icons ──────────────────────────────────────────────────────────────── */

/* One stroke set on a 24 grid, drawn to match the app's Material outlined
   icons (place, groups, event, trophy, bag, book, chat, storefront, chart).
   Emoji were standing in for these and read as clip-art. */
.i {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}

/* ── Header ─────────────────────────────────────────────────────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 12, 14, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.nav.stuck { border-bottom-color: var(--line); }

.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav .mark { margin: 0; }

.nav-links { display: flex; gap: 28px; }

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 550;
  transition: color 0.15s ease;
}

.nav-links a:hover { color: var(--ink); }

.nav .btn { padding: 9px 16px; font-size: 13.5px; border-radius: 10px; }

@media (max-width: 760px) { .nav-links { display: none; } }

/* ── Hero ───────────────────────────────────────────────────────────────── */

.hero-wrap {
  position: relative;
  padding: 96px 0 72px;
  overflow: hidden;
}

/* One faint wash at the top. No drifting, no grid. */
.hero-wrap::before {
  content: "";
  position: absolute;
  inset: -220px 0 auto 0;
  height: 520px;
  background: radial-gradient(680px 300px at 50% 50%, rgba(193, 39, 45, 0.16), transparent 70%);
  pointer-events: none;
}

.hero { position: relative; max-width: 720px; }

.kicker {
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.hero h1 {
  font-size: clamp(36px, 5.4vw, 56px);
  line-height: 1.06;
  letter-spacing: -1.6px;
  font-weight: 800;
  margin: 0 0 20px;
}

.hero .lede {
  font-size: clamp(16px, 1.5vw, 18px);
  color: #b6bcc6;
  line-height: 1.62;
  margin: 0 0 32px;
  max-width: 34em;
}

.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-row .btn { padding: 14px 24px; }

.trust {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin: 34px 0 0;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: var(--dim);
  font-size: 13.5px;
}

.trust b { color: var(--ink); font-weight: 700; }

/* ── Sections ───────────────────────────────────────────────────────────── */

section { padding: 76px 0; border-top: 1px solid var(--line); }

.section-head { max-width: 620px; margin-bottom: 42px; }

.section-head h2 {
  font-size: clamp(25px, 3vw, 33px);
  line-height: 1.15;
  letter-spacing: -0.9px;
  font-weight: 800;
  margin: 0 0 12px;
}

.section-head p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* ── Feature grid ───────────────────────────────────────────────────────── */

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

@media (max-width: 860px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid { grid-template-columns: 1fr; } }

.cell {
  background: var(--surface);
  padding: 28px 26px;
  transition: background 0.18s ease;
}

.cell:hover { background: var(--surface-2); }

.cell .ic {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: rgba(193, 39, 45, 0.12);
  color: #ff6b6b;
  margin-bottom: 16px;
}

.cell h3 {
  margin: 0 0 7px;
  font-size: 16.5px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.cell p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
}

/* ── Split band (venues) ────────────────────────────────────────────────── */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}

@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 28px; } }

.points { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }

.points li { display: flex; gap: 14px; align-items: flex-start; }

.points .ic { color: #ff6b6b; margin-top: 1px; }

.points b { display: block; font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.points span { color: var(--muted); font-size: 14px; line-height: 1.5; }

/* ── Steps ──────────────────────────────────────────────────────────────── */

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }

@media (max-width: 760px) { .steps { grid-template-columns: 1fr; gap: 26px; } }

.step .n {
  font-size: 13px;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: 1.4px;
  margin-bottom: 10px;
}

.step h3 { margin: 0 0 6px; font-size: 16.5px; font-weight: 700; }
.step p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.55; }

/* ── Closing ────────────────────────────────────────────────────────────── */

.closing { text-align: center; padding: 84px 0 90px; }

.closing h2 {
  font-size: clamp(26px, 3.4vw, 36px);
  letter-spacing: -1px;
  font-weight: 800;
  margin: 0 0 12px;
}

.closing p { color: var(--muted); max-width: 32em; margin: 0 auto 26px; line-height: 1.6; }
.closing .cta-row { justify-content: center; }

/* ── Reveal — a short fade, nothing that moves far ──────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
