:root {
  --bg: #06090f;
  --bg-soft: #0d121b;
  --panel: #121a26;
  --panel-2: #161f2d;
  --text: #e9efff;
  --muted: #aab4ca;
  --line: #273248;
  --teal: #00d4b3;
  --teal-2: #33f0cf;
  --orange: #ff8a3d;
  --radius: 16px;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

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

body {
  background:
    radial-gradient(circle at 15% -10%, rgba(0, 212, 179, 0.12), transparent 35%),
    radial-gradient(circle at 90% 5%, rgba(255, 138, 61, 0.1), transparent 32%),
    var(--bg);
  color: var(--text);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", "Space Grotesk", sans-serif;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
  color: var(--muted);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(6, 9, 15, 0.7);
  border-bottom: 1px solid rgba(39, 50, 72, 0.65);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #021514;
  background: linear-gradient(145deg, var(--teal), var(--teal-2));
  box-shadow: 0 0 20px rgba(0, 212, 179, 0.45);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links a {
  color: #c8d2e9;
  font-weight: 500;
}

.hero {
  padding: 88px 0 38px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 14px;
}

h1 {
  font-size: clamp(2rem, 5vw, 4.25rem);
  max-width: 12ch;
}

.lead {
  margin-top: 16px;
  max-width: 62ch;
  font-size: 1.05rem;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-panel {
  margin-top: 34px;
  background: linear-gradient(145deg, rgba(18, 26, 38, 0.95), rgba(12, 18, 28, 0.94));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  box-shadow: var(--shadow);
}

.stat {
  background: rgba(22, 31, 45, 0.8);
  border: 1px solid rgba(56, 68, 92, 0.65);
  border-radius: 12px;
  padding: 14px;
}

.stat-label {
  display: block;
  font-size: 12px;
  color: #8b98b6;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section {
  padding: 70px 0 20px;
}

.section-heading {
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  margin-bottom: 8px;
}

.small-lead {
  font-size: 0.95rem;
}

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

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

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

.card {
  position: relative;
  padding: 18px;
  border-radius: var(--radius);
  background: linear-gradient(170deg, rgba(19, 28, 42, 0.95), rgba(16, 22, 34, 0.95));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 179, 0.55);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(0, 212, 179, 0.22) inset;
}

.card h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-card {
  background: linear-gradient(145deg, rgba(19, 26, 38, 0.96), rgba(14, 20, 30, 0.96));
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  color: #d4ddf2;
  display: grid;
  gap: 10px;
}

.step-card span {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #022019;
  background: linear-gradient(135deg, var(--teal), var(--teal-2));
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-card ul {
  margin: 0;
  padding-left: 18px;
  color: #d3dcf2;
  display: grid;
  gap: 6px;
}

.plan-line {
  color: #eef5ff;
  font-weight: 600;
}

.featured {
  border-color: rgba(0, 212, 179, 0.7);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 212, 179, 0.3) inset;
}

.chip {
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #03120f;
  background: linear-gradient(120deg, var(--teal), var(--teal-2));
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: auto;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--teal), var(--teal-2));
  color: #031312;
  font-weight: 700;
  padding: 11px 16px;
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 212, 179, 0.35);
}

.btn.ghost {
  background: rgba(18, 27, 40, 0.8);
  color: #dbe5ff;
  border-color: #33415e;
}

.btn.small {
  padding: 9px 14px;
  border-radius: 10px;
}

.site-footer {
  margin-top: 50px;
  border-top: 1px solid var(--line);
  background: rgba(8, 12, 19, 0.95);
}

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

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  pointer-events: none;
  z-index: -1;
  animation: float 9s ease-in-out infinite;
}

.orb-one {
  width: 240px;
  height: 240px;
  background: rgba(0, 212, 179, 0.5);
  top: 8%;
  left: -60px;
}

.orb-two {
  width: 300px;
  height: 300px;
  background: rgba(255, 138, 61, 0.35);
  right: -90px;
  top: 28%;
  animation-delay: 1.3s;
}

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

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

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}

@media (max-width: 1000px) {
  .cards-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

@media (max-width: 680px) {
  .nav-links {
    gap: 12px;
    font-size: 0.92rem;
  }

  .cards-3,
  .cards-4,
  .steps {
    grid-template-columns: 1fr;
  }

  .footer-wrap {
    min-height: auto;
    padding: 16px 0;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bg-orb,
  .reveal,
  .card,
  .btn {
    animation: none !important;
    transition: none !important;
  }
}
