:root {
  --bg: #091321;
  --bg-soft: #0f1f34;
  --panel: rgba(12, 30, 52, 0.72);
  --text: #eef4ff;
  --muted: #b6c5df;
  --line: rgba(169, 194, 230, 0.2);
  --primary: #00c2a8;
  --primary-strong: #00e1be;
  --accent: #ff9f5a;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, #123056 0, transparent 45%),
    radial-gradient(circle at 85% 0%, #173059 0, transparent 42%),
    linear-gradient(120deg, #07111f, #0a1729 45%, #0a1524);
  line-height: 1.55;
  position: relative;
  overflow-x: hidden;
}

h1,
h2,
h3,
.brand,
.footer-brand {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.02em;
}

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

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

.bg-blur {
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 999px;
  filter: blur(90px);
  z-index: -1;
  opacity: 0.45;
  pointer-events: none;
}

.bg-blur-1 {
  background: #17b6f9;
  top: -130px;
  left: -60px;
}

.bg-blur-2 {
  background: #ff9950;
  bottom: -150px;
  right: -90px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: rgba(5, 14, 27, 0.66);
  border-bottom: 1px solid rgba(197, 216, 245, 0.12);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.brand-logo {
  height: 46px;
  width: auto;
  max-width: min(48vw, 235px);
}

nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-weight: 500;
}

nav a {
  transition: color 0.24s ease;
}

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

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.82rem 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.97rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

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

.btn-nav {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(210, 228, 255, 0.2);
}

.btn-primary {
  background: linear-gradient(100deg, var(--primary), var(--primary-strong));
  color: #06231e;
  box-shadow: 0 14px 34px rgba(0, 194, 168, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 20px 40px rgba(0, 194, 168, 0.45);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(205, 222, 248, 0.26);
  color: var(--text);
}

.hero,
.page-hero {
  padding: 92px 0 56px;
}

.page-hero p {
  max-width: 780px;
  color: var(--muted);
  margin: 0;
}

.page-hero h1 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.95rem, 5vw, 3.4rem);
  line-height: 1.08;
}

.badge {
  width: fit-content;
  margin: 0 0 1rem;
  padding: 0.38rem 0.76rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #06261f;
  background: linear-gradient(100deg, #56f8dd, #95f5e5);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
  max-width: 900px;
  margin: 0;
}

.hero-sub {
  max-width: 720px;
  margin-top: 1.15rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.hero-cta {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-stats {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.hero-stats div {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(177, 200, 235, 0.2);
  border-radius: var(--radius-md);
  padding: 0.95rem;
}

.hero-stats strong {
  display: block;
  font-size: 1.02rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: 44px 0;
}

.section-heading {
  margin-bottom: 1.2rem;
}

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

.offers-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.offer-card {
  background: linear-gradient(170deg, rgba(20, 41, 69, 0.95), rgba(9, 25, 45, 0.95));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: "";
  position: absolute;
  inset: -40% 45% auto auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(0, 194, 168, 0.2), transparent 70%);
  pointer-events: none;
}

.offer-card h3 {
  margin: 0 0 0.55rem;
}

.price {
  margin: 0 0 0.9rem;
  font-size: 1.8rem;
  font-weight: 800;
  color: #93ffe8;
}

.offer-card p {
  color: var(--muted);
}

.btn-paypal {
  margin-top: 1rem;
  width: 100%;
  border-radius: 12px;
  background: linear-gradient(98deg, #ffcf54, #ffb830);
  color: #281a00;
  box-shadow: 0 12px 26px rgba(255, 184, 48, 0.28);
}

.featured {
  border-color: rgba(0, 225, 190, 0.7);
}

.tag {
  display: inline-flex;
  margin: 0 0 0.6rem;
  font-size: 0.74rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.28rem 0.65rem;
  background: rgba(0, 225, 190, 0.22);
  border: 1px solid rgba(0, 225, 190, 0.4);
}

.feature-grid,
.steps-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-grid article,
.steps-grid article {
  background: rgba(15, 34, 58, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.1rem;
}

.feature-grid h3,
.steps-grid h3 {
  margin: 0;
}

.feature-grid p,
.steps-grid p {
  margin: 0.5rem 0 0;
  color: var(--muted);
}

.steps-grid span {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  border-radius: 50%;
  color: #052f28;
  background: linear-gradient(120deg, var(--primary), #7ef2e0);
  margin-bottom: 0.65rem;
}

.reassurance {
  background: linear-gradient(130deg, rgba(14, 35, 62, 0.95), rgba(8, 25, 46, 0.95));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
  padding: 1.3rem;
}

.reassurance h2 {
  margin: 0 0 0.5rem;
}

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

.reassurance-points {
  display: grid;
  gap: 0.65rem;
}

.reassurance-points p {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.78rem;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-list details {
  background: rgba(14, 34, 60, 0.66);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
}

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

.faq-list p {
  margin: 0.6rem 0 0;
  color: var(--muted);
}

.policy-layout {
  display: grid;
  gap: 1rem;
}

.policy-section {
  background: rgba(14, 34, 60, 0.66);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1.1rem;
}

.policy-section h2 {
  margin: 0 0 0.55rem;
  font-size: 1.2rem;
}

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

.inline-link {
  color: #9de7ff;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.inline-link:hover {
  color: #c9f1ff;
}

.site-footer {
  margin-top: 42px;
  border-top: 1px solid rgba(191, 213, 246, 0.18);
  background: rgba(3, 11, 21, 0.72);
}

.footer-wrap {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1rem;
  padding: 1.3rem 0;
}

.footer-brand {
  margin: 0;
}

.footer-logo {
  height: 44px;
  width: auto;
  max-width: 100%;
}

.footer-title {
  margin: 0 0 0.6rem;
  font-weight: 700;
  color: #cce0ff;
}

.footer-wrap p,
.footer-wrap a {
  margin: 0.2rem 0;
  color: var(--muted);
}

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

.footer-bottom {
  border-top: 1px solid rgba(191, 213, 246, 0.14);
  padding: 0.8rem 0 1.3rem;
  color: #91a9cc;
  font-size: 0.9rem;
}

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

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

@media (max-width: 980px) {
  nav {
    display: none;
  }

  .offers-grid,
  .feature-grid,
  .steps-grid,
  .reassurance,
  .footer-wrap {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .site-header {
    position: static;
  }

  .hero,
  .page-hero {
    padding-top: 52px;
  }

  .btn-nav {
    display: none;
  }

  .brand-logo {
    height: 38px;
  }

  .offer-card,
  .feature-grid article,
  .steps-grid article,
  .faq-list details,
  .policy-section {
    padding: 1rem;
  }
}
