:root {
  --bg: #070a13;
  --bg-soft: #101629;
  --surface: rgba(255, 255, 255, 0.06);
  --text: #f4f7ff;
  --muted: #c3cce2;
  --accent-a: #75f2d1;
  --accent-b: #7f9bff;
  --accent-c: #c778ff;
  --ring: rgba(133, 199, 255, 0.45);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100%;
}

body {
  font-family: "Inter", sans-serif;
  background: radial-gradient(circle at 15% 15%, #1a2e5f 0%, transparent 45%),
    radial-gradient(circle at 85% 12%, #4d1d62 0%, transparent 38%),
    linear-gradient(180deg, #04060f 0%, var(--bg) 60%, #05070d 100%);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.5;
}

.background-noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.2;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 0);
  background-size: 3px 3px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 50;
  background: rgba(255, 255, 255, 0.08);
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-a), var(--accent-b), var(--accent-c));
}

.glass {
  backdrop-filter: blur(14px);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.topbar {
  position: fixed;
  top: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(1100px, 92vw);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  z-index: 40;
}

.logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  color: var(--text);
}

.logo-icon {
  width: 1.85rem;
  aspect-ratio: 1;
  border-radius: 0.5rem;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #06141b;
  background: linear-gradient(140deg, var(--accent-a), var(--accent-b));
}

.desktop-nav {
  display: flex;
  gap: 1.1rem;
}

.desktop-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 220ms ease;
}

.desktop-nav a:hover {
  color: #fff;
}

.desktop-nav a.is-active {
  color: #fff;
}

.section {
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding: 7.5rem 0;
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  gap: 2rem;
  grid-template-columns: 1.2fr 0.9fr;
  padding-top: 10.5rem;
}

.eyebrow {
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 600;
  color: #9ad9ff;
  margin-bottom: 0.9rem;
}

h1,
h2,
h3 {
  font-family: "Syne", sans-serif;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  margin-bottom: 1rem;
}

.subheadline {
  color: var(--muted);
  max-width: 62ch;
}

.gradient-text {
  background: linear-gradient(125deg, #9effdf 0%, #9ab2ff 50%, #e5b3ff 100%);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-cta {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  color: #061116;
  background: linear-gradient(130deg, var(--accent-a), var(--accent-b));
  font-weight: 700;
  padding: 0.8rem 1.25rem;
  transition: transform 220ms ease, box-shadow 220ms ease;
  box-shadow: 0 10px 35px rgba(117, 242, 209, 0.22);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: none;
}

.btn-sm {
  padding: 0.55rem 0.9rem;
  font-size: 0.85rem;
}

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

.metrics article {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.8rem;
  padding: 0.9rem;
}

.metrics h3 {
  font-size: 1.35rem;
}

.metrics p {
  font-size: 0.82rem;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(50px);
  opacity: 0.45;
}

.orb-1 {
  width: 220px;
  height: 220px;
  background: #54c7ff;
  top: 20px;
  left: -20px;
}

.orb-2 {
  width: 240px;
  height: 240px;
  background: #a056ff;
  right: -20px;
  bottom: 10px;
}

.showcase-card {
  position: absolute;
  border-radius: 1rem;
  width: min(330px, 80vw);
  padding: 1rem;
}

.showcase-card h4 {
  font-size: 1.05rem;
  margin-top: 0.3rem;
}

.showcase-card p {
  color: #c3dbf8;
  font-size: 0.85rem;
}

.showcase-card .badge {
  display: inline-flex;
  margin-top: 0.7rem;
  font-size: 0.76rem;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  background: rgba(117, 242, 209, 0.16);
}

.chart {
  display: block;
  margin-top: 0.8rem;
  width: 100%;
  height: 72px;
  border-radius: 0.7rem;
  background: linear-gradient(
      180deg,
      rgba(118, 196, 255, 0.28),
      rgba(118, 196, 255, 0)
    ),
    linear-gradient(
      110deg,
      transparent 12%,
      rgba(130, 219, 255, 0.5) 40%,
      rgba(195, 123, 255, 0.75) 78%
    );
}

.showcase-card:nth-of-type(3) {
  top: 35px;
  right: 30px;
}

.showcase-card.alt {
  top: 220px;
  left: 10px;
}

.showcase-card.mini {
  bottom: 20px;
  right: 8%;
  width: 250px;
}

.section-intro {
  max-width: 64ch;
  margin-bottom: 2.2rem;
}

h2 {
  font-size: clamp(1.8rem, 3.6vw, 3.2rem);
}

.section-intro p + h2 {
  margin-top: 0.45rem;
}

.products {
  padding-top: 4rem;
}

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

.product-card {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  padding: 1.2rem;
  transition: transform 220ms ease, border-color 220ms ease;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: var(--ring);
}

.product-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

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

.product-card ul {
  margin-top: 0.8rem;
  list-style: none;
  display: grid;
  gap: 0.4rem;
}

.product-card li {
  color: #d9e6ff;
  font-size: 0.91rem;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.2rem;
}

.split-left > p {
  margin-top: 1rem;
  color: var(--muted);
}

.timeline {
  margin-top: 1.6rem;
  display: grid;
  gap: 0.8rem;
}

.timeline-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.8rem;
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-item span {
  width: 2rem;
  aspect-ratio: 1;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(117, 242, 209, 0.2);
  font-weight: 700;
}

.review-card {
  border-radius: 1rem;
  padding: 1.2rem;
  margin-bottom: 0.9rem;
}

.review-card p {
  margin-bottom: 0.8rem;
}

.review-card small {
  display: block;
  color: var(--muted);
}

.sticky-story .story-track {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.story-step {
  border-radius: 0.9rem;
  padding: 1.2rem;
}

.story-step h3 {
  font-size: 1.15rem;
}

.story-step p {
  margin-top: 0.55rem;
  color: var(--muted);
}

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

.price-card {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
  padding: 1.3rem;
}

.price-card .price {
  margin: 0.65rem 0;
  font-family: "Syne", sans-serif;
  font-size: 2rem;
}

.price span {
  font-size: 0.94rem;
  color: var(--muted);
}

.featured {
  background: linear-gradient(
    145deg,
    rgba(117, 242, 209, 0.19) 0%,
    rgba(127, 155, 255, 0.21) 50%,
    rgba(199, 120, 255, 0.16) 100%
  );
  border-color: rgba(255, 255, 255, 0.36);
}

.tag {
  display: inline-flex;
  font-size: 0.73rem;
  letter-spacing: 0.04em;
  border-radius: 999px;
  padding: 0.3rem 0.6rem;
  background: rgba(4, 16, 31, 0.45);
  margin-bottom: 0.6rem;
}

.cta {
  text-align: center;
  padding-top: 5.6rem;
  padding-bottom: 8rem;
}

.cta p {
  margin-top: 0.8rem;
  color: var(--muted);
  margin-bottom: 1.4rem;
}

.footer {
  width: min(1120px, 92vw);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.3rem 0 2.1rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.reveal,
.reveal-delay {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-delay {
  transition-delay: 170ms;
}

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

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

  .hero {
    grid-template-columns: 1fr;
    padding-top: 9rem;
  }

  .hero-visual {
    min-height: 420px;
  }

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

  .product-grid,
  .split,
  .sticky-story .story-track,
  .pricing .price-grid {
    grid-template-columns: 1fr;
  }

  .showcase-card {
    position: relative;
    inset: auto;
    margin-bottom: 0.8rem;
    width: 100%;
  }

  .orb {
    display: none;
  }
}
