@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Space+Grotesk:wght@400;600;700&display=swap");
/* line 5, app/assets/stylesheets/welcome.css.scss */
:root {
  --neon-pink: #FF1B8D;
  --neon-blue: #00F0FF;
  --acid-lime: #CCFF00;
  --electric-purple: #9D00FF;
  --deep-black: #0A0A0F;
  --stage-black: #141419;
  --smoke-gray: #1F1F28;
}

/* line 18, app/assets/stylesheets/welcome.css.scss */
* {
  font-family: 'Space Grotesk', -apple-system, system-ui, sans-serif;
}

/* line 22, app/assets/stylesheets/welcome.css.scss */
body, html {
  width: 100%;
  min-height: 100%;
  background: var(--deep-black);
  color: #fff;
  overflow-x: hidden;
}

/* line 31, app/assets/stylesheets/welcome.css.scss */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(https://d2ml8qrcv8ha0o.cloudfront.net/%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  mix-blend-mode: overlay;
}

/* line 45, app/assets/stylesheets/welcome.css.scss */
.hero-sonic {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(ellipse at 50% 20%, rgba(157, 0, 255, 0.15) 0%, var(--deep-black) 60%), radial-gradient(ellipse at 80% 60%, rgba(255, 27, 141, 0.1) 0%, transparent 50%), var(--deep-black);
  overflow: hidden;
}

/* line 57, app/assets/stylesheets/welcome.css.scss */
.light-beam {
  position: absolute;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--neon-pink), transparent);
  opacity: 0.3;
  animation: beam-pulse 4s ease-in-out infinite;
}

/* line 65, app/assets/stylesheets/welcome.css.scss */
.light-beam:nth-child(1) {
  left: 20%;
  animation-delay: 0s;
}

/* line 66, app/assets/stylesheets/welcome.css.scss */
.light-beam:nth-child(2) {
  left: 40%;
  animation-delay: 1s;
  background: linear-gradient(to bottom, transparent, var(--neon-blue), transparent);
}

/* line 67, app/assets/stylesheets/welcome.css.scss */
.light-beam:nth-child(3) {
  left: 60%;
  animation-delay: 2s;
}

/* line 68, app/assets/stylesheets/welcome.css.scss */
.light-beam:nth-child(4) {
  left: 80%;
  animation-delay: 0.5s;
  background: linear-gradient(to bottom, transparent, var(--acid-lime), transparent);
}

@keyframes beam-pulse {
  0%, 100% {
    opacity: 0.2;
    transform: scaleY(0.8);
  }
  50% {
    opacity: 0.5;
    transform: scaleY(1.1);
  }
}

/* line 77, app/assets/stylesheets/welcome.css.scss */
.sound-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  opacity: 0.15;
  gap: 4px;
  padding: 0 20px;
}

/* line 91, app/assets/stylesheets/welcome.css.scss */
.wave-bar {
  flex: 1;
  max-width: 8px;
  background: linear-gradient(to top, var(--neon-pink), var(--electric-purple));
  border-radius: 4px 4px 0 0;
  animation: wave-bounce 1.2s ease-in-out infinite;
}

/* line 98, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(1) {
  animation-delay: 0.05s;
  height: 45%;
}

/* line 99, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(2) {
  animation-delay: 0.10s;
  height: 75%;
}

/* line 100, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(3) {
  animation-delay: 0.15s;
  height: 35%;
}

/* line 101, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(4) {
  animation-delay: 0.20s;
  height: 65%;
}

/* line 102, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(5) {
  animation-delay: 0.25s;
  height: 55%;
}

/* line 103, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(6) {
  animation-delay: 0.30s;
  height: 85%;
}

/* line 104, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(7) {
  animation-delay: 0.35s;
  height: 40%;
}

/* line 105, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(8) {
  animation-delay: 0.40s;
  height: 70%;
}

/* line 106, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(9) {
  animation-delay: 0.45s;
  height: 50%;
}

/* line 107, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(10) {
  animation-delay: 0.50s;
  height: 60%;
}

/* line 108, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(11) {
  animation-delay: 0.55s;
  height: 80%;
}

/* line 109, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(12) {
  animation-delay: 0.60s;
  height: 45%;
}

/* line 110, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(13) {
  animation-delay: 0.65s;
  height: 55%;
}

/* line 111, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(14) {
  animation-delay: 0.70s;
  height: 75%;
}

/* line 112, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(15) {
  animation-delay: 0.75s;
  height: 40%;
}

/* line 113, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(16) {
  animation-delay: 0.80s;
  height: 65%;
}

/* line 114, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(17) {
  animation-delay: 0.85s;
  height: 50%;
}

/* line 115, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(18) {
  animation-delay: 0.90s;
  height: 70%;
}

/* line 116, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(19) {
  animation-delay: 0.95s;
  height: 60%;
}

/* line 117, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(20) {
  animation-delay: 1.00s;
  height: 80%;
}

/* line 118, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(21) {
  animation-delay: 1.05s;
  height: 45%;
}

/* line 119, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(22) {
  animation-delay: 1.10s;
  height: 55%;
}

/* line 120, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(23) {
  animation-delay: 1.15s;
  height: 75%;
}

/* line 121, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(24) {
  animation-delay: 1.20s;
  height: 40%;
}

/* line 122, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(25) {
  animation-delay: 1.25s;
  height: 65%;
}

/* line 123, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(26) {
  animation-delay: 1.30s;
  height: 50%;
}

/* line 124, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(27) {
  animation-delay: 1.35s;
  height: 85%;
}

/* line 125, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(28) {
  animation-delay: 1.40s;
  height: 55%;
}

/* line 126, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(29) {
  animation-delay: 1.45s;
  height: 70%;
}

/* line 127, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(30) {
  animation-delay: 1.50s;
  height: 60%;
}

@keyframes wave-bounce {
  0%, 100% {
    transform: scaleY(0.5);
  }
  50% {
    transform: scaleY(1);
  }
}

/* line 136, app/assets/stylesheets/welcome.css.scss */
.title-sonic {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 12vw, 8rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  font-weight: 400;
  background: linear-gradient(135deg, #FFFFFF 0%, var(--neon-pink) 50%, var(--neon-blue) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  animation: title-pulse 3s ease-in-out infinite;
  text-shadow: 0 0 80px rgba(255, 27, 141, 0.5);
}

@keyframes title-pulse {
  0%, 100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.2);
  }
}

/* line 157, app/assets/stylesheets/welcome.css.scss */
.btn-neon {
  position: relative;
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 3px solid var(--neon-pink);
  background: rgba(255, 27, 141, 0.1);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* line 170, app/assets/stylesheets/welcome.css.scss */
.btn-neon:hover {
  background: var(--neon-pink);
  color: #000;
  box-shadow: 0 0 30px var(--neon-pink), 0 0 60px rgba(255, 27, 141, 0.5);
  transform: translateY(-2px);
}

/* line 177, app/assets/stylesheets/welcome.css.scss */
.btn-neon.btn-secondary {
  border-color: var(--neon-blue);
  background: rgba(0, 240, 255, 0.05);
}

/* line 181, app/assets/stylesheets/welcome.css.scss */
.btn-neon.btn-secondary:hover {
  background: var(--neon-blue);
  color: #000;
  box-shadow: 0 0 30px var(--neon-blue);
}

/* line 190, app/assets/stylesheets/welcome.css.scss */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

@media (min-width: 768px) and (max-width: 1023px) {
  /* line 190, app/assets/stylesheets/welcome.css.scss */
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* line 200, app/assets/stylesheets/welcome.css.scss */
  .feature-grid .feature-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (min-width: 1024px) {
  /* line 190, app/assets/stylesheets/welcome.css.scss */
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* line 213, app/assets/stylesheets/welcome.css.scss */
.feature-card {
  position: relative;
  background: linear-gradient(135deg, var(--stage-black) 0%, var(--smoke-gray) 100%);
  border: 1px solid rgba(255, 27, 141, 0.2);
  padding: 2.5rem;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

/* line 224, app/assets/stylesheets/welcome.css.scss */
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue), var(--acid-lime));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

/* line 236, app/assets/stylesheets/welcome.css.scss */
.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--neon-pink);
  box-shadow: 0 20px 60px rgba(255, 27, 141, 0.3);
}

/* line 241, app/assets/stylesheets/welcome.css.scss */
.feature-card:hover::before {
  transform: scaleX(1);
}

/* line 245, app/assets/stylesheets/welcome.css.scss */
.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

/* line 251, app/assets/stylesheets/welcome.css.scss */
.feature-card .feature-icon,
.feature-card h3 {
  flex-shrink: 0;
}

/* line 257, app/assets/stylesheets/welcome.css.scss */
.feature-card p {
  flex-grow: 1;
}

/* line 262, app/assets/stylesheets/welcome.css.scss */
.feature-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1.5rem;
  color: var(--neon-pink);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 0 20px rgba(255, 27, 141, 0.6));
}

/* line 272, app/assets/stylesheets/welcome.css.scss */
.city-card {
  background: linear-gradient(135deg, rgba(157, 0, 255, 0.1) 0%, rgba(255, 27, 141, 0.1) 100%);
  border: 1px solid rgba(255, 27, 141, 0.3);
  padding: 1.5rem;
  transition: all 0.3s ease;
  text-align: center;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 283, app/assets/stylesheets/welcome.css.scss */
.city-card:hover {
  border-color: var(--neon-pink);
  box-shadow: 0 0 30px rgba(255, 27, 141, 0.4);
  transform: scale(1.05);
}

/* line 288, app/assets/stylesheets/welcome.css.scss */
.city-card:hover .city-name {
  color: var(--neon-pink);
}

/* line 293, app/assets/stylesheets/welcome.css.scss */
.city-card a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 301, app/assets/stylesheets/welcome.css.scss */
.city-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  transition: color 0.3s ease;
}

/* line 309, app/assets/stylesheets/welcome.css.scss */
.cta-section {
  position: relative;
  background: radial-gradient(ellipse at center, rgba(157, 0, 255, 0.2) 0%, var(--deep-black) 70%);
  padding: clamp(5rem, 10vw, 8rem) 2rem;
  overflow: hidden;
}

/* line 315, app/assets/stylesheets/welcome.css.scss */
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 27, 141, 0.2) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  animation: spotlight-pulse 4s ease-in-out infinite;
}

@media (max-width: 768px) {
  /* line 309, app/assets/stylesheets/welcome.css.scss */
  .cta-section {
    padding: clamp(4rem, 8vw, 6rem) 1.5rem;
  }
}

@keyframes spotlight-pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 1;
  }
}

/* line 338, app/assets/stylesheets/welcome.css.scss */
.fade-in {
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* line 347, app/assets/stylesheets/welcome.css.scss */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* line 362, app/assets/stylesheets/welcome.css.scss */
.delay-1 {
  animation-delay: 0.15s;
}

/* line 362, app/assets/stylesheets/welcome.css.scss */
.delay-2 {
  animation-delay: 0.3s;
}

/* line 362, app/assets/stylesheets/welcome.css.scss */
.delay-3 {
  animation-delay: 0.45s;
}

/* line 362, app/assets/stylesheets/welcome.css.scss */
.delay-4 {
  animation-delay: 0.6s;
}

/* line 362, app/assets/stylesheets/welcome.css.scss */
.delay-5 {
  animation-delay: 0.75s;
}

/* line 362, app/assets/stylesheets/welcome.css.scss */
.delay-6 {
  animation-delay: 0.9s;
}

/* line 368, app/assets/stylesheets/welcome.css.scss */
section {
  padding-top: clamp(4rem, 8vw, 8rem);
  padding-bottom: clamp(4rem, 8vw, 8rem);
}

@media (max-width: 768px) {
  /* line 368, app/assets/stylesheets/welcome.css.scss */
  section {
    padding-top: clamp(3rem, 6vw, 5rem);
    padding-bottom: clamp(3rem, 6vw, 5rem);
  }
}

/* line 379, app/assets/stylesheets/welcome.css.scss */
.hero-sonic {
  padding-top: 0;
  padding-bottom: 0;
}

@media (max-width: 768px) {
  /* line 386, app/assets/stylesheets/welcome.css.scss */
  .title-sonic {
    font-size: clamp(2.5rem, 10vw, 4rem);
    line-height: 1.1;
  }
  /* line 391, app/assets/stylesheets/welcome.css.scss */
  .btn-neon {
    padding: 1rem 2rem;
    font-size: 0.9375rem;
    letter-spacing: 0.08em;
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
  /* line 400, app/assets/stylesheets/welcome.css.scss */
  .feature-card {
    padding: 2rem 1.5rem;
  }
  /* line 403, app/assets/stylesheets/welcome.css.scss */
  .feature-card h3 {
    font-size: 1.375rem !important;
    margin-bottom: 0.75rem;
  }
  /* line 408, app/assets/stylesheets/welcome.css.scss */
  .feature-card p {
    font-size: 1rem !important;
    line-height: 1.6;
  }
  /* line 414, app/assets/stylesheets/welcome.css.scss */
  .feature-grid {
    gap: 1.5rem;
  }
  /* line 419, app/assets/stylesheets/welcome.css.scss */
  .hero-sonic {
    padding: 2rem 1rem;
    min-height: 90vh;
  }
  /* line 425, app/assets/stylesheets/welcome.css.scss */
  .text-xl, .text-2xl {
    font-size: 1.125rem !important;
    line-height: 1.7;
  }
  /* line 431, app/assets/stylesheets/welcome.css.scss */
  h2 {
    font-size: 2rem !important;
  }
  /* line 436, app/assets/stylesheets/welcome.css.scss */
  p {
    font-size: 1rem !important;
    line-height: 1.6;
  }
}

@media (max-width: 640px) {
  /* line 444, app/assets/stylesheets/welcome.css.scss */
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  /* line 449, app/assets/stylesheets/welcome.css.scss */
  .feature-card {
    padding: 1.75rem 1.25rem;
  }
  /* line 452, app/assets/stylesheets/welcome.css.scss */
  .feature-card h3 {
    font-size: 1.25rem !important;
  }
  /* line 456, app/assets/stylesheets/welcome.css.scss */
  .feature-card p {
    font-size: 0.9375rem !important;
    line-height: 1.65;
  }
  /* line 462, app/assets/stylesheets/welcome.css.scss */
  .feature-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.25rem;
  }
  /* line 468, app/assets/stylesheets/welcome.css.scss */
  .btn-neon {
    padding: 1rem 1.5rem;
    font-size: 0.9375rem;
  }
  /* line 473, app/assets/stylesheets/welcome.css.scss */
  .title-sonic {
    font-size: clamp(3.5rem, 18vw, 5rem);
  }
  /* line 478, app/assets/stylesheets/welcome.css.scss */
  .text-xl, .text-2xl {
    font-size: 1.0625rem !important;
  }
  /* line 482, app/assets/stylesheets/welcome.css.scss */
  h2 {
    font-size: 1.875rem !important;
  }
  /* line 487, app/assets/stylesheets/welcome.css.scss */
  section {
    padding-top: clamp(2.5rem, 5vw, 4rem) !important;
    padding-bottom: clamp(2.5rem, 5vw, 4rem) !important;
  }
}

/* line 494, app/assets/stylesheets/welcome.css.scss */
a:link, a:visited {
  text-decoration: none;
}

/* line 498, app/assets/stylesheets/welcome.css.scss */
a:hover {
  color: var(--neon-pink);
}
