:root {
  --bg: #0b0b12;
  --card: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.12);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.68);
  --muted2: rgba(255, 255, 255, 0.52);
  --lav: #9b7bff;
  --blue: #5cc8ff;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif;
  background: radial-gradient(1200px 800px at 30% 20%, rgba(155, 123, 255, 0.18), transparent 60%),
              radial-gradient(1200px 800px at 70% 40%, rgba(92, 200, 255, 0.12), transparent 60%),
              var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

a { color: inherit; }
a[href^="mailto:"] { cursor: pointer; }
a[href^="mailto:"]:focus-visible {
  outline: 2px solid rgba(92, 200, 255, 0.55);
  outline-offset: 3px;
  border-radius: 4px;
}

.bg { position: fixed; inset: 0; pointer-events: none; }
.orb {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  filter: blur(48px);
  opacity: 0.55;
  transform: translate3d(0,0,0);
  animation: float 10s ease-in-out infinite;
}
.orb-1 { left: -180px; top: -180px; background: rgba(155, 123, 255, 0.35); }
.orb-2 { right: -220px; top: 120px; background: rgba(92, 200, 255, 0.28); animation-duration: 12s; }
.orb-3 { left: 20%; bottom: -260px; background: rgba(255, 255, 255, 0.10); animation-duration: 14s; }

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-18px) scale(1.03); }
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  backdrop-filter: blur(14px);
  background: rgba(11, 11, 18, 0.6);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.brand { display: flex; align-items: center; gap: 12px; }
.logo {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(155,123,255,0.9), rgba(92,200,255,0.75));
  box-shadow: 0 10px 30px rgba(155,123,255,0.22);
  font-weight: 700;
}
.brand-name { font-weight: 700; letter-spacing: 0.2px; }
.brand-tag { font-size: 12px; color: var(--muted2); margin-top: 2px; }

.pill {
  text-decoration: none;
  font-size: 12px;
  color: var(--muted);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  cursor: pointer;
}
.pill:hover { border-color: rgba(255,255,255,0.18); color: var(--text); }

.main { max-width: 1020px; margin: 0 auto; padding: 40px 20px 26px; }

.hero { padding-top: 24px; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--muted);
}
.kicker::before {
  content: "";
  width: 10px; height: 10px;
  border-radius: 99px;
  background: rgba(155,123,255,0.95);
  box-shadow: 0 0 0 6px rgba(155,123,255,0.14);
}

h1 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.02;
  margin: 18px 0 12px;
  letter-spacing: -0.8px;
}
.gradient {
  background: linear-gradient(90deg, rgba(155,123,255,1), rgba(92,200,255,1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sub {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 720px;
  margin: 0;
}

.cta-row { display: flex; gap: 12px; margin-top: 22px; flex-wrap: wrap; }
.btn {
  text-decoration: none;
  font-weight: 600;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  cursor: pointer;
  transition: transform 120ms ease, border-color 120ms ease, background 120ms ease;
}
.btn:hover { transform: translateY(-1px); border-color: rgba(255,255,255,0.22); }
.btn.primary {
  background: linear-gradient(135deg, rgba(155,123,255,0.9), rgba(92,200,255,0.75));
  border-color: rgba(255,255,255,0.0);
}
.btn.primary:hover { filter: brightness(1.05); }
.btn.secondary { color: var(--muted); }

.cards {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.card {
  border-radius: 18px;
  padding: 16px 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
}
.card-title { font-weight: 700; font-size: 13px; }
.card-body { margin-top: 8px; color: var(--muted); font-size: 13px; line-height: 1.55; }

.footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.fine { font-size: 12px; color: var(--muted2); }
.fine a {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-color: rgba(92, 200, 255, 0.45);
  text-underline-offset: 3px;
}
.fine a:hover { color: #7ad4ff; text-decoration-color: rgba(122, 212, 255, 0.75); }

@media (max-width: 900px) {
  .cards { grid-template-columns: 1fr; }
  .pill { display: none; }
  .main { padding-top: 20px; }
}

