/* GroupOut marketing — Hooked-clean */

:root {
  --bg: #0a0a0a;
  --surface: #111111;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.12);
  --pink: #ff2d6b;
  --green: #1fe89f;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --faint: rgba(255, 255, 255, 0.55);
  --max: 1080px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

img { display: block; max-width: 100%; }

.wrap {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
}

/* Nav */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-nav-inner {
  height: 92px;
  padding-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.02em;
}

.logo em {
  font-style: normal;
  color: var(--pink);
}

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

.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.15s;
}

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

.nav-links a.nav-cta {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--green);
  color: #222;
}

.nav-links a.nav-cta:hover {
  color: #222;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(31, 232, 159, 0.25);
}

@media (max-width: 640px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100svh - 92px);
  padding: 64px 0 120px;
  overflow: hidden;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-map {
  position: absolute;
  inset: 0;
  background: url("images/city-map.svg") center / cover no-repeat;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 45%, #000 25%, transparent 78%);
  mask-image: radial-gradient(ellipse 75% 65% at 50% 45%, #000 25%, transparent 78%);
}

.hero-ping {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-ping::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: inherit;
  animation: hero-ping 3s ease-out infinite;
}

/* Cluster 1 — top left */
.hero-ping-a {
  top: 16%;
  left: 12%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(31, 232, 159, 0.6);
}

.hero-ping-b {
  top: 26%;
  left: 19%;
  width: 8px;
  height: 8px;
  background: var(--pink);
  box-shadow: 0 0 14px rgba(255, 45, 107, 0.6);
}

.hero-ping-b::after { animation-delay: 0.6s; }

.hero-ping-c {
  top: 32%;
  left: 9%;
  width: 9px;
  height: 9px;
  background: var(--green);
  box-shadow: 0 0 14px rgba(31, 232, 159, 0.6);
}

.hero-ping-c::after { animation-delay: 1.2s; }

/* Cluster 2 — bottom right */
.hero-ping-d {
  bottom: 24%;
  right: 11%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(31, 232, 159, 0.6);
}

.hero-ping-d::after { animation-delay: 1.8s; }

.hero-ping-e {
  bottom: 16%;
  right: 18%;
  width: 8px;
  height: 8px;
  background: var(--pink);
  box-shadow: 0 0 14px rgba(255, 45, 107, 0.6);
}

.hero-ping-e::after { animation-delay: 2.4s; }

.hero-ping-f {
  bottom: 31%;
  right: 19%;
  width: 9px;
  height: 9px;
  background: var(--green);
  box-shadow: 0 0 14px rgba(31, 232, 159, 0.6);
}

.hero-ping-f::after { animation-delay: 3s; }

@keyframes hero-ping {
  0% { transform: scale(1); opacity: 0.55; }
  75%, 100% { transform: scale(8); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-ping::after { animation: none; }
}

/* ---- Live venue clusters (homepage hero) ---- */

.hero-live {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.live-cluster {
  position: absolute;
  will-change: transform;
}

/* Inner wrapper floats so parallax (outer transform) doesn't conflict */
.lc-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  animation: lc-float 7s ease-in-out infinite;
}

.cluster-a { top: 19%; left: 11%; }
.cluster-b { top: 30%; right: 12%; }
.cluster-b .lc-inner { animation-delay: 1.6s; animation-duration: 8s; }
.cluster-c { bottom: 22%; right: 16%; }
.cluster-c .lc-inner { animation-delay: 0.8s; animation-duration: 7.5s; }
.cluster-d { bottom: 27%; left: 14%; }
.cluster-d .lc-inner { animation-delay: 2.4s; animation-duration: 8.5s; }

@keyframes lc-float {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(4px, -7px); }
  66% { transform: translate(-3px, 5px); }
}

.lc-dot {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(31, 232, 159, 0.65);
  flex: none;
}

.lc-dot.lc-pink {
  background: var(--pink);
  box-shadow: 0 0 12px rgba(255, 45, 107, 0.65);
}

.lc-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: inherit;
  animation: hero-ping 3s ease-out infinite;
}

.lc-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 11px;
  border-radius: 999px;
  border: 1px solid rgba(31, 232, 159, 0.35);
  background: rgba(5, 5, 8, 0.72);
  backdrop-filter: blur(8px);
  color: var(--green);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
  box-shadow: 0 0 20px rgba(31, 232, 159, 0.12);
}

.lc-chip.lc-chip-pink {
  border-color: rgba(255, 45, 107, 0.35);
  color: var(--pink);
  box-shadow: 0 0 20px rgba(255, 45, 107, 0.12);
}

.lc-num {
  font-variant-numeric: tabular-nums;
  transition: transform 0.2s ease;
}

.lc-num.bump { transform: scale(1.35); }

/* "+1" pop when a count ticks up */
.lc-plus {
  position: absolute;
  top: -6px;
  right: -10px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: var(--green);
  text-shadow: 0 0 10px rgba(31, 232, 159, 0.8);
  animation: lc-plus-rise 1.1s ease-out forwards;
  pointer-events: none;
}

.lc-plus.pink {
  color: var(--pink);
  text-shadow: 0 0 10px rgba(255, 45, 107, 0.8);
}

@keyframes lc-plus-rise {
  0% { transform: translateY(2px); opacity: 0; }
  18% { opacity: 1; }
  100% { transform: translateY(-20px); opacity: 0; }
}

@media (max-width: 720px) {
  .cluster-a { top: 13%; left: 5%; }
  .cluster-b { top: 21%; right: 4%; }
  .cluster-c { bottom: 16%; right: 7%; }
  .cluster-d { bottom: 9%; left: 7%; }
  .lc-chip { font-size: 11px; padding: 3px 9px; }
}

@media (prefers-reduced-motion: reduce) {
  .lc-inner { animation: none; }
  .lc-dot::after { animation: none; }
  .lc-plus { animation: none; opacity: 0; }
}

.hero-orb-b {
  width: 220px;
  height: 220px;
  bottom: 5%;
  left: 8%;
  background: rgba(139, 92, 246, 0.1);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin-inline: auto;
}

.hero-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 7vw, 4.25rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.hero-title .line2 {
  display: block;
  color: var(--green);
}

.hero-sub {
  margin-top: 24px;
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  color: var(--muted);
  max-width: 36rem;
  margin-inline: auto;
}

.hero-cta {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, background 0.15s, border-color 0.15s;
}

.btn:hover { transform: translateY(-1px); }

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--faint);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.15s;
  animation: scroll-bounce 2s ease-in-out infinite;
}

.hero-scroll:hover { color: var(--text); }

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll { animation: none; }
}

.btn-fill {
  background: var(--pink);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.28);
}

.btn-green {
  background: var(--green);
  color: #222;
}

.btn-green:hover {
  box-shadow: 0 6px 20px rgba(31, 232, 159, 0.25);
}

/* Inner-page hero (About etc.) */
.page-hero {
  position: relative;
  padding: 96px 0 88px;
  overflow: hidden;
  text-align: center;
}

/* About */
.about-copy {
  max-width: 640px;
}

.about-copy h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.about-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.about-copy strong {
  color: var(--text);
  font-weight: 500;
}

.about-photo {
  margin: 0 0 40px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}

.about-photo img {
  width: 100%;
  height: auto;
}

.ambassador-mid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

@media (max-width: 820px) {
  .ambassador-mid { grid-template-columns: 1fr; }
}

.ambassador-mid-copy {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.ambassador-mid-copy h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.ambassador-mid-copy p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.ambassador-hero {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}

.ambassador-hero img {
  width: 100%;
  height: auto;
  display: block;
}

.badge-pill {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 45, 107, 0.45);
  background: rgba(255, 45, 107, 0.08);
  color: var(--pink);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.card-list li {
  position: relative;
  padding-left: 18px;
}

.card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.ambassador-bottom {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: stretch;
}

@media (max-width: 880px) {
  .ambassador-bottom { grid-template-columns: 1fr; }
}

.perks-card,
.ambassador-form-box {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.perks-card {
  margin: 0;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.perks-card > h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.perk-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 28px;
  margin-top: 8px;
  align-content: start;
}

@media (max-width: 520px) {
  .perk-grid { grid-template-columns: 1fr; }
}

.perk h4 {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 6px;
}

.perk p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0;
}

.ambassador-form-box {
  scroll-margin-top: 88px;
  max-width: none;
  margin: 0;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  text-align: left;
}

.ambassador-form-box h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.ambassador-form-box > p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.ambassador-form-box .updates-form input,
.ambassador-form-box .updates-form textarea {
  text-align: left;
}

.ambassador-form-box .updates-form .check {
  justify-content: flex-start;
}

.ambassador-form-box .updates-form {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ambassador-form-box .updates-form .btn-fill {
  margin-top: auto;
}

/* Sections */
.section {
  padding: 88px 0;
  border-top: 1px solid var(--border);
}

.section-head {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 48px;
}

.section-head h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-head-wide {
  max-width: 680px;
}

.section-head-wide h2 {
  white-space: nowrap;
}

@media (max-width: 760px) {
  .section-head-wide h2 { white-space: normal; }
}

.cards-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 720px) {
  .cards-2 { grid-template-columns: 1fr; }
}

.card {
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.card .btn { width: 100%; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 860px;
  margin-inline: auto;
}

@media (max-width: 720px) {
  .steps {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  .steps .step {
    flex: 0 0 180px;
    scroll-snap-align: start;
  }
}

.step {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
}

.step > .step-shot { margin-bottom: 16px; }

.step-shot {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
  aspect-ratio: 390 / 520;
}

.step-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.step-num {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}

.step h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.step p {
  font-size: 0.9rem;
  color: var(--faint);
  line-height: 1.5;
}

/* Updates */
.updates-box {
  max-width: 440px;
  margin: 0 auto;
  text-align: center;
}

.updates-box h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.updates-box > p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.updates-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.updates-form input[type="email"],
.updates-form input[type="text"],
.updates-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--text);
  font: inherit;
  font-size: 15px;
  text-align: center;
}

.updates-form textarea {
  text-align: left;
  resize: vertical;
  min-height: 96px;
}

.updates-form input:focus,
.updates-form textarea:focus {
  outline: none;
  border-color: rgba(31, 232, 159, 0.35);
}

.updates-form .check {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
  cursor: pointer;
  user-select: none;
}

.updates-form .check input {
  width: 16px;
  height: 16px;
  accent-color: var(--green);
  cursor: pointer;
}

.form-ok {
  display: none;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(31, 232, 159, 0.3);
  background: rgba(31, 232, 159, 0.08);
  color: #7df7ca;
  font-size: 14px;
}

.form-ok.on { display: block; }

.form-note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--faint);
}

/* Footer */
.site-foot {
  padding: 64px 0 32px;
  border-top: 1px solid var(--border);
}

.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 720px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
}

.foot-brand .logo { font-size: 22px; }

.foot-tag {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--muted);
  max-width: 260px;
}

.foot-brand-stores {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
}

.foot-brand-store {
  display: inline-block;
  line-height: 0;
  opacity: 0.92;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.foot-brand-store:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.foot-brand-store img {
  display: block;
  height: 44px;
  width: auto;
}

.foot-head {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 16px;
}

.foot-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
}

.foot-col a {
  color: var(--muted);
  transition: color 0.15s;
}

.foot-col a:hover { color: var(--text); }

.foot-col a svg {
  display: block;
  width: 18px;
  height: 18px;
}

.foot-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
}

.foot-stores {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.foot-stores a {
  display: block;
  line-height: 0;
  opacity: 0.9;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.foot-stores a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.foot-stores img {
  display: block;
  height: 40px;
  width: auto;
}

.foot-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.28);
}

.preview-note {
  width: 100%;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 45, 107, 0.45);
  margin-top: 8px;
}
