:root {
  --bg: #020822;
  --bg-2: #050d2d;
  --card: rgba(255,255,255,.055);
  --card-2: rgba(255,255,255,.08);
  --line: rgba(221,196,255,.18);
  --white: #fffaf7;
  --muted: #b8b2ca;
  --purple: #b894f0;
  --purple-2: #8f77bc;
  --peach: #f2c1b0;
  --peach-2: #ffd5c7;
  --blue-purple: #5166e8;
  --shadow: 0 30px 100px rgba(0,0,0,.45);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 10%, rgba(242,193,176,.22), transparent 28%),
    radial-gradient(circle at 68% 42%, rgba(142,119,188,.32), transparent 24%),
    radial-gradient(circle at 8% 12%, rgba(81,102,232,.18), transparent 30%),
    linear-gradient(180deg, #02061b 0%, #030928 45%, #02061b 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.5), transparent 80%);
  pointer-events: none;
  z-index: -1;
}

a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 42px)); margin: 0 auto; }

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(20px);
  background: rgba(2, 8, 34, .72);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.nav-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: max-content;
}

.brand-logo {
  height: 58px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 22px rgba(184, 148, 240, 0.25));
}

.brand-logo-footer {
  height: 46px;
  opacity: .85;
}

.nav-links { display: flex; align-items: center; gap: 30px; color: rgba(255,255,255,.72); font-size: 14px; }
.nav-links a:hover { color: var(--white); }

.btn { appearance: none; display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 50px; padding: 0 25px; border-radius: 12px; border: 1px solid rgba(255,255,255,.15); font-family: inherit; font-weight: 700; font-size: 14px; line-height: 1; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; cursor: pointer; white-space: nowrap; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(88deg, #a071f1 0%, #d898ec 48%, #ffc0a6 100%); color: #fff; box-shadow: 0 18px 50px rgba(184,148,240,.28); border: none; }
.btn-ghost { background: rgba(255,255,255,.03); color: var(--white); }
.btn-video {
  min-width: 184px;
  justify-content: flex-start;
  padding-left: 18px;
  background: rgba(4, 9, 35, .34);
  border-color: rgba(221, 196, 255, .32);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}
.btn-video:hover {
  border-color: rgba(255, 213, 199, .55);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, .26),
    0 0 36px rgba(184, 148, 240, .18),
    inset 0 1px 0 rgba(255, 255, 255, .12);
}
.play-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 30px;
  border-radius: 50%;
  color: var(--peach-2);
  background: radial-gradient(circle at 34% 28%, rgba(255, 213, 199, .24), rgba(184, 148, 240, .13));
  border: 1px solid rgba(255, 213, 199, .34);
  box-shadow:
    0 0 24px rgba(184, 148, 240, .22),
    inset 0 0 14px rgba(255, 255, 255, .06);
}
.play-icon svg {
  width: 17px;
  height: 17px;
  display: block;
  fill: currentColor;
  margin-left: 2px;
}

.hero { position: relative; padding: 15px 0 50px; }
.hero-grid { display: grid; grid-template-columns: 1fr .95fr; align-items: center; gap: 0px; min-height: 640px; }

.eyebrow { display: inline-flex; align-items: center; gap: 10px; padding: 8px 14px; border: 1px solid var(--line); border-radius: 99px; color: #d9c2ff; background: rgba(255,255,255,.04); font-size: 12px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; margin-bottom: 26px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: linear-gradient(135deg, var(--purple), var(--peach)); box-shadow: 0 0 18px rgba(242,193,176,.8); }

h1 { margin: 0; font-size: clamp(46px, 6vw, 82px); line-height: .98; letter-spacing: -.055em; max-width: 720px; }
.accent { display: inline-block; background: linear-gradient(120deg, #fffaf7 0%, #d5b2ff 40%, #ffbea8 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.script { font-family: "Playfair Display", serif; font-style: italic; letter-spacing: -.035em; }
.hero p { color: var(--muted); font-size: 17px; line-height: 1.9; max-width: 620px; margin: 28px 0 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.social-proof { display: flex; align-items: center; gap: 14px; margin-top: 28px; color: #cfc8dc; font-size: 13px; letter-spacing: .04em; }
.avatars { display: flex; }
.avatar { width: 34px; height: 34px; border-radius: 50%; border: 2px solid #030928; margin-left: -9px; background: radial-gradient(circle at 35% 30%, #ffd7bf, transparent 18%), linear-gradient(135deg, #6752bb, #f2c1b0); }
.avatar:first-child { margin-left: 0; }

.visual {
  position: relative;
  min-height: 639px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  isolation: isolate;
}

.hero-image {
  width: min(100%, 620px);
  height: auto;
  display: block;
  object-fit: contain;
  filter:
    drop-shadow(0 28px 90px rgba(0, 0, 0, 0.48))
    drop-shadow(0 0 55px rgba(184, 148, 240, 0.22));
}
.section { padding: 72px 0; }
.feature-strip { margin-top: -49px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025)); overflow: hidden; box-shadow: var(--shadow); }
.feature { padding: 30px; border-right: 1px solid rgba(255,255,255,.08); }
.feature:last-child { border-right: 0; }
.icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 17px; background: radial-gradient(circle at 30% 20%, rgba(242,193,176,.34), rgba(184,148,240,.18)); border: 1px solid rgba(255,255,255,.11); margin-bottom: 18px; color: #dabdff; font-size: 22px; box-shadow: 0 0 35px rgba(184,148,240,.16); }
.feature h3 { margin: 0 0 10px; font-size: 16px; }
.feature p { margin: 0; color: var(--muted); line-height: 1.7; font-size: 14px; }

.section-head { text-align: center; max-width: 780px; margin: 0 auto 38px; }
.kicker { color: #d7b7ff; text-transform: uppercase; letter-spacing: .22em; font-size: 12px; font-weight: 800; margin-bottom: 14px; }
h2 { margin: 0; font-size: clamp(34px, 4vw, 54px); line-height: 1.06; letter-spacing: -.04em; }
.section-head p { color: var(--muted); line-height: 1.8; font-size: 16px; }
.program-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.program-card, .testimonial, .faq, .step { border: 1px solid rgba(255,255,255,.11); background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.025)); border-radius: 24px; padding: 28px; box-shadow: 0 20px 70px rgba(0,0,0,.25); }
.program-card h3 { margin: 0 0 10px; }
.program-card p { margin: 0; color: var(--muted); line-height: 1.7; font-size: 14px; }
.program-card .arrow { margin-top: 22px; color: var(--purple); font-size: 24px; }

.compare { display: grid; grid-template-columns: 1fr auto 1fr; align-items: stretch; gap: 0; border: 1px solid var(--line); border-radius: 30px; overflow: hidden; background: rgba(255,255,255,.035); margin-top: 22px; }
.compare-side { padding: 34px; min-height: 260px; }
.compare-side.good { background: radial-gradient(circle at 85% 30%, rgba(242,193,176,.18), transparent 42%); }
.vs { display: grid; place-items: center; width: 74px; background: rgba(0,0,0,.18); border-left: 1px solid rgba(255,255,255,.08); border-right: 1px solid rgba(255,255,255,.08); color: #d9c2ff; font-weight: 800; }
.compare h3 { margin: 0 0 22px; }
.compare ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; color: var(--muted); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.num { font-size: 44px; color: rgba(216,184,255,.45); font-weight: 800; margin-bottom: 16px; }
.step p { color: var(--muted); line-height: 1.7; font-size: 14px; }
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.quote { color: #ded8eb; line-height: 1.8; margin-bottom: 24px; }
.person-mini { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 13px; }
.stars { color: #ffc179; letter-spacing: .1em; margin-top: 10px; }

.mid-cta-section { padding: 38px 0 54px; }
.mid-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 38px;
  min-height: 146px;
  padding: 24px 64px 24px 46px;
  border: 1px solid rgba(255, 202, 188, .34);
  border-radius: 28px;
  background:
    radial-gradient(circle at 9% 50%, rgba(174, 99, 255, .34), transparent 23%),
    radial-gradient(circle at 89% 35%, rgba(255, 176, 132, .62), transparent 26%),
    linear-gradient(100deg, rgba(71, 34, 146, .88), rgba(111, 42, 168, .8) 42%, rgba(255, 133, 96, .86) 100%);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, .44),
    0 0 70px rgba(184, 148, 240, .25),
    inset 0 1px 0 rgba(255, 255, 255, .18);
  isolation: isolate;
}
.mid-cta::before,
.mid-cta::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.mid-cta > * {
  position: relative;
  z-index: 1;
}
.mid-cta::before {
  inset: 0;
  background:
    linear-gradient(155deg, transparent 0 43%, rgba(255, 232, 216, .2) 43.5%, transparent 60%),
    radial-gradient(ellipse at 76% 92%, rgba(255, 207, 175, .36), transparent 45%);
  opacity: .86;
}
.mid-cta::after {
  right: -42px;
  bottom: -58px;
  width: 58%;
  height: 150px;
  border: 1px solid rgba(255, 213, 199, .22);
  border-color: rgba(255, 213, 199, .22) transparent transparent transparent;
  border-radius: 50%;
  transform: rotate(-7deg);
  box-shadow:
    -120px -12px 0 -1px rgba(255, 213, 199, .1),
    -80px -34px 0 -1px rgba(184, 148, 240, .12);
}
.mid-cta-logo {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 213, 199, .48);
  background: radial-gradient(circle at 50% 44%, rgba(255, 198, 170, .22), rgba(12, 7, 45, .72) 62%);
  box-shadow:
    0 0 34px rgba(255, 188, 158, .22),
    inset 0 0 22px rgba(184, 148, 240, .18);
}
.mid-cta-logo img {
  width: 48px;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 18px rgba(255, 213, 199, .38));
}
.mid-cta-copy h2 {
  margin: 0;
  max-width: none;
  font-size: 30px;
  line-height: 1.12;
  letter-spacing: -.03em;
}
.mid-cta-copy p {
  margin: 12px 0 0;
  color: rgba(255, 250, 247, .74);
  font-size: 16px;
}
.mid-cta-action {
  display: grid;
  justify-items: center;
  gap: 14px;
  min-width: 300px;
}
.mid-cta-action .btn {
  min-width: 286px;
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, .42);
}
.mid-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255, 250, 247, .78);
  font-size: 13px;
  white-space: nowrap;
}
.mid-avatars {
  display: flex;
  padding-left: 8px;
}
.mid-avatars .avatar {
  width: 28px;
  height: 28px;
  margin-left: -8px;
  border-color: rgba(45, 19, 84, .88);
}

.cta { position: relative; overflow: hidden; border-radius: 34px; padding: 42px; background: radial-gradient(circle at 78% 42%, rgba(242,193,176,.42), transparent 24%), radial-gradient(circle at 44% 100%, rgba(184,148,240,.36), transparent 38%), linear-gradient(135deg, rgba(255,255,255,.1), rgba(255,255,255,.035)); border: 1px solid rgba(255,255,255,.16); display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 30px; box-shadow: var(--shadow); }
.cta::after { content: ""; position: absolute; inset: auto -120px -130px auto; width: 520px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(255,194,172,.28), transparent 62%); transform: rotate(-12deg); }
.cta h2 { max-width: 720px; }
.cta p { color: var(--muted); margin: 16px 0 0; }
body.modal-open { overflow: hidden; }
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
}
.video-modal[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.video-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(184, 148, 240, .18), transparent 34%),
    rgba(1, 5, 20, .78);
  backdrop-filter: blur(16px);
}
.video-dialog {
  position: relative;
  width: min(980px, 100%);
  border: 1px solid rgba(221, 196, 255, .26);
  border-radius: 26px;
  padding: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.04));
  box-shadow:
    0 34px 110px rgba(0, 0, 0, .62),
    0 0 72px rgba(184, 148, 240, .24);
}
.video-player {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  background: #000;
}
.video-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, rgba(160, 113, 241, .96), rgba(255, 192, 166, .9));
  box-shadow: 0 14px 36px rgba(0, 0, 0, .38);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
footer { padding: 44px 0 58px; color: rgba(255,255,255,.55); border-top: 1px solid rgba(255,255,255,.08); margin-top: 80px; }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; align-items: center; }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .visual { min-height: auto; }
  .hero-image { width: min(100%, 560px); }
  .feature-strip, .program-grid, .steps, .testimonials { grid-template-columns: 1fr 1fr; }
  .compare { grid-template-columns: 1fr; }
  .vs { width: 100%; height: 58px; }
  .mid-cta { grid-template-columns: auto minmax(0, 1fr); padding: 28px; }
  .mid-cta-action { grid-column: 1 / -1; justify-items: start; min-width: 0; }
  .cta { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  .brand-logo {
    height: 44px;
  }

  .brand-logo-footer {
    height: 38px;
  }

  .nav-inner { min-height: 74px; }
  .nav .btn { display: none; }
  .hero { padding-top: 44px; }
  .visual { min-height: auto; }
  .hero-image { width: min(100%, 430px); }
            .feature-strip, .program-grid, .steps, .testimonials { grid-template-columns: 1fr; }
  .feature { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .feature:last-child { border-bottom: 0; }
  .mid-cta-section { padding: 28px 0 42px; }
  .mid-cta {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 18px;
    padding: 28px;
    border-radius: 24px;
  }
  .mid-cta-logo {
    width: 78px;
    height: 78px;
  }
  .mid-cta-logo img {
    width: 40px;
  }
  .mid-cta-copy h2 {
    font-size: 28px;
  }
  .mid-cta-action {
    width: 100%;
    justify-items: stretch;
  }
  .mid-cta-action .btn {
    width: 100%;
    min-width: 0;
  }
  .mid-social-proof {
    justify-content: flex-start;
    white-space: normal;
  }
  .video-modal {
    padding: 16px;
  }
  .video-dialog {
    padding: 8px;
    border-radius: 18px;
  }
  .video-player {
    border-radius: 12px;
  }
  .video-close {
    top: 10px;
    right: 10px;
  }
  .hero-actions { align-items: stretch; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
