:root {
  --bg: #0a0f1a;
  --bg-deep: #070b14;
  --ink: #e6eef8;
  --muted: #8fa6c2;
  /* London Pets APK neon accents */
  --mint: #00ff87;
  --cyan: #00f0ff;
  --pink: #ff4d9e;
  --purple: #7b61ff;
  --line: rgba(0, 240, 255, 0.22);
  --panel: rgba(14, 20, 34, 0.88);
  --glow-cyan: 0 0 18px rgba(0, 240, 255, 0.35);
  --glow-mint: 0 0 18px rgba(0, 255, 135, 0.35);
  --font-display: "Syne", "Avenir Next", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --max: 960px;
  --pad-x: clamp(1.25rem, 4vw, 2.5rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--bg-deep);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--cyan);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--mint);
}

.atmosphere {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 55% 40% at 12% 0%, rgba(0, 240, 255, 0.16), transparent 60%),
    radial-gradient(ellipse 45% 35% at 88% 8%, rgba(255, 77, 158, 0.1), transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(0, 255, 135, 0.08), transparent 55%),
    linear-gradient(180deg, #070b14 0%, #0b1220 50%, #070b14 100%);
  animation: glowPulse 10s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  from { filter: brightness(1); }
  to { filter: brightness(1.08); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem var(--pad-x);
  backdrop-filter: blur(12px);
  background: rgba(7, 11, 20, 0.86);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.01em;
  font-size: 1rem;
  text-shadow: 0 0 14px rgba(0, 240, 255, 0.25);
}

.brand img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(0, 240, 255, 0.45);
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.35), 0 0 24px rgba(255, 77, 158, 0.15);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem 1rem;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
}

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

.nav-cta {
  padding: 0.35rem 0.8rem;
  border: 1px solid rgba(0, 240, 255, 0.45);
  border-radius: 6px;
  color: var(--cyan) !important;
  box-shadow: var(--glow-cyan);
}

.nav-cta:hover {
  border-color: rgba(0, 240, 255, 0.75);
  box-shadow: 0 0 22px rgba(0, 240, 255, 0.45);
}

.hero {
  position: relative;
  min-height: 70vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-art-wrap {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  animation: heroIn 0.9s ease-out both;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 11, 20, 0.45) 0%, rgba(7, 11, 20, 0.62) 42%, rgba(7, 11, 20, 0.94) 100%),
    linear-gradient(90deg, rgba(7, 11, 20, 0.72) 0%, rgba(7, 11, 20, 0.28) 55%, rgba(7, 11, 20, 0.5) 100%);
  z-index: 0;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: 5rem var(--pad-x) 3rem;
  animation: rise 0.7s ease-out 0.1s both;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mint);
  text-shadow: 0 0 12px rgba(0, 255, 135, 0.55);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
  text-shadow: 0 0 24px rgba(0, 240, 255, 0.28), 0 0 48px rgba(123, 97, 255, 0.15);
}

.lede,
.section-lede {
  color: var(--muted);
  font-size: 1rem;
  max-width: 38rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.1rem;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-primary {
  color: #071018;
  background: var(--mint);
  box-shadow: var(--glow-mint), 0 0 28px rgba(0, 255, 135, 0.2);
}

.btn-primary:hover {
  color: #071018;
  background: #2affa0;
  box-shadow: 0 0 26px rgba(0, 255, 135, 0.55);
}

.btn-ghost {
  color: var(--ink);
  border: 1px solid rgba(0, 240, 255, 0.35);
  background: rgba(14, 20, 34, 0.55);
  box-shadow: 0 0 14px rgba(0, 240, 255, 0.12);
}

.btn-ghost:hover {
  color: var(--ink);
  border-color: rgba(0, 240, 255, 0.7);
  box-shadow: var(--glow-cyan);
}

.section {
  padding: 3.75rem var(--pad-x);
  border-top: 1px solid var(--line);
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.6vw, 2rem);
  line-height: 1.15;
  margin-bottom: 0.75rem;
  max-width: 22ch;
  text-shadow: 0 0 18px rgba(0, 240, 255, 0.18);
}

.section h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.65rem;
}

.section-lede {
  margin-bottom: 1.25rem;
}

.team-points {
  list-style: none;
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.team-points li {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 1.15rem;
  border-radius: 14px;
  background:
    linear-gradient(160deg, rgba(14, 20, 40, 0.92), rgba(19, 11, 41, 0.75)) padding-box,
    linear-gradient(135deg, rgba(0, 240, 255, 0.85), rgba(123, 97, 255, 0.45), rgba(0, 255, 135, 0.55)) border-box;
  border: 1.5px solid transparent;
  box-shadow:
    0 0 18px rgba(0, 240, 255, 0.18),
    inset 0 0 22px rgba(0, 240, 255, 0.05);
}

.team-points strong {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--cyan);
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}

.team-points span {
  color: var(--muted);
  max-width: 40rem;
  font-size: 0.95rem;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
  margin: 1.5rem 0 1.75rem;
}

.split > div {
  padding: 1.15rem 1.2rem;
  border-radius: 14px;
  background:
    linear-gradient(160deg, rgba(14, 20, 40, 0.92), rgba(26, 17, 54, 0.72)) padding-box,
    linear-gradient(140deg, rgba(0, 240, 255, 0.9), rgba(0, 255, 135, 0.35), rgba(255, 77, 158, 0.35)) border-box;
  border: 1.5px solid transparent;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.16);
}

.split p {
  color: var(--muted);
  font-size: 0.95rem;
}

.steps {
  padding-left: 1.1rem;
  color: var(--muted);
  display: grid;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.steps li::marker {
  color: var(--mint);
  font-weight: 700;
  text-shadow: 0 0 8px rgba(0, 255, 135, 0.5);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 0.5rem;
}

.stat-row > div {
  padding: 1rem 1.05rem;
  border-radius: 14px;
  background:
    linear-gradient(160deg, rgba(14, 20, 40, 0.94), rgba(19, 11, 41, 0.78)) padding-box,
    linear-gradient(160deg, rgba(0, 255, 135, 0.75), rgba(0, 240, 255, 0.85), rgba(123, 97, 255, 0.4)) border-box;
  border: 1.5px solid transparent;
  box-shadow: 0 0 18px rgba(0, 240, 255, 0.2);
}

.stat-row strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--mint);
  margin-bottom: 0.25rem;
  text-shadow: 0 0 14px rgba(0, 255, 135, 0.65);
}

.stat-row span {
  color: var(--muted);
  font-size: 0.88rem;
}

.partner-note {
  margin-top: 1.75rem;
  padding: 1.15rem 1.25rem;
  border-radius: 14px;
  background:
    linear-gradient(160deg, rgba(14, 20, 40, 0.94), rgba(26, 17, 54, 0.75)) padding-box,
    linear-gradient(120deg, rgba(0, 240, 255, 0.9), rgba(255, 77, 158, 0.4), rgba(0, 255, 135, 0.55)) border-box;
  border: 1.5px solid transparent;
  box-shadow: 0 0 22px rgba(0, 240, 255, 0.18);
}

.partner-note p {
  color: var(--muted);
  max-width: 40rem;
  font-size: 0.95rem;
}

.events-intro {
  color: var(--muted);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.event-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.event-list li {
  padding: 0.85rem 1rem;
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  background:
    linear-gradient(160deg, rgba(14, 20, 40, 0.94), rgba(19, 11, 41, 0.78)) padding-box,
    linear-gradient(135deg, rgba(0, 240, 255, 0.85), rgba(0, 255, 135, 0.45), rgba(123, 97, 255, 0.4)) border-box;
  border: 1.5px solid transparent;
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.16);
}

.site-footer {
  padding: 2rem var(--pad-x) 2.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.875rem;
  display: grid;
  gap: 0.35rem;
}

.site-footer .fine {
  color: #667990;
  font-size: 0.8rem;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 900px) {
  .split,
  .stat-row,
  .event-list {
    grid-template-columns: 1fr;
  }

  .nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    min-height: 64vh;
  }

  .hero-copy {
    padding-top: 4.5rem;
    padding-bottom: 2.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .atmosphere,
  .hero-art,
  .hero-copy {
    animation: none !important;
  }
}
