/* Layout, spacing, and structural styles */
.container {
  width: min(90vw, 100%);
  margin: 0 auto;
  padding-inline: clamp(16px, 2vw, 32px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(11, 17, 32, 0.92), rgba(11, 17, 32, 0.6));
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
}

.header-bar {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-sm) 0;
}

.logo {
  font-family: "Outfit", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.logo span {
  color: var(--color-accent);
}

.nav-list {
  display: flex;
  gap: var(--spacing-sm);
}

.nav-list a {
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
}

.nav-list a:focus-visible,
.nav-list a:hover {
  background: rgba(124, 92, 255, 0.15);
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #0b1224 0%, #101c38 45%, #1b2a55 100%);
  padding: clamp(6rem, 8vw, 8.5rem) 0 clamp(5rem, 6vw, 6.5rem);
}

.hero-background {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 25%, rgba(56, 189, 248, 0.18), transparent 55%),
    radial-gradient(circle at 82% 8%, rgba(124, 92, 255, 0.16), transparent 62%);
  opacity: 0.9;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(0px);
  mix-blend-mode: screen;
}

.hero-orb--primary {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.55) 0%, rgba(56, 189, 248, 0) 70%);
  top: 12%;
  left: -12%;
  animation: orbFloat 14s ease-in-out infinite;
}

.hero-orb--secondary {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(251, 113, 133, 0.6) 0%, rgba(251, 113, 133, 0) 72%);
  bottom: -14%;
  right: 10%;
  animation: orbFloat 18s ease-in-out infinite reverse;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.4;
  pointer-events: none;
}

.hero-glow--left {
  width: 320px;
  height: 320px;
  top: 20%;
  left: -6%;
  background: rgba(56, 189, 248, 0.55);
}

.hero-glow--right {
  width: 280px;
  height: 280px;
  bottom: -12%;
  right: -6%;
  background: rgba(124, 92, 255, 0.45);
}



.hero-slider {
  position: relative;
}

.hero-slider__slides {
  position: relative;
  display: grid;
  min-height: clamp(520px, 58vw, 640px);
}

.hero-slide {
  position: relative;
  grid-area: 1 / 1 / 2 / 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
  column-gap: clamp(1.25rem, 3vw, 2rem);
  row-gap: clamp(1.5rem, 4.5vw, 2.5rem);
  padding: clamp(2.25rem, 4.5vw, 3.25rem);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide__copy {
  display: grid;
  gap: clamp(0.85rem, 1.4vw, 1.5rem);
  max-width: 520px;
}

.hero-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.65);
}

.hero-title {
  font-size: clamp(2.3rem, 1.35vw + 2.1rem, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.06;
  max-width: 44ch;
  text-wrap: balance;
}

.hero-subtext {
  font-size: clamp(1rem, 0.35vw + 1rem, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  margin-top: clamp(1.25rem, 2.4vw, var(--spacing-md));
}

.hero-slide__visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-self: stretch;
}

.hero-slide__visual img {
  width: min(520px, 100%);
  border-radius: calc(var(--radius-lg) - 0.25rem);
  box-shadow: 0 40px 80px rgba(8, 12, 32, 0.55);
  object-fit: cover;
}

.hero-slider__dots {
  display: flex;
  gap: 0.75rem;
  margin-top: clamp(2rem, 4vw, 2.75rem);
  padding-left: clamp(2.5rem, 5vw, 3rem);
}

.hero-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 1px solid rgba(248, 250, 252, 0.45);
  background: transparent;
  transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.hero-dot.is-active,
.hero-dot:hover,
.hero-dot:focus-visible {
  background: rgba(56, 189, 248, 0.85);
  border-color: rgba(56, 189, 248, 0.85);
  transform: scale(1.2);
}

.hero-dot:focus-visible {
  outline: 2px solid rgba(56, 189, 248, 0.7);
  outline-offset: 3px;
}

.hero-slider.is-static .hero-slide {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transition: none;
}

.hero-slider.is-static .hero-slider__slides {
  min-height: auto;
}

.section-head {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.features {
  padding: var(--spacing-xl) 0;
}

.features-grid {
  display: grid;
  gap: var(--spacing-md);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.pricing {
  padding: var(--spacing-xl) 0;
  background: var(--color-surface);
}

.pricing-table {
  display: grid;
  gap: var(--spacing-md);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.pricing-card {
  height: 100%;
}

.pricing-card ul {
  display: grid;
  gap: 0.75rem;
  margin: var(--spacing-md) 0 var(--spacing-lg);
}

.pricing-card.is-featured {
  background: var(--color-accent-soft);
  border: 1px solid rgba(124, 92, 255, 0.35);
  box-shadow: var(--shadow-glow);
}

.cta {
  padding: var(--spacing-xl) 0 calc(var(--spacing-xl) + 2rem);
  background: radial-gradient(circle at 20% 20%, rgba(124, 92, 255, 0.24), transparent 55%),
    radial-gradient(circle at 80% 0%, rgba(45, 212, 191, 0.2), transparent 60%),
    var(--color-surface-alt);
}

.cta-inner {
  text-align: center;
  display: grid;
  gap: var(--spacing-md);
  justify-items: center;
}

.site-footer {
  padding: var(--spacing-lg) 0;
  border-top: 1px solid var(--color-border);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--spacing-sm);
  align-items: center;
}

.nav-list--footer {
  gap: 0.75rem;
}

@media (max-width: 960px) {
  .hero-slide {
    grid-template-columns: 1fr;
    text-align: center;
    padding: clamp(2rem, 6vw, 2.5rem);
    column-gap: 0;
    row-gap: clamp(1.25rem, 5vw, 1.75rem);
  }

  .hero-slide__copy {
    justify-items: center;
    margin: 0 auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-slide__visual {
    justify-content: center;
    margin-top: clamp(1.5rem, 4vw, 2.5rem);
  }

  .hero-slider__dots {
    justify-content: center;
    padding-left: 0;
  }
}

@media (max-width: 720px) {
  .header-bar {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .nav-list {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    padding-top: calc(var(--spacing-xl) + 3rem);
    padding-bottom: var(--spacing-xl);
    padding-inline: 7vw;
  }

  .hero-title {
    font-size: clamp(1.75rem, 6.5vw, 2.2rem);
    line-height: 1.08;
  }

  .hero-slider__slides {
    min-height: auto;
  }

  .hero-slide {
    row-gap: 0;
  }

  .hero-slide__visual img {
    width: 100%;
    border-radius: var(--radius-md);
  }
}






