﻿:root {
  --bg: #070b16;
  --panel: rgba(15, 22, 40, 0.65);
  --panel-strong: rgba(17, 24, 43, 0.8);
  --text: #e8eefc;
  --muted: #b7c2df;
  --cyan: #33e7ff;
  --violet: #9a74ff;
  --line: rgba(146, 179, 255, 0.2);
  --shadow: 0 18px 50px rgba(6, 10, 26, 0.55);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 15% 15%, #141b33 0%, #070b16 42%), radial-gradient(circle at 85% 0%, #1b1640 0%, rgba(7, 11, 22, 0) 36%), var(--bg);
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 90px 0;
  position: relative;
}

.section-head {
  max-width: 680px;
  margin-bottom: 36px;
}

.section-head h2 {
  margin: 0 0 10px;
  font-size: clamp(1.7rem, 3.6vw, 2.4rem);
}

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

.bg-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.09;
  background-image: radial-gradient(rgba(255, 255, 255, 0.8) 0.45px, transparent 0.45px);
  background-size: 3px 3px;
  z-index: -2;
}

.bg-glow {
  position: fixed;
  width: 36vw;
  height: 36vw;
  border-radius: 50%;
  filter: blur(45px);
  z-index: -1;
  opacity: 0.24;
  pointer-events: none;
  animation: drift 14s ease-in-out infinite alternate;
}

.bg-glow-a {
  top: -10vw;
  left: -8vw;
  background: #00d4ff;
}

.bg-glow-b {
  right: -10vw;
  bottom: 10vh;
  background: #7c56ff;
  animation-delay: 1.2s;
}

@keyframes drift {
  from {
    transform: translateY(0px) translateX(0px) scale(1);
  }
  to {
    transform: translateY(24px) translateX(12px) scale(1.08);
  }
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(7, 11, 22, 0.68);
  border-bottom: 1px solid rgba(137, 169, 245, 0.18);
}

.nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  font-weight: 800;
  letter-spacing: 0.3px;
  font-size: 1.15rem;
}

.nav {
  display: flex;
  gap: 18px;
}

.nav a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--text);
}

.nav-desktop {
  display: flex;
}

.nav.nav-desktop {
  margin-left: auto;
}

.nav-mobile {
  display: none;
  margin-left: auto;
}

.menu-btn {
  background: transparent;
  border: 0;
  padding: 6px;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
}

.mobile-menu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  display: grid;
  gap: 12px;
  padding: 0 4vw;
  border-top: 1px solid transparent;
  background: rgba(8, 12, 24, 0.98);
  transition: max-height 0.3s ease, opacity 0.25s ease, padding 0.25s ease, border-color 0.25s ease;
}

.mobile-menu.is-open {
  max-height: 420px;
  opacity: 1;
  pointer-events: auto;
  padding: 14px 4vw 16px;
  border-top-color: var(--line);
}

.btn {
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 700;
  font-size: 0.96rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

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

.btn-primary {
  background: linear-gradient(120deg, rgba(51, 231, 255, 0.28), rgba(154, 116, 255, 0.32));
  border-color: rgba(135, 202, 255, 0.44);
  color: var(--text);
  box-shadow: 0 8px 25px rgba(82, 129, 255, 0.22);
}

.btn-secondary {
  background: rgba(15, 22, 40, 0.64);
  border-color: rgba(155, 184, 255, 0.32);
  color: var(--text);
}

.btn-sm {
  padding: 10px 14px;
  font-size: 0.88rem;
}

.hero {
  padding-top: 92px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  line-height: 1.15;
}

.subhead {
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  color: var(--muted);
  margin: 16px 0 24px;
  max-width: 58ch;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.link-cta {
  display: inline-block;
  margin-top: 16px;
  color: #bfe9ff;
  font-weight: 600;
}

.plan-state {
  margin-top: 14px;
  color: #b8cfff;
  font-size: 0.92rem;
}

.hero-visual {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(14px, 2vw, 22px);
  box-shadow: var(--shadow);
}

.hero-visual svg {
  width: 100%;
  height: auto;
  display: block;
}

.pricing-grid,
.steps-grid,
.trust-grid {
  display: grid;
  gap: 18px;
}

.pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.pricing-card {
  position: relative;
}

.pricing-card h3 {
  margin: 0;
  font-size: 1.35rem;
}

.price {
  margin: 10px 0 14px;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.pricing-card ul {
  padding-left: 20px;
  margin: 0 0 18px;
  color: #d7e3ff;
}

.pricing-card li + li {
  margin-top: 6px;
}

.badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  color: #071221;
  background: linear-gradient(120deg, #67e8f9, #a78bfa);
}

.badge.alt {
  background: linear-gradient(120deg, #6ee7b7, #67e8f9);
}

.stretch {
  width: 100%;
}

.note,
.disclaimer,
.footnote {
  color: var(--muted);
}

.note {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(16, 24, 45, 0.58);
}

.disclaimer {
  margin-top: 12px;
  font-size: 0.92rem;
}

.icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 12px;
  background: linear-gradient(120deg, rgba(103, 232, 249, 0.25), rgba(167, 139, 250, 0.28));
  border: 1px solid rgba(125, 198, 255, 0.42);
  font-weight: 800;
}

.step h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

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

.time-chip {
  display: inline-flex;
  margin-top: 16px;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  color: #042127;
  background: linear-gradient(120deg, #7ef9de, #8af3ff);
}

.footnote {
  margin-top: 8px;
  font-size: 0.9rem;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  background: var(--panel-strong);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
}

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

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

.support-box {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.support-box h2,
.support-box p {
  margin: 0;
}

.support-actions {
  margin-top: 8px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer {
  border-top: 1px solid var(--line);
  background: rgba(6, 10, 21, 0.85);
  padding: 28px 0 34px;
}

.footer-grid {
  display: grid;
  gap: 14px;
}

.footer-grid > div:first-child {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer a {
  color: #c4d6ff;
}

.ie-block p {
  margin: 4px 0;
  color: var(--muted);
}

.copyright {
  margin: 0;
  color: #8fa0c7;
}

.toast {
  position: fixed;
  right: 14px;
  bottom: 14px;
  max-width: 280px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(13, 21, 40, 0.95);
  border: 1px solid rgba(118, 167, 255, 0.4);
  color: #dff5ff;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 70;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

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

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

.floating-cta {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 16px;
  z-index: 60;
  width: calc(100% - 24px);
  max-width: 480px;
  text-align: center;
  padding: 13px 16px;
  border-radius: 12px;
  font-weight: 800;
  color: #051325;
  background: linear-gradient(120deg, #7ef9de, #88e6ff, #a78bfa);
  box-shadow: 0 12px 26px rgba(46, 117, 223, 0.38);
  display: none;
}

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

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

  .nav-mobile {
    display: flex;
    align-items: center;
  }

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

  .section {
    padding: 74px 0;
  }

  .hero {
    padding-top: 68px;
  }
}

@media (min-width: 901px) {
  .mobile-menu {
    max-height: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    border-top-color: transparent !important;
  }
}

@media (max-width: 620px) {
  .steps-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .floating-cta {
    display: block;
  }

  .footer {
    padding-bottom: 100px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
