:root {
  --bg: #eef5ff;
  --bg-deep: #dcecff;
  --text: #0c1730;
  --muted: #5f6f8a;
  --primary: #2563eb;
  --primary-2: #06b6d4;
  --gold: #f6c85f;
  --card: rgba(255, 255, 255, 0.62);
  --stroke: rgba(255, 255, 255, 0.65);
  --shadow: 0 24px 70px rgba(36, 72, 143, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.9), transparent 35%),
    radial-gradient(circle at 80% 20%, rgba(14,165,233,0.18), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, var(--bg) 45%, #f5f9ff 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.45;
  pointer-events: none;
  z-index: -1;
  animation: drift 16s ease-in-out infinite alternate;
}
body::before { top: -8rem; left: -8rem; background: rgba(37, 99, 235, 0.22); }
body::after { bottom: -10rem; right: -8rem; background: rgba(6, 182, 212, 0.2); }

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }

.page-shell {
  width: min(1240px, calc(100% - 32px));
  margin: 18px auto 54px;
}

.glass {
  background: var(--card);
  backdrop-filter: blur(18px);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.topbar {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border-radius: 999px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; }
.brand-mark {
  width: 44px; height: 44px; display: grid; place-items: center;
  border-radius: 14px; color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.25);
}
.brand-text { letter-spacing: -0.03em; }

.nav { display: flex; flex-wrap: wrap; gap: 22px; justify-content: center; color: var(--muted); font-weight: 600; }
.nav a { transition: transform .25s ease, color .25s ease; }
.nav a:hover { color: var(--primary); transform: translateY(-2px); }

.section { padding: 98px 0 0; }
.section-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; align-items: center; gap: 34px; min-height: calc(100vh - 120px); padding-top: 42px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px; border-radius: 999px;
  color: #2457d6; background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.14);
  font-size: .86rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}

h1, h2, h3, p { margin: 0; }
h1 { margin-top: 22px; font-size: clamp(3rem, 7vw, 6.1rem); line-height: .95; letter-spacing: -0.06em; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.02; letter-spacing: -0.05em; }
h3 { font-size: 1.2rem; letter-spacing: -0.03em; }
.lead, .section-heading p, .split-copy p, .testimonial-card p, .cta-card p, .earnings-box p { color: var(--muted); font-size: 1.04rem; line-height: 1.75; }
.hero-copy .lead { max-width: 60ch; margin-top: 20px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; padding: 15px 22px;
  font-weight: 700; border: 1px solid transparent;
  transition: transform .28s ease, box-shadow .28s ease, background .28s ease, border-color .28s ease;
}
.btn:hover { transform: translateY(-3px) scale(1.01); box-shadow: 0 18px 30px rgba(20, 60, 130, 0.18); }
.btn-primary { color: white; background: linear-gradient(135deg, var(--primary), var(--primary-2)); }
.btn-secondary { color: var(--text); background: rgba(255,255,255,0.7); border-color: rgba(37,99,235,.14); }
.btn-sm { padding: 12px 18px; }

.mini-proof {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin-top: 22px; padding: 18px; border-radius: 24px;
}
.mini-proof div, .stat-item, .category-card, .testimonial-card, .info-card, .faq-item, .cta-card, .earnings-box {
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.mini-proof div:hover, .info-card:hover, .category-card:hover, .testimonial-card:hover, .faq-item:hover, .cta-card:hover {
  transform: translateY(-6px);
}
.mini-proof strong { display: block; font-size: 1.2rem; }
.mini-proof span { color: var(--muted); font-size: .92rem; }

.redirect-strip {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  margin-top: 22px; padding: 18px 20px; border-radius: 24px;
  animation: fadeUp 1s ease both;
}
.redirect-strip strong { display: block; font-size: 1rem; }
.redirect-strip p { margin-top: 6px; color: var(--muted); line-height: 1.6; }

.hero-visual { position: relative; min-height: 640px; display: grid; place-items: center; }
.hero-card {
  position: relative; width: min(100%, 460px); padding: 20px; border-radius: 34px; overflow: hidden;
}
.hero-card img, .stack-main, .stack-secondary, .testimonial-card img { border-radius: 28px; object-fit: cover; }
.hero-card img { height: 420px; }
.hero-card-top, .hero-card-bottom, .split-panel, .earnings-box { display: flex; }
.hero-card-top, .hero-card-bottom { justify-content: space-between; align-items: center; gap: 14px; }
.hero-card-top { margin-bottom: 16px; }
.hero-card-bottom { padding-top: 16px; }
.pill, .rating-chip, .live-dot {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 9px 14px; border-radius: 999px; font-size: .86rem; font-weight: 700;
}
.pill { color: #1e4fca; background: rgba(37, 99, 235, 0.1); }
.live-dot { color: #157347; background: rgba(21, 115, 71, 0.1); }
.rating-chip { color: #875d00; background: rgba(246, 200, 95, 0.22); }

.orbit { position: absolute; border-radius: 50%; border: 1px solid rgba(37,99,235,.15); animation: spin 22s linear infinite; }
.orbit-one { width: 540px; height: 540px; }
.orbit-two { width: 660px; height: 660px; border-style: dashed; animation-direction: reverse; }

.section-heading { max-width: 760px; margin-bottom: 26px; }
.section-heading p { margin-top: 16px; }

.benefits, .stories-section, .faq-section, .cta-section { padding-top: 110px; }

.split-copy { padding-right: 6px; }

.card-grid { display: grid; gap: 18px; }
.three-up { grid-template-columns: repeat(3, 1fr); }
.info-card, .category-card, .testimonial-card, .faq-item, .cta-card, .earnings-box { border-radius: var(--radius-xl); }
.info-card { padding: 28px; }
.card-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 16px; margin-bottom: 18px; color: white; font-weight: 800; background: linear-gradient(135deg, var(--primary), var(--primary-2)); }
.info-card p, .category-card p { margin-top: 10px; color: var(--muted); line-height: 1.7; }

.split-panel { align-items: center; gap: 34px; }
.split-copy, .split-media { flex: 1; }
.feature-list { list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 14px; }
.feature-list li { position: relative; padding-left: 28px; color: var(--text); line-height: 1.6; }
.feature-list li::before {
  content: ""; position: absolute; left: 0; top: 10px; width: 14px; height: 14px; border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2)); box-shadow: 0 0 0 5px rgba(37,99,235,.1);
}
.image-stack { position: relative; min-height: 600px; }
.stack-main { height: 500px; box-shadow: var(--shadow); }
.stack-secondary {
  position: absolute; right: 18px; bottom: 18px; width: 260px; height: 220px; border: 10px solid rgba(255,255,255,.72);
  box-shadow: var(--shadow);
}

.stats-band {
  margin-top: 72px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; padding: 20px;
  border-radius: 30px;
}
.stat-item { padding: 22px; border-radius: 24px; background: rgba(255,255,255,0.55); }
.stat-item strong { display: block; font-size: 2.1rem; letter-spacing: -0.06em; }
.stat-item span { color: var(--muted); }

.category-grid, .testimonial-grid { display: grid; gap: 18px; }
.category-grid { grid-template-columns: repeat(3, 1fr); }
.category-card { padding: 24px; min-height: 160px; display: flex; flex-direction: column; justify-content: flex-end; background: linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0.48)); }
.category-card span { font-weight: 800; font-size: 1.1rem; }

.testimonial-grid { grid-template-columns: repeat(3, 1fr); }
.testimonial-card { padding: 18px; }
.testimonial-card img { height: 230px; margin-bottom: 18px; }
.testimonial-card strong { display: block; margin-top: 18px; }
.testimonial-card span { color: var(--muted); font-size: .94rem; }

.earnings-box {
  align-items: center; justify-content: space-between; gap: 22px; padding: 32px; overflow: hidden;
  background: linear-gradient(135deg, rgba(37,99,235,.14), rgba(6,182,212,.12), rgba(255,255,255,.68));
}
.earnings-box > div:first-child { max-width: 640px; }
.earnings-metrics { display: grid; gap: 14px; min-width: 240px; }
.earnings-metrics div { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-radius: 18px; background: rgba(255,255,255,0.68); }
.earnings-metrics strong { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 10px; color: white; background: linear-gradient(135deg, var(--primary), var(--primary-2)); }

.faq-list { display: grid; gap: 14px; }
.faq-item { padding: 10px 18px; }
.faq-item summary { cursor: pointer; list-style: none; padding: 14px 4px; font-weight: 700; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { padding: 0 4px 16px; color: var(--muted); line-height: 1.7; }

.cta-section { padding-bottom: 48px; }
.cta-card { text-align: center; padding: 42px 24px; background: linear-gradient(135deg, rgba(14,165,233,.18), rgba(255,255,255,.75)); }
.cta-card p { margin: 14px auto 24px; max-width: 760px; }

.footer {
  margin-top: 96px;
  padding: 34px 28px 18px;
  border-radius: 34px;
  color: var(--muted);
  display: grid;
  gap: 26px;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand strong { display: block; color: var(--text); margin-bottom: 8px; }
.footer-columns { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.footer-col { display: grid; gap: 10px; align-content: start; }
.footer-col span { color: var(--text); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 6px; }
.footer-col a { width: fit-content; transition: color .25s ease, transform .25s ease; }
.footer-col a:hover, .footer-bottom a:hover { color: var(--primary); transform: translateX(3px); }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  padding-top: 18px; border-top: 1px solid rgba(255,255,255,.55);
}
.footer-bottom a { transition: color .25s ease; }

.reveal-up, .reveal-fade { animation: fadeUp 900ms ease both; }
.reveal-fade { animation-name: fadeIn; }
.floaty { animation: float 7s ease-in-out infinite; }

.section:nth-of-type(odd) .reveal-up { animation-delay: .06s; }
.section:nth-of-type(even) .reveal-up { animation-delay: .12s; }

.card-grid > *, .category-grid > *, .testimonial-grid > *, .stats-band > *, .faq-list > *, .footer, .redirect-strip, .cta-card {
  will-change: transform, opacity;
}

.section > * {
  animation-duration: 900ms;
}

.section-heading,
.card-grid,
.category-grid,
.testimonial-grid,
.faq-list,
.stats-band,
.earnings-box,
.footer,
.redirect-strip,
.mini-proof {
  animation: fadeUp .9s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; transform: scale(.97); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-16px); }
}
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(30px, -20px, 0) scale(1.08); }
}

@media (max-width: 1100px) {
  .section-grid, .split-panel, .earnings-box { grid-template-columns: 1fr; flex-direction: column; }
  .hero-visual { min-height: 560px; }
  .three-up, .category-grid, .testimonial-grid, .stats-band { grid-template-columns: repeat(2, 1fr); }
  .stats-band { display: grid; }
  .footer-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .page-shell { width: min(100% - 20px, 100%); margin-top: 10px; }
  .topbar { position: static; border-radius: 28px; flex-direction: column; align-items: stretch; }
  .nav { justify-content: flex-start; gap: 14px; }
  .section { padding-top: 58px; }
  .section-grid { min-height: auto; }
  h1 { font-size: clamp(2.5rem, 15vw, 4rem); }
  h2 { font-size: clamp(1.8rem, 9vw, 2.5rem); }
  .mini-proof, .three-up, .category-grid, .testimonial-grid, .stats-band { grid-template-columns: 1fr; }
  .redirect-strip { flex-direction: column; align-items: flex-start; }
  .hero-card img { height: 340px; }
  .hero-visual, .image-stack { min-height: auto; }
  .stack-secondary { position: static; width: 100%; height: 190px; margin-top: 14px; }
  .stats-band, .earnings-box { padding-left: 0; padding-right: 0; }
  .footer { padding-left: 18px; padding-right: 18px; }
  .footer-columns { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}
