/* =========================================================
   Launchpad 641 — Dark Blue Neon Landing Page Styles
   Theme: Dark navy/blue, electric blue + sky-blue neon glows, glass cards
   Usage:
     <link rel="stylesheet" href="./assets/fonts/fonts.css">
     <link rel="stylesheet" href="./launchpad-641.css">
   ========================================================= */

:root {
  --bg: #030608;
  --bg-2: #060b12;
  --bg-3: #0a121c;
  --slate: #142133;
  --slate-2: #1a2b42;

  --text: #eef7ff;
  --text-soft: #b7c8d9;
  --text-muted: #7f93a8;

  --neon-blue: #3b82ff;
  --neon-cyan: #5ec8ff;
  --neon-green: #2fe8b0;
  --neon-violet: #a855f7;
  --neon-pink: #ff4ecd;
  --neon-yellow: #faff00;

  --border: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(59, 130, 255, 0.35);

  --glass: rgba(255, 255, 255, 0.055);
  --glass-strong: rgba(255, 255, 255, 0.09);

  --shadow-soft: 0 20px 80px rgba(0, 0, 0, 0.38);
  --shadow-neon-blue: 0 0 30px rgba(59, 130, 255, 0.24);
  --shadow-neon-cyan: 0 0 30px rgba(94, 200, 255, 0.22);
  --shadow-neon-green: 0 0 30px rgba(47, 232, 176, 0.25);
  --shadow-neon-violet: 0 0 30px rgba(168, 85, 247, 0.25);
  --shadow-neon-pink: 0 0 30px rgba(255, 78, 205, 0.25);

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;

  --container: 1180px;
  --section-padding: 96px;
}

/* ------------------------------
   Reset / Base
------------------------------ */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 10%, rgba(94, 200, 255, 0.12), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(255, 78, 205, 0.14), transparent 28%),
    radial-gradient(circle at 50% 95%, rgba(47, 232, 176, 0.1), transparent 32%),
    linear-gradient(180deg, var(--bg) 0%, #020304 100%);
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

::selection {
  background: rgba(59, 130, 255, 0.34);
  color: #ffffff;
}

/* ------------------------------
   Layout Utilities
------------------------------ */

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: var(--section-padding) 0;
}

.section-tight {
  padding: 64px 0;
}

.section-header {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-eyebrow,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--neon-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-eyebrow::before,
.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--neon-blue);
  box-shadow: 0 0 18px var(--neon-blue);
}

.eyebrow.green {
  color: var(--neon-green);
}

.eyebrow.green::before {
  background: var(--neon-green);
  box-shadow: 0 0 18px var(--neon-green);
}

.eyebrow.pink {
  color: var(--neon-pink);
}

.eyebrow.pink::before {
  background: var(--neon-pink);
  box-shadow: 0 0 18px var(--neon-pink);
}

.section-title,
h1,
h2,
h3 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

h1,
.hero-title {
  margin: 0;
  font-size: clamp(4rem, 11vw, 10rem);
  font-weight: 700;
}

h2,
.section-title {
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 5vw, 5.6rem);
  font-weight: 700;
}

h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

p {
  color: var(--text-soft);
  line-height: 1.7;
}

.lead {
  max-width: 780px;
  color: var(--text-soft);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.65;
}

.text-muted {
  color: var(--text-muted);
}

.neon-text {
  color: var(--neon-blue);
  text-shadow: 0 0 24px rgba(59, 130, 255, 0.42);
}

.digit-blue {
  color: var(--neon-blue);
  text-shadow: 0 0 18px rgba(59, 130, 255, 0.5);
}

.digit-green {
  color: var(--neon-green);
  text-shadow: 0 0 18px rgba(47, 232, 176, 0.5);
}

.digit-pink {
  color: var(--neon-pink);
  text-shadow: 0 0 18px rgba(255, 78, 205, 0.5);
}

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

/* ------------------------------
   Header / Navigation
------------------------------ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(3, 6, 8, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(59, 130, 255, 0.45);
  border-radius: 12px;
  color: var(--bg);
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-green));
  box-shadow: var(--shadow-neon-blue);
}

.logo-image {
  height: 21px;
  width: auto;
  display: block;
}

.footer-logo-image {
  height: 38px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--text-soft);
  font-size: 0.94rem;
  font-weight: 600;
}

.nav-links a {
  transition: color 180ms ease, text-shadow 180ms ease;
}

.nav-links a:hover {
  color: var(--text);
  text-shadow: 0 0 16px rgba(94, 200, 255, 0.55);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-phone {
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
  transition: color 180ms ease;
}

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

/* ------------------------------
   Buttons
------------------------------ */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: -0.01em;
  isolation: isolate;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

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

.btn-primary {
  color: #071018;
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-green));
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 18px 60px rgba(59, 130, 255, 0.24);
}

.btn-primary:hover {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18), 0 22px 80px rgba(47, 232, 176, 0.28);
}

.btn-secondary {
  color: var(--text);
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
}

.btn-secondary:hover {
  border-color: rgba(255, 78, 205, 0.42);
  box-shadow: var(--shadow-neon-pink);
}

.btn-ghost {
  color: var(--text-soft);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.1);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: rgba(59, 130, 255, 0.34);
}

.btn-icon {
  min-height: 44px;
  width: 44px;
  padding: 0;
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  flex-shrink: 0;
}

.btn-icon svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-icon:hover {
  border-color: rgba(94, 200, 255, 0.52);
}

.btn-whatsapp {
  color: #25d366;
}

.btn-whatsapp:hover {
  border-color: rgba(37, 211, 102, 0.55);
  box-shadow: 0 0 0 1px rgba(37, 211, 102, 0.2), 0 18px 60px rgba(37, 211, 102, 0.18);
}

/* ------------------------------
   Hero
------------------------------ */

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  padding: 48px 0 76px;
  overflow: hidden;
}

.hero::before {
  content: "641";
  position: absolute;
  right: -2vw;
  top: 4vh;
  z-index: -1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 78, 205, 0.18);
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(10rem, 30vw, 32rem);
  font-weight: 700;
  letter-spacing: -0.1em;
  opacity: 0.72;
  text-shadow: 0 0 70px rgba(255, 78, 205, 0.14);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 54px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 9px 14px;
  border: 1px solid rgba(59, 130, 255, 0.34);
  border-radius: 999px;
  background: rgba(59, 130, 255, 0.07);
  color: var(--text);
  box-shadow: var(--shadow-neon-blue);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-badge span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--neon-blue);
  box-shadow: 0 0 18px var(--neon-blue);
}

.hero-title {
  max-width: 900px;
}

.hero-subtitle {
  max-width: 720px;
  margin: 28px 0 0;
  font-size: clamp(1.1rem, 1.9vw, 1.46rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 44px;
  max-width: 720px;
}

.stat-card {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(18px);
}

.stat-number {
  display: block;
  margin-bottom: 4px;
  font-family: "Space Grotesk", "Inter", sans-serif;
  color: var(--text);
  font-size: 1.55rem;
  font-weight: 700;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.86rem;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  min-height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at 25% 20%, rgba(94, 200, 255, 0.18), transparent 34%),
    radial-gradient(circle at 80% 82%, rgba(59, 130, 255, 0.16), transparent 36%);
  box-shadow: var(--shadow-soft), inset 0 0 60px rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 28px;
  background-image:
    linear-gradient(rgba(94, 200, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94, 200, 255, 0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.5;
  transform: perspective(800px) rotateX(58deg) rotateZ(-8deg) translateY(80px);
  transform-origin: bottom center;
  mask-image: linear-gradient(to top, black, transparent);
}

.orbit-card {
  position: absolute;
  width: min(240px, 70%);
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(3, 6, 8, 0.72);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-soft);
}

.orbit-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 1.2rem;
}

.orbit-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.orbit-card.one {
  top: 52px;
  left: 36px;
  border-color: rgba(59, 130, 255, 0.28);
  box-shadow: var(--shadow-soft), var(--shadow-neon-blue);
}

.orbit-card.two {
  right: 28px;
  top: 168px;
  border-color: rgba(47, 232, 176, 0.3);
  box-shadow: var(--shadow-soft), var(--shadow-neon-green);
}

.orbit-card.three {
  left: 58px;
  bottom: 78px;
  border-color: rgba(255, 78, 205, 0.32);
  box-shadow: var(--shadow-soft), var(--shadow-neon-pink);
}

.launch-pill {
  position: absolute;
  right: 42px;
  bottom: 20px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 78, 205, 0.34);
  border-radius: 999px;
  background: rgba(255, 78, 205, 0.08);
  color: #ffd8f4;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 0 28px rgba(255, 78, 205, 0.18);
}

/* ------------------------------
   Cards / Grids
------------------------------ */

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.card,
.glass-card,
.feature-card,
.space-card,
.amenity-card {
  position: relative;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.card::before,
.glass-card::before,
.feature-card::before,
.space-card::before,
.amenity-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 10%, rgba(59, 130, 255, 0.18), transparent 32%),
    radial-gradient(circle at 95% 0%, rgba(94, 200, 255, 0.14), transparent 36%);
  transition: opacity 180ms ease;
}

.card:hover,
.glass-card:hover,
.feature-card:hover,
.space-card:hover,
.amenity-card:hover {
  transform: translateY(-6px);
  border-color: rgba(59, 130, 255, 0.32);
  box-shadow: var(--shadow-soft), 0 0 34px rgba(59, 130, 255, 0.12);
}

.card:hover::before,
.glass-card:hover::before,
.feature-card:hover::before,
.space-card:hover::before,
.amenity-card:hover::before {
  opacity: 1;
}

.card > *,
.glass-card > *,
.feature-card > *,
.space-card > *,
.amenity-card > * {
  position: relative;
  z-index: 1;
}

.card-icon,
.feature-icon,
.amenity-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border: 1px solid rgba(59, 130, 255, 0.32);
  border-radius: 16px;
  background: rgba(59, 130, 255, 0.08);
  color: var(--neon-blue);
  box-shadow: var(--shadow-neon-blue);
}

.card-icon.green,
.feature-icon.green,
.amenity-icon.green {
  border-color: rgba(47, 232, 176, 0.32);
  background: rgba(47, 232, 176, 0.08);
  color: var(--neon-green);
  box-shadow: var(--shadow-neon-green);
}

.card-icon.pink,
.feature-icon.pink,
.amenity-icon.pink {
  border-color: rgba(255, 78, 205, 0.32);
  background: rgba(255, 78, 205, 0.08);
  color: var(--neon-pink);
  box-shadow: var(--shadow-neon-pink);
}

.card h3,
.feature-card h3,
.space-card h3,
.amenity-card h3 {
  margin-bottom: 10px;
}

.card p,
.feature-card p,
.space-card p,
.amenity-card p {
  margin: 0;
  color: var(--text-soft);
}

/* ------------------------------
   Vibe / Split Sections
------------------------------ */

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 46px;
  align-items: center;
}

.panel {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: flex-end;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  background:
    radial-gradient(circle at 20% 12%, rgba(59, 130, 255, 0.28), transparent 34%),
    radial-gradient(circle at 85% 30%, rgba(47, 232, 176, 0.24), transparent 32%),
    radial-gradient(circle at 30% 88%, rgba(255, 78, 205, 0.24), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, transparent, black 30%, black 75%, transparent);
}

.panel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, var(--neon-blue), var(--neon-green), var(--neon-pink), transparent);
  opacity: 0.55;
  filter: blur(0.3px);
}

.panel-orb {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
  filter: blur(1px);
}

.panel-orb.blue {
  top: 48px;
  left: 42px;
  width: 14px;
  height: 14px;
  background: var(--neon-blue);
  box-shadow: 0 0 24px var(--neon-blue), 0 0 60px rgba(59, 130, 255, 0.5);
  animation: orb-drift-blue 17s ease-in-out infinite;
}

.panel-orb.green {
  top: 120px;
  right: 56px;
  width: 10px;
  height: 10px;
  background: var(--neon-green);
  box-shadow: 0 0 20px var(--neon-green), 0 0 50px rgba(47, 232, 176, 0.5);
  animation: orb-drift-green 21s ease-in-out infinite;
}

.panel-orb.pink {
  bottom: 190px;
  left: 64px;
  width: 18px;
  height: 18px;
  background: var(--neon-pink);
  box-shadow: 0 0 28px var(--neon-pink), 0 0 70px rgba(255, 78, 205, 0.5);
  animation: orb-drift-pink 25s ease-in-out infinite;
}

@keyframes orb-drift-blue {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(22px, 14px);
  }
  50% {
    transform: translate(8px, 34px);
  }
  75% {
    transform: translate(-14px, 10px);
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes orb-drift-green {
  0% {
    transform: translate(0, 0);
  }
  30% {
    transform: translate(-18px, 20px);
  }
  55% {
    transform: translate(-30px, -12px);
  }
  80% {
    transform: translate(10px, -22px);
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes orb-drift-pink {
  0% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(16px, -18px);
  }
  45% {
    transform: translate(34px, 6px);
  }
  70% {
    transform: translate(12px, 26px);
  }
  100% {
    transform: translate(0, 0);
  }
}

.panel-ring {
  position: absolute;
  top: 20%;
  right: -60px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(94, 200, 255, 0.35);
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
}

.panel-ring::before {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(47, 232, 176, 0.28);
  border-radius: 999px;
}

.panel-laptop {
  position: absolute;
  top: 96px;
  left: 40px;
  width: 130px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.9;
}

.panel-laptop svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.panel-laptop .laptop-line {
  fill: none;
  stroke: var(--neon-blue);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(59, 130, 255, 0.6));
}

.panel-laptop .laptop-screen-glow {
  fill: rgba(94, 200, 255, 0.12);
}

.panel-graph {
  position: relative;
  z-index: 1;
  width: 100%;
}

.panel-graph svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.panel-graph .graph-line {
  fill: none;
  stroke: url(#panelGraphGradient);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(47, 232, 176, 0.55));
}

.panel-graph .graph-fill {
  fill: url(#panelGraphFillGradient);
  opacity: 0.5;
}

.panel-graph .graph-arrow-line {
  fill: none;
  stroke: var(--neon-pink);
  stroke-width: 4;
  stroke-linecap: round;
  filter: drop-shadow(0 0 12px rgba(255, 78, 205, 0.7));
}

.panel-graph .graph-arrow-head {
  fill: var(--neon-pink);
  filter: drop-shadow(0 0 12px rgba(255, 78, 205, 0.7));
}

.panel-graph .graph-dot {
  fill: var(--neon-blue);
  filter: drop-shadow(0 0 10px rgba(59, 130, 255, 0.8));
}

.big-quote {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--text);
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(2rem, 4vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

/* ------------------------------
   Spaces / Pricing-like Cards
------------------------------ */

.spaces-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.space-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
}

.space-card.featured {
  border-color: rgba(47, 232, 176, 0.38);
  background:
    radial-gradient(circle at 80% 10%, rgba(47, 232, 176, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow-soft), var(--shadow-neon-green);
}

.space-tag {
  align-self: flex-start;
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 11px;
  border: 1px solid rgba(59, 130, 255, 0.25);
  border-radius: 999px;
  color: var(--neon-blue);
  background: rgba(59, 130, 255, 0.065);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.space-meta {
  display: grid;
  gap: 10px;
  margin: 22px 0 26px;
  padding: 0;
  list-style: none;
}

.space-meta li {
  display: flex;
  gap: 10px;
  color: var(--text-soft);
  line-height: 1.45;
}

.space-meta li::before {
  content: "✦";
  color: var(--neon-cyan);
  text-shadow: 0 0 14px var(--neon-cyan);
}

.space-card .btn {
  margin-top: auto;
}

/* ------------------------------
   Amenities
------------------------------ */

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.amenity-card {
  min-height: 180px;
  padding: 22px;
}

.amenity-card h3 {
  font-size: 1.14rem;
  letter-spacing: -0.035em;
}

/* ------------------------------
   Studio / Game Room Highlights
------------------------------ */

.highlight-section {
  position: relative;
  overflow: hidden;
}

.highlight-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 36px;
  align-items: center;
  padding: clamp(30px, 5vw, 64px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 78, 205, 0.16), transparent 32%),
    radial-gradient(circle at 86% 65%, rgba(94, 200, 255, 0.15), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(22px);
  overflow: hidden;
}

.highlight-card.blue {
  background:
    radial-gradient(circle at 16% 20%, rgba(47, 232, 176, 0.18), transparent 32%),
    radial-gradient(circle at 86% 65%, rgba(59, 130, 255, 0.15), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
}

.highlight-visual {
  min-height: 320px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 50% 40%, rgba(59, 130, 255, 0.22), transparent 28%),
    rgba(255, 255, 255, 0.04);
  background-size: 28px 28px, 28px 28px, auto, auto;
  box-shadow: inset 0 0 70px rgba(0, 0, 0, 0.28);
}

.studio-ui {
  min-height: 480px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 28px;
}

.studio-ui-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.studio-ui-title {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text);
}

.studio-ui-rec {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 78, 205, 0.4);
  border-radius: 999px;
  background: rgba(255, 78, 205, 0.08);
  color: #ffd8f4;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.studio-ui-rec-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--neon-pink);
  box-shadow: 0 0 12px var(--neon-pink);
  animation: rec-pulse 1.4s ease-in-out infinite;
}

@keyframes rec-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}

.studio-ui-slots {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.studio-ui-slots li {
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-soft);
  font-weight: 600;
  font-size: 0.94rem;
}

.studio-ui-slots li.active {
  border-color: rgba(59, 130, 255, 0.4);
  background: rgba(59, 130, 255, 0.1);
  color: var(--text);
  box-shadow: 0 0 22px rgba(59, 130, 255, 0.12);
}

.studio-ui-status {
  display: grid;
  gap: 12px;
  margin: 0 0 0 0;
  margin-top: auto;
  padding: 0;
  list-style: none;
}

.studio-ui-status li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 600;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
}

.status-dot.green {
  background: var(--neon-green);
  box-shadow: 0 0 12px var(--neon-green);
}

.status-dot.blue {
  background: var(--neon-blue);
  box-shadow: 0 0 12px var(--neon-blue);
}

.status-dot.pink {
  background: var(--neon-pink);
  box-shadow: 0 0 12px var(--neon-pink);
}

.gameroom-ui {
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.gameroom-ui svg {
  width: 100%;
  max-width: 380px;
  height: auto;
  display: block;
  overflow: visible;
}

.gr-line {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gr-glow-blue {
  stroke: var(--neon-blue);
  filter: drop-shadow(0 0 10px rgba(59, 130, 255, 0.6));
}

.gr-glow-green {
  stroke: var(--neon-green);
  filter: drop-shadow(0 0 10px rgba(47, 232, 176, 0.6));
}

.gr-glow-pink {
  stroke: var(--neon-pink);
  filter: drop-shadow(0 0 10px rgba(255, 78, 205, 0.6));
}

.gr-fill-blue {
  fill: rgba(94, 200, 255, 0.14);
  stroke: rgba(94, 200, 255, 0.3);
  stroke-width: 1.5;
}

.gr-fill-dark {
  fill: rgba(6, 12, 20, 0.9);
  stroke: none;
}

.gr-fill-green {
  fill: rgba(47, 232, 176, 0.1);
  stroke: rgba(47, 232, 176, 0.25);
  stroke-width: 1.2;
}

.gr-dot-green {
  fill: var(--neon-green);
  filter: drop-shadow(0 0 8px rgba(47, 232, 176, 0.7));
}

.gr-dot-pink {
  fill: var(--neon-pink);
  filter: drop-shadow(0 0 8px rgba(255, 78, 205, 0.7));
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 32px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-soft);
  line-height: 1.55;
}

.feature-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--neon-blue);
  box-shadow: 0 0 16px var(--neon-blue);
}

/* ------------------------------
   Culture Chips / Marquee
------------------------------ */

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 700;
  transition: border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.chip:hover {
  transform: translateY(-2px);
  color: var(--text);
  border-color: rgba(255, 78, 205, 0.34);
  box-shadow: 0 0 24px rgba(255, 78, 205, 0.14);
}

.marquee {
  display: flex;
  gap: 14px;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 14%, black 86%, transparent);
}

.marquee-track {
  display: flex;
  flex-shrink: 0;
  gap: 14px;
  min-width: 100%;
  animation: marquee 24s linear infinite;
}

@keyframes marquee {
  to {
    transform: translateX(calc(-100% - 14px));
  }
}

/* ------------------------------
   Location
------------------------------ */

.location-card {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 24px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--glass);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.map-placeholder,
.map-embed {
  position: relative;
  min-height: 380px;
  border: 1px solid rgba(94, 200, 255, 0.22);
  border-radius: 26px;
  overflow: hidden;
}

.map-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.map-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.map-pin-ring {
  fill: none;
  stroke: var(--neon-pink);
  stroke-width: 6;
  opacity: 0.6;
  transform-origin: 620px 505px;
  animation: map-pulse 2.4s ease-out infinite;
}

.map-pin-ring-delay {
  animation-delay: 1.2s;
}

@keyframes map-pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(3.2);
    opacity: 0;
  }
}

.map-pin-label {
  fill: var(--text);
  font-family: "Inter", sans-serif;
  font-size: 26px;
  font-weight: 400;
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.85)) drop-shadow(0 0 14px rgba(255, 78, 205, 0.4));
}

.location-details {
  display: grid;
  gap: 14px;
  align-content: center;
}

.location-row {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.location-row strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}

/* ------------------------------
   Forms
------------------------------ */

.form-card {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(59, 130, 255, 0.2);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 92% 10%, rgba(59, 130, 255, 0.12), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow-soft), 0 0 42px rgba(59, 130, 255, 0.08);
  backdrop-filter: blur(20px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--text-soft);
  font-size: 0.86rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0 15px;
  color: var(--text);
  background: rgba(3, 6, 8, 0.6);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

textarea {
  min-height: 126px;
  padding-block: 14px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(183, 200, 217, 0.48);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(94, 200, 255, 0.52);
  box-shadow: 0 0 0 4px rgba(94, 200, 255, 0.1), var(--shadow-neon-cyan);
  background: rgba(3, 6, 8, 0.84);
}

#date-field,
#time-slot-field {
  display: flex;
  flex-direction: column;
}

.mini-calendar {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px;
  background: rgba(3, 6, 8, 0.6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.mini-calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  color: var(--text);
  font-weight: 700;
  font-size: 0.86rem;
}

.mini-calendar-header button {
  min-height: 28px;
  width: 28px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}

.mini-calendar-header button:hover {
  border-color: rgba(94, 200, 255, 0.52);
}

.mini-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 4px;
  flex: 1;
}

.mini-calendar-grid .cal-dow {
  text-align: center;
  font-size: 0.7rem;
  color: var(--text-muted);
  padding-bottom: 4px;
}

.mini-calendar-grid .cal-day {
  min-height: 32px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-soft);
  cursor: pointer;
  font-size: 0.82rem;
  padding: 0;
}

.mini-calendar-grid .cal-day:hover:not(:disabled) {
  border-color: rgba(94, 200, 255, 0.52);
  color: var(--text);
}

.mini-calendar-grid .cal-day.selected {
  background: rgba(94, 200, 255, 0.24);
  border-color: rgba(94, 200, 255, 0.6);
  color: var(--text);
  font-weight: 700;
}

.mini-calendar-grid .cal-day:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.mini-calendar-grid .cal-empty {
  min-height: 32px;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 8px;
  flex: 1;
}

.slot-grid .slot-btn {
  min-height: 40px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-soft);
  cursor: pointer;
  font-size: 0.8rem;
  padding: 0 8px;
}

.slot-grid .slot-btn:hover:not(:disabled) {
  border-color: rgba(94, 200, 255, 0.52);
  color: var(--text);
}

.slot-grid .slot-btn.selected {
  background: rgba(94, 200, 255, 0.24);
  border-color: rgba(94, 200, 255, 0.6);
  color: var(--text);
  font-weight: 700;
}

.slot-grid .slot-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  text-decoration: line-through;
}

.slot-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  min-height: 1em;
}

/* ------------------------------
   Final CTA
------------------------------ */

.final-cta {
  position: relative;
  padding: clamp(42px, 7vw, 80px);
  border: 1px solid rgba(94, 200, 255, 0.2);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 18% 25%, rgba(59, 130, 255, 0.2), transparent 26%),
    radial-gradient(circle at 85% 18%, rgba(255, 78, 205, 0.18), transparent 28%),
    radial-gradient(circle at 50% 90%, rgba(47, 232, 176, 0.14), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow-soft), var(--shadow-neon-cyan);
  text-align: center;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 255, 0.16), rgba(255, 78, 205, 0.16), rgba(47, 232, 176, 0.14), transparent);
  opacity: 0.6;
  pointer-events: none;
}

.final-cta > * {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  max-width: 850px;
  margin-inline: auto;
}

.final-cta p {
  max-width: 680px;
  margin: 0 auto 28px;
  font-size: 1.1rem;
}

/* ------------------------------
   Footer
------------------------------ */

.site-footer {
  padding: 46px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

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

/* ------------------------------
   Tiny Neon Details
------------------------------ */

.neon-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-blue), var(--neon-green), var(--neon-pink), transparent);
  box-shadow: 0 0 18px rgba(94, 200, 255, 0.4);
}

.corner-glow {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(60px);
  opacity: 0.22;
  background: var(--neon-blue);
}

.corner-glow.cyan {
  background: var(--neon-cyan);
}

.corner-glow.green {
  background: var(--neon-green);
}

.corner-glow.violet {
  background: var(--neon-violet);
}

.corner-glow.pink {
  background: var(--neon-pink);
}

.noise-card {
  isolation: isolate;
}

.noise-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ------------------------------
   Responsive
------------------------------ */

@media (max-width: 1040px) {
  :root {
    --section-padding: 82px;
  }

  .hero-grid,
  .split,
  .highlight-card,
  .location-card {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 420px;
  }

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

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

  .nav-links {
    display: none;
  }

  .nav-actions .btn-secondary,
  .nav-actions .btn-ghost {
    display: none;
  }

  .nav-phone {
    display: none;
  }
}

@media (max-width: 720px) {
  :root {
    --section-padding: 66px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .site-header {
    padding: 12px 0;
  }

  .hero {
    min-height: auto;
    padding: 64px 0 52px;
  }

  .hero-title {
    font-size: clamp(3.2rem, 19vw, 5.5rem);
  }

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

  .btn:not(.btn-icon) {
    width: 100%;
  }

  .hero-stats,
  .grid-2,
  .grid-3,
  .grid-4,
  .spaces-grid,
  .amenities-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .panel {
    display: none;
  }

  .orbit-card {
    width: 215px;
  }

  .orbit-card.one {
    left: 18px;
    top: 28px;
  }

  .orbit-card.two {
    right: 16px;
    top: 145px;
  }

  .orbit-card.three {
    left: 22px;
    bottom: 52px;
  }

  .launch-pill {
    right: 18px;
    bottom: 20px;
  }

  .panel,
  .form-card,
  .final-cta {
    border-radius: 26px;
  }

  .highlight-visual,
  .map-placeholder,
  .map-embed {
    min-height: 260px;
  }
}

/* ------------------------------
   Optional HTML Class Suggestions

   Header:
   <header class="site-header">
     <div class="container navbar">
       <a class="logo"><span class="logo-mark">641</span>Launchpad 641</a>
       <nav class="nav-links">...</nav>
       <div class="nav-actions"><a class="btn btn-primary">Get Early Access</a></div>
     </div>
   </header>

   Hero:
   <section class="hero">
     <div class="container hero-grid">
       <div>...</div>
       <div class="hero-visual">
         <div class="orbit-card one">...</div>
       </div>
     </div>
   </section>

   Cards:
   <div class="grid grid-3">
     <article class="feature-card">...</article>
   </div>

   Form:
   <form class="form-card">
     <div class="form-grid">
       <div class="form-field">...</div>
     </div>
   </form>
------------------------------ */
