/* ========================================
   Pylox — Animated Dark / White Minimalism
   ======================================== */

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

:root {
  --bg: #09090b;
  --surface: rgba(24, 24, 27, 0.6);
  --surface-solid: #18181b;
  --surface-hover: #27272a;
  --border: rgba(39, 39, 42, 0.6);
  --text: #fafafa;
  --text-muted: #a1a1aa;
  --accent: #ffffff;
  --radius: 12px;
  --max-w: 1100px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.accent {
  color: var(--accent);
}

.gradient-text {
  background: linear-gradient(135deg, #fff 0%, #a78bfa 40%, #818cf8 60%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ——— AURORA BACKGROUND ——— */
.aurora-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  will-change: transform;
}

.aurora-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #7c3aed, transparent 70%);
  top: -10%;
  left: -10%;
  animation: drift1 20s ease-in-out infinite;
}

.aurora-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #f97316, transparent 70%);
  top: 20%;
  right: -15%;
  animation: drift2 25s ease-in-out infinite;
}

.aurora-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #a855f7, transparent 70%);
  bottom: 10%;
  left: 20%;
  animation: drift3 22s ease-in-out infinite;
}

.aurora-4 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #fb923c, transparent 70%);
  top: 50%;
  left: 60%;
  animation: drift4 18s ease-in-out infinite;
}

@keyframes drift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(120px, 80px) scale(1.1); }
  50% { transform: translate(60px, 160px) scale(0.95); }
  75% { transform: translate(-40px, 100px) scale(1.05); }
}

@keyframes drift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(-100px, 60px) scale(1.08); }
  50% { transform: translate(-180px, -40px) scale(0.92); }
  75% { transform: translate(-60px, -100px) scale(1.04); }
}

@keyframes drift3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(100px, -80px) scale(1.12); }
  66% { transform: translate(-60px, -120px) scale(0.9); }
}

@keyframes drift4 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-80px, 60px) scale(1.06); }
  66% { transform: translate(40px, -80px) scale(0.94); }
}

/* ——— MOUSE GLOW ——— */
.mouse-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.1), transparent 70%);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

/* ——— NAV ——— */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(9, 9, 11, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}

.nav.scrolled {
  background: rgba(9, 9, 11, 0.85);
  border-bottom-color: var(--border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.nav-logo {
  z-index: 1;
}

.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 32px;
}

.nav-actions {
  z-index: 1;
}

.nav-logo img {
  display: block;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s, transform 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

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

.nav-cta {
  background: var(--accent);
  color: var(--bg);
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(139, 92, 246, 0.3));
  opacity: 0;
  transition: opacity 0.3s;
}

.nav-cta:hover::before {
  opacity: 1;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

/* ——— NAV ACTIONS ——— */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-select-wrap {
  position: relative;
}

.nav-select {
  appearance: none;
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 24px 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s;
  letter-spacing: 0.04em;
}

.nav-select-wrap::after {
  content: '';
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid var(--text-muted);
  pointer-events: none;
}

.nav-select:hover {
  border-color: rgba(139, 92, 246, 0.4);
  color: var(--text);
}

.nav-select:focus {
  outline: none;
  border-color: rgba(139, 92, 246, 0.6);
}

.nav-select option {
  background: #1a1a1e;
  color: var(--text);
}

.nav-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.25s;
  flex-shrink: 0;
}

.nav-icon-btn:hover {
  border-color: rgba(139, 92, 246, 0.4);
  color: var(--text);
  background: rgba(255, 255, 255, 0.1);
}

.icon-moon {
  display: none;
}

html.light .icon-sun {
  display: none;
}

html.light .icon-moon {
  display: block;
}

/* ——— HERO ——— */
.hero {
  padding: 160px 0 100px;
  text-align: center;
  position: relative;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15), transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  animation: heroGlow 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes heroGlow {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

.hero-badge {
  display: inline-block;
  background: var(--surface);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.hero h1 {
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

/* ——— BUTTONS ——— */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 20%, rgba(139, 92, 246, 0.4));
  opacity: 0;
  transition: opacity 0.35s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.35);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: var(--surface);
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.15);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  width: 100%;
  text-align: center;
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: var(--surface);
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.15);
}

/* ——— LOGOS BAR ——— */
.logos-bar {
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.logos-label {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}

.logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
}

.partner-logo {
  display: flex;
  align-items: center;
  opacity: 0.5;
  transition: opacity 0.3s;
  flex-shrink: 0;
}

.partner-logo:hover {
  opacity: 0.9;
}

.partner-logo img {
  display: block;
  height: 24px;
  width: auto;
}

html.light .partner-logo {
  opacity: 0.7;
}

html.light .partner-logo:hover {
  opacity: 1;
}

/* ——— FEATURES ——— */
.features {
  padding: 100px 0;
}

.section-title {
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 16px;
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-radius: var(--radius);
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  padding: 40px 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.06);
  z-index: 1;
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0), transparent);
  transition: all 0.5s ease;
  opacity: 0;
}

.feature-card:hover .card-glow {
  opacity: 1;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.8), transparent);
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(300px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(139, 92, 246, 0.06), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--text-muted);
}

.feature-icon svg {
  display: block;
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ——— PRICING ——— */
.pricing {
  padding: 120px 0;
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-radius: var(--radius);
}

.price-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: var(--radius);
}

.price-card:hover {
  background: rgba(255, 255, 255, 0.06);
  z-index: 1;
}

.price-card.featured {
  background: rgba(255, 255, 255, 0.06);
}

.price-card .card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0), transparent);
  transition: all 0.5s ease;
  opacity: 0;
}

.price-card:hover .card-glow {
  opacity: 1;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.8), transparent);
}

.price-card.featured .card-glow {
  opacity: 1;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.price-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
  50% { box-shadow: 0 0 0 6px rgba(255, 255, 255, 0); }
}

.price-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.price {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}

.price span {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
}

.price-card ul {
  list-style: none;
  margin-bottom: 32px;
  text-align: left;
}

.price-card li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.3s, transform 0.3s;
}

.price-card:hover li {
  color: var(--text);
}

.price-card li:last-child {
  border-bottom: none;
}

/* ——— STATUS ——— */
.status-section {
  padding: 120px 0;
}

.status-overview {
  margin-bottom: 32px;
}

.status-overall {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
}

.status-overall-title {
  font-size: 16px;
  font-weight: 600;
}

.status-overall-sub {
  font-size: 13px;
  color: var(--text-muted);
}

.status-uptime-badge {
  margin-left: auto;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: #4ade80;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.status-dot {
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
}

.status-dot--lg {
  width: 10px;
  height: 10px;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.6);
}

.status-dot--sm {
  width: 7px;
  height: 7px;
}

.status-services {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 32px;
}

.status-service {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  transition: background 0.2s;
}

.status-service:hover {
  background: rgba(255, 255, 255, 0.02);
}

.status-service + .status-service {
  border-top: 1px solid var(--border);
}

.status-service-left {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
}

.status-service-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.status-latency {
  font-size: 13px;
  font-family: "SF Mono", "Fira Code", monospace;
  color: var(--text-muted);
  min-width: 40px;
  text-align: right;
}

.status-label {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.status-label--ok {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: #4ade80;
}

.status-label--down {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #f87171;
}

.status-label--loading {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
}

.status-dot--ok {
  background: #22c55e;
}

.status-dot--ok.status-dot--lg {
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.6);
}

.status-dot--down {
  background: #ef4444;
}

.status-dot--down.status-dot--lg {
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.6);
  animation: pulse-red 2s ease-in-out infinite;
}

.status-dot--loading {
  background: #6b7280;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse-red {
  0%, 100% { box-shadow: 0 0 12px rgba(239, 68, 68, 0.6); }
  50% { box-shadow: 0 0 20px rgba(239, 68, 68, 0.9); }
}

.status-label--resolved {
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  color: #818cf8;
}

.status-incidents {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.status-incidents h3 {
  font-size: 14px;
  font-weight: 600;
  padding: 20px 28px 0;
  margin-bottom: 16px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 12px;
}

.status-incident {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
}

.status-incident + .status-incident {
  border-top: 1px solid var(--border);
}

.status-incident-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6366f1;
  flex-shrink: 0;
}

.status-incident-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.status-incident-title {
  font-size: 14px;
  font-weight: 500;
}

.status-incident-date {
  font-size: 12px;
  color: var(--text-muted);
}

.status-incident .status-label {
  margin-left: auto;
  flex-shrink: 0;
}

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

/* ——— CONTACT ——— */
.contact {
  padding: 120px 0;
  text-align: center;
  position: relative;
}

.contact .btn {
  margin-top: 12px;
}

/* ——— FOOTER ——— */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  position: relative;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 14px;
}

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

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s, transform 0.3s;
}

.footer-links a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

/* ——— SERVER LOCATIONS ——— */
.locations-section {
  padding: 100px 0;
}

.loc-map-wrap {
  text-align: center;
}

.loc-image-map {
  position: relative;
  max-width: 800px;
  margin: 0 auto 40px;
}

.loc-image-map__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.loc-pin {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid transparent;
  transform: translate(-50%, -50%);
  transition: all 0.25s ease;
}

.loc-pin:hover {
  background: rgba(9, 9, 11, 0.82);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.loc-pin__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.08);
}

.loc-pin--germany {
  left: 52%;
  top: 47%;
}

.loc-pin--germany .loc-pin__dot {
  background: #f97316;
}

.loc-pin--spain {
  left: 48%;
  top: 50%;
}

.loc-pin--spain .loc-pin__dot {
  background: #a855f7;
}

.loc-pin__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.loc-pin:hover .loc-pin__label {
  opacity: 1;
}

.loc-info-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.loc-info-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 24px;
  text-align: left;
}

.loc-dot-icon {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.loc-dot--orange {
  background: #f97316;
  box-shadow: 0 0 10px rgba(249, 115, 22, 0.5);
}

.loc-dot--purple {
  background: #a855f7;
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}

.loc-info-city {
  font-size: 14px;
  font-weight: 600;
}

.loc-info-detail {
  font-size: 12px;
  color: var(--text-muted);
}

/* ——— SCROLL TO TOP ——— */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 90;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(249, 115, 22, 0.4);
}

/* ——— COOKIE CONSENT ——— */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 16px 24px;
  background: rgba(9, 9, 11, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid var(--border);
}

.cookie-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-inner p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  flex: 1;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 8px 18px !important;
  font-size: 13px !important;
  white-space: nowrap;
  width: auto !important;
  transform: none !important;
}

.cookie-btn:hover {
  transform: translateY(-1px) !important;
}

/* ——— SCROLL ANIMATIONS ——— */
.anim-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: var(--delay, 0s);
}

.anim-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ——— RESPONSIVE ——— */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-select {
    display: none;
  }

  .features-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .loc-info-row {
    flex-direction: column;
    align-items: center;
  }

  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }

  .scroll-top {
    bottom: 20px;
    right: 20px;
  }

  .status-overall {
    flex-wrap: wrap;
  }

  .status-uptime-badge {
    margin-left: 0;
    margin-top: 4px;
  }

  .status-service {
    padding: 14px 20px;
  }

  .status-incident {
    padding: 14px 20px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 16px;
  }

  .aurora-blob {
    opacity: 0.2;
  }

  .aurora-1 { width: 300px; height: 300px; }
  .aurora-2 { width: 250px; height: 250px; }
  .aurora-3 { width: 200px; height: 200px; }
  .aurora-4 { width: 180px; height: 180px; }
}

/* ——— SELECTION ——— */
::selection {
  background: rgba(139, 92, 246, 0.3);
  color: var(--text);
}

/* ——— SCROLLBAR ——— */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: #3f3f46;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #52525b;
}

/* ========================================
   LIGHT THEME
   ======================================== */
html.light {
  --bg: #f5f5f5;
  --surface: rgba(255, 255, 255, 0.6);
  --surface-solid: #ffffff;
  --surface-hover: #e5e5e5;
  --border: rgba(0, 0, 0, 0.08);
  --text: #09090b;
  --text-muted: #52525b;
  --accent: #09090b;
}

html.light .gradient-text {
  background: linear-gradient(135deg, #09090b 0%, #7c3aed 40%, #6366f1 60%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

html.light .aurora-blob {
  opacity: 0.15;
}

html.light .aurora-1 {
  background: radial-gradient(circle, #ddd6fe, transparent 70%);
}
html.light .aurora-2 {
  background: radial-gradient(circle, #fed7aa, transparent 70%);
}
html.light .aurora-3 {
  background: radial-gradient(circle, #e9d5ff, transparent 70%);
}
html.light .aurora-4 {
  background: radial-gradient(circle, #ffedd5, transparent 70%);
}

html.light .mouse-glow {
  background: radial-gradient(circle, rgba(249, 115, 22, 0.06), transparent 70%);
}

html.light .nav {
  background: rgba(245, 245, 245, 0.5);
}

html.light .nav.scrolled {
  background: rgba(245, 245, 245, 0.85);
}

html.light .nav-cta {
  background: var(--accent);
  color: var(--bg);
}

html.light .nav-cta::before {
  background: linear-gradient(135deg, transparent 30%, rgba(124, 58, 237, 0.2));
}

html.light .hero-glow {
  background: radial-gradient(circle, rgba(124, 58, 237, 0.1), transparent 70%);
}

html.light .hero-badge {
  background: rgba(255, 255, 255, 0.6);
}

html.light .feature-card,
html.light .price-card,
html.light .status-overall,
html.light .status-services {
  background: rgba(255, 255, 255, 0.4);
  border-color: rgba(0, 0, 0, 0.08);
}

html.light .feature-card:hover,
html.light .price-card:hover {
  background: rgba(255, 255, 255, 0.7);
}

html.light .price-card.featured {
  background: rgba(255, 255, 255, 0.6);
}

html.light .feature-card::before {
  background: radial-gradient(300px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(124, 58, 237, 0.04), transparent 60%);
}

html.light .feature-card:hover .card-glow {
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.6), transparent);
}

html.light .price-card:hover .card-glow,
html.light .price-card.featured .card-glow {
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.4), transparent);
}

html.light .logos-bar {
  border-color: rgba(0, 0, 0, 0.06);
}

html.light .status-label--ok {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.3);
}

html.light .status-label--down {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.3);
}

html.light .status-label--loading {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.1);
}

html.light .status-incident-dot {
  background: #6366f1;
}

html.light .status-service:hover {
  background: rgba(0, 0, 0, 0.02);
}

html.light .footer {
  border-color: rgba(0, 0, 0, 0.06);
}

html.light .loc-info-card {
  background: rgba(255, 255, 255, 0.4);
  border-color: rgba(0, 0, 0, 0.08);
}

html.light .scroll-top {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.08);
  color: #09090b;
}

html.light .scroll-top:hover {
  background: rgba(0, 0, 0, 0.1);
}

html.light .cookie-banner {
  background: rgba(245, 245, 245, 0.9);
  border-color: rgba(0, 0, 0, 0.08);
}

html.light .cookie-inner p {
  color: #52525b;
}

html.light .nav-select {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.08);
}

html.light .nav-select option {
  background: #ffffff;
  color: #09090b;
}

html.light .nav-icon-btn {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.08);
  color: #52525b;
}

html.light .nav-icon-btn:hover {
  background: rgba(0, 0, 0, 0.08);
}

html.light ::selection {
  background: rgba(124, 58, 237, 0.2);
}

html.light ::-webkit-scrollbar-track {
  background: #f5f5f5;
}

html.light ::-webkit-scrollbar-thumb {
  background: #d4d4d8;
}

html.light ::-webkit-scrollbar-thumb:hover {
  background: #a1a1aa;
}
