:root {
  --bg: #040a16;
  --bg-soft: #071226;
  --panel: rgba(6, 20, 45, 0.76);
  --panel-strong: rgba(8, 24, 54, 0.9);
  --line: rgba(67, 122, 255, 0.15);
  --line-strong: rgba(67, 122, 255, 0.28);
  --text: #eef4ff;
  --muted: #9fb2d6;
  --green: #2ef57e;
  --green-2: #17da68;
  --blue: #5fa8ff;
  --blue-2: #1f3f74;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius: 28px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 18% 12%, rgba(32, 195, 96, 0.18), transparent 20%),
    radial-gradient(circle at 82% 10%, rgba(48, 113, 255, 0.18), transparent 18%),
    linear-gradient(180deg, #030814 0%, #061126 44%, #040a16 100%);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

button {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.background-glow {
  position: fixed;
  z-index: -1;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.24;
}

.glow-left {
  background: #19ff72;
  left: -10rem;
  top: 8rem;
}

.glow-right {
  background: #1f73ff;
  right: -14rem;
  top: 2rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(4, 10, 22, 0.6);
  border-bottom: 1px solid rgba(95, 168, 255, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand img,
.footer-brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(46, 245, 126, 0.15);
}

.brand strong,
.footer-brand strong {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.brand span,
.footer-brand span {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav a:not(.btn) {
  color: var(--muted);
  font-weight: 600;
  transition: color 0.2s ease;
}

.site-nav a:not(.btn):hover,
.footer-links a:hover {
  color: var(--text);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(95, 168, 255, 0.18);
  background: rgba(10, 22, 48, 0.85);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

.hero {
  padding: 72px 0 36px;
}

.hero-grid,
.showcase-grid {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 36px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(46, 245, 126, 0.08);
  border: 1px solid rgba(46, 245, 126, 0.18);
  color: #baffd3;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  font-weight: 800;
}

.hero h1 {
  margin: 18px 0 16px;
  font-size: clamp(2.7rem, 7vw, 4.7rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  max-width: 12ch;
}

.hero-text,
.section-head p,
.showcase-copy p,
.pricing-copy p,
.faq-item p,
.stat-card p,
.feature-card p,
.module-card p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 18px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: #04110c;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-2) 100%);
  box-shadow: 0 10px 30px rgba(23, 218, 104, 0.28);
}

.btn-secondary,
.btn-outline {
  background: rgba(13, 28, 58, 0.76);
  border-color: rgba(95, 168, 255, 0.2);
  color: var(--text);
}

.btn-small {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  font-size: 0.95rem;
}

.btn-wide {
  width: 100%;
}

.hero-points,
.pricing-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.point-card,
.pricing-point {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(8, 22, 49, 0.65);
  border: 1px solid rgba(95, 168, 255, 0.12);
  color: #dbe8ff;
  font-weight: 600;
}

.point-dot,
.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px rgba(46, 245, 126, 0.8);
  display: inline-block;
  flex: 0 0 auto;
}

.glass-card {
  position: relative;
  background: linear-gradient(180deg, rgba(7, 20, 46, 0.92) 0%, rgba(4, 12, 28, 0.92) 100%);
  border: 1px solid rgba(44, 100, 230, 0.22);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), transparent 18%);
  pointer-events: none;
}

.hero-frame {
  padding: 18px;
}

.hero-frame img,
.screenshot-card img {
  border-radius: 20px;
  border: 1px solid rgba(95, 168, 255, 0.12);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(46, 245, 126, 0.08);
  border: 1px solid rgba(46, 245, 126, 0.16);
  font-weight: 700;
  color: #d9ffe8;
}

.stats-section,
.features-section,
.showcase-section,
.modules-section,
.pricing-section,
.faq-section {
  padding: 34px 0;
}

.stats-grid,
.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.stat-card,
.feature-card,
.faq-item,
.pricing-card,
.screenshot-card,
.module-card {
  padding: 28px;
}

.stat-label {
  color: #93a7cc;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
}

.stat-value {
  margin-top: 12px;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.section-head {
  max-width: 760px;
  margin-bottom: 26px;
}

.section-head h2,
.showcase-copy h2,
.pricing-copy h2 {
  margin: 16px 0 12px;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.features-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.icon-wrap {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(46, 245, 126, 0.16), rgba(95, 168, 255, 0.12));
  border: 1px solid rgba(95, 168, 255, 0.16);
  font-size: 1.4rem;
}

.feature-card h3,
.module-top strong {
  margin: 0 0 10px;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
}

.feature-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  color: #dbe8ff;
  font-weight: 600;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(46, 245, 126, 0.7);
}

.module-card {
  min-height: 220px;
}

.module-top {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
}

.module-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.module-badge.green {
  background: rgba(46, 245, 126, 0.12);
  color: #baffd3;
  border: 1px solid rgba(46, 245, 126, 0.18);
}

.module-badge.blue {
  background: rgba(95, 168, 255, 0.12);
  color: #cbe0ff;
  border: 1px solid rgba(95, 168, 255, 0.2);
}

.pricing-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: center;
}

.price-panel {
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(8, 24, 54, 0.95) 0%, rgba(6, 17, 36, 0.95) 100%);
  border: 1px solid rgba(95, 168, 255, 0.18);
}

.price-display {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  margin-bottom: 10px;
  line-height: 1;
}

.price-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  color: #f4f8ff;
  font-size: 1.7rem;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.price-big {
  font-size: clamp(5rem, 12vw, 8rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  color: #f5f7fd;
}

.price-note,
.mini-note {
  color: var(--muted);
}

.price-note {
  margin: 8px 0 22px;
}

.mini-note {
  margin-top: 14px;
  font-size: 0.92rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  font-size: 1.1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 14px 0 0;
}

.site-footer {
  padding: 38px 0 50px;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(95, 168, 255, 0.12);
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 600;
}

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

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

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }

@media (max-width: 1050px) {
  .hero-grid,
  .showcase-grid,
  .pricing-card,
  .features-grid,
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid,
  .modules-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    left: 16px;
    display: none;
    padding: 16px;
    border-radius: 24px;
    background: rgba(5, 14, 31, 0.97);
    border: 1px solid rgba(95, 168, 255, 0.14);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.open {
    display: flex;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-grid,
  .showcase-grid,
  .pricing-card,
  .features-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: none;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 20px));
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .btn,
  .btn-small {
    width: 100%;
  }

  .hero-actions,
  .hero-points,
  .pricing-points,
  .price-display {
    flex-direction: column;
    align-items: flex-start;
  }

  .stat-card,
  .feature-card,
  .faq-item,
  .pricing-card,
  .screenshot-card,
  .price-panel,
  .module-card {
    padding: 22px;
  }

  .price-pill {
    min-width: 78px;
    height: 48px;
    font-size: 1.4rem;
  }

  .price-big {
    font-size: 4.8rem;
  }
}
