/* Home static landing — mirrors Index route at rest; no animations */
:root {
  --pulse-pink: #ff2688;
  --pulse-purple: #741add;
  --pulse-blue: #38d1bf;
  --gunmetal: #15191c;
  --gray-900: #111827;
  --gray-950: #030712;
  --font-sans: "Lexend", system-ui, sans-serif;
  --font-display: "Space Grotesk", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font-sans);
  background: #fff;
  color: var(--gunmetal);
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 1280px) {
  .container.xl-wide {
    max-width: 80rem;
  }
}

.pulse-gradient-text {
  background: linear-gradient(90deg, var(--pulse-pink), var(--pulse-purple), var(--pulse-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  width: 100%;
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  background: rgba(255, 255, 255, 0.85);
  padding: 1.25rem 0;
  color: var(--gunmetal);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 80rem;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 1.5rem;
  width: 8rem;
  object-fit: contain;
  object-position: left;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-desktop a {
  font-weight: 500;
  color: inherit;
}

.nav-desktop a:hover {
  color: var(--pulse-pink);
}

.cta-nav {
  display: none;
  flex-shrink: 0;
  background: linear-gradient(90deg, #ff2688, #741add, #38d1bf);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
  color: #fff;
  box-shadow: 0 10px 15px -3px rgba(255, 38, 136, 0.2);
}

.cta-nav:hover {
  box-shadow: 0 10px 15px -3px rgba(255, 38, 136, 0.3);
}

@media (min-width: 1024px) {
  .cta-nav {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }
}

/* Hero (white, no city photo) */
.hero-home {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 8rem;
  padding-bottom: 5rem;
  background: #fff;
}

@media (min-width: 768px) {
  .hero-home {
    padding-top: 9rem;
  }
}

@media (min-width: 1024px) {
  .hero-home {
    padding-top: 10rem;
  }
}

.hero-home .hero-decor::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, rgba(116, 26, 221, 0.2), transparent 70%);
}

.hero-home .hero-decor::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, rgba(116, 26, 221, 0.2), transparent 70%);
}

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

.hero-inner {
  position: relative;
  z-index: 10;
  max-width: 56rem;
  margin: 2rem auto 0;
  text-align: center;
}

.hero-home h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin: 0 0 1rem;
  color: #111827;
}

@media (min-width: 768px) {
  .hero-home h1 {
    font-size: 3rem;
  }
}

.hero-lead {
  font-size: 1.125rem;
  line-height: 1.6;
  margin: 0 0 2rem;
  color: #374151;
  font-weight: 400;
}

@media (min-width: 768px) {
  .hero-lead {
    font-size: 1.25rem;
  }
}

.btn-xl {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #ff2688;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.btn-xl:hover {
  filter: brightness(1.08);
}

.hero-scroll {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.hero-scroll a {
  color: #6b7280;
  text-decoration: underline;
}

.hero-scroll a:hover {
  color: var(--pulse-pink);
}

/* How it works — grid (Index / HowItWorks) */
.section-how {
  position: relative;
  padding: 4rem 0;
  background: var(--gray-900);
  color: #fff;
}

.section-how .decor-blur {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  pointer-events: none;
}

.section-how .decor-blur::before,
.section-how .decor-blur::after,
.section-how .decor-blur span {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 9999px;
  filter: blur(48px);
}

.section-how .decor-blur::before {
  top: -6rem;
  left: -6rem;
  background: #9333ea;
}

.section-how .decor-blur::after {
  top: 50%;
  right: -6rem;
  background: #2563eb;
}

.section-how .decor-blur span {
  bottom: -6rem;
  left: 50%;
  background: #db2777;
}

.how-inner {
  position: relative;
  z-index: 1;
  max-width: 72rem;
  margin: 0 auto;
}

.how-kicker {
  display: block;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  background: linear-gradient(90deg, #ec4899, #a855f7, #6366f1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.how-inner > h2 {
  text-align: center;
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 2.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .how-inner > h2 {
    font-size: 3rem;
  }
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .how-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .how-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.how-card {
  background: rgba(31, 41, 55, 0.5);
  backdrop-filter: blur(4px);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.how-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.how-icon svg {
  width: 24px;
  height: 24px;
  color: #fff;
}

.how-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.75rem;
}

.how-card p {
  font-size: 1rem;
  color: #d1d5db;
  margin: 0;
  line-height: 1.5;
}

.how-cta {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.btn-how-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  color: #fff;
  background: #ff2688;
}

.btn-how-cta:hover {
  filter: brightness(1.06);
}

/* Activities */
.section-activities {
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
  background: var(--gray-900);
}

.section-activities .ablur::before {
  content: "";
  position: absolute;
  top: -6rem;
  right: -6rem;
  width: 24rem;
  height: 24rem;
  border-radius: 9999px;
  background: rgba(255, 38, 136, 0.2);
  filter: blur(48px);
  pointer-events: none;
}

.section-activities .ablur::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -5rem;
  width: 20rem;
  height: 20rem;
  border-radius: 9999px;
  background: rgba(116, 26, 221, 0.2);
  filter: blur(48px);
  pointer-events: none;
}

.section-activities h2 {
  text-align: center;
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.75rem;
}

@media (min-width: 768px) {
  .section-activities h2 {
    font-size: 2.25rem;
  }
}

.section-activities .sub {
  text-align: center;
  color: #d1d5db;
  max-width: 48rem;
  margin: 0 auto 2rem;
}

.act-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
  max-width: 73.6rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .act-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.75rem;
  }
}

@media (min-width: 1024px) {
  .act-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
}

.act-cell {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid #374151;
  background: rgba(17, 24, 39, 0.3);
  padding-top: 100%;
}

.act-cell img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.act-cta {
  text-align: center;
  margin-top: 2rem;
}

.btn-gradient {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(90deg, var(--pulse-pink), var(--pulse-purple), var(--pulse-blue));
  box-shadow: 0 10px 15px -3px rgba(139, 92, 246, 0.2);
}

.btn-gradient:hover {
  box-shadow: 0 10px 15px -3px rgba(139, 92, 246, 0.35);
}

/* Meet Pip */
.section-meet-pip {
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
  background: #fff;
}

.section-meet-pip .pip-wrap {
  max-width: 72rem;
  margin: 0 auto;
  background: linear-gradient(to bottom right, rgba(31, 41, 55, 0.6), rgba(17, 24, 39, 0.6));
  backdrop-filter: blur(12px);
  border-radius: 1.5rem;
  border: 1px solid rgba(55, 65, 81, 0.7);
  padding: 2rem;
}

@media (min-width: 768px) {
  .section-meet-pip .pip-wrap {
    padding: 3rem;
  }
}

.pip-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .pip-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.pip-grid h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

@media (min-width: 768px) {
  .pip-grid h2 {
    font-size: 3rem;
  }
}

.pip-grid .pip-sub {
  color: #d1d5db;
  margin: 0 0 1.5rem;
  line-height: 1.6;
  max-width: 36rem;
}

.pip-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(31, 41, 55, 0.4);
  border: 1px solid #374151;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  margin-bottom: 0.75rem;
}

.pip-item:last-of-type {
  margin-bottom: 0;
}

.pip-item-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pip-item-icon svg {
  width: 18px;
  height: 18px;
  color: #fff;
}

.pip-item p {
  margin: 0;
  color: #e5e7eb;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.pip-item strong {
  color: #fff;
}

.pip-img-wrap {
  position: relative;
  max-width: 28rem;
  margin: 0 auto;
}

.pip-img-wrap img {
  border-radius: 1.5rem;
  border: 1px solid #374151;
  width: 100%;
  height: auto;
}

.pip-cta {
  margin-top: 1.75rem;
}

.btn-pip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1.125rem;
  color: #fff;
  background: linear-gradient(90deg, var(--pulse-pink), #a855f7, var(--pulse-blue));
  box-shadow: 0 20px 25px -5px rgba(139, 92, 246, 0.3);
}

.btn-pip:hover {
  opacity: 0.95;
}

/* Neural (static, no canvas) */
.section-neural {
  position: relative;
  padding: 4rem 0;
  background: var(--gray-950);
  overflow: hidden;
}

.neural-inner {
  position: relative;
  z-index: 1;
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}

.neural-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: rgba(88, 28, 135, 0.3);
  border: 1px solid rgba(126, 34, 206, 0.4);
  padding: 0.375rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #c4b5fd;
}

.neural-badge svg {
  width: 16px;
  height: 16px;
  color: #c084fc;
}

.section-neural h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .section-neural h2 {
    font-size: 3rem;
  }
}

.section-neural .neural-desc {
  font-size: 1.125rem;
  color: #d1d5db;
  line-height: 1.6;
  margin: 0;
}

/* Mission countdown */
.section-mission {
  position: relative;
  padding: 3rem 0;
  background: linear-gradient(to bottom right, rgba(168, 85, 247, 0.12), #111827, rgba(56, 209, 191, 0.08));
  overflow: hidden;
}

.mission-inner {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.mission-head {
  text-align: center;
  margin-bottom: 2rem;
}

.mission-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: rgba(88, 28, 135, 0.3);
  border: 1px solid rgba(126, 34, 206, 0.4);
  padding: 0.375rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
}

.mission-pill svg {
  width: 16px;
  height: 16px;
  color: var(--pulse-pink);
}

.mission-head h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1rem;
  line-height: 1.15;
}

@media (min-width: 768px) {
  .mission-head h2 {
    font-size: 3rem;
  }
}

.mission-head p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.5;
}

.mission-card {
  backdrop-filter: blur(4px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
}

.mission-card h3 {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 1.5rem;
}

.mission-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 1rem;
}

@media (min-width: 768px) {
  .mission-card h4 {
    font-size: 1.5rem;
  }
}

.timer-digits {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

@media (min-width: 640px) {
  .timer-digits {
    gap: 1rem;
  }
}

.timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timer-unit .num {
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  min-width: 3ch;
  text-align: center;
}

@media (min-width: 768px) {
  .timer-unit .num {
    font-size: 3rem;
  }
}

.timer-unit .lbl {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.25rem;
}

.timer-sep {
  font-size: 1.875rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
}

@media (min-width: 768px) {
  .timer-sep {
    font-size: 3rem;
  }
}

.mission-card .btn-mission {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  color: #fff;
  background: #ff2688;
  box-shadow: 0 10px 15px -3px rgba(255, 38, 136, 0.2);
}

.mission-card .btn-mission:hover {
  filter: brightness(1.06);
}

/* Share */
.section-share {
  position: relative;
  padding: 5rem 0;
  background: var(--gray-950);
}

.share-inner {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.share-inner h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin: 0 0 1rem;
  color: #fff;
}

@media (min-width: 768px) {
  .share-inner h2 {
    font-size: 3rem;
  }
}

.share-bar {
  width: 8rem;
  height: 4px;
  margin: 0 auto 1.5rem;
  border-radius: 9999px;
  background: linear-gradient(90deg, var(--pulse-pink), var(--pulse-purple), var(--pulse-blue));
}

.share-inner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  font-weight: 500;
  margin: 0 0 1.5rem;
}

@media (min-width: 768px) {
  .share-inner p {
    font-size: 1.25rem;
  }
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding: 0 1rem;
}

.share-buttons a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-weight: 500;
  width: 100%;
  justify-content: center;
}

@media (min-width: 640px) {
  .share-buttons a {
    width: auto;
  }
}

.share-buttons a:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Footer */
.site-footer {
  background: var(--gray-900);
  color: #fff;
  padding: 4rem 0 2rem;
  position: relative;
}

.site-footer .fblur {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  pointer-events: none;
}

.site-footer .fblur::before {
  content: "";
  position: absolute;
  top: -6rem;
  left: -6rem;
  width: 24rem;
  height: 24rem;
  border-radius: 9999px;
  background: #9333ea;
  filter: blur(48px);
}

.site-footer .fblur::after {
  content: "";
  position: absolute;
  bottom: 50%;
  right: -6rem;
  width: 24rem;
  height: 24rem;
  border-radius: 9999px;
  background: #2563eb;
  filter: blur(48px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-col h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 1rem;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

.footer-col a:hover {
  color: var(--pulse-pink);
}

.footer-about-logo {
  height: 6rem;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .footer-about-logo {
    height: 7rem;
  }
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin: 0 0 1rem;
  line-height: 1.5;
}

.social-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.social-icon-link {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.5);
}

.social-icon-link:hover {
  color: var(--pulse-pink);
}

.social-svg {
  width: 18px;
  height: 18px;
  display: block;
}

.social-svg--fill {
  width: 18px;
  height: 18px;
}

.store-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.store-row img {
  height: 3rem;
  width: auto;
}

@media (min-width: 768px) {
  .store-row img {
    height: 3.5rem;
  }
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.footer-legal a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal a:hover {
  color: #c084fc;
}
