:root {
  --bg-0: #0b1014;
  --bg-1: #141c23;
  --bg-2: #1f2a33;
  --text: #e8eef3;
  --muted: #9aa7b2;
  --blue: #2680c9;
  --blue-2: #1e6fbd;
  --teal: #35e8ad;
  --teal-2: #14b887;
  --ring: rgba(53, 232, 173, 0.35);
  --card: rgba(255, 255, 255, 0.03);
  --card-b: rgba(255, 255, 255, 0.08);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 800px at 30% -10%, #1a2631 0%, var(--bg-0) 60%, #05080b 100%);
  min-height: 100vh;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.bg-glow {
  position: fixed;
  inset: -20vmax;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(420px 320px at 18% 20%, rgba(53, 232, 173, 0.18), transparent 60%),
    radial-gradient(520px 420px at 85% 10%, rgba(38, 128, 201, 0.18), transparent 60%),
    radial-gradient(620px 420px at 50% 120%, rgba(53, 232, 173, 0.10), transparent 60%);
  filter: blur(10px);
}

.wrap {
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(24px, 6vw, 56px) clamp(20px, 5vw, 48px) 40px;
}

.brand {
  display: flex;
  justify-content: center;
  padding: clamp(16px, 5vh, 48px) 0 clamp(16px, 3vh, 28px);
}

.logo {
  max-width: min(82vw, 560px);
  width: 100%;
  height: auto;
  filter: drop-shadow(0 14px 40px rgba(0, 0, 0, 0.55));
}

.hero {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: clamp(28px, 4.6vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  background: linear-gradient(90deg, #ffffff 0%, #cfe7f7 50%, #b8f1db 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero .lede {
  color: var(--muted);
  font-size: clamp(16px, 2.1vw, 19px);
  margin: 0 auto 28px;
  max-width: 60ch;
}

.hero .lede strong { color: var(--text); font-weight: 600; }

.services {
  list-style: none;
  padding: 0;
  margin: 8px 0 28px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  text-align: left;
}

.services li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--card-b);
  border-radius: 14px;
  padding: 14px 16px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.services li:hover {
  transform: translateY(-2px);
  border-color: rgba(53, 232, 173, 0.35);
  background: rgba(255, 255, 255, 0.045);
}

.ico {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #0b1014;
  background: linear-gradient(135deg, var(--teal), var(--blue));
}

.ico svg { width: 22px; height: 22px; }

.services h3 { margin: 2px 0 2px; font-size: 15px; font-weight: 700; }
.services p { margin: 0; color: var(--muted); font-size: 14px; }

.status {
  color: var(--muted);
  font-size: 14px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid var(--card-b);
  border-radius: 999px;
  background: var(--card);
  margin: 4px auto 24px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 var(--ring);
  animation: pulse 2.2s ease-out infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 var(--ring); }
  70%  { box-shadow: 0 0 0 12px rgba(53, 232, 173, 0); }
  100% { box-shadow: 0 0 0 0 rgba(53, 232, 173, 0); }
}

.cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: #0b1014;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(53, 232, 173, 0.25);
}

.btn.ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--card-b);
}

.btn.ghost:hover { border-color: rgba(53, 232, 173, 0.45); }

footer {
  text-align: center;
  margin-top: 56px;
  color: var(--muted);
  font-size: 13px;
}

footer a { color: var(--teal); text-decoration: none; }
footer a:hover { text-decoration: underline; }

@media (max-width: 520px) {
  .services { grid-template-columns: 1fr; }
  .hero { text-align: left; }
  .cta { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .dot { animation: none; }
  .services li, .btn { transition: none; }
}
