:root {
  --bg: #15121c;
  --bg-2: #1f1a2b;
  --bg-3: #0d0b12;
  --card: rgba(255, 255, 255, 0.055);
  --card-strong: rgba(255, 255, 255, 0.085);
  --white: #ffffff;
  --ink: #0f0d16;
  --text: #ffffff;
  --muted: #d8d2e7;
  --muted-2: #b9b0ce;
  --muted-3: #958ba9;

  --purple: #7c3aed;
  --purple-2: #a855f7;
  --purple-3: #c084fc;
  --pink: #ec4899;
  --green: #22c55e;
  --green-2: #86efac;
  --red: #ef4444;
  --red-2: #fca5a5;

  --border: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(255, 255, 255, 0.22);

  --shadow: 0 35px 110px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 22px 70px rgba(0, 0, 0, 0.28);
  --glow: 0 0 42px rgba(168, 85, 247, 0.42);

  --container: 1160px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background:
    radial-gradient(circle at 50% -8%, rgba(168, 85, 247, 0.22), transparent 34%),
    radial-gradient(circle at 8% 16%, rgba(124, 58, 237, 0.24), transparent 26%),
    radial-gradient(circle at 94% 12%, rgba(236, 72, 153, 0.18), transparent 28%),
    linear-gradient(180deg, var(--bg), var(--bg-3));
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

body.thank-you-active {
  overflow-x: hidden;
  overflow-y: auto;
}

body.thank-you-active .promo-bar,
body.thank-you-active .site-header,
body.thank-you-active .mobile-sticky {
  display: none !important;
}

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

button,
input,
select {
  font-family: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  width: min(880px, calc(100% - 32px));
}

.page-orb {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.38;
  pointer-events: none;
  z-index: -1;
}

.orb-left {
  left: -160px;
  top: 30%;
  background: var(--purple);
}

.orb-right {
  right: -180px;
  top: 10%;
  background: var(--pink);
}

/* PROMO BAR */

.promo-bar {
  position: relative;
  z-index: 210;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #f3ecff;
  background: linear-gradient(135deg, #6d28d9, #a855f7 58%, #c084fc);
  letter-spacing: 0.005em;
}

.promo-bar b {
  font-weight: 800;
  color: #fff;
}

.promo-dot {
  flex: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  animation: promoPulse 1.8s ease-out infinite;
}

@keyframes promoPulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* GUARANTEE */

.guarantee-box {
  display: flex;
  align-items: center;
  gap: 18px;
  text-align: left;
  max-width: 820px;
  margin: 28px auto 0;
  padding: 22px 26px;
  border-radius: 22px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(134, 239, 172, 0.26);
}

.guarantee-icon {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  box-shadow: 0 0 28px rgba(34, 197, 94, 0.4);
}

.guarantee-copy b {
  display: block;
  color: #fff;
  font-size: 17px;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.guarantee-copy span {
  color: var(--muted);
  font-weight: 400;
}

.pkg-scarcity {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 10px 14px;
  border-radius: 13px;
  background: rgba(236, 72, 153, 0.12);
  border: 1px solid rgba(236, 72, 153, 0.3);
  color: #ffd9ec;
  font-size: 13px;
  font-weight: 700;
}

.pkg-scarcity .promo-dot {
  background: var(--pink);
}

.cta-reassure {
  margin-top: 16px;
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 600;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(17, 14, 24, 0.72);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
  transition: 0.3s var(--ease);
}

.site-header.scrolled {
  background: rgba(13, 11, 18, 0.92);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.025em;
  font-size: 15px;
}

.site-logo-img {
  height: 38px;
  width: auto;
  display: block;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  color: white;
  box-shadow: 0 0 28px rgba(168, 85, 247, 0.45);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted-2);
  font-size: 13.5px;
  font-weight: 600;
}

.desktop-nav a {
  transition: 0.25s ease;
}

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

/* BUTTONS */

.btn {
  border: 0;
  outline: 0;
  border-radius: 999px;
  min-height: 50px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease);
  white-space: nowrap;
}

.btn-small {
  min-height: 38px;
  padding: 0 18px;
  font-size: 13px;
}

.btn-primary {
  color: white;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent),
    linear-gradient(135deg, #6d28d9, #a855f7 58%, #c084fc);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 18px 46px rgba(124, 58, 237, 0.48);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 26px 66px rgba(168, 85, 247, 0.58);
}

.btn-secondary {
  color: white;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid var(--border-strong);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(192, 132, 252, 0.5);
}

.full {
  width: 100%;
}

/* TYPOGRAPHY / SECTIONS */

.section {
  padding: 118px 0;
}

.section-center {
  text-align: center;
}

.section-center h2,
.hero-title,
.thank-you-page h1 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(36px, 5vw, 66px);
  line-height: 1.05;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.section-lead,
.hero-subtitle {
  max-width: 760px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
  font-weight: 400;
}

.section-lead strong {
  color: #ffffff;
  font-weight: 850;
}

.eyebrow,
.section-kicker,
.modal-pill,
.thank-you-pill,
.plan-label,
.mini-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #c9b8ff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--purple-3);
  box-shadow: 0 0 18px var(--purple-3);
}

.center-kicker {
  margin-bottom: 18px;
}

.white-tag {
  display: inline;
  background: #ffffff;
  color: #111018;
  padding: 0 12px 6px;
  border-radius: 11px;
  line-height: 1.18;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  box-shadow: 0 14px 34px rgba(255, 255, 255, 0.12);
}

.small-tag {
  padding: 0 9px 4px;
  border-radius: 9px;
}

/* HERO */

.hero {
  position: relative;
  padding: 96px 0 86px;
  overflow: hidden;
}

.hero-inner {
  position: relative;
}

.hero-title {
  margin-top: 20px;
  background: linear-gradient(170deg, #ffffff 40%, rgba(255,255,255,0.72) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title .white-tag {
  -webkit-text-fill-color: #111018;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.micro-note {
  color: var(--muted-2);
  font-size: 13px;
  margin-top: 16px;
  font-weight: 600;
}

.hero-stage {
  position: relative;
  width: min(760px, 100%);
  margin: 50px auto 0;
}

.browser-card {
  position: relative;
  z-index: 4;
  overflow: hidden;
  border-radius: 28px;
}

.premium-card,
.glass-card,
.sample-panel,
.learning-panel,
.old-new-panel,
.final-cta-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.premium-card::before,
.glass-card::before,
.pricing-card::before,
.sample-panel::before,
.learning-panel::before,
.old-new-panel::before,
.final-cta-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 0%, rgba(168, 85, 247, 0.28), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 28%, rgba(168, 85, 247, 0.16));
  opacity: 0.55;
  mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  padding: 1px;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.browser-top {
  height: 54px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.045);
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--muted-2);
}

.browser-dots i:nth-child(1) { background: #ef4444; }
.browser-dots i:nth-child(2) { background: #f59e0b; }
.browser-dots i:nth-child(3) { background: #22c55e; }

.browser-url {
  flex: 1;
  color: var(--muted);
  font-size: 13px;
  background: rgba(255, 255, 255, 0.07);
  padding: 7px 12px;
  border-radius: 999px;
}

.browser-badge {
  color: white;
  font-size: 11px;
  font-weight: 950;
  background: var(--purple);
  padding: 6px 10px;
  border-radius: 999px;
}

.vsl-card,
.thank-video {
  position: relative;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  cursor: pointer;
  background:
    radial-gradient(circle at 50% 0%, rgba(168, 85, 247, 0.36), transparent 42%),
    linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(236, 72, 153, 0.1)),
    #15121c;
}

.yt-thumb-overlay {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.22);
}

.yt-thumb-play {
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.93);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  pointer-events: none;
  flex-shrink: 0;
}

.yt-thumb-play::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 13px 0 13px 24px;
  border-color: transparent transparent transparent #0f0d16;
  margin-left: 5px;
}

.js-youtube-video:hover .yt-thumb-play {
  transform: scale(1.1);
  box-shadow: 0 6px 48px rgba(0, 0, 0, 0.65);
}

.vsl-card iframe,
.thank-video iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.vsl-thumb {
  width: min(520px, 86%);
  display: grid;
  grid-template-columns: 78px 1fr 66px;
  align-items: center;
  gap: 18px;
  text-align: left;
}

.mentor-avatar {
  width: 78px;
  height: 78px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  color: white;
  font-size: 34px;
  font-weight: 950;
  box-shadow: var(--glow);
}

.vsl-copy small {
  color: var(--purple-3);
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 950;
  letter-spacing: 0.13em;
}

.vsl-copy strong {
  display: block;
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -0.055em;
  margin-top: 6px;
}

.play-btn {
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: white;
  color: var(--purple);
  font-size: 22px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.35);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 16px;
}

.hero-meta div {
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
}

.hero-meta b {
  display: block;
  color: white;
  letter-spacing: -0.035em;
  font-size: 18px;
}

.hero-meta span {
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 700;
}

.floating-chip {
  position: absolute;
  z-index: 6;
  text-align: left;
  background: rgba(23, 18, 33, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.floating-chip small {
  color: var(--purple-3);
  display: block;
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.floating-chip b {
  display: block;
  margin-top: 4px;
  max-width: 200px;
  font-size: 15px;
  line-height: 1.22;
}

.chip-1 { top: 44px; left: -92px; }
.chip-2 { right: -88px; top: 210px; }
.chip-3 { left: 44px; bottom: -28px; }

/* MARQUEE */

.tool-marquee,
.premium-marquee {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.035);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.marquee-track {
  width: max-content;
  display: flex;
  gap: 14px;
  padding: 18px 0;
  animation: marquee 36s linear infinite;
}

.premium-marquee.reverse .marquee-track {
  animation-direction: reverse;
  animation-duration: 42s;
}

.tool-marquee:hover .marquee-track,
.premium-marquee:hover .marquee-track {
  animation-duration: 70s;
}

.marquee-track span {
  color: #f4efff;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  padding: 9px 15px;
  font-size: 13px;
  font-weight: 850;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* CARDS */

.problem-grid,
.persona-grid,
.method-grid,
.program-grid,
.sample-grid,
.compare-grid,
.packages-grid,
.old-new-grid {
  display: grid;
  gap: 18px;
  margin-top: 42px;
}

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

.persona-grid,
.method-grid,
.sample-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

.compare-grid,
.packages-grid,
.old-new-grid {
  grid-template-columns: repeat(2, 1fr);
}

.glass-card,
.pricing-card,
.result-card,
.compare-card {
  position: relative;
  border-radius: 24px;
  padding: 30px;
  text-align: left;
  transition:
    transform 0.42s var(--ease),
    border-color 0.42s var(--ease),
    box-shadow 0.42s var(--ease),
    background 0.42s var(--ease);
}

.glass-card:hover,
.pricing-card:hover,
.result-card:hover,
.compare-card:hover {
  transform: translateY(-6px);
  border-color: rgba(192, 132, 252, 0.52);
  box-shadow:
    var(--shadow-soft),
    0 0 54px rgba(168, 85, 247, 0.18);
}

.featured-card {
  background:
    radial-gradient(circle at 50% 0%, rgba(168, 85, 247, 0.2), transparent 38%),
    rgba(255, 255, 255, 0.06);
  border-color: rgba(168, 85, 247, 0.4);
}

.problem-card span,
.method-card span,
.card-index {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  box-shadow: 0 0 28px rgba(168, 85, 247, 0.4);
  color: white;
  font-weight: 950;
  margin: 0 auto 18px;
}

.problem-card,
.persona-card,
.method-card {
  text-align: center;
}

.glass-card h3,
.pricing-card h3,
.result-card h3,
.compare-card h3 {
  color: white;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin-bottom: 13px;
}

.glass-card p,
.glass-card span,
.result-card p,
.compare-card li,
.pricing-card li {
  color: var(--muted);
  font-weight: 550;
  line-height: 1.7;
}

/* MENTOR BENTO */

.mentor-bento {
  margin-top: 42px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  grid-template-areas:
    "profile wide"
    "profile proof1"
    "profile proof2";
  gap: 18px;
}

.mentor-profile {
  grid-area: profile;
  text-align: center;
}

.mentor-profile .mentor-avatar {
  margin: 0 auto 18px;
}

.mentor-wide {
  grid-area: wide;
}

.proof-mini:nth-child(3) {
  grid-area: proof1;
}

.proof-mini:nth-child(4) {
  grid-area: proof2;
}

.mentor-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.mentor-tags span {
  color: #f1eaff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 850;
}

/* STORY */

.story-wrap {
  display: grid;
  gap: 34px;
}

.quote-card {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.quote-card p {
  max-width: 720px;
  margin: 18px auto 0;
}

.story-copy {
  text-align: center;
}

.story-copy .btn {
  margin-top: 28px;
}

/* SAMPLE / LEARNING / FINAL */

.sample-panel,
.learning-panel,
.old-new-panel,
.final-cta-card {
  position: relative;
  border-radius: 34px;
  padding: 54px;
  text-align: center;
}

.sample-grid .glass-card {
  text-align: center;
}

.sample-grid b {
  display: block;
  font-size: 19px;
  color: white;
  margin-bottom: 8px;
}

.compare-card,
.pricing-card,
.result-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  border-radius: 26px;
  padding: 30px;
}

.compare-card ul,
.pricing-card ul,
.month-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.pricing-card .btn {
  margin-top: 28px;
}

.compare-card li,
.pricing-card li,
.month-card li {
  position: relative;
  padding-left: 28px;
}

.compare-card li::before,
.pricing-card li::before,
.month-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green-2);
  font-weight: 950;
  text-shadow: 0 0 18px rgba(34, 197, 94, 0.5);
}

.old-way li::before {
  content: "×";
  color: var(--red-2);
  text-shadow: 0 0 18px rgba(239, 68, 68, 0.45);
}

.month-badge {
  display: inline-flex;
  color: #efe8ff;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.44), rgba(168, 85, 247, 0.2));
  border: 1px solid rgba(192, 132, 252, 0.34);
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 18px;
}

.section-cta {
  margin-top: 36px;
}

.learning-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.learning-step {
  text-align: left;
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--border);
}

.learning-step span {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  display: grid;
  place-items: center;
  font-weight: 950;
}

.learning-step h3 {
  letter-spacing: -0.04em;
}

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

/* SLIDER */

.slider-wrap {
  position: relative;
  margin-top: 42px;
}

.snap-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 380px);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px 4px 18px;
  scrollbar-width: none;
}

.snap-slider::-webkit-scrollbar {
  display: none;
}

.result-card {
  scroll-snap-align: center;
  min-height: 280px;
}

.result-visual {
  height: 110px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  color: white;
  font-size: 34px;
  font-weight: 950;
  letter-spacing: -0.06em;
  background:
    radial-gradient(circle at 50% 0%, rgba(34, 197, 94, 0.28), transparent 34%),
    linear-gradient(135deg, rgba(124, 58, 237, 0.45), rgba(34, 197, 94, 0.24));
  margin-bottom: 20px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  background: rgba(20, 16, 30, 0.86);
  color: white;
  font-size: 30px;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.slider-prev {
  left: -18px;
}

.slider-next {
  right: -18px;
}

/* PRICING */

.pricing-card {
  position: relative;
}

.pricing-card.popular {
  border-color: rgba(192, 132, 252, 0.58);
  box-shadow:
    var(--shadow-soft),
    0 0 70px rgba(168, 85, 247, 0.22);
  background:
    radial-gradient(circle at 50% 0%, rgba(168, 85, 247, 0.26), transparent 38%),
    rgba(255, 255, 255, 0.07);
}

.package-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.price {
  text-align: right;
}

.price b {
  display: block;
  font-size: 36px;
  letter-spacing: -0.075em;
  line-height: 1;
}

.price span {
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 700;
}

.save-box {
  color: #d9ffe7;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(134, 239, 172, 0.28);
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 18px;
  font-size: 14px;
}

.featured-badge {
  position: absolute;
  right: 24px;
  top: -15px;
  background: #ffffff;
  color: #111018;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 950;
  box-shadow: 0 16px 38px rgba(255, 255, 255, 0.13);
}

/* OLD NEW */

.old-new-grid {
  margin: 36px auto 34px;
  max-width: 820px;
}

.old-list,
.new-list {
  border-radius: 22px;
  padding: 24px;
  text-align: left;
}

.old-list {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(252, 165, 165, 0.22);
}

.new-list {
  background: rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(134, 239, 172, 0.24);
}

.old-list h3,
.new-list h3 {
  margin-bottom: 12px;
}

.old-list p {
  color: #fecaca;
  font-weight: 750;
  margin-top: 8px;
}

.new-list p {
  color: #dcfce7;
  font-weight: 750;
  margin-top: 8px;
}

/* FAQ */

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 36px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.faq-item:hover,
.faq-item.active {
  border-color: rgba(192, 132, 252, 0.55);
  box-shadow: 0 0 36px rgba(168, 85, 247, 0.14);
}

.faq-question {
  width: 100%;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 22px;
  background: transparent;
  color: white;
  border: 0;
  text-align: left;
  font-weight: 850;
  font-size: 15px;
}

.faq-question b {
  font-size: 24px;
  transition: transform 0.3s var(--ease);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.42s var(--ease), opacity 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
  color: #ffffff;
  padding: 0 22px;
  font-weight: 500;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  opacity: 1;
  padding: 0 0 22px;
}

.faq-item.active .faq-question b {
  transform: rotate(45deg);
}

/* THANK YOU */

.thank-you-page {
  display: none;
  min-height: 100vh;
  padding: 100px 0;
  text-align: center;
}

.thank-you-page.active {
  display: block;
}

.thank-you-shell {
  max-width: 880px;
}

.thank-you-page p {
  color: var(--muted);
  font-size: 17px;
  margin: 20px auto 34px;
  max-width: 700px;
}

.thank-video {
  border: 1px solid var(--border-strong);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.video-placeholder {
  display: grid;
  place-items: center;
  gap: 10px;
}

.video-placeholder strong {
  font-size: 24px;
  letter-spacing: -0.05em;
}

.video-placeholder span {
  color: var(--muted);
}

.next-steps {
  margin: 38px 0;
}

.next-steps h2 {
  font-size: 32px;
  letter-spacing: -0.055em;
  margin-bottom: 18px;
}

.next-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.next-grid div {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
}

.next-grid b {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--purple);
  margin: 0 auto 10px;
}

.next-grid span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.thank-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* FOOTER */

.footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  background: rgba(0, 0, 0, 0.18);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
}

.footer-cta {
  border: 0;
  color: white;
  background: transparent;
  font-weight: 900;
}

/* MODAL */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
  padding: 18px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: relative;
  width: min(610px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  background: #f8f5ff;
  color: #14111d;
  border-radius: 28px;
  padding: 36px;
  box-shadow: var(--shadow);
  transform: translateY(18px) scale(0.98);
  transition: 0.25s ease;
}

.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}

/* ── MODAL TOPBAR ── */

.modal-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.modal-steps {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.modal-step-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #e4daf8;
  color: #a090bf;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.modal-step-dot.is-active {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 0 0 5px rgba(124, 58, 237, 0.18);
}

.modal-step-dot.is-done {
  background: var(--purple-2);
  color: #fff;
}

.modal-step-line {
  width: 48px;
  height: 3px;
  background: #e4daf8;
  border-radius: 2px;
  overflow: hidden;
  margin: 0 6px;
}

.modal-step-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--purple), var(--purple-2));
  border-radius: inherit;
  transition: width 0.4s ease;
}

.modal-step-label {
  font-size: 12px;
  font-weight: 700;
  color: #9b8bbf;
  flex: 1;
}

.modal-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #ede8fa;
  color: #6b5b89;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.modal-close:hover {
  background: #d8ccf8;
  color: #3d1d8a;
}

.selected-package-box {
  background: white;
  border: 1px solid rgba(20, 17, 29, 0.08);
  border-radius: 16px;
  padding: 12px 14px;
  margin-bottom: 18px;
  color: #6b5b89;
  font-size: 14px;
}

.selected-package-box strong {
  color: #14111d;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.modal-header {
  margin-bottom: 28px;
}

.modal-pill {
  color: var(--purple);
  margin-bottom: 8px;
}

.modal-header h2 {
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.modal-header p {
  color: #6b5b89;
  margin-top: 10px;
}

.goal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.goal-option {
  min-height: 60px;
  border-radius: 16px;
  border: 1px solid rgba(20, 17, 29, 0.1);
  background: white;
  color: #14111d;
  font-weight: 850;
  text-align: left;
  padding: 12px 14px;
  transition: 0.2s ease;
}

.goal-option:hover,
.goal-option.selected {
  border-color: rgba(124, 58, 237, 0.5);
  background: #efe7ff;
  color: #4c1d95;
}

.form-group {
  display: grid;
  gap: 9px;
  margin-bottom: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.form-group label {
  color: #3d334f;
  font-size: 13px;
  font-weight: 850;
}

.optional {
  color: #7a718a;
  font-weight: 700;
}

.form-group input,
.form-group select {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(20, 17, 29, 0.12);
  border-radius: 14px;
  background: white;
  color: #14111d;
  padding: 0 18px;
  outline: 0;
  font-weight: 700;
  font-size: 15px;
}

.form-group input:focus,
.form-group select:focus {
  border-color: rgba(124, 58, 237, 0.5);
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.12);
}

@keyframes inputShake {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-6px); }
  40%       { transform: translateX(6px); }
  60%       { transform: translateX(-4px); }
  80%       { transform: translateX(4px); }
}

.input-shake {
  animation: inputShake 0.45s ease;
  border-color: var(--red) !important;
}

.form-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.form-step-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.privacy-note {
  color: #7a718a;
  font-size: 12px;
  margin-top: 13px;
}

/* ANIMATION */

.animate-hero {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.85s var(--ease) forwards;
}

.delay-1 { animation-delay: 0.05s; }
.delay-2 { animation-delay: 0.16s; }
.delay-3 { animation-delay: 0.28s; }
.delay-4 { animation-delay: 0.42s; }
.delay-5 { animation-delay: 0.56s; }

.reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

.stagger-group .reveal-item:nth-child(2) { transition-delay: 0.12s; }
.stagger-group .reveal-item:nth-child(3) { transition-delay: 0.24s; }
.stagger-group .reveal-item:nth-child(4) { transition-delay: 0.36s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE STICKY */

.mobile-sticky {
  display: none;
}

/* RESPONSIVE */

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

  .floating-chip {
    display: none;
  }

  .problem-grid,
  .program-grid,
  .learning-steps,
  .next-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .persona-grid,
  .method-grid,
  .sample-grid,
  .mentor-bento {
    grid-template-columns: 1fr;
  }

  .mentor-bento {
    grid-template-areas: none;
  }

  .mentor-profile,
  .mentor-wide,
  .proof-mini:nth-child(3),
  .proof-mini:nth-child(4) {
    grid-area: auto;
  }
}

@media (max-width: 780px) {
  .section {
    padding: 68px 0;
  }

  .hero {
    padding: 56px 0 48px;
  }

  .hero-stage {
    margin-top: 38px;
  }

  .problem-grid,
  .persona-grid,
  .method-grid,
  .program-grid,
  .sample-grid,
  .compare-grid,
  .packages-grid,
  .old-new-grid {
    margin-top: 30px;
  }

  .section-center h2,
  .hero-title,
  .thank-you-page h1 {
    font-size: clamp(36px, 10vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.062em;
  }

  .section-lead,
  .hero-subtitle {
    font-size: 16px;
  }

  .hero-actions,
  .thank-actions {
    display: grid;
  }

  .hero-meta,
  .problem-grid,
  .program-grid,
  .compare-grid,
  .packages-grid,
  .old-new-grid,
  .learning-steps,
  .next-grid {
    grid-template-columns: 1fr;
  }

  .sample-panel,
  .learning-panel,
  .old-new-panel,
  .final-cta-card {
    padding: 32px;
    border-radius: 26px;
  }

  .form-row,
  .goal-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .slider-btn {
    display: none;
  }

  .mobile-sticky {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 180;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: rgba(17, 14, 24, 0.9);
    border: 1px solid var(--border-strong);
    backdrop-filter: blur(18px);
    border-radius: 999px;
    padding: 8px;
    box-shadow: var(--shadow-soft);
  }

  .mobile-sticky.hidden {
    display: none;
  }

  .sticky-link {
    color: var(--muted);
    padding-left: 14px;
    font-size: 14px;
    font-weight: 900;
  }

  .mobile-sticky .btn {
    min-height: 42px;
    padding: 0 18px;
    width: auto;
  }
}

@media (max-width: 560px) {
  .container,
  .narrow {
    width: min(100% - 28px, var(--container));
  }

  .promo-bar {
    font-size: 11.5px;
    padding: 9px 14px;
    line-height: 1.35;
  }

  .guarantee-box {
    flex-direction: column;
    text-align: center;
    gap: 14px;
    padding: 24px 20px;
  }

  .section-center h2,
  .hero-title,
  .thank-you-page h1 {
    font-size: clamp(30px, 8.4vw, 44px);
    letter-spacing: -0.038em;
  }

  .white-tag {
    padding: 0 8px 4px;
    border-radius: 8px;
  }

  .header-inner {
    min-height: 64px;
  }

  .site-header .btn {
    display: none;
  }

  .logo span:last-child {
    font-size: 14px;
  }

  .btn {
    width: 100%;
  }

  .vsl-thumb {
    grid-template-columns: 1fr;
    text-align: center;
    place-items: center;
  }

  .vsl-copy strong {
    font-size: 18px;
  }

  .browser-url {
    display: none;
  }

  .glass-card,
  .pricing-card,
  .result-card,
  .compare-card {
    padding: 24px;
  }

  .package-header {
    display: block;
  }

  .price {
    text-align: left;
    margin-top: 18px;
  }

  .modal-overlay {
    align-items: flex-end;
    padding: 0;
  }

  .modal {
    width: 100%;
    border-radius: 24px 24px 0 0;
    padding: 28px 22px 44px;
    max-height: 90vh;
    transform: translateY(24px) scale(1);
  }

  .modal-overlay.active .modal {
    transform: translateY(0) scale(1);
  }

  .modal-topbar {
    margin-bottom: 18px;
  }

  .modal-header h2 {
    font-size: 24px;
    letter-spacing: -0.04em;
  }

  .goal-grid {
    gap: 8px;
    margin-bottom: 22px;
  }

  .goal-option {
    min-height: 50px;
    font-size: 14px;
  }

  .form-group input,
  .form-group select {
    min-height: 44px;
    font-size: 15px;
  }

  .form-actions {
    flex-direction: column;
    gap: 8px;
  }

  .selected-package-box {
    font-size: 13px;
    padding: 10px 12px;
    margin-bottom: 14px;
  }
}
