:root {
  --bg: #050914;
  --surface: #0d1424;
  --surface-2: #121c33;
  --line: #23365f;
  --text: #e7efff;
  --muted: #9db3de;
  --primary: #2d6bff;
  --accent: #61d3ff;
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgba(45, 107, 255, 0.25), transparent 35%),
    radial-gradient(circle at 88% 14%, rgba(97, 211, 255, 0.2), transparent 38%),
    linear-gradient(180deg, #050914 0%, #060b18 100%);
  min-height: 100vh;
}

.grid-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
}

.container {
  width: min(1120px, calc(100% - 2.2rem));
  margin-inline: auto;
}

.topbar {
  position: sticky;
  top: 0.8rem;
  z-index: 20;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1rem;
  margin-top: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(35, 72, 190, 0.88), rgba(20, 45, 128, 0.9));
  backdrop-filter: blur(10px);
}

.brand {
  color: #fff;
  text-decoration: none;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
}

.topbar nav {
  display: flex;
  gap: 1.4rem;
}

.topbar nav a,
.nav-cta {
  color: #e6eeff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
}

.nav-cta {
  background: #fff;
  color: #163381;
  padding: 0.58rem 0.95rem;
  border-radius: 999px;
  font-weight: 700;
}

.hero {
  min-height: 82vh;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.2rem;
  align-items: center;
  padding-top: 2.4rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(97, 211, 255, 0.45);
  color: #d9f3ff;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(20, 56, 128, 0.45);
  font-size: 0.82rem;
  font-weight: 600;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  font-family: 'Sora', sans-serif;
}

h1 {
  margin-top: 1rem;
  font-size: clamp(2rem, 7vw, 4.9rem);
  line-height: 1.02;
}

h1 span,
h2 span {
  color: var(--accent);
}

.hero-copy > p {
  color: var(--muted);
  max-width: 58ch;
  font-size: 1.06rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1rem 0;
}

.btn {
  display: inline-flex;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
  padding: 0.82rem 1.22rem;
  border: 1px solid transparent;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #2d6bff, #2557cc);
  box-shadow: 0 0 36px rgba(45, 107, 255, 0.35);
}

.btn-ghost {
  color: #eaf1ff;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.btn-light {
  color: #0f2e7f;
  background: #fff;
}

.hero-points {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 0.9rem;
  color: #b8c9ea;
  font-size: 0.92rem;
}

.hero-panel {
  position: relative;
  min-height: 400px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: linear-gradient(160deg, rgba(15, 22, 42, 0.82), rgba(12, 22, 40, 0.56));
  overflow: hidden;
}

.ring {
  position: absolute;
  inset: 16% 18%;
  border-radius: 999px;
  border: 1px dashed rgba(97, 211, 255, 0.38);
  box-shadow: 0 0 64px rgba(45, 107, 255, 0.22);
}

.orb-card {
  position: absolute;
  right: 1rem;
  top: 1rem;
  border-radius: 16px;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.orb-card.alt {
  left: 1rem;
  right: auto;
  bottom: 1rem;
  top: auto;
}

.orb-card p {
  margin: 0;
  color: #aabde5;
  font-size: 0.8rem;
}

.orb-card strong {
  font-size: 1.05rem;
}

.section {
  margin-top: 4.6rem;
}

.section h2 {
  font-size: clamp(1.65rem, 4vw, 3.2rem);
}

.section-sub {
  color: var(--muted);
  max-width: 70ch;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.cards article,
.metrics article,
.cta,
.footer {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(18, 28, 51, 0.72), rgba(12, 20, 37, 0.8));
}

.cards article {
  padding: 1.15rem;
}

.cards p,
.checks {
  color: var(--muted);
}

.checks {
  padding-left: 1rem;
  display: grid;
  gap: 0.55rem;
}

.metrics {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.metrics article {
  padding: 1rem;
}

.metrics strong {
  font-size: 1.7rem;
  color: var(--accent);
}

.metrics span {
  display: block;
  color: #b4c5ea;
  font-size: 0.9rem;
}

.cta {
  padding: 1.5rem;
  text-align: center;
}

.cta p {
  max-width: 60ch;
  margin-inline: auto;
  color: #bfd0f3;
}

.footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1rem;
  padding: 1rem;
  margin-block: 3rem;
}

.footer p,
.footer li {
  color: #aebede;
}

.footer ul {
  margin: 0;
  padding-left: 1rem;
}

.wa-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  text-decoration: none;
  background: #25d366;
  color: #02270f;
  font-weight: 800;
  border-radius: 999px;
  padding: 0.7rem 1rem;
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.48);
}

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

.reveal.show {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .topbar nav {
    display: none;
  }

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

  .cards,
  .metrics,
  .footer {
    grid-template-columns: 1fr;
  }
}
