:root {
  --color-bg: #F6F7FB;
  --color-surface: #FFFFFF;
  --color-text: #0F1020;
  --color-muted: #5B5D6D;
  --color-accent: #22C55E;
  --gradient-primary: linear-gradient(135deg, #4C4CFF, #8B5CF6);
  --shadow-soft: 0 20px 40px rgba(15, 16, 32, 0.08);
  --max-width: 1080px;
  --radius-xl: 1.5rem;
  --radius-lg: 1.125rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  border-radius: var(--radius-lg);
  display: block;
}

header {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(18px);
  background: linear-gradient(135deg, rgba(76, 76, 255, 0.92), rgba(139, 92, 246, 0.92));
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: #FFFFFF;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
}

.nav-links a {
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus {
  color: #FFFFFF;
  opacity: 1;
}

.mobile-toggle {
  display: none;
  border: none;
  background: none;
  font-size: 1.5rem;
  color: #FFFFFF;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 0 1.5rem 1.5rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  background: linear-gradient(135deg, rgba(76, 76, 255, 0.95), rgba(139, 92, 246, 0.95));
}

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
}

section {
  margin-bottom: 6rem;
}

.hero {
  padding: clamp(3rem, 6vw, 5rem);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at top left, rgba(139, 92, 246, 0.45), rgba(76, 76, 255, 0.55)) fixed,
    linear-gradient(135deg, #1d1f4a, #2f155f);
  color: #FFFFFF;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
  isolation: isolate;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.5;
  z-index: -1;
  animation: float 14s ease-in-out infinite;
}

.hero::before {
  inset: auto auto 20% -10%;
  width: 420px;
  height: 420px;
  background: rgba(139, 92, 246, 0.65);
  animation-delay: -4s;
}

.hero::after {
  inset: -20% 10% auto auto;
  width: 360px;
  height: 360px;
  background: rgba(76, 76, 255, 0.5);
}

.hero h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero p,
.hero .muted {
  max-width: 32rem;
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.92);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content .button-row {
  margin-bottom: 2rem;
}

.hero-visual {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual .orb {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(140deg, rgba(76, 76, 255, 0.75), rgba(139, 92, 246, 0.8));
  box-shadow: 0 24px 60px rgba(15, 16, 32, 0.25);
  animation: pulse 12s ease-in-out infinite;
}

.hero-visual .orb.orb-1 {
  width: 240px;
  height: 240px;
  top: 12%;
  left: 18%;
  animation-delay: -6s;
}

.hero-visual .orb.orb-2 {
  width: 160px;
  height: 160px;
  bottom: 10%;
  right: 12%;
}

.floating-card {
  position: relative;
  background: rgba(16, 18, 58, 0.78);
  border: 1px solid rgba(139, 92, 246, 0.32);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  width: min(320px, 100%);
  backdrop-filter: blur(12px);
  box-shadow: 0 26px 46px rgba(15, 16, 32, 0.28);
  display: grid;
  gap: 0.75rem;
  z-index: 1;
}

.floating-card .pill {
  justify-self: start;
  background: rgba(34, 197, 94, 0.18);
}

.floating-card h3 {
  margin: 0;
  font-size: 1.25rem;
}

.floating-card .stat {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
}

.floating-card .stat span {
  font-size: 0.9rem;
  opacity: 0.7;
}

.floating-card .muted {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  cursor: pointer;
}

.button.primary {
  background: var(--gradient-primary);
  color: #FFFFFF;
  box-shadow: 0 14px 28px rgba(76, 76, 255, 0.35);
}

.button.primary:hover,
.button.primary:focus {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(76, 76, 255, 0.45);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.14);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.button.secondary:hover,
.button.secondary:focus {
  opacity: 0.85;
  transform: translateY(-1px);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.badge {
  background: rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.section-heading {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 3vw, 2.75rem);
  margin-bottom: 0.75rem;
}

.muted {
  color: var(--color-muted);
}

.card-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 1.875rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card:hover,
.card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 24px 46px rgba(15, 16, 32, 0.14);
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.product-card figure {
  margin: 0;
  position: relative;
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.product-card .tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #4C4CFF;
  background: rgba(76, 76, 255, 0.08);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

.quote-card {
  background: rgba(76, 76, 255, 0.08);
  border: 1px solid rgba(76, 76, 255, 0.2);
}

blockquote {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
}

blockquote footer {
  margin-top: 1.25rem;
  font-size: 0.95rem;
  color: var(--color-muted);
}

.compliance-block {
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  text-align: center;
  color: var(--color-text);
}

.compliance-block h2 {
  margin: 0 0 0.75rem;
  font-size: 1.75rem;
}

.policies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.policies-grid a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(76, 76, 255, 0.28);
  color: #4C4CFF;
  font-weight: 600;
  background: rgba(76, 76, 255, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.policies-grid a:hover,
.policies-grid a:focus {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(76, 76, 255, 0.18);
}

.cta-banner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  align-items: center;
  padding: 2.75rem;
  border-radius: var(--radius-xl);
  background: #FFFFFF;
  box-shadow: var(--shadow-soft);
}

.cta-banner p {
  margin: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border: 1px solid rgba(140, 148, 171, 0.16);
  background: rgba(255, 255, 255, 0.9);
}

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

.pricing-card .price {
  font-size: 2.25rem;
  font-weight: 700;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--color-muted);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(34, 197, 94, 0.12);
  color: var(--color-accent);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
}

.two-column {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.legal-page main {
  max-width: 760px;
}

.legal-page h1 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.legal-page p {
  color: var(--color-muted);
}

.legal-page h2 {
  font-size: 1.35rem;
  margin-top: 2.5rem;
}

footer {
  padding: 2rem 1.5rem 3rem;
  background: linear-gradient(135deg, #2a2bc9, #6a3dda);
  color: rgba(255, 255, 255, 0.88);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  color: rgba(255, 255, 255, 0.82);
}

.footer-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.25rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.9);
}

.footer-bottom a:hover,
.footer-bottom a:focus {
  opacity: 0.85;
}

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

form {
  display: grid;
  gap: 1rem;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
textarea {
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(15, 16, 32, 0.12);
  background: #FFFFFF;
  font-family: inherit;
  font-size: 1rem;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
  border-color: #4C4CFF;
  box-shadow: 0 0 0 3px rgba(76, 76, 255, 0.15);
  outline: none;
}

.faq {
  display: grid;
  gap: 1.5rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid rgba(140, 148, 171, 0.16);
}

.faq-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

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

  .mobile-toggle {
    display: block;
  }

  .hero {
    padding: 3rem 1.75rem;
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 220px;
  }

  .hero-visual .orb.orb-1 {
    width: 200px;
    height: 200px;
  }

  .hero-visual .orb.orb-2 {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 720px) {
  section {
    margin-bottom: 4rem;
  }

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

  footer {
    padding: 2.5rem 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(10px, -18px, 0) scale(1.04);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1) translateY(0);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.08) translateY(-12px);
    opacity: 1;
  }
}
