:root {
  --black: #000000;
  --white: #ffffff;
  --ink: #101018;
  --night: #03030c;
  --navy: #071028;
  --deep-purple: #26003f;
  --purple: #8f2cff;
  --soft-purple: #b98ce6;
  --magenta: #ff56d6;
  --pink: #ff1f8b;
  --orange: #ff7a2e;
  --gold: #ffd166;
  --yellow: #ffe88f;
  --teal: #46e3ff;
  --green: #3aecca;
  --lime: #b6ff4a;
  --glass: rgba(255, 255, 255, 0.08);
  --glass-strong: rgba(255, 255, 255, 0.14);
  --glass-border: rgba(255, 255, 255, 0.22);
  --text-muted: rgba(255, 255, 255, 0.72);
  --text-soft: rgba(255, 255, 255, 0.56);
  --dark-muted: rgba(12, 14, 24, 0.66);
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --shadow-panel: 0 24px 65px rgba(2, 5, 16, 0.48), 0 10px 30px rgba(2, 5, 16, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  --shadow-neon: 0 0 16px rgba(70, 227, 255, 0.24), 0 0 24px rgba(255, 86, 214, 0.22), 0 14px 38px rgba(14, 18, 38, 0.28);
  --container: min(1160px, calc(100vw - 32px));
  --scroll-progress: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--white);
  font-family: "Inter", "IBM Plex Sans", "Segoe UI", system-ui, sans-serif;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 86, 214, 0.2), transparent 28rem),
    linear-gradient(
      180deg,
      #000000 0,
      #020611 90vh,
      #170329 190vh,
      #32084b 320vh,
      #7d136d 450vh,
      #e13f77 560vh,
      #ff7a2e 670vh,
      #ffd166 785vh,
      #fff4cc 900vh,
      #ffffff 100%
    );
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  color: var(--black);
  background: var(--gold);
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 1000;
  top: 16px;
  left: 16px;
  width: auto;
  height: auto;
  margin: 0;
  padding: 12px 14px;
  clip: auto;
  border-radius: 999px;
  color: var(--black);
  background: var(--white);
}

.scroll-sky {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  overflow: hidden;
}

.scroll-sky::before,
.scroll-sky::after {
  content: "";
  position: absolute;
  inset: -20%;
  opacity: calc(0.8 - (var(--scroll-progress) * 0.38));
  transition: opacity 160ms linear;
}

.scroll-sky::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 86, 214, 0.24), transparent 30%),
    radial-gradient(circle at 78% 16%, rgba(70, 227, 255, 0.2), transparent 25%),
    radial-gradient(circle at 58% 82%, rgba(255, 209, 102, 0.14), transparent 20%);
  filter: blur(28px);
  transform: translate3d(0, calc(var(--scroll-progress) * -80px), 0);
}

.scroll-sky::after {
  background:
    linear-gradient(110deg, transparent 0 42%, rgba(255, 255, 255, 0.04) 43%, transparent 44% 100%),
    repeating-linear-gradient(104deg, transparent 0 42px, rgba(70, 227, 255, 0.08) 43px 44px, transparent 46px 94px);
  opacity: calc(0.22 - (var(--scroll-progress) * 0.1));
  mix-blend-mode: screen;
}

.cursor-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  left: var(--cursor-x, 50vw);
  top: var(--cursor-y, 28vh);
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle, rgba(70, 227, 255, 0.18), transparent 52%),
    radial-gradient(circle, rgba(255, 86, 214, 0.16), transparent 68%);
  filter: blur(14px);
  opacity: calc(0.72 - (var(--scroll-progress) * 0.38));
}

.grain {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px);
  background-size: 42px 42px, 64px 64px;
  mix-blend-mode: overlay;
}

.site-nav {
  position: fixed;
  z-index: 50;
  top: 14px;
  left: 50%;
  width: var(--container);
  min-height: 64px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px 10px 16px;
  color: var(--white);
  border: 1px solid transparent;
  border-radius: 999px;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.site-nav.is-scrolled,
.site-nav.nav-open {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(7, 9, 20, 0.62);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  width: clamp(118px, 17vw, 180px);
  min-width: 112px;
}

.nav-brand img {
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a {
  padding: 12px 13px;
  border-radius: 999px;
  transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.nav-links .nav-cta {
  margin-left: 4px;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold), #fff4a5 42%, var(--magenta));
  box-shadow: 0 0 26px rgba(255, 86, 214, 0.22), 0 14px 36px rgba(255, 122, 46, 0.16);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  place-items: center;
  gap: 4px;
}

.nav-toggle span {
  width: 17px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: var(--white);
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.section-shell {
  position: relative;
  width: min(100%, 100vw);
  padding: clamp(82px, 12vw, 150px) max(16px, calc((100vw - 1160px) / 2));
}

.gradient-section {
  overflow: clip;
}

.hero {
  min-height: 96svh;
  display: grid;
  align-items: start;
  padding-top: 124px;
  padding-bottom: 40px;
  isolation: isolate;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 86, 214, 0.18), transparent 28%),
    radial-gradient(circle at 38% 72%, rgba(70, 227, 255, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(3, 4, 16, 0.6));
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: auto -10% -20% -10%;
  height: 44%;
  background: linear-gradient(180deg, transparent, rgba(255, 86, 214, 0.12), rgba(255, 209, 102, 0.08));
  filter: blur(36px);
}

.neon-waves {
  position: absolute;
  inset: 18% -14% auto -14%;
  height: 58%;
  opacity: 0.5;
  transform: rotate(-6deg);
  background:
    repeating-linear-gradient(176deg, transparent 0 34px, rgba(255, 86, 214, 0.14) 35px 36px, transparent 37px 72px),
    repeating-linear-gradient(188deg, transparent 0 46px, rgba(70, 227, 255, 0.12) 47px 48px, transparent 49px 100px);
  mask-image: radial-gradient(ellipse at center, #000 0 42%, transparent 72%);
}

.floating-bars {
  position: absolute;
  width: clamp(126px, 16vw, 240px);
  opacity: 0.64;
  filter: drop-shadow(0 0 34px rgba(255, 86, 214, 0.24));
  will-change: transform;
}

.floating-bars-one {
  top: 18%;
  left: clamp(12px, 7vw, 110px);
  transform: rotate(-13deg);
}

.floating-bars-two {
  right: clamp(-28px, 8vw, 90px);
  bottom: 17%;
  transform: rotate(18deg) scale(0.9);
}

.glow-orb {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 24px var(--teal), 0 0 56px rgba(70, 227, 255, 0.34);
  animation: floatPulse 5.6s ease-in-out infinite;
}

.orb-one {
  top: 24%;
  right: 27%;
}

.orb-two {
  bottom: 26%;
  left: 18%;
  width: 9px;
  height: 9px;
  background: var(--magenta);
  box-shadow: 0 0 24px var(--magenta), 0 0 50px rgba(255, 86, 214, 0.34);
  animation-delay: -1.8s;
}

.orb-three {
  bottom: 18%;
  right: 18%;
  width: 11px;
  height: 11px;
  background: var(--gold);
  box-shadow: 0 0 24px var(--gold), 0 0 50px rgba(255, 209, 102, 0.28);
  animation-delay: -3.1s;
}

.hero-content {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding-top: clamp(12px, 4vh, 42px);
  text-align: center;
}

.hero-logo {
  width: clamp(300px, 44vw, 620px);
  margin: 0 auto clamp(14px, 2vw, 22px);
  filter: drop-shadow(0 0 24px rgba(255, 255, 255, 0.12)) drop-shadow(0 0 42px rgba(255, 86, 214, 0.18));
}

.eyebrow {
  margin: 0 0 16px;
  color: #bddbf9;
  font-size: clamp(0.72rem, 1.6vw, 0.82rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 0 15px rgba(70, 227, 255, 0.15), 0 0 15px rgba(255, 86, 214, 0.1);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Poppins", "SF Pro Display", "Avenir Next", "Segoe UI", system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
}

h1 {
  max-width: 960px;
  margin: 0 auto;
  font-size: clamp(3.1rem, 6.6vw, 6.35rem);
  line-height: 0.93;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.45rem, 6vw, 5.6rem);
  line-height: 0.95;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.05;
}

p {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.66;
}

.hero-subhead {
  max-width: 760px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.08rem, 2vw, 1.36rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 24px auto 0;
  flex-wrap: wrap;
}

.beta-form {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 10px;
  width: min(100%, 506px);
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04) 45%, rgba(8, 10, 24, 0.5));
  box-shadow: var(--shadow-panel);
  backdrop-filter: blur(18px);
}

.beta-form input {
  min-width: 0;
  flex: 1;
  height: 48px;
  padding: 0 12px 0 18px;
  color: var(--white);
  border: 0;
  outline: 0;
  border-radius: 999px;
  background: transparent;
}

.beta-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  color: var(--black);
  border-color: rgba(255, 255, 255, 0.38);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 209, 102, 0.96) 28%, rgba(255, 86, 214, 0.94) 74%, rgba(70, 227, 255, 0.9));
  box-shadow: 0 0 26px rgba(255, 86, 214, 0.26), 0 18px 46px rgba(255, 122, 46, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 0 36px rgba(255, 86, 214, 0.38), 0 0 44px rgba(70, 227, 255, 0.18), 0 22px 54px rgba(255, 122, 46, 0.22);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(70, 227, 255, 0.5);
  box-shadow: 0 0 28px rgba(70, 227, 255, 0.14);
}

.form-status {
  position: absolute;
  left: 18px;
  right: 18px;
  top: calc(100% + 8px);
  margin: 0;
  color: var(--gold);
  font-size: 0.85rem;
  line-height: 1.3;
  text-align: left;
}

.microcopy {
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.94rem;
}

.first-light-preview {
  width: min(700px, calc(100% - 32px));
  margin: clamp(42px, 8vh, 72px) auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.first-light-preview span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.section-grid,
.split-layout {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 1.06fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}

.split-layout {
  grid-template-columns: minmax(320px, 1fr) minmax(0, 0.98fr);
}

.section-copy p,
.section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.section-copy > p:last-of-type {
  margin-bottom: 0;
}

.feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.feature-chips span {
  padding: 11px 14px;
  color: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  font-size: 0.92rem;
  font-weight: 800;
}

.phone-stage {
  position: relative;
  min-height: clamp(520px, 70vw, 720px);
}

.phone {
  position: absolute;
  width: min(62vw, 360px);
  border-radius: 44px;
  filter: drop-shadow(0 34px 80px rgba(0, 0, 0, 0.54)) drop-shadow(0 0 42px rgba(70, 227, 255, 0.16));
  will-change: transform;
}

.phone-front {
  z-index: 2;
  right: 9%;
  top: 0;
  animation: phoneFloat 6s ease-in-out infinite;
}

.phone-back {
  z-index: 1;
  left: 2%;
  top: 10%;
  opacity: 0.72;
  transform: scale(0.88) rotate(-7deg);
  animation: phoneFloatBack 7.5s ease-in-out infinite;
}

.stage-bars {
  position: absolute;
  right: 0;
  bottom: 6%;
  width: min(34vw, 190px);
  opacity: 0.8;
  filter: drop-shadow(0 0 35px rgba(255, 86, 214, 0.28));
  transform: rotate(-18deg);
}

.map-section {
  padding-top: clamp(92px, 13vw, 160px);
}

.map-visual {
  min-height: clamp(420px, 58vw, 620px);
  display: grid;
  place-items: center;
}

.energy-map {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(70, 227, 255, 0.12), transparent 40%),
    radial-gradient(circle at 68% 32%, rgba(255, 86, 214, 0.2), transparent 20%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03) 34%, rgba(0, 0, 0, 0.38));
  box-shadow: var(--shadow-panel), 0 0 62px rgba(70, 227, 255, 0.13);
  backdrop-filter: blur(8px);
}

.energy-map::before {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle, #000 0 62%, transparent 72%);
}

.map-loop {
  position: absolute;
  inset: 5%;
  width: 90%;
  height: 90%;
  object-fit: cover;
  border-radius: 50%;
  opacity: 0.3;
  mix-blend-mode: screen;
  filter: saturate(1.35) contrast(1.08);
}

.map-ring {
  position: absolute;
  border: 1px solid rgba(70, 227, 255, 0.35);
  border-radius: 50%;
  inset: var(--ring-inset);
  opacity: 0.75;
  animation: ringPulse 5.2s ease-in-out infinite;
}

.ring-one {
  --ring-inset: 14%;
}

.ring-two {
  --ring-inset: 27%;
  border-color: rgba(255, 86, 214, 0.34);
  animation-delay: -1.3s;
}

.ring-three {
  --ring-inset: 40%;
  border-color: rgba(255, 209, 102, 0.36);
  animation-delay: -2.4s;
}

.map-node {
  position: absolute;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 34px rgba(255, 86, 214, 0.22);
  animation: nodePulse 4.8s ease-in-out infinite;
}

.map-node b {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: block;
  background: linear-gradient(135deg, var(--magenta), var(--teal), var(--gold));
  box-shadow: 0 0 22px rgba(70, 227, 255, 0.5);
}

.node-one {
  top: 24%;
  left: 24%;
}

.node-two {
  top: 28%;
  right: 18%;
  animation-delay: -1.1s;
}

.node-three {
  bottom: 22%;
  left: 28%;
  animation-delay: -2.3s;
}

.node-four {
  bottom: 26%;
  right: 30%;
  animation-delay: -3.2s;
}

.map-card {
  position: absolute;
  left: 50%;
  bottom: 13%;
  transform: translateX(-50%);
  min-width: 210px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background: rgba(5, 7, 18, 0.66);
  box-shadow: var(--shadow-panel);
  backdrop-filter: blur(16px);
}

.map-card span,
.city-stat span,
.event-meta,
.feature-card span,
.community-card span {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.map-card strong,
.city-stat strong {
  display: block;
  margin-top: 4px;
  font-size: 1.1rem;
}

.feature-card-grid {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.feature-card,
.community-card {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 86, 214, 0.12), transparent 28%),
    radial-gradient(circle at 88% 22%, rgba(70, 227, 255, 0.11), transparent 24%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow-panel);
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.feature-card::before,
.community-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, rgba(255, 86, 214, 0.65), transparent 38%, rgba(70, 227, 255, 0.5), transparent 78%, rgba(255, 209, 102, 0.55));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0.55;
}

.feature-card h3,
.community-card h3 {
  position: relative;
  margin-top: 6px;
}

.feature-card p,
.community-card p {
  position: relative;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.98rem;
}

.section-heading {
  width: min(760px, var(--container));
  margin: 0 auto clamp(28px, 5vw, 54px);
  text-align: center;
}

.events-section {
  padding-bottom: clamp(86px, 14vw, 160px);
}

.carousel-shell {
  width: min(100vw, 1280px);
  margin: 0 auto;
}

.carousel-actions {
  width: var(--container);
  margin: 0 auto 16px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.carousel-button {
  width: 46px;
  height: 46px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-neon);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.carousel-button:hover,
.carousel-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(70, 227, 255, 0.45);
  background: rgba(255, 255, 255, 0.14);
  outline: none;
}

.event-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 360px);
  gap: 18px;
  width: 100%;
  overflow-x: auto;
  padding: 8px max(16px, calc((100vw - 1160px) / 2)) 22px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.event-carousel::-webkit-scrollbar {
  display: none;
}

.event-card {
  position: relative;
  min-height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 32px;
  overflow: hidden;
  scroll-snap-align: start;
  background: #10051e;
  box-shadow: var(--shadow-panel), 0 0 42px rgba(255, 86, 214, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.event-card:hover,
.event-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.42), 0 0 44px rgba(255, 86, 214, 0.28), 0 0 42px rgba(70, 227, 255, 0.16);
}

.event-card-media,
.event-card-media video,
.event-card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.event-card-media img,
.event-card-media video {
  object-fit: cover;
  filter: saturate(1.15) contrast(1.08);
}

.event-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.16) 35%, rgba(0, 0, 0, 0.8)),
    radial-gradient(circle at 18% 16%, rgba(255, 86, 214, 0.25), transparent 26%),
    radial-gradient(circle at 86% 40%, rgba(70, 227, 255, 0.18), transparent 24%);
}

.event-card-content {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 24px;
}

.event-card h3 {
  margin-top: 10px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
}

.event-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.98rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  color: var(--black);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--magenta));
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-card-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: end;
  margin-top: 24px;
}

.event-mini-map {
  width: 78px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background:
    radial-gradient(circle at 62% 38%, rgba(255, 209, 102, 0.95), transparent 0 9%, transparent 10%),
    linear-gradient(135deg, #36005c, #0c73ff 50%, #ff7a2e);
  box-shadow: 0 0 24px rgba(255, 86, 214, 0.18);
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.philosophy-section {
  color: var(--white);
  text-align: center;
}

.philosophy-inner {
  width: min(940px, var(--container));
  margin: 0 auto;
}

.statement-stack {
  display: grid;
  gap: clamp(16px, 3vw, 28px);
  margin: clamp(36px, 7vw, 72px) auto;
}

.statement-stack p {
  margin: 0;
  display: grid;
  gap: 4px;
  font-family: "Poppins", "SF Pro Display", system-ui, sans-serif;
  line-height: 0.95;
}

.statement-stack span {
  color: rgba(255, 255, 255, 0.54);
  font-size: clamp(2rem, 6vw, 5.4rem);
  font-weight: 700;
}

.statement-stack strong {
  font-size: clamp(3rem, 8vw, 7.4rem);
  font-weight: 950;
  background: linear-gradient(110deg, var(--white), var(--yellow), var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.philosophy-body {
  width: min(670px, 100%);
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.72);
}

.community-section {
  color: var(--ink);
}

.community-section .eyebrow {
  color: #7b2657;
  text-shadow: none;
}

.community-section .section-heading p {
  color: rgba(20, 13, 18, 0.72);
}

.community-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.community-card {
  min-height: 260px;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.2), transparent 22%),
    linear-gradient(150deg, rgba(17, 10, 22, 0.86), rgba(98, 23, 71, 0.76) 46%, rgba(255, 122, 46, 0.72));
}

.community-card span {
  color: rgba(255, 236, 190, 0.78);
}

.community-card .card-glyph {
  width: 58px;
  height: 58px;
  margin-bottom: 56px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 66% 28%, var(--gold), transparent 15%),
    linear-gradient(135deg, var(--magenta), var(--teal));
  box-shadow: 0 0 34px rgba(255, 86, 214, 0.24);
}

.city-section {
  color: var(--ink);
}

.city-layout {
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
}

.city-section .eyebrow {
  color: #8a2336;
  text-shadow: none;
}

.city-section .section-copy p {
  color: var(--dark-muted);
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 13px 14px 13px 42px;
  border: 1px solid rgba(10, 12, 24, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  color: rgba(10, 12, 24, 0.72);
  font-weight: 850;
  box-shadow: 0 14px 32px rgba(86, 42, 5, 0.08);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  width: 12px;
  height: 12px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--magenta), var(--gold));
  box-shadow: 0 0 18px rgba(255, 86, 214, 0.24);
}

.city-map-panel {
  position: relative;
  min-height: clamp(480px, 58vw, 680px);
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 86, 214, 0.34), transparent 26%),
    radial-gradient(circle at 78% 68%, rgba(70, 227, 255, 0.26), transparent 28%),
    linear-gradient(135deg, rgba(255, 246, 213, 0.74), rgba(255, 122, 46, 0.24), rgba(255, 255, 255, 0.55));
  box-shadow: 0 28px 80px rgba(88, 45, 7, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.city-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(12, 14, 24, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 14, 24, 0.08) 1px, transparent 1px);
  background-size: 58px 58px;
  transform: perspective(600px) rotateX(54deg) scale(1.28);
  transform-origin: center bottom;
  opacity: 0.52;
}

.heat,
.route {
  position: absolute;
  pointer-events: none;
}

.heat {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 86, 214, 0.64), rgba(255, 122, 46, 0.22) 42%, transparent 68%);
  filter: blur(8px);
  animation: heatPulse 4.8s ease-in-out infinite;
}

.heat-one {
  top: 15%;
  left: 16%;
}

.heat-two {
  right: 8%;
  top: 38%;
  background: radial-gradient(circle, rgba(70, 227, 255, 0.54), rgba(58, 236, 202, 0.2) 42%, transparent 68%);
  animation-delay: -1.5s;
}

.heat-three {
  left: 36%;
  bottom: 12%;
  background: radial-gradient(circle, rgba(255, 209, 102, 0.62), rgba(255, 86, 214, 0.18) 42%, transparent 68%);
  animation-delay: -2.8s;
}

.route {
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--magenta), var(--teal), transparent);
  box-shadow: 0 0 18px rgba(70, 227, 255, 0.34);
}

.route-one {
  width: 70%;
  left: 14%;
  top: 43%;
  transform: rotate(-12deg);
}

.route-two {
  width: 58%;
  right: 8%;
  bottom: 32%;
  transform: rotate(18deg);
}

.city-bars {
  position: absolute;
  top: 28px;
  right: 26px;
  width: 118px;
  transform: rotate(-16deg);
  filter: drop-shadow(0 0 28px rgba(255, 86, 214, 0.28));
}

.content-loop {
  position: absolute;
  left: 26px;
  bottom: 26px;
  width: min(46%, 250px);
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 28px;
  box-shadow: 0 28px 74px rgba(0, 0, 0, 0.24), 0 0 34px rgba(255, 86, 214, 0.18);
}

.city-stat {
  position: absolute;
  min-width: 160px;
  padding: 15px 17px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 22px;
  background: rgba(5, 7, 18, 0.68);
  box-shadow: var(--shadow-panel);
  backdrop-filter: blur(16px);
}

.stat-one {
  left: 50%;
  top: 22%;
}

.stat-two {
  right: 24px;
  bottom: 24%;
}

.sunrise-cta {
  padding: clamp(92px, 13vw, 170px) 16px;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 0, rgba(255, 209, 102, 0.52), transparent 42%),
    linear-gradient(180deg, rgba(255, 246, 213, 0.44), rgba(255, 255, 255, 0.95));
}

.sunrise-card {
  position: relative;
  width: min(980px, 100%);
  margin: 0 auto;
  padding: clamp(30px, 6vw, 72px);
  overflow: hidden;
  border: 1px solid rgba(12, 14, 24, 0.08);
  border-radius: clamp(28px, 5vw, 52px);
  text-align: center;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 86, 214, 0.16), transparent 24%),
    radial-gradient(circle at 86% 10%, rgba(70, 227, 255, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.52));
  box-shadow: 0 30px 90px rgba(113, 72, 0, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.sunrise-card .eyebrow {
  color: #9b2744;
  text-shadow: none;
}

.sunrise-card p {
  width: min(650px, 100%);
  margin: 20px auto 0;
  color: rgba(12, 14, 24, 0.66);
}

.sunrise-bars {
  position: absolute;
  width: clamp(90px, 18vw, 180px);
  right: clamp(-20px, 4vw, 40px);
  top: clamp(-24px, 2vw, 20px);
  transform: rotate(-14deg);
  opacity: 0.72;
  filter: drop-shadow(0 0 28px rgba(255, 86, 214, 0.22));
}

.beta-form-light {
  margin: 30px auto 0;
  border-color: rgba(12, 14, 24, 0.12);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 46px rgba(86, 42, 5, 0.1);
}

.beta-form-light input {
  color: var(--ink);
}

.beta-form-light input::placeholder {
  color: rgba(12, 14, 24, 0.44);
}

.beta-form-light .form-status {
  color: #8a2336;
}

.sunrise-card .microcopy {
  color: rgba(12, 14, 24, 0.52);
  font-size: 0.96rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 34px max(16px, calc((100vw - 1160px) / 2)) 42px;
  color: var(--ink);
  background: var(--white);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo-wrap {
  width: 148px;
  display: inline-flex;
  padding: 9px 11px;
  border-radius: 999px;
  background: var(--black);
}

.footer-brand p {
  margin: 0;
  color: rgba(12, 14, 24, 0.64);
  font-size: 0.98rem;
}

.footer-links,
.social-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-links a,
.social-links a {
  color: rgba(12, 14, 24, 0.66);
  font-weight: 800;
}

.social-links a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(12, 14, 24, 0.12);
  border-radius: 50%;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatPulse {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -16px, 0) scale(1.2);
  }
}

@keyframes phoneFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(4deg);
  }
  50% {
    transform: translate3d(0, -16px, 0) rotate(2deg);
  }
}

@keyframes phoneFloatBack {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(0.88) rotate(-7deg);
  }
  50% {
    transform: translate3d(0, 14px, 0) scale(0.88) rotate(-4deg);
  }
}

@keyframes ringPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.55;
  }
  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

@keyframes nodePulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

@keyframes heatPulse {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.72;
  }
  50% {
    transform: scale(1.12);
    opacity: 1;
  }
}

@media (max-width: 940px) {
  .site-nav {
    top: 10px;
    min-height: 60px;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-links {
    position: fixed;
    top: 74px;
    left: 50%;
    width: min(420px, calc(100vw - 32px));
    transform: translateX(-50%) translateY(-12px);
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 28px;
    background: rgba(7, 9, 20, 0.84);
    box-shadow: var(--shadow-panel);
    backdrop-filter: blur(22px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
  }

  .nav-links a {
    padding: 14px 16px;
  }

  .nav-links .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .section-grid,
  .split-layout,
  .city-layout {
    grid-template-columns: 1fr;
  }

  .split-layout .map-visual {
    order: 2;
  }

  .phone-stage {
    min-height: clamp(490px, 116vw, 680px);
  }

  .phone-front {
    right: 8%;
  }

  .phone-back {
    left: 0;
  }

  .community-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100vw - 28px, 1160px);
  }

  .site-nav {
    width: calc(100vw - 24px);
  }

  .hero {
    min-height: 97svh;
    padding-top: 88px;
  }

  h1 {
    font-size: clamp(2.55rem, 12.4vw, 3.7rem);
    line-height: 0.96;
    max-width: 9.8ch;
  }

  h2 {
    font-size: clamp(2.4rem, 12vw, 4.4rem);
  }

  .hero-logo {
    width: min(300px, 78vw);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .beta-form {
    width: 100%;
    flex-direction: column;
    border-radius: 28px;
  }

  .beta-form input {
    width: 100%;
    height: 52px;
    padding-left: 14px;
    text-align: center;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
  }

  .beta-form-light input {
    background: rgba(12, 14, 24, 0.04);
  }

  .beta-form .button {
    width: 100%;
  }

  .form-status {
    position: static;
    text-align: center;
    padding: 0 8px 4px;
  }

  .first-light-preview {
    flex-wrap: wrap;
  }

  .floating-bars-one {
    left: -30px;
  }

  .floating-bars-two {
    right: -54px;
  }

  .section-shell {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .feature-chips span {
    width: 100%;
    text-align: center;
  }

  .phone {
    width: min(76vw, 320px);
  }

  .phone-back {
    opacity: 0.5;
  }

  .energy-map {
    width: min(100%, 420px);
  }

  .map-node {
    width: 44px;
    height: 44px;
  }

  .map-card {
    min-width: 178px;
  }

  .carousel-actions {
    justify-content: center;
  }

  .event-carousel {
    grid-auto-columns: minmax(268px, 82vw);
  }

  .event-card {
    min-height: 450px;
  }

  .community-grid {
    grid-template-columns: 1fr;
  }

  .city-map-panel {
    min-height: 560px;
  }

  .content-loop {
    width: 46%;
  }

  .city-stat {
    min-width: 138px;
    padding: 13px;
  }

  .stat-one {
    left: 24px;
    top: 26%;
  }

  .stat-two {
    right: 18px;
    bottom: 26%;
  }

  .footer-brand,
  .footer-links,
  .social-links {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

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