:root {
  --bg: #05070c;
  --blue: #4cc9ff;
  --muted: rgba(255,255,255,.6);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg);
  color: white;
  font-family: Inter, sans-serif;
  overflow-x: hidden;
}

/* BACKGROUND */

.background {
  position: fixed;
  inset: 0;
  z-index: -1;
}

.bg-layer {
  position: absolute;
  inset: 0;
}

.bg-glow {
  background:
    radial-gradient(circle at 30% 20%, rgba(76,201,255,.25), transparent 45%),
    radial-gradient(circle at 70% 80%, rgba(0,120,255,.25), transparent 45%);
  filter: blur(90px);
}

.bg-grid {
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: .4;
}

/* LAYOUT */

.page {
  max-width: 960px;
  margin: 0 auto;
  padding: 120px 20px 200px;
}

.section {
  text-align: center;
  margin-bottom: 200px;
}

.hero h1 {
  font-size: clamp(48px, 7vw, 86px);
  margin: 24px 0;
}

.hero p {
  color: var(--muted);
}

.eyebrow {
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* BUTTONS */

.btn {
  display: inline-block;
  margin-top: 32px;
  padding: 14px 34px;
  border-radius: 16px;
  font-weight: 600;
  text-decoration: none;
}

.btn.primary {
  background: linear-gradient(90deg, var(--blue), #5a8cff);
  color: black;
}

.btn.ghost {
  border: 1px solid rgba(255,255,255,.25);
  color: white;
}

/* PRICING */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 32px;
  margin-top: 60px;
}

.card {
  padding: 36px;
  border-radius: 26px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}

.card.highlight {
  border-color: var(--blue);
}

.price {
  font-size: 36px;
  font-weight: 700;
}

.card ul {
  list-style: none;
  margin: 24px 0;
}

.card li {
  margin-bottom: 10px;
  color: var(--muted);
}

.bg-vignette {
  background: radial-gradient(
    ellipse at center,
    transparent 40%,
    rgba(0,0,0,0.6) 100%
  );
  opacity: 0.8;
}
/* SVG ICONS */

.feature svg,
.step svg {
  width: 28px;
  height: 28px;
  stroke: none;
  fill: var(--blue);
  margin-bottom: 16px;
}

.steps {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.step {
  max-width: 200px;
}

/* FEATURES */

.features {
  margin-bottom: 200px;
}

.features h2 {
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.feature-card {
  padding: 36px;
  border-radius: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  text-align: left;
  transition: transform .3s ease, border-color .3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--blue);
}

.feature-card h3 {
  margin: 16px 0 10px;
  font-size: 18px;
}

.feature-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

/* ICON */

.feature-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(76,201,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
/* Centered feature card */

.feature-card.centered {
  grid-column: 1 / -1;
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
}

.feature-card.centered .icon {
  margin: 0 auto;
}
/* HOW IT WORKS */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.step-card {
  padding: 28px;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.step-card .icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(76,201,255,0.12);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-card svg {
  width: 20px;
  height: 20px;
  stroke: var(--blue);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-card p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

.how-note {
  margin-top: 48px;
  font-size: 15px;
  color: var(--muted);
  text-align: center;
}
/* PRICING ICONS */

.pricing-card {
  position: relative;
}

.pricing-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(76,201,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.pricing-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pricing-card.highlight .pricing-icon {
  background: rgba(76,201,255,0.18);
}

/* LIST WITH CHECK ICONS */

.pricing-list {
  list-style: none;
  margin: 28px 0;
  padding: 0;
}

.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--muted);
}

.pricing-list svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--blue);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
/* =====================
   FOOTER
===================== */

.footer {
  margin-top: 200px;
  padding: 80px 20px 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.02),
    rgba(255,255,255,0.01)
  );
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto 40px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* BRAND */

.footer-brand {
  display: flex;
  gap: 16px;
  max-width: 360px;
}

.footer-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(76,201,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-logo svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-brand strong {
  font-size: 16px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
  margin-top: 6px;
}

/* LINKS */

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s ease;
}

.footer-links a:hover {
  color: white;
}

/* BOTTOM */

.footer-bottom {
  max-width: 960px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

/* MOBILE */

@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    margin-top: 24px;
  }

  .footer-bottom {
    text-align: left;
  }
}

/* =====================
   LEGAL PAGES
===================== */

.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: 120px 20px 160px;
}

.legal h1 {
  font-size: 36px;
  margin-bottom: 24px;
}

.legal h2 {
  font-size: 18px;
  margin: 32px 0 12px;
}

.legal p,
.legal li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

.legal ul {
  padding-left: 20px;
  margin-top: 12px;
}

.legal-footer {
  margin-top: 48px;
  font-size: 13px;
  color: var(--muted);
}
