:root {
  --bg: #080d18;
  --card: #0f1624;
  --accent: #58c4ff;
  --accent-2: #ff7ce5;
  --text: #e8eef9;
  --muted: #9cb1cd;
  --shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", "Segoe UI", "Helvetica Neue", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.bg-blobs {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 20% 15%, rgba(88, 196, 255, 0.12), transparent 35%),
    radial-gradient(circle at 80% 0%, rgba(255, 124, 229, 0.12), transparent 30%),
    radial-gradient(circle at 50% 60%, rgba(88, 196, 255, 0.06), transparent 35%);
  pointer-events: none;
}

.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 64px;
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 12px rgba(88, 196, 255, 0.7);
}

.nav-links {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  opacity: 0.85;
}

.hero {
  background: linear-gradient(135deg, rgba(88, 196, 255, 0.16), rgba(255, 124, 229, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow);
}

.badge {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.4px;
}

h1 {
  font-size: clamp(32px, 4vw, 44px);
  margin: 18px 0 12px;
}

.lede {
  color: var(--muted);
  max-width: 760px;
  margin-bottom: 22px;
}

.cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.cta {
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  color: var(--text);
  border: 1px solid transparent;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.cta.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 15px 30px rgba(88, 196, 255, 0.25);
}

.cta.ghost {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.stats strong {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 22px;
}

.stats span {
  color: var(--muted);
  font-size: 14px;
}

.ribbon {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.icon {
  font-size: 20px;
}

.panel {
  margin-top: 36px;
  padding: 28px 24px;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.spotlight {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  align-items: center;
}

.spotlight-right {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.mini-label {
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-size: 12px;
  margin: 0;
}

.online {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.highlight {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
}

.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.card {
  padding: 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

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

.link {
  text-decoration: none;
}

.stacked-form {
  display: grid;
  gap: 8px;
}

.stacked-form label {
  font-weight: 600;
}

.stacked-form input,
.stacked-form select,
.stacked-form textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.stacked-form textarea {
  resize: vertical;
}

.cta.full {
  text-align: center;
  width: 100%;
  display: inline-block;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 4px;
}

.pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0.2px;
}

.cta.tiny {
  padding: 8px 12px;
  font-size: 13px;
}

.notice {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px dashed rgba(255, 255, 255, 0.14);
  color: var(--text);
  font-weight: 700;
}

.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 12px 16px;
  border-radius: 12px;
  color: #0b1220;
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.ok {
  background: #34d399;
}

.toast.err {
  background: #fb7185;
}

.toast.hidden {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}

.steps ol {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.steps li {
  margin: 8px 0;
}

.contact {
  text-align: center;
}

.inline-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0;
}

.inline-form input {
  padding: 12px 14px;
  width: min(320px, 100%);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.inline-form button {
  padding: 12px 18px;
  border-radius: 12px;
  border: none;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(88, 196, 255, 0.24);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.inline-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

small {
  color: var(--muted);
}
