:root {
  --bg: #060b14;
  --surface: rgba(255, 255, 255, 0.1);
  --surface-strong: rgba(255, 255, 255, 0.16);
  --text: #f5f8ff;
  --muted: rgba(245, 248, 255, 0.74);
  --line: rgba(255, 255, 255, 0.18);
  --accent-a: #ff7f45;
  --accent-b: #28a4ff;
  --accent-c: #27d68b;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: #8ed5ff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(48px);
  pointer-events: none;
  z-index: -1;
}

.orb-a {
  width: 320px;
  height: 320px;
  left: -80px;
  top: 60px;
  background: rgba(40, 164, 255, 0.35);
  animation: driftA 12s ease-in-out infinite;
}

.orb-b {
  width: 380px;
  height: 380px;
  right: -120px;
  top: 180px;
  background: rgba(255, 127, 69, 0.30);
  animation: driftB 14s ease-in-out infinite;
}

.orb-c {
  width: 300px;
  height: 300px;
  left: 34%;
  bottom: -100px;
  background: rgba(39, 214, 139, 0.22);
  animation: driftC 16s ease-in-out infinite;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(6, 11, 20, 0.52);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
  min-height: 66px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.brand {
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.2px;
}

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

.nav-links a {
  color: var(--muted);
  font-weight: 600;
}

.hero {
  padding: 76px 0 28px;
}

.eyebrow {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  letter-spacing: 1.9px;
  font-weight: 700;
  text-transform: uppercase;
}

h1 {
  margin: 8px 0 12px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
}

h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin: 0 0 14px;
}

h3 {
  margin: 0 0 8px;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(16px, 2.2vw, 20px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 700;
  border: 1px solid transparent;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(130deg, var(--accent-a), #ea4f9b);
}

.btn-ghost {
  color: #fff;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.small-note {
  margin-top: 12px;
  color: rgba(245, 248, 255, 0.6);
  font-size: 14px;
}

.section {
  padding: 36px 0;
}

.grid {
  display: grid;
  gap: 14px;
}

.grid.one {
  grid-template-columns: 1fr;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  background: linear-gradient(155deg, var(--surface-strong), var(--surface));
  border-radius: 18px;
  padding: 18px;
}

.card p,
.card li {
  color: var(--muted);
}

ol,
ul {
  margin: 0;
  padding-left: 20px;
}

.site-footer {
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 11, 20, 0.5);
}

.footer-wrap {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-wrap p {
  margin: 0;
  color: rgba(245, 248, 255, 0.74);
}

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

.legal-page {
  max-width: 900px;
  padding-top: 56px;
}

.legal-page h2 {
  margin-top: 24px;
  margin-bottom: 8px;
  font-size: 24px;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
}

.muted {
  color: rgba(245, 248, 255, 0.66);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .grid.three,
  .grid.two {
    grid-template-columns: 1fr;
  }

  .nav-wrap {
    min-height: 60px;
  }
}

@keyframes driftA {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(28px, -20px, 0); }
}

@keyframes driftB {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-24px, 18px, 0); }
}

@keyframes driftC {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -18px, 0); }
}
