/* --------------------------------------------------------------
   Design system – Full Up “High Voltage Cyber Nightlife”
-------------------------------------------------------------- */

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

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 18px rgba(163, 255, 18, 0.55); }
  50% { box-shadow: 0 0 28px rgba(163, 255, 18, 0.75); }
}

.animate-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

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

.animate-in[data-delay="1"] { transition-delay: 0.1s; }
.animate-in[data-delay="2"] { transition-delay: 0.2s; }
.animate-in[data-delay="3"] { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .animate-in, .animate-in.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .dot-live { animation: none; }
  .btn-primary { animation: none; }
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body.app {
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top left, #050814 0, #020308 55%, #020308 100%);
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font-family: inherit;
}

/* Layout utilities */

.section {
  padding: 80px 20px;
}

.section-alt {
  background: radial-gradient(circle at top right, #050814 0, #020308 60%);
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 32px;
}

.section-header.center {
  text-align: center;
}

.section-header h1,
.section-header h2 {
  margin: 0 0 8px;
}

.section-header p {
  margin: 0;
  color: #a8b0c5;
}

.section-footer.center {
  text-align: center;
  margin-top: 24px;
}

main {
  padding-top: 72px;
}

/* Typography */

h1,
h2,
h3 {
  font-weight: 800;
  letter-spacing: 0.03em;
}

h1 {
  font-size: 40px;
  line-height: 1.08;
  text-shadow: 0 0 16px rgba(249, 248, 113, 0.45);
}

h2 {
  font-size: 28px;
  line-height: 1.2;
}

h3 {
  font-size: 20px;
  line-height: 1.3;
}

p {
  font-size: 16px;
  line-height: 1.6;
  color: #d3d7e5;
}

.hero-title {
  font-size: 44px;
  line-height: 1.05;
  margin: 8px 0 12px;
}

.hero-subtitle {
  max-width: 480px;
}

.hero-note {
  font-size: 14px;
  color: #a8b0c5;
  margin-top: 16px;
}

/* Navigation */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: linear-gradient(
    to bottom,
    rgba(2, 3, 8, 0.92),
    rgba(2, 3, 8, 0.85),
    transparent
  );
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
  background: rgba(2, 3, 8, 0.95);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 15px;
}

.logo-full {
  color: #ffffff;
}

.logo-up {
  color: #f9f871;
  position: relative;
}

.logo-up::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #a3ff12;
  box-shadow: 0 0 8px rgba(163, 255, 18, 0.7);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
}

.nav-link {
  color: #c7ccdd;
  position: relative;
  padding-bottom: 2px;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(120deg, #f9f871, #a3ff12);
  transition: width 160ms ease-out;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link-active {
  color: #ffffff;
}

.nav-link-active::after {
  width: 100%;
}

.nav-cta {
  margin-left: 16px;
}

.nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle span {
  display: block;
  width: 14px;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 160ms ease-out;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(120deg, #f9f871 0%, #a3ff12 50%, #7bff00 100%);
  color: #020308;
  box-shadow: 0 0 18px rgba(163, 255, 18, 0.55);
}

.btn-primary:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 0 24px rgba(163, 255, 18, 0.7);
}

.btn-primary {
  animation: glow-pulse 3s ease-in-out infinite;
}

.btn-outline {
  background: rgba(2, 3, 8, 0.9);
  border: 1px solid #f9f871;
  color: #f9f871;
}

.btn-outline:hover {
  background: rgba(249, 248, 113, 0.08);
  box-shadow: 0 0 14px rgba(249, 248, 113, 0.5);
}

.btn-outline-strong {
  background: rgba(2, 3, 8, 0.9);
  border: 1px solid #f9f871;
  color: #f9f871;
  box-shadow: 0 0 12px rgba(249, 248, 113, 0.45);
}

.btn-outline-strong:hover {
  background: rgba(249, 248, 113, 0.1);
  box-shadow: 0 0 20px rgba(249, 248, 113, 0.7);
}

.btn-link {
  border: none;
  background: none;
  color: #a8b0c5;
  font-size: 14px;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: rgba(168, 176, 197, 0.6);
  text-underline-offset: 4px;
}

.btn-link:hover {
  color: #ffffff;
}

.link-inline {
  font-size: 14px;
  color: #f9f871;
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease;
}

.link-inline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: linear-gradient(120deg, #f9f871, #a3ff12);
  opacity: 0.5;
}

.link-inline:hover {
  color: #ffffff;
}

/* Pills & tags */

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(163, 255, 18, 0.5);
  background: rgba(163, 255, 18, 0.08);
  color: #a3ff12;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pill-geo {
  margin-bottom: 6px;
}

.pill-filter {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(2, 3, 8, 0.9);
  color: #c7ccdd;
  cursor: pointer;
}

.pill-filter.pill-active {
  border-color: rgba(163, 255, 18, 0.8);
  color: #a3ff12;
  background: rgba(163, 255, 18, 0.08);
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tag-green {
  background: rgba(163, 255, 18, 0.12);
  color: #a3ff12;
  border: 1px solid rgba(163, 255, 18, 0.5);
}

/* Hero sections */

.hero {
  padding-top: 96px;
}

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

.hero-text {
  max-width: 520px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.hero-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 320px;
  background-image: linear-gradient(
      135deg,
      rgba(2, 3, 8, 0.4),
      rgba(2, 3, 8, 0.8)
    ),
    radial-gradient(circle at 20% 0, rgba(163, 255, 18, 0.55), transparent 60%),
    radial-gradient(circle at 80% 100%, rgba(249, 248, 113, 0.6), transparent 60%);
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      to top,
      rgba(2, 3, 8, 0.7),
      rgba(2, 3, 8, 0.05),
      rgba(2, 3, 8, 0.85)
    ),
    url("https://images.pexels.com/photos/1189261/pexels-photo-1189261.jpeg?auto=compress&cs=tinysrgb&w=1600");
  background-size: cover;
  background-position: center;
  mix-blend-mode: screen;
}

.hero-image-label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(2, 3, 8, 0.8);
  border: 1px solid rgba(163, 255, 18, 0.5);
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dot-live {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #a3ff12;
  box-shadow: 0 0 12px rgba(163, 255, 18, 0.85);
  animation: dot-pulse 2s ease-in-out infinite;
}

@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.1); }
}

.hero-small {
  padding-top: 104px;
  padding-bottom: 16px;
}

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

.hero-pro-text h1 {
  font-size: 36px;
}

.hero-pro-text p {
  max-width: 460px;
}

.hero-pro-visual {
  display: flex;
  justify-content: flex-end;
}

.hero-station-shell {
  max-width: 330px;
  padding: 18px;
  border-radius: 20px;
  background: radial-gradient(circle at 0 0, rgba(163, 255, 18, 0.15), transparent),
    radial-gradient(circle at 100% 100%, rgba(249, 248, 113, 0.18), transparent),
    rgba(2, 3, 8, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-station {
  height: 180px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(145deg, #050814, #0f1728);
  position: relative;
  margin-bottom: 12px;
}

.hero-station::before,
.hero-station::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.hero-station::before {
  left: 50%;
  transform: translateX(-50%);
  top: 16px;
  width: 70%;
  height: 10px;
  background: linear-gradient(120deg, #f9f871, #a3ff12);
  box-shadow: 0 0 20px rgba(163, 255, 18, 0.7);
}

.hero-station::after {
  left: 50%;
  transform: translateX(-50%);
  bottom: 18px;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid rgba(249, 248, 113, 0.6);
  box-shadow: 0 0 16px rgba(249, 248, 113, 0.7);
}

.hero-station-shell p {
  font-size: 13px;
  color: #a8b0c5;
}

/* Cards & grids */

.cards-grid {
  display: grid;
  gap: 20px;
}

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

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

.card-step,
.card-kpi,
.card-place {
  padding: 20px 18px;
  border-radius: 18px;
  background: rgba(10, 13, 30, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card-step:hover,
.card-kpi:hover,
.card-place:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  border-color: rgba(163, 255, 18, 0.2);
}

.card-step h3,
.card-kpi h3 {
  margin-top: 12px;
  margin-bottom: 6px;
}

.card-kpi {
  text-align: left;
}

.kpi-value {
  font-size: 24px;
  font-weight: 700;
  color: #f9f871;
  margin-bottom: 6px;
}

.kpi-grid {
  margin-top: 12px;
}

.card-place header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.card-place h3 {
  margin: 0;
}

.place-type {
  font-size: 14px;
  color: #a8b0c5;
  margin: 0 0 4px;
}

.place-meta {
  font-size: 14px;
  margin: 0 0 8px;
}

.icon-battery {
  display: inline-block;
  width: 14px;
  height: 8px;
  border-radius: 3px;
  border: 1px solid #a3ff12;
  margin-right: 6px;
  position: relative;
}

.icon-battery::after {
  content: "";
  position: absolute;
  right: -3px;
  top: 2px;
  width: 2px;
  height: 4px;
  border-radius: 1px;
  background: #a3ff12;
}

/* Steps icons – simple geometric shapes */

.step-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid rgba(163, 255, 18, 0.6);
  background: radial-gradient(circle at 30% 0, rgba(163, 255, 18, 0.3), transparent),
    rgba(5, 8, 20, 0.9);
  box-shadow: 0 0 14px rgba(163, 255, 18, 0.4);
  position: relative;
}

.step-icon-1::before {
  content: "";
  position: absolute;
  inset: 11px 8px;
  border-radius: 6px;
  border: 1px solid #a3ff12;
}

.step-icon-1::after {
  content: "";
  position: absolute;
  right: 9px;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  border: 1px solid #a3ff12;
}

.step-icon-2::before {
  content: "";
  position: absolute;
  inset: 9px 9px;
  border-radius: 50%;
  border: 1px solid #a3ff12;
}

.step-icon-2::after {
  content: "";
  position: absolute;
  left: 16px;
  top: 8px;
  width: 6px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f9f871, #a3ff12);
}

.step-icon-3::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 10px;
  width: 16px;
  height: 16px;
  border-radius: 6px;
  border: 1px solid #f9f871;
}

.step-icon-3::after {
  content: "";
  position: absolute;
  right: 7px;
  top: 15px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #a3ff12;
}

/* Lists */

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

.list-check li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 15px;
}

.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #a3ff12;
}

/* Audiences */

.audiences {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: flex-start;
}

.audience-block h2 {
  margin-top: 0;
  margin-bottom: 10px;
}

.cta-partner {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cta-partner h3 {
  margin: 0 0 14px;
}

/* Map */

.map-shell {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: stretch;
}

.map-dark {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 360px;
  background: radial-gradient(circle at 0 0, #0b1122, #020308 55%);
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      to right,
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.5;
  mix-blend-mode: soft-light;
}

.map-pin {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #f9f871;
  box-shadow: 0 0 18px rgba(249, 248, 113, 0.8);
  cursor: pointer;
  transition: transform 120ms ease-out;
}

.map-pin:hover {
  transform: scale(1.2);
}

.map-pin-main {
  width: 18px;
  height: 18px;
}

.map-pulse {
  position: absolute;
  inset: -10px;
  border-radius: inherit;
  border: 1px solid rgba(249, 248, 113, 0.4);
  opacity: 0.7;
}

.map-tooltip {
  border-radius: 18px;
  padding: 18px 18px 16px;
  background: rgba(10, 13, 30, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.map-tooltip h2 {
  margin: 0 0 4px;
}

.tooltip-sub {
  font-size: 14px;
  color: #a8b0c5;
  margin-top: 0;
}

.map-tooltip-content .tooltip-place {
  margin: 0 0 4px;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.map-tooltip-content .tooltip-type {
  font-size: 14px;
  color: #a8b0c5;
  margin: 0 0 6px;
}

.map-tooltip-content .tooltip-meta {
  font-size: 13px;
  color: #d3d7e5;
  margin: 0;
}

.status-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin-top: 12px;
  color: #d3d7e5;
}

/* Grids & FAQ */

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

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

.faq-block h2 {
  margin-top: 0;
  margin-bottom: 12px;
}

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

.faq-list li {
  margin-bottom: 16px;
}

.faq-list h3 {
  font-size: 15px;
  margin: 0 0 4px;
}

.faq-list p {
  font-size: 14px;
  margin: 0;
}

/* Forms */

.section-form {
  max-width: 720px;
}

.form {
  margin-top: 12px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 13px;
  color: #c7ccdd;
}

.form-field input,
.form-field select,
.form-field textarea {
  background: #050814;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 9px 11px;
  font-size: 14px;
  color: #ffffff;
  outline: none;
  transition: border-color 140ms ease-out, box-shadow 140ms ease-out,
    background-color 140ms ease-out;
}

.form-field textarea {
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #6f7690;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #a3ff12;
  box-shadow: 0 0 0 1px rgba(163, 255, 18, 0.5);
  background: #050814;
}

.form-actions {
  margin-top: 20px;
}

/* Support CTA */

.support-cta {
  border-radius: 18px;
  padding: 20px 18px;
  border: 1px solid rgba(249, 248, 113, 0.75);
  background: radial-gradient(
      circle at 0 0,
      rgba(249, 248, 113, 0.16),
      transparent 65%
    ),
    rgba(2, 3, 8, 0.98);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.support-cta header h2 {
  margin: 0 0 6px;
}

.support-cta header p {
  margin: 0;
}

/* Footer */

.footer {
  padding: 32px 20px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 32px;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-logo {
  font-size: 14px;
}

.footer-copy {
  font-size: 13px;
  color: #a8b0c5;
  margin: 4px 0 0;
}

.footer-links {
  display: flex;
  gap: 16px;
  font-size: 13px;
}

.footer-links a {
  color: #c7ccdd;
}

.footer-links a:hover {
  color: #ffffff;
}

/* Misc */

.filters-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.status-pill {
  font-size: 12px;
}

/* Responsive */

@media (max-width: 900px) {
  .hero-grid,
  .hero-pro,
  .map-shell {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .hero-small {
    padding-bottom: 32px;
  }

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

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

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

@media (max-width: 720px) {
  .section {
    padding: 64px 18px;
  }

  .hero {
    padding-top: 90px;
  }

  .hero-title {
    font-size: 34px;
  }

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

  .nav-inner {
    padding-inline: 16px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

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

  .map-shell {
    gap: 18px;
  }

  .support-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

