:root {
  --bg: #0a0b14;
  --bg-elevated: #12141f;
  --bg-card: rgba(18, 20, 31, 0.72);
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --purple: #a855f7;
  --blue: #3b82f6;
  --cyan: #22d3ee;
  --orange: #f97316;
  --gradient: linear-gradient(135deg, var(--purple) 0%, var(--blue) 45%, var(--cyan) 100%);
  --gradient-h: linear-gradient(90deg, var(--purple), var(--cyan));
  --border: rgba(148, 163, 184, 0.14);
  --radius: 14px;
  --radius-lg: 20px;
  --shadow-glow: 0 0 60px rgba(168, 85, 247, 0.18);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --header-h: 72px;
  --container: min(1120px, calc(100% - 2rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: var(--cyan);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(168, 85, 247, 0.22), transparent),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(34, 211, 238, 0.08), transparent),
    radial-gradient(ellipse 50% 30% at 0% 80%, rgba(59, 130, 246, 0.1), transparent);
}

.gradient-text {
  background: var(--gradient-h);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s, backdrop-filter 0.2s;
}

.site-header.is-scrolled {
  background: rgba(10, 11, 20, 0.85);
  backdrop-filter: blur(12px);
  border-color: var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.06em;
}

.brand:hover {
  text-decoration: none;
}

.brand-mark {
  border-radius: 8px;
  box-shadow: 0 0 24px rgba(168, 85, 247, 0.35);
}

.site-nav {
  display: none;
  align-items: center;
  gap: 1.25rem;
  margin-left: auto;
}

.site-nav a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s;
}

.site-nav a:hover {
  color: var(--text);
  text-decoration: none;
}

.site-nav .nav-cta {
  color: var(--text);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: var(--gradient);
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.25);
}

.site-nav .nav-cta:hover {
  filter: brightness(1.08);
}

.lang-switch {
  display: flex;
  gap: 2px;
  padding: 3px;
  border-radius: 999px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}

.lang-btn {
  border: none;
  background: transparent;
  color: var(--text-muted);
  font: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
}

.lang-btn.is-active {
  background: var(--gradient);
  color: #fff;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  margin-left: auto;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-elevated);
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  margin-inline: auto;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
  }

  .lang-switch {
    margin-left: 0;
  }
}

@media (max-width: 899px) {
  .site-nav.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: var(--header-h) 0 0 0;
    padding: 1.5rem;
    background: rgba(10, 11, 20, 0.97);
    backdrop-filter: blur(16px);
    align-items: stretch;
    gap: 0.75rem;
  }

  .site-nav.is-open a {
    padding: 0.75rem 0;
    font-size: 1.1rem;
  }

  .lang-switch {
    order: -1;
    margin-left: auto;
  }
}

/* Hero */
.section {
  padding: 4rem 0;
}

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

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.badge {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid rgba(34, 211, 238, 0.35);
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.08);
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.12;
  font-weight: 700;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  margin: 0 0 1.75rem;
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 36ch;
}

.hero-note {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Forms */
.waitlist-form {
  max-width: 480px;
}

.audience-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.audience-pills-center {
  justify-content: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pill span {
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.pill input:checked + span {
  border-color: transparent;
  color: #fff;
  background: var(--gradient);
}

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

.waitlist-row input[type='email'] {
  flex: 1 1 200px;
  min-width: 0;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.waitlist-row input[type='email']:focus {
  border-color: rgba(168, 85, 247, 0.5);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.15);
}

.waitlist-row-stack {
  flex-direction: column;
}

.waitlist-row-center {
  justify-content: center;
  max-width: 520px;
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border: none;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s, filter 0.15s, opacity 0.15s;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 8px 28px rgba(168, 85, 247, 0.3);
}

.btn-primary:hover:not(:disabled) {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.btn-block {
  width: 100%;
}

.form-status {
  min-height: 1.25rem;
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
}

.form-status[data-state='success'] {
  color: #4ade80;
}

.form-status[data-state='error'] {
  color: #f87171;
}

.form-status[data-state='warn'] {
  color: #fbbf24;
}

/* Phone mockup */
.hero-visual {
  display: flex;
  justify-content: center;
}

.phone-frame {
  width: min(300px, 100%);
  padding: 12px;
  border-radius: 36px;
  background: linear-gradient(145deg, #1e2030, #0d0e16);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-glow), 0 24px 48px rgba(0, 0, 0, 0.45);
}

.phone-screen {
  border-radius: 26px;
  overflow: hidden;
  background: #12141f;
}

.map-demo {
  position: relative;
  aspect-ratio: 280 / 420;
  background: #12141f;
}

.map-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.map-ui {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.65rem 0.7rem 0.75rem;
}

.map-ui-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.map-floor {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(10, 11, 20, 0.72);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
}

.map-search {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text);
  background: rgba(10, 11, 20, 0.82);
  border: 1px solid rgba(34, 211, 238, 0.28);
  border-radius: 999px;
  padding: 0.25rem 0.55rem 0.25rem 0.45rem;
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.12);
}

.map-search svg {
  color: var(--cyan);
  flex-shrink: 0;
}

.map-ui-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 0.65rem;
  border-radius: 12px;
  background: rgba(10, 11, 20, 0.88);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.map-instruction {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
}

.map-distance {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--cyan);
  background: rgba(34, 211, 238, 0.12);
  border-radius: 999px;
  padding: 0.2rem 0.5rem;
}

/* Venue types */
.venue-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

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

@media (min-width: 960px) {
  .venue-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.venue-card {
  padding: 1.35rem 1.35rem 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: border-color 0.2s, transform 0.2s;
}

.venue-card:hover {
  border-color: rgba(34, 211, 238, 0.35);
  transform: translateY(-2px);
}

.venue-icon {
  display: block;
  font-size: 1.75rem;
  line-height: 1;
  margin-bottom: 0.75rem;
  filter: grayscale(0.15);
}

.venue-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

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

/* Sections */
.section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
}

.section-alt {
  background: rgba(18, 20, 31, 0.4);
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

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

.step-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.75rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  background: var(--gradient);
  color: #fff;
}

.step-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.step-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

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

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

@media (min-width: 960px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  padding: 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
  border-color: rgba(168, 85, 247, 0.35);
  transform: translateY(-2px);
}

.feature-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  background: var(--gradient-h);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.feature-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

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

/* Retail */
.retail-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .retail-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.retail-copy h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 0.75rem;
}

.retail-copy > p {
  color: var(--text-muted);
  margin: 0 0 1.25rem;
}

.retail-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.retail-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.65rem;
  color: var(--text-muted);
}

.retail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient);
}

.card-glass {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.retail-waitlist h3 {
  margin: 0 0 1rem;
  font-size: 1.2rem;
}

/* FAQ */
.faq-container {
  max-width: 720px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border: none;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-chevron {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  transition: transform 0.2s;
}

.faq-item.is-open .faq-chevron {
  transform: rotate(-135deg);
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
}

.faq-panel p {
  margin: 0;
  padding: 0 1.15rem 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  overflow: hidden;
}

/* CTA */
.cta-section {
  padding-bottom: 5rem;
}

.cta-inner {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.cta-inner h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.cta-inner > p {
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}

.waitlist-form-center {
  margin-inline: auto;
}

/* Footer */
.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0 0 1rem;
}

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

.footer-links button {
  border: none;
  background: none;
  color: var(--cyan);
  font: inherit;
  cursor: pointer;
  padding: 0;
}

.footer-links button:hover {
  text-decoration: underline;
}

.footer-copy {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.65);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  position: relative;
  width: min(480px, 100%);
  max-height: 80vh;
  overflow-y: auto;
}

.modal-dialog h2 {
  margin: 0 0 0.75rem;
}

.modal-dialog p {
  margin: 0;
  color: var(--text-muted);
}

.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 8px;
  background: var(--bg-elevated);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .route-path,
  .you-dot {
    animation: none;
    stroke-dashoffset: 0;
  }
}
