:root {
  --black: #050509;
  --night: #08111f;
  --panel: rgba(10, 15, 30, 0.78);
  --panel-strong: rgba(12, 18, 34, 0.94);
  --pink: #ff1fa8;
  --blue: #00d9ff;
  --violet: #8c2bff;
  --yellow: #fff200;
  --mint: #30ffc8;
  --white: #f5f5f5;
  --muted: #b9bed4;
  --line: rgba(255, 255, 255, 0.13);
  --shadow-pink: 0 0 24px rgba(255, 31, 168, 0.46);
  --shadow-blue: 0 0 28px rgba(0, 217, 255, 0.45);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--black);
  color: var(--white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

body::selection {
  background: rgba(255, 31, 168, 0.45);
}

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

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

button {
  border: 0;
}

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 31, 168, 0.18), transparent 30rem),
    radial-gradient(circle at 84% 9%, rgba(0, 217, 255, 0.2), transparent 28rem),
    radial-gradient(circle at 48% 62%, rgba(255, 242, 0, 0.08), transparent 26rem),
    linear-gradient(145deg, #050509 0%, #08111f 46%, #090412 100%);
}

.ambient,
.grid-glow,
.particle-field {
  pointer-events: none;
  position: fixed;
  inset: 0;
}

.ambient {
  z-index: 0;
  opacity: 0.72;
  mix-blend-mode: screen;
}

.ambient-a {
  background:
    linear-gradient(110deg, transparent 0 34%, rgba(0, 217, 255, 0.12) 35% 36%, transparent 38% 100%),
    linear-gradient(74deg, transparent 0 42%, rgba(255, 31, 168, 0.12) 43% 44%, transparent 46% 100%);
  animation: driftLights 10s ease-in-out infinite alternate;
}

.ambient-b {
  background:
    linear-gradient(26deg, transparent 0 57%, rgba(255, 242, 0, 0.1) 58% 59%, transparent 61% 100%),
    linear-gradient(146deg, transparent 0 66%, rgba(140, 43, 255, 0.14) 67% 68%, transparent 70% 100%);
  animation: driftLights 12s ease-in-out infinite alternate-reverse;
}

.grid-glow {
  z-index: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(0, 217, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 31, 168, 0.08) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 62%, transparent);
}

.particle-field {
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 14px currentColor;
  color: var(--blue);
  opacity: 0.8;
  animation: particleRise var(--duration, 9s) linear infinite;
  transform: translate3d(0, 0, 0);
}

.particle:nth-child(3n) {
  color: var(--pink);
  background: var(--pink);
}

.particle:nth-child(4n) {
  color: var(--yellow);
  background: var(--yellow);
}

.topbar {
  position: fixed;
  z-index: 20;
  top: 16px;
  left: 50%;
  display: flex;
  width: min(calc(100% - 32px), var(--max));
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(5, 5, 9, 0.56);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.topbar.is-scrolled {
  border-color: rgba(0, 217, 255, 0.28);
  background: rgba(5, 5, 9, 0.82);
  transform: translateX(-50%) translateY(-4px);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 0 18px rgba(0, 217, 255, 0.42);
}

.brand-mark {
  position: relative;
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(0, 217, 255, 0.72);
  border-radius: 50%;
  box-shadow: var(--shadow-blue), inset 0 0 20px rgba(255, 31, 168, 0.24);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  border-radius: inherit;
}

.brand-mark::before {
  width: 12px;
  height: 12px;
  background: var(--pink);
  box-shadow: var(--shadow-pink);
}

.brand-mark::after {
  inset: -5px;
  border: 1px solid rgba(255, 31, 168, 0.36);
  animation: softPulse 1.9s ease-in-out infinite;
}

.nav {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  color: rgba(245, 245, 245, 0.78);
  font-size: 0.86rem;
  font-weight: 700;
}

.nav a {
  position: relative;
  white-space: nowrap;
}

.nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--pink));
  box-shadow: var(--shadow-blue);
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-cta,
.primary-btn,
.secondary-btn,
.ghost-btn,
.gps-voice-btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta,
.primary-btn {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(90deg, rgba(255, 31, 168, 0.96), rgba(140, 43, 255, 0.94) 52%, rgba(0, 217, 255, 0.96)),
    var(--pink);
  color: var(--white);
  box-shadow: 0 0 26px rgba(255, 31, 168, 0.42), 0 0 42px rgba(0, 217, 255, 0.18);
}

.nav-cta {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0 18px;
  font-size: 0.86rem;
}

.primary-btn {
  position: relative;
  min-width: 252px;
  overflow: hidden;
  padding: 0 23px;
}

.primary-btn::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  opacity: 0;
  transform: translateX(-90%);
}

.primary-btn:hover,
.primary-btn:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  box-shadow: 0 0 34px rgba(255, 31, 168, 0.62), 0 0 54px rgba(0, 217, 255, 0.28);
  transform: translateY(-2px);
}

.primary-btn:hover::before,
.primary-btn:focus-visible::before {
  animation: shine 760ms ease;
}

.btn-arrow {
  display: inline-grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  background: rgba(5, 5, 9, 0.28);
}

.section-band {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.hero {
  display: grid;
  min-height: 100svh;
  align-items: center;
  grid-template-columns: minmax(0, 0.92fr) minmax(390px, 1.08fr);
  gap: 38px;
  padding: 112px 0 46px;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.route-badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--yellow);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 0 0 16px rgba(255, 242, 0, 0.5);
}

.pulse-dot {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 18px rgba(255, 242, 0, 0.88);
}

.pulse-dot::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(255, 242, 0, 0.48);
  border-radius: inherit;
  animation: softPulse 1.4s ease-out infinite;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1 {
  max-width: 650px;
  margin-bottom: 14px;
  font-size: 3.65rem;
  font-weight: 900;
  line-height: 1;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.hero-kicker {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 1.28rem;
  font-weight: 800;
}

.hero-name {
  margin-bottom: 8px;
  font-size: 4.35rem;
  font-weight: 900;
  line-height: 0.92;
  overflow-wrap: break-word;
  color: var(--white);
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.58),
    0 0 26px rgba(255, 31, 168, 0.82),
    0 0 54px rgba(0, 217, 255, 0.48);
}

.hero-tagline {
  margin-bottom: 14px;
  color: var(--yellow);
  font-size: 1.25rem;
  font-weight: 900;
  text-shadow: 0 0 18px rgba(255, 242, 0, 0.4);
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 22px;
  color: rgba(245, 245, 245, 0.78);
  font-size: 1.1rem;
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.gps-voice-btn,
.ghost-btn,
.secondary-btn {
  border: 1px solid rgba(0, 217, 255, 0.34);
  background: rgba(5, 5, 9, 0.5);
  color: var(--white);
  box-shadow: inset 0 0 20px rgba(0, 217, 255, 0.08);
}

.gps-voice-btn {
  min-width: 136px;
  padding: 0 18px;
  cursor: pointer;
}

.gps-voice-btn:hover,
.gps-voice-btn:focus-visible,
.secondary-btn:hover,
.secondary-btn:focus-visible,
.ghost-btn:hover,
.ghost-btn:focus-visible {
  border-color: rgba(255, 31, 168, 0.72);
  box-shadow: 0 0 22px rgba(255, 31, 168, 0.25), inset 0 0 24px rgba(0, 217, 255, 0.12);
  transform: translateY(-2px);
}

.voice-icon {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(0, 217, 255, 0.72);
}

.voice-icon::before,
.voice-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(0, 217, 255, 0.7);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.voice-icon::before {
  width: 24px;
  height: 24px;
}

.voice-icon::after {
  width: 32px;
  height: 32px;
  border-color: rgba(255, 31, 168, 0.48);
}

.route-note {
  margin: 12px 0 12px;
  color: rgba(245, 245, 245, 0.66);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.82rem;
}

.gps-console {
  display: grid;
  width: min(100%, 520px);
  gap: 4px;
  margin: 0 0 18px;
  padding: 11px 14px;
  border: 1px solid rgba(0, 217, 255, 0.28);
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(0, 217, 255, 0.12), transparent 42%, rgba(255, 31, 168, 0.1)),
    rgba(5, 5, 9, 0.42);
  box-shadow: inset 0 0 28px rgba(0, 217, 255, 0.08), 0 0 26px rgba(0, 217, 255, 0.08);
}

.gps-console-label,
.gps-console-status {
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.gps-console-text {
  color: var(--blue);
  font-size: 1rem;
  font-weight: 900;
  text-shadow: 0 0 18px rgba(0, 217, 255, 0.48);
}

body.gps-speaking .gps-console {
  border-color: rgba(255, 31, 168, 0.58);
  box-shadow: 0 0 30px rgba(255, 31, 168, 0.22), inset 0 0 34px rgba(0, 217, 255, 0.14);
}

body.gps-speaking .voice-icon::before,
body.gps-speaking .voice-icon::after {
  animation: voiceWave 900ms ease-out infinite;
}

.graffiti-line {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--white);
  font-family: "JetBrains Mono", monospace;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow:
    0 0 8px rgba(245, 245, 245, 0.5),
    0 0 28px rgba(255, 31, 168, 0.62);
  transform: rotate(-1.2deg);
}

.graffiti-line span {
  display: block;
  color: var(--pink);
}

.route-visual {
  position: relative;
  min-height: 600px;
  margin: 0;
  border-radius: 28px;
  isolation: isolate;
}

.visual-halo {
  position: absolute;
  inset: 28px 14px 74px;
  z-index: 0;
  border-radius: 42px;
  background:
    radial-gradient(circle at 48% 32%, rgba(255, 31, 168, 0.26), transparent 19rem),
    radial-gradient(circle at 65% 54%, rgba(0, 217, 255, 0.24), transparent 21rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015));
  filter: blur(4px);
}

.spain-map {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  min-height: 480px;
  overflow: visible;
  filter: drop-shadow(0 0 32px rgba(0, 217, 255, 0.18));
}

.map-shape {
  fill: rgba(4, 16, 28, 0.76);
  stroke: rgba(0, 217, 255, 0.76);
  stroke-width: 3;
  filter: url(#blueGlow);
}

.neighbor-land {
  fill: rgba(245, 245, 245, 0.045);
  stroke: rgba(245, 245, 245, 0.16);
  stroke-width: 1.4;
}

.geo-label {
  fill: rgba(245, 245, 245, 0.42);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  paint-order: stroke;
  stroke: rgba(5, 5, 9, 0.72);
  stroke-width: 3px;
}

.sea-label {
  fill: rgba(0, 217, 255, 0.5);
}

.mediterranean {
  transform: rotate(-24deg);
  transform-origin: 462px 301px;
}

.neighbor-label {
  fill: rgba(245, 245, 245, 0.34);
}

.map-country-label {
  fill: rgba(255, 255, 255, 0.14);
  font-family: Inter, sans-serif;
  font-size: 50px;
  font-weight: 900;
  letter-spacing: 0;
  text-anchor: middle;
  paint-order: stroke;
  stroke: rgba(5, 5, 9, 0.38);
  stroke-width: 2px;
  text-shadow: 0 0 24px rgba(0, 217, 255, 0.28);
}

.spain-mainland {
  fill: rgba(4, 16, 28, 0.82);
}

.map-shape.island {
  fill: rgba(7, 20, 34, 0.74);
}

.map-shape.small {
  opacity: 0.86;
}

.map-shape.canary {
  fill: rgba(7, 20, 34, 0.74);
  opacity: 0.78;
  stroke-width: 2;
}

.route {
  stroke: url(#routeGradient);
  stroke-linecap: round;
  stroke-width: 4;
  stroke-dasharray: 18 12;
  animation: routeFlow 1.45s linear infinite;
}

.route-2,
.route-5 {
  animation-duration: 1.8s;
}

.route-4,
.route-7 {
  animation-duration: 2.1s;
}

.city circle {
  fill: var(--blue);
  filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.9));
}

.city text {
  fill: rgba(245, 245, 245, 0.84);
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  font-weight: 800;
  paint-order: stroke;
  stroke: rgba(5, 5, 9, 0.86);
  stroke-width: 4px;
}

.destination-marker path {
  fill: rgba(255, 31, 168, 0.86);
  stroke: var(--white);
  stroke-width: 2;
}

.destination-marker .marker-core,
.destination-marker > circle:last-child {
  fill: var(--white);
}

.destination-marker .marker-pulse {
  fill: transparent;
  stroke: rgba(255, 31, 168, 0.6);
  stroke-width: 2;
  animation: markerPulse 1.6s ease-out infinite;
}

.destination-label rect {
  fill: rgba(5, 5, 9, 0.78);
  stroke: rgba(255, 31, 168, 0.7);
  stroke-width: 1.5;
}

.destination-label text {
  fill: var(--white);
  font-family: Inter, sans-serif;
  font-size: 17px;
  font-weight: 900;
}

.destination-label .small-label {
  fill: var(--yellow);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
}

.floating-note {
  position: absolute;
  z-index: 4;
  right: 10px;
  top: 330px;
  width: 188px;
  padding: 18px 18px 20px;
  border: 1px solid rgba(255, 242, 0, 0.5);
  border-radius: 18px 18px 18px 4px;
  background:
    linear-gradient(145deg, rgba(255, 242, 0, 0.16), rgba(255, 31, 168, 0.12)),
    rgba(5, 5, 9, 0.76);
  box-shadow: 0 0 24px rgba(255, 242, 0, 0.18), inset 0 0 18px rgba(255, 242, 0, 0.1);
  transform: rotate(2deg);
}

.floating-note span {
  display: block;
  margin-bottom: 8px;
  color: var(--yellow);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.floating-note strong {
  display: block;
  font-size: 1rem;
  line-height: 1.2;
}

.disco-ball {
  position: absolute;
  z-index: 1;
  top: 24px;
  left: 50%;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 48%, rgba(5, 5, 9, 0.36) 49% 52%, transparent 53%),
    linear-gradient(0deg, transparent 48%, rgba(5, 5, 9, 0.32) 49% 52%, transparent 53%),
    radial-gradient(circle at 32% 24%, #fff, #bff7ff 18%, #00d9ff 36%, #ff1fa8 72%);
  box-shadow: 0 0 36px rgba(0, 217, 255, 0.48), 0 0 60px rgba(255, 31, 168, 0.26);
  transform: translateX(-50%);
  animation: discoSpin 7s linear infinite;
}

.disco-ball::before {
  content: "";
  position: absolute;
  top: -34px;
  left: 50%;
  width: 1px;
  height: 34px;
  background: rgba(245, 245, 245, 0.48);
}

.laser {
  position: absolute;
  z-index: 1;
  top: 78px;
  left: 50%;
  width: 260px;
  height: 3px;
  border-radius: 999px;
  opacity: 0.82;
  transform-origin: left center;
}

.laser-one {
  background: var(--pink);
  box-shadow: var(--shadow-pink);
  transform: rotate(25deg);
}

.laser-two {
  background: var(--blue);
  box-shadow: var(--shadow-blue);
  transform: rotate(148deg);
}

.laser-three {
  background: var(--yellow);
  box-shadow: 0 0 24px rgba(255, 242, 0, 0.45);
  transform: rotate(91deg);
}

.club-floor {
  position: absolute;
  right: 2%;
  bottom: 0;
  left: 2%;
  z-index: 3;
  height: 172px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0 0 28px 28px;
  background:
    radial-gradient(ellipse at center bottom, rgba(255, 31, 168, 0.24), transparent 58%),
    linear-gradient(to top, rgba(5, 5, 9, 0.96), rgba(5, 5, 9, 0.1));
}

.crowd {
  position: absolute;
  bottom: 15px;
  width: 30px;
  height: 58px;
  border-radius: 999px 999px 12px 12px;
  background: #020207;
  box-shadow:
    0 -42px 0 -12px #020207,
    0 0 18px rgba(255, 31, 168, 0.22);
  transform-origin: bottom center;
  animation: dance 1.15s ease-in-out infinite alternate;
}

.crowd::before,
.crowd::after {
  content: "";
  position: absolute;
  top: 10px;
  width: 46px;
  height: 8px;
  border-radius: 999px;
  background: #020207;
}

.crowd::before {
  right: 18px;
  transform: rotate(-26deg);
}

.crowd::after {
  left: 18px;
  transform: rotate(28deg);
}

.crowd-a {
  left: 24%;
}

.crowd-b {
  left: 39%;
  height: 70px;
  animation-delay: -300ms;
}

.crowd-c {
  left: 56%;
  height: 64px;
  animation-delay: -620ms;
}

.crowd-d {
  left: 71%;
  height: 54px;
  animation-delay: -180ms;
}

.speaker {
  position: absolute;
  bottom: 12px;
  width: 58px;
  height: 92px;
  border: 1px solid rgba(0, 217, 255, 0.3);
  border-radius: 10px;
  background:
    radial-gradient(circle at center 24px, rgba(0, 217, 255, 0.24) 0 12px, transparent 13px),
    radial-gradient(circle at center 62px, rgba(255, 31, 168, 0.24) 0 16px, transparent 17px),
    rgba(2, 2, 7, 0.92);
  box-shadow: 0 0 22px rgba(0, 217, 255, 0.18);
}

.speaker-left {
  left: 7%;
}

.speaker-right {
  right: 7%;
}

.beam {
  position: absolute;
  bottom: 18px;
  left: 50%;
  width: 9px;
  height: 118px;
  border-radius: 999px;
  transform-origin: bottom center;
  opacity: 0.46;
}

.beam-a {
  background: var(--blue);
  box-shadow: var(--shadow-blue);
  transform: rotate(-54deg);
}

.beam-b {
  background: var(--pink);
  box-shadow: var(--shadow-pink);
  transform: rotate(44deg);
}

.beam-c {
  background: var(--yellow);
  box-shadow: 0 0 20px rgba(255, 242, 0, 0.48);
  transform: rotate(4deg);
}

.benefits {
  padding: 64px 0 34px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 24px;
}

.section-heading h2,
.why h2,
.final-cta h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 2.7rem;
  font-weight: 900;
  line-height: 1.03;
  text-wrap: balance;
}

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

.benefit-card {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(7, 11, 22, 0.76);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.28), inset 0 0 30px rgba(0, 217, 255, 0.04);
}

.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.16), transparent),
    radial-gradient(circle at 100% 0, rgba(255, 31, 168, 0.28), transparent 44%);
  opacity: 0.88;
}

.benefit-card > * {
  position: relative;
  z-index: 1;
}

.card-icon {
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 34px;
  border: 1px solid rgba(0, 217, 255, 0.48);
  border-radius: 50%;
  color: var(--blue);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: var(--shadow-blue), inset 0 0 18px rgba(255, 31, 168, 0.12);
}

.benefit-card h3 {
  margin-bottom: 8px;
  font-size: 1.22rem;
  line-height: 1.15;
}

.benefit-card p {
  margin-bottom: 0;
  color: rgba(245, 245, 245, 0.72);
}

.reveal-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

.why {
  display: grid;
  align-items: stretch;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 18px;
  padding: 42px 0 34px;
}

.why-panel,
.signal-panel,
.final-cta {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 15% 15%, rgba(0, 217, 255, 0.12), transparent 28rem),
    radial-gradient(circle at 92% 80%, rgba(255, 31, 168, 0.14), transparent 22rem),
    rgba(6, 10, 20, 0.68);
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.3);
}

.why-panel {
  padding: 42px;
  border-radius: 8px;
}

.why-panel p:not(.eyebrow) {
  max-width: 770px;
  margin: 18px 0 26px;
  color: rgba(245, 245, 245, 0.76);
  font-size: 1.05rem;
}

.secondary-btn,
.ghost-btn {
  min-width: 170px;
  padding: 0 20px;
}

.signal-panel {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 30px;
  border-radius: 8px;
}

.signal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.signal-row span {
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.signal-row strong {
  color: var(--white);
  text-align: right;
}

.route-meter {
  position: relative;
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.route-meter span {
  position: absolute;
  inset: 0 24% 0 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--pink), var(--yellow));
  box-shadow: 0 0 18px rgba(255, 31, 168, 0.42);
  animation: meterGlow 2.2s ease-in-out infinite;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 52px;
  margin-bottom: 68px;
  padding: 42px;
  border-radius: 8px;
}

.final-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 14px 0 0;
  color: rgba(245, 245, 245, 0.76);
  font-size: 1.05rem;
}

.final-actions {
  justify-content: flex-end;
}

.footer {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(calc(100% - 40px), var(--max));
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0 auto;
  padding: 26px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(245, 245, 245, 0.72);
}

.footer div {
  display: grid;
  gap: 3px;
}

.footer strong {
  color: var(--white);
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  font-size: 0.9rem;
}

.legal-note {
  flex: 1 0 100%;
  margin: -4px 0 0;
  color: rgba(245, 245, 245, 0.46);
  font-size: 0.78rem;
  line-height: 1.45;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--blue);
}

:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 4px;
}

@keyframes driftLights {
  from {
    transform: translate3d(-1%, -1%, 0) scale(1);
  }
  to {
    transform: translate3d(1%, 1%, 0) scale(1.03);
  }
}

@keyframes particleRise {
  from {
    opacity: 0;
    transform: translate3d(0, 110vh, 0) scale(0.8);
  }
  12% {
    opacity: 0.9;
  }
  88% {
    opacity: 0.75;
  }
  to {
    opacity: 0;
    transform: translate3d(var(--drift, 28px), -10vh, 0) scale(1.2);
  }
}

@keyframes softPulse {
  from {
    opacity: 0.92;
    transform: scale(0.72);
  }
  to {
    opacity: 0;
    transform: scale(1.36);
  }
}

@keyframes shine {
  0% {
    opacity: 0;
    transform: translateX(-90%);
  }
  20%,
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(90%);
  }
}

@keyframes voiceWave {
  from {
    opacity: 0.85;
    transform: translate(-50%, -50%) scale(0.72);
  }
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.35);
  }
}

@keyframes routeFlow {
  to {
    stroke-dashoffset: -60;
  }
}

@keyframes markerPulse {
  from {
    opacity: 0.88;
    transform: scale(0.62);
  }
  to {
    opacity: 0;
    transform: scale(1.65);
  }
}

@keyframes discoSpin {
  to {
    transform: translateX(-50%) rotate(360deg);
  }
}

@keyframes dance {
  from {
    transform: rotate(-2deg) translateY(0);
  }
  to {
    transform: rotate(3deg) translateY(-8px);
  }
}

@keyframes meterGlow {
  50% {
    filter: brightness(1.45);
    transform: translateX(10%);
  }
}

@media (max-width: 1120px) {
  .nav {
    gap: 14px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 122px;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .hero-name {
    font-size: 4.7rem;
  }

  .route-visual {
    min-height: 590px;
  }
}

@media (max-width: 920px) {
  .topbar {
    top: 10px;
    width: min(calc(100% - 20px), var(--max));
    min-height: 62px;
  }

  .nav {
    display: none;
  }

  .section-heading,
  .final-cta,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .final-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .section-band,
  .footer {
    width: min(calc(100% - 28px), var(--max));
  }

  .brand {
    font-size: 0.98rem;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.78rem;
  }

  .hero {
    min-height: auto;
    padding: 112px 0 42px;
    gap: 22px;
  }

  .hero h1 {
    font-size: 3.05rem;
    line-height: 1;
  }

  .hero-name {
    font-size: 3.35rem;
    line-height: 0.98;
  }

  .hero-tagline {
    font-size: 1.18rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

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

  .primary-btn,
  .gps-voice-btn,
  .secondary-btn,
  .ghost-btn {
    width: 100%;
    min-width: 0;
  }

  .graffiti-line {
    font-size: 0.98rem;
  }

  .route-visual {
    min-height: 520px;
    margin-top: 6px;
  }

  .spain-map {
    min-height: 430px;
    transform: translateX(-20px) scale(1.08);
    transform-origin: center top;
  }

  .floating-note {
    right: 4px;
    top: 26px;
    width: 172px;
    padding: 14px;
  }

  .floating-note strong {
    font-size: 0.9rem;
  }

  .club-floor {
    height: 138px;
  }

  .speaker {
    display: none;
  }

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

  .section-heading h2,
  .why h2,
  .final-cta h2 {
    font-size: 2.18rem;
  }

  .why-panel,
  .signal-panel,
  .final-cta {
    padding: 26px;
  }
}

@media (max-width: 430px) {
  .topbar {
    gap: 8px;
    padding-left: 12px;
  }

  .brand {
    max-width: 168px;
  }

  .nav-cta {
    padding: 0 10px;
  }

  .hero h1 {
    font-size: 2.54rem;
  }

  .hero-name {
    font-size: 2.62rem;
  }

  .route-visual {
    min-height: 500px;
  }

  .spain-map {
    min-height: 405px;
    transform: translateX(-36px) scale(1.14);
  }

  .city text,
  .destination-label text {
    font-size: 12px;
  }

  .destination-label .small-label {
    font-size: 10px;
  }

  .floating-note {
    width: 150px;
  }
}

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