:root {
  --bg-0: #060817;
  --bg-1: #0e2e5c;
  --ink: #eaf2ff;
  --muted: #a7b3c7;
  --brand: #1e76bd;
  --brand-2: #0d5aa1;
  --accent: #42dca3;
  --danger-soft: #ff6d6d;
  --card: rgba(255, 255, 255, 0.06);
  --stroke: rgba(255, 255, 255, 0.14);
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.26);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(900px 420px at 10% -10%, #1439723a, transparent),
    linear-gradient(180deg, var(--bg-0), var(--bg-1) 86%);
  overflow-x: hidden;
}

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

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

.section {
  padding: 78px 0;
}

.section--contrast {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
}

.section__title {
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.15;
}

.section__lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 64ch;
}

.center {
  text-align: center;
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.82rem 1.1rem;
  border-radius: 12px;
  border: 1px solid #1b4e86;
  background: linear-gradient(180deg, var(--brand), var(--brand-2));
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  line-height: 1;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, filter 0.2s ease;
}

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

.btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--stroke);
  box-shadow: none;
}

.btn--dark {
  background: #0c1224;
  border-color: #0c1224;
}

.btn--sm {
  padding: 0.62rem 0.9rem;
  font-size: 0.92rem;
}

.btn--xl {
  padding: 1rem 1.3rem;
  border-radius: 14px;
  font-size: 1.02rem;
}

.btn--full {
  width: 100%;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(8px) saturate(130%);
  background: linear-gradient(180deg, rgba(6, 8, 23, 0.8), rgba(6, 8, 23, 0.34), transparent);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav__links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
}

.nav__links a:hover,
.nav__links a:focus-visible {
  color: var(--ink);
}

.nav__toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 40px;
  height: 28px;
}

.nav__toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: #eaf2ff;
  transition: 0.3s;
}

.nav__toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav__toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 84vh;
  display: grid;
  align-items: center;
  padding: 54px 0 48px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(24px);
  will-change: transform, opacity;
}

.hero-glow--one {
  width: 420px;
  height: 420px;
  left: -70px;
  top: -90px;
  background: rgba(30, 118, 189, 0.34);
  animation: heroBlobFloatOne 14s ease-in-out infinite;
}

.hero-glow--two {
  width: 320px;
  height: 320px;
  right: 6%;
  top: 26%;
  background: rgba(66, 220, 163, 0.22);
  animation: heroBlobFloatTwo 17s ease-in-out infinite;
}

@keyframes heroBlobFloatOne {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.9;
  }
  50% {
    transform: translate3d(34px, 22px, 0) scale(1.08);
    opacity: 0.72;
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.9;
  }
}

@keyframes heroBlobFloatTwo {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.85;
  }
  50% {
    transform: translate3d(-28px, 26px, 0) scale(0.94);
    opacity: 0.65;
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.85;
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.hero__kicker {
  margin: 0 0 14px;
  font-weight: 700;
  color: #b7d4ff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.04;
}

.hero__subtitle {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  max-width: 64ch;
}

.hero__cta {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero__trust {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 0.55rem;
}

.hero__trust li {
  color: #e6efff;
}

.hero__trust i {
  color: var(--accent);
  margin-right: 0.45rem;
}

.story-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.story-card {
  border: 1px solid var(--stroke);
  border-radius: 16px;
  background: var(--card);
  padding: 22px;
}

.story-card h3 {
  margin: 0 0 12px;
  font-size: 1.18rem;
}

.story-card ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 0.55rem;
  color: #deebff;
}

.story-card--before h3 i {
  color: var(--danger-soft);
}

.story-card--after h3 i {
  color: var(--accent);
}

.practical {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 26px;
  align-items: start;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 22px;
  display: grid;
  gap: 0.55rem;
}

.check-list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  margin-right: 0.5rem;
}

.practical__panel {
  border: 1px solid var(--stroke);
  border-radius: 16px;
  background: var(--card);
  padding: 16px;
  display: grid;
  gap: 12px;
}

.practical__item {
  border: 1px solid var(--stroke);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  padding: 13px;
}

.practical__item strong {
  display: block;
  margin-bottom: 4px;
}

.practical__item span {
  color: var(--muted);
  font-size: 0.95rem;
}

.features {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature {
  border: 1px solid var(--stroke);
  border-radius: 14px;
  background: var(--card);
  padding: 20px;
}

.feature__icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, var(--brand), var(--brand-2));
  margin-bottom: 10px;
}

.feature h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

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

.steps {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.step {
  border: 1px solid var(--stroke);
  border-radius: 14px;
  background: var(--card);
  padding: 20px;
}

.step__number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-weight: 700;
  margin-bottom: 8px;
  background: rgba(66, 220, 163, 0.18);
  color: #d8fff1;
  border: 1px solid rgba(66, 220, 163, 0.36);
}

.step h3 {
  margin: 0 0 7px;
  font-size: 1.02rem;
}

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

.pricing {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.price-card {
  position: relative;
  border: 1px solid var(--stroke);
  border-radius: 16px;
  background: var(--card);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-card--highlight {
  border-color: #2a7bc7;
  background: linear-gradient(180deg, rgba(30, 118, 189, 0.26), rgba(13, 90, 161, 0.13));
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.25);
}

.badge-popular {
  position: absolute;
  left: 50%;
  top: -10px;
  transform: translateX(-50%);
  background: var(--accent);
  color: #05201a;
  font-weight: 800;
  font-size: 0.8rem;
  border-radius: 999px;
  border: 1px solid #0f5;
  padding: 0.25rem 0.55rem;
}

.plan-head h3 {
  margin: 0;
}

.plan-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.plan-icon {
  color: #dfe9ff;
}

.plan-for {
  margin: 2px 0 3px;
  color: var(--muted);
  min-height: 40px;
}

.price {
  font-size: 1.95rem;
  font-weight: 800;
}

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

.price-addon {
  font-size: 0.88rem;
  color: #c6d6f2;
}

.plan-list {
  list-style: none;
  margin: 6px 0 12px;
  padding: 0;
  display: block;
  flex-grow: 0;
}

.plan-list li {
  margin-bottom: 0.45rem;
  line-height: 1.35;
}

.plan-list li:last-child {
  margin-bottom: 0;
}

.price-card a.btn {
  margin-top: auto;
}

.faq-wrap {
  max-width: 900px;
}

.faq {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}

.faq details {
  border: 1px solid var(--stroke);
  border-radius: 12px;
  background: var(--card);
  padding: 12px 14px;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.faq summary:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.faq p {
  margin: 10px 0 2px;
  color: var(--muted);
}

.cta {
  padding: 82px 0;
  background: linear-gradient(180deg, rgba(66, 220, 163, 0.08), transparent 65%);
}

.cta__inner {
  text-align: center;
}

.cta h2 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
}

.cta p {
  margin: 0 0 18px;
  color: var(--muted);
}

.actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.footer {
  border-top: 1px solid var(--stroke);
  padding: 22px 0;
}

.footer__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer__inner .credit {
  margin: 0;
  color: #fff;
  font-size: 0.95rem;
}

.footer__inner .credit a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.footer__inner .credit a:hover {
  text-decoration: underline;
}

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

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

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

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

@media (max-width: 860px) {
  .nav__toggle {
    display: block;
  }

  .nav__links {
    position: absolute;
    inset: 60px 0 auto 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 4%;
    border-bottom: 1px solid var(--stroke);
    background: rgba(6, 8, 23, 0.96);
    backdrop-filter: blur(10px);
    transform-origin: top;
    transform: scaleY(0);
    transition: 0.25s;
    pointer-events: none;
  }

  .nav__links.open {
    transform: scaleY(1);
    pointer-events: auto;
  }

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

@media (max-width: 620px) {
  .hero {
    min-height: auto;
    padding-top: 36px;
  }

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

  .hero__cta .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-glow--one,
  .hero-glow--two {
    animation: none !important;
  }
}
