:root {
  --bg: #07070d;
  --text: #f4f5f7;
  --muted: #b8bcc8;
  --card: rgba(16, 18, 28, 0.72);
  --card-border: rgba(90, 220, 214, 0.28);
  --cyan: #3ee6df;
  --cyan-bright: #2ee8e0;
  --green: #3ddc84;
  --radius: 14px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100%;
}

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: #07070d;
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.055) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 35%, transparent 85%);
}

.bg-glow {
  position: absolute;
  width: 52vw;
  height: 52vw;
  max-width: 720px;
  max-height: 720px;
  border-radius: 50%;
  filter: blur(8px);
}

.bg-glow-tl {
  top: -18%;
  left: -14%;
  background: radial-gradient(circle, rgba(92, 58, 168, 0.42) 0%, rgba(92, 58, 168, 0) 68%);
}

.bg-glow-br {
  right: -16%;
  bottom: -22%;
  background: radial-gradient(circle, rgba(20, 140, 148, 0.38) 0%, rgba(20, 140, 148, 0) 68%);
}

.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  max-width: 980px;
  margin: 0 auto;
  padding: 72px 24px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(10, 12, 20, 0.7);
  color: #eceff4;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(61, 220, 132, 0.8);
}

h1 {
  margin-top: 36px;
  max-width: 820px;
  font-size: clamp(2.15rem, 5.4vw, 3.85rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.grad-cyan {
  background: linear-gradient(90deg, #4de8e4 0%, #8ec5ff 52%, #c4b5fd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.grad-purple {
  display: inline-block;
  background: linear-gradient(90deg, #c4b5fd 0%, #e9a8f5 55%, #f2a0d0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  margin-top: 22px;
  max-width: 640px;
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.7;
}

.cards {
  width: 100%;
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card {
  text-align: left;
  padding: 22px 20px 20px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background: var(--card);
  backdrop-filter: blur(14px);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.02) inset;
}

.card-icon {
  width: 22px;
  height: 22px;
  color: var(--cyan);
  margin-bottom: 14px;
}

.card-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.card h2 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.card p {
  margin-top: 6px;
  color: #9aa0ae;
  font-size: 0.9rem;
  line-height: 1.45;
}

.cta {
  margin-top: 36px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 999px;
  background: var(--cyan-bright);
  color: #062426;
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(46, 232, 224, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.cta svg {
  width: 18px;
  height: 18px;
}

.cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 10px 32px rgba(46, 232, 224, 0.32);
}

.cta:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.contact {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px 40px;
}

.contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f3f4f6;
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  opacity: 0.92;
}

.contact svg {
  width: 16px;
  height: 16px;
  color: #d1d5db;
}

.contact a:hover {
  color: var(--cyan);
}

.contact a:hover svg {
  color: var(--cyan);
}

.contact a:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
  border-radius: 4px;
}

@media (max-width: 780px) {
  .page {
    padding: 56px 20px 40px;
  }

  .cards {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .contact {
    flex-direction: column;
    gap: 14px;
  }
}
