﻿:root {
  --hero-bg-start: #0D0221;
  --hero-bg-mid: #150735;
  --hero-bg-end: #1A0A3E;
  --purple-glow: rgba(139, 92, 246, 0.15);
  --trust-bg: rgba(245, 158, 11, 0.1);
  --trust-border: rgba(245, 158, 11, 0.2);
  --trust-text: #FCD34D;
  --pre-headline: #C4B5FD;
  --headline: #FFFFFF;
  --highlight: #F59E0B;
  --headline-shadow: rgba(0, 0, 0, 0.3);
  --sub-headline: #D1D5DB;
  --price-bg: rgba(245, 158, 11, 0.06);
  --price-border: rgba(245, 158, 11, 0.2);
  --price-shadow: rgba(245, 158, 11, 0.1);
  --old-price: #9CA3AF;
  --old-line: #EF4444;
  --price-label: #E5E7EB;
  --price-main: #F59E0B;
  --price-glow: rgba(245, 158, 11, 0.3);
  --savings: #86EFAC;
  --timer-label: #FCA5A5;
  --timer-box-bg: rgba(239, 68, 68, 0.1);
  --timer-box-border: rgba(239, 68, 68, 0.2);
  --timer-digits: #FFFFFF;
  --timer-sep: #EF4444;
  --bullet-text: #D1D5DB;
  --microtrust: #9CA3AF;
  --social-bg: rgba(255, 255, 255, 0.03);
  --social-border: rgba(255, 255, 255, 0.06);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: 'Hind Siliguri', 'Noto Sans Bengali', sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  background: #090518;
}

h1,
p,
ul {
  margin: 0;
}

.hero-section {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 90vh;
  padding: 80px 40px 60px;
  background: linear-gradient(
    160deg,
    var(--hero-bg-start) 0%,
    var(--hero-bg-mid) 30%,
    var(--hero-bg-end) 60%,
    var(--hero-bg-start) 100%
  );
  overflow: clip;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, var(--purple-glow) 0%, transparent 60%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.24) 0.6px, transparent 0.6px);
  background-size: 18px 18px;
  opacity: 0.03;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 1;
  width: min(100%, 960px);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-trust-bar {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid var(--trust-border);
  background: var(--trust-bg);
  color: var(--trust-text);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 24px;
  animation: trustIn 0.5s ease 0.5s both;
}

.pre-headline {
  color: var(--pre-headline);
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 500;
  letter-spacing: 0.6px;
  margin-bottom: 16px;
}

#hero-heading {
  color: var(--headline);
  font-size: clamp(32px, 5.2vw, 52px);
  font-weight: 800;
  line-height: 1.2;
  max-width: 800px;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px var(--headline-shadow);
}

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

.sub-headline {
  color: var(--sub-headline);
  font-size: clamp(16px, 2.2vw, 20px);
  font-weight: 400;
  line-height: 1.65;
  max-width: 680px;
  margin-bottom: 30px;
}

.price-block {
  width: min(100%, 520px);
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  margin-bottom: 28px;
}

.price-original {
  color: var(--old-price);
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 8px;
}

.price-original del {
  color: var(--old-price);
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 600;
  text-decoration-color: var(--old-line);
  text-decoration-thickness: 2px;
}

.price-label {
  color: var(--price-label);
  font-size: clamp(15px, 2vw, 17px);
  font-weight: 500;
  margin-bottom: 4px;
}

.price-actual strong {
  display: inline-block;
  color: var(--price-main);
  font-size: clamp(52px, 9vw, 80px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
  text-shadow: 0 4px 24px var(--price-glow);
  margin-bottom: 8px;
  animation: pricePulse 2s ease-in-out infinite;
}

.price-savings {
  color: var(--savings);
  font-size: clamp(14px, 1.9vw, 16px);
  font-weight: 600;
}

.countdown-timer {
  margin-top: 16px;
}

.timer-label {
  color: var(--timer-label);
  font-size: clamp(13px, 1.8vw, 15px);
  font-weight: 500;
  margin-bottom: 12px;
}

.timer-digits {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.timer-box {
  min-width: 80px;
  padding: 12px 20px;
  border-radius: 10px;
  border: 1px solid var(--timer-box-border);
  background: var(--timer-box-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.digit {
  color: var(--timer-digits);
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 800;
  line-height: 1.1;
}

.unit {
  color: var(--timer-label);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.4;
}

.timer-sep {
  color: var(--timer-sep);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  animation: sepBlink 1s steps(1, end) infinite;
}

.timer-fallback {
  margin-top: 10px;
  color: var(--timer-label);
  font-size: 14px;
  font-weight: 500;
}

.hero-benefits {
  width: min(100%, 560px);
  list-style: none;
  padding: 20px 22px;
  margin: 0;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.25);
}

.hero-benefits-media {
  width: min(100%, 1080px);
  margin: 0 0 32px;
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(300px, 420px);
  justify-content: center;
  align-items: center;
  gap: 28px;
}

.hero-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--bullet-text);
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.6;
}

.hero-benefits li + li {
  margin-top: 12px;
}

.hero-image-card {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  padding: 12px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
  animation: floatingCard 5.2s ease-in-out infinite;
}

.hero-image-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.icon {
  font-size: 18px;
  line-height: 1.2;
}

.benefit-number {
  color: var(--highlight);
  font-weight: 600;
}

.hero-cta {
  display: block;
  width: min(100%, 480px);
  min-width: 360px;
  margin-inline: auto;
  padding: 18px 56px;
  border-radius: 14px;
  border: 0;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  color: #FFFFFF;
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  animation: ctaPulse 2.5s ease-in-out infinite;
}

.hero-cta:hover {
  transform: scale(1.04);
  background: linear-gradient(135deg, #FBBF24 0%, #DC2626 100%);
  box-shadow: 0 12px 40px rgba(245, 158, 11, 0.5);
}

.hero-cta:active {
  transform: scale(0.97);
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
  transition-duration: 0.1s;
}

.hero-cta:focus-visible {
  outline: 3px solid #FFFFFF;
  outline-offset: 4px;
}

.cta-microtrust {
  margin-top: 14px;
  color: var(--microtrust);
  font-size: clamp(12px, 1.8vw, 14px);
  font-weight: 400;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
}

.hero-social-proof {
  width: min(100%, 940px);
  margin-top: 40px;
  padding: 24px 40px;
  border-top: 1px solid var(--social-border);
  background: var(--social-bg);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
}

.showcase-section {
  position: relative;
  z-index: 1;
  padding: 24px 20px 64px;
}

.showcase-container {
  width: min(1180px, 100%);
  margin-inline: auto;
  text-align: center;
}

.problem-solution-section {
  position: relative;
  z-index: 1;
  background: #0F0520;
  padding: 80px 40px;
}

.problem-solution-container {
  max-width: 1180px;
  margin: 0 auto;
}

.problem-solution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

#problem-solution-heading {
  font-size: clamp(24px, 3.4vw, 36px);
  font-weight: 700;
  line-height: 1.3;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 32px;
}

.problem-card,
.solution-card {
  max-width: none;
  margin: 0;
  border-radius: 12px;
  padding: 28px;
}

.problem-card {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.solution-card {
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.1);
}

.block-subtitle {
  margin-bottom: 20px;
}

.problem-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 600;
  color: #FCA5A5;
}

.solution-subtitle {
  font-size: clamp(16px, 2.1vw, 20px);
  font-weight: 700;
  color: #86EFAC;
}

.problem-list,
.solution-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.problem-list li,
.solution-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.problem-list li + li,
.solution-list li + li {
  margin-top: 16px;
}

.ps-icon {
  font-size: 18px;
  line-height: 1.2;
}

.ps-text {
  font-size: clamp(13px, 1.8vw, 15px);
  font-weight: 400;
  line-height: 1.7;
  color: #E5E7EB;
}

.pain-highlight {
  color: #FCA5A5;
  font-weight: 600;
}

.solution-highlight {
  color: #86EFAC;
  font-weight: 600;
}

.transition-text {
  margin: 40px auto;
  text-align: center;
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 600;
  color: #C4B5FD;
}

.closing-statement {
  margin-top: 32px;
  text-align: center;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.5;
  font-weight: 500;
  color: #C4B5FD;
}

.mobile-between-sections-image {
  display: none;
  overflow: visible;
  text-align: center;
}

.mobile-between-sections-image img {
  display: block;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  border-radius: 14px;
}

.mobile-between-inside-prompts-image {
  display: none;
  overflow: visible;
  text-align: center;
}

.mobile-between-inside-prompts-image img {
  display: block;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  border-radius: 14px;
}

.mobile-between-prompts-ebook-image {
  display: none;
  overflow: visible;
  text-align: center;
}

.mobile-between-prompts-ebook-image img {
  display: block;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  border-radius: 14px;
}

.mobile-insert-image {
  width: 100% !important;
  max-width: 420px !important;
  height: auto !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
}

.whats-inside-section {
  position: relative;
  z-index: 1;
  background: #0D0319;
  padding: 80px 40px;
}

.whats-inside-container {
  max-width: 1180px;
  margin: 0 auto;
}

#whats-inside-heading {
  text-align: center;
  color: #FFFFFF;
  font-size: clamp(24px, 3.4vw, 36px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
}

.whats-inside-subtitle {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
  color: #C4B5FD;
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 400;
  line-height: 1.5;
}

.summary-strip {
  margin: 0 auto 28px;
  padding: 16px 24px;
  border-radius: 12px;
  border: 1px solid rgba(139, 92, 246, 0.2);
  background: rgba(139, 92, 246, 0.1);
  color: #C4B5FD;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
}

.items-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.items-grid-last {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 720px;
  margin-inline: auto;
}

.item-card {
  position: relative;
  min-height: 250px;
  padding: 22px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.item-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.15);
}

.item-card:focus-within {
  outline: 2px solid #8B5CF6;
  outline-offset: 2px;
}

.item-card-highlight {
  border-color: rgba(245, 158, 11, 0.35);
}

.item-card-bonus {
  border-style: dashed;
}

.item-card-access {
  border-color: rgba(34, 197, 94, 0.3);
}

.card-badge {
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0 16px 0 12px;
  padding: 4px 10px;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
}

.badge-amber {
  background: #F59E0B;
}

.badge-green {
  background: #22C55E;
}

.badge-red {
  background: #EF4444;
}

.badge-bonus {
  background: linear-gradient(135deg, #8B5CF6 0%, #F59E0B 100%);
}

.card-icon {
  font-size: 40px;
  line-height: 1;
  margin-bottom: 10px;
}

.card-title {
  margin: 0 0 10px;
  color: #FFFFFF;
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 700;
  line-height: 1.3;
}

.card-desc {
  margin: 0 0 10px;
  color: #D1D5DB;
  font-size: clamp(13px, 1.5vw, 14px);
  font-weight: 400;
  line-height: 1.6;
}

.card-stat {
  margin: 0 0 8px;
  color: #F59E0B;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  line-height: 1.1;
}

.card-stat-large {
  font-size: clamp(25px, 3vw, 32px);
  font-weight: 900;
  letter-spacing: -1px;
}

.card-stat-green {
  color: #86EFAC;
  font-size: clamp(15px, 1.8vw, 16px);
  font-weight: 700;
}

.card-sub-stat {
  margin: 0 0 8px;
  color: #C4B5FD;
  font-size: 13px;
  line-height: 1.4;
}

.card-value {
  margin: 0;
  color: #9CA3AF;
  font-size: 13px;
  line-height: 1.4;
}

.card-value del {
  color: #9CA3AF;
}

.card-disclaimer {
  margin: 12px auto 0;
  color: #6B7280;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}

.value-summary-bar {
  margin: 48px auto 0;
  max-width: 600px;
  text-align: center;
  border-radius: 16px;
  border: 2px solid rgba(245, 158, 11, 0.3);
  background: linear-gradient(135deg, #1E1044 0%, #2D1B69 100%);
  padding: 32px 40px;
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.2);
}

.value-original {
  margin: 0 0 16px;
  color: #9CA3AF;
  font-size: 15px;
}

.value-original del {
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 700;
}

.value-actual {
  margin: 0 0 12px;
  color: #E5E7EB;
  font-size: clamp(16px, 2.2vw, 18px);
  font-weight: 500;
}

.value-actual strong {
  display: block;
  margin-top: 6px;
  color: #F59E0B;
  font-size: clamp(40px, 6vw, 56px);
  font-weight: 900;
  line-height: 1.1;
}

.value-savings {
  margin: 0;
  color: #86EFAC;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 600;
}

.section-cta-wrapper {
  margin-top: 32px;
  text-align: center;
}

.section-cta-btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 12px;
  padding: 16px 48px;
  color: #FFFFFF;
  background: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
  font-size: clamp(16px, 2.2vw, 20px);
  font-weight: 700;
  box-shadow: 0 6px 24px rgba(245, 158, 11, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-cta-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.45);
}

.section-cta-btn:focus-visible {
  outline: 2px solid #F59E0B;
  outline-offset: 3px;
}

.cta-microcopy {
  margin-top: 12px;
  color: #9CA3AF;
  font-size: 13px;
  font-weight: 400;
}

.prompt-library-section {
  position: relative;
  z-index: 1;
  background: #0B0218;
  padding: 80px 40px;
  overflow-x: clip;
}

.prompt-library-container {
  max-width: 1180px;
  margin: 0 auto;
}

#prompt-library-heading {
  text-align: center;
  color: #FFFFFF;
  font-size: clamp(24px, 3.4vw, 36px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
}

.prompt-library-subtitle {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px;
  color: #C4B5FD;
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.6;
}

.prompt-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 26px;
}

.prompt-stat-card {
  text-align: center;
  border-radius: 12px;
  border: 1px solid rgba(139, 92, 246, 0.2);
  background: rgba(139, 92, 246, 0.1);
  padding: 24px 16px;
}

.prompt-stat-icon {
  display: block;
  font-size: 32px;
  line-height: 1;
}

.prompt-stat-number {
  margin-top: 10px;
  color: #F59E0B;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 900;
  line-height: 1.1;
}

.prompt-stat-label {
  margin-top: 8px;
  color: #C4B5FD;
  font-size: clamp(12px, 1.4vw, 14px);
  line-height: 1.5;
}

.prompt-category-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.prompt-category-card {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  padding: 16px 20px;
  transition: all 0.2s ease;
}

.prompt-category-card:hover {
  border-color: rgba(245, 158, 11, 0.4);
  background: rgba(255, 255, 255, 0.07);
}

.prompt-category-icon {
  font-size: 30px;
  line-height: 1;
}

.prompt-category-name {
  color: #FFFFFF;
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 600;
  line-height: 1.35;
}

.prompt-category-count {
  margin-top: 4px;
  color: #F59E0B;
  font-size: clamp(12px, 1.4vw, 13px);
  line-height: 1.3;
}

.prompt-category-more {
  margin-top: 24px;
  text-align: center;
  color: #C4B5FD;
  font-size: clamp(14px, 1.6vw, 15px);
  font-weight: 500;
  font-style: italic;
}

.prompt-sample-section {
  margin-top: 40px;
}

.prompt-tabs-wrap {
  max-width: 100%;
  overflow: hidden;
}

.prompt-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 0 4px;
  scroll-snap-type: x mandatory;
}

.prompt-tabs::-webkit-scrollbar {
  display: none;
}

.prompt-tab {
  flex: 0 0 auto;
  white-space: nowrap;
  scroll-snap-align: start;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #9CA3AF;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 18px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.prompt-tab:hover {
  background: rgba(255, 255, 255, 0.08);
}

.prompt-tab.active {
  border-color: rgba(139, 92, 246, 0.5);
  background: rgba(139, 92, 246, 0.2);
  color: #FFFFFF;
  font-weight: 600;
}

.prompt-tab:focus-visible {
  outline: 2px solid #8B5CF6;
  outline-offset: 3px;
}

.prompt-tab-panels {
  margin-top: 20px;
}

.prompt-tab-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 6px;
  align-items: stretch;
}

.prompt-sample-card {
  max-width: none;
  margin: 0;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  padding: 18px 16px;
}

.prompt-sample-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.prompt-sample-badge {
  display: inline-block;
  border-radius: 6px;
  border: 1px solid rgba(139, 92, 246, 0.35);
  background: rgba(139, 92, 246, 0.2);
  color: #C4B5FD;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
}

.prompt-sample-tag {
  color: #9CA3AF;
  font-size: 12px;
  font-weight: 500;
}

.prompt-sample-title {
  margin: 10px 0;
  color: #FFFFFF;
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 700;
  line-height: 1.35;
}

.prompt-code-shell {
  position: relative;
}

.prompt-code {
  margin: 0;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.3);
  color: #D1FAE5;
  font-family: 'Fira Code', 'Source Code Pro', 'Courier New', monospace;
  font-size: 13px;
  line-height: 1.65;
  padding: 14px 14px;
  white-space: pre-wrap;
  max-height: 132px;
  overflow: hidden;
}

.prompt-code code {
  font-family: inherit;
  white-space: inherit;
}

.prompt-code-fade {
  position: absolute;
  left: 1px;
  right: 1px;
  bottom: 1px;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 72%);
  padding: 34px 14px 9px;
  pointer-events: none;
}

.prompt-code-fade span {
  color: #F59E0B;
  font-size: 12px;
  font-weight: 500;
}

.prompt-meta-tags {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.prompt-meta-tag {
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: #9CA3AF;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 8px;
}

.prompt-meta-ai {
  color: #86EFAC;
}

.prompt-meta-preview {
  color: #FCA5A5;
  font-style: italic;
}

.prompt-library-note {
  margin: 20px auto 0;
  max-width: 780px;
  border-radius: 10px;
  border: 1px solid rgba(245, 158, 11, 0.25);
  background: rgba(245, 158, 11, 0.08);
  padding: 14px 18px;
  text-align: center;
  color: #F59E0B;
  font-size: clamp(15px, 1.8vw, 16px);
  font-weight: 500;
  line-height: 1.5;
}

.prompt-teaser-box {
  margin: 40px auto 0;
  max-width: 700px;
  border-radius: 12px;
  border: 1px dashed rgba(139, 92, 246, 0.3);
  background: rgba(139, 92, 246, 0.08);
  padding: 28px 32px;
}

.prompt-teaser-box h3 {
  margin: 0 0 14px;
  color: #C4B5FD;
  font-size: 18px;
  font-weight: 700;
}

.prompt-teaser-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.prompt-teaser-box li {
  color: #D1D5DB;
  font-size: clamp(14px, 1.7vw, 15px);
  line-height: 1.6;
}

.prompt-teaser-box li + li {
  margin-top: 12px;
}

.prompt-library-tabs-ready .prompt-tab-panel {
  display: none;
}

.prompt-library-tabs-ready .prompt-tab-panel.active {
  display: grid;
}

.who-for-section {
  position: relative;
  z-index: 1;
  background: #0A0115;
  padding: 80px 40px;
  overflow-x: clip;
}

.who-for-container {
  max-width: 1080px;
  margin: 0 auto;
}

#who-its-for-heading {
  text-align: center;
  color: #FFFFFF;
  font-size: clamp(24px, 3.4vw, 36px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
}

.who-for-subtitle {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
  color: #C4B5FD;
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 400;
  line-height: 1.6;
}

.persona-carousel {
  position: relative;
  --persona-per-view: 3;
  --persona-gap: 16px;
  margin-top: 6px;
}

.persona-viewport {
  overflow: hidden;
  padding: 2px;
}

.persona-track {
  display: flex;
  align-items: stretch;
  gap: var(--persona-gap);
  transition: transform 0.42s ease;
  will-change: transform;
}

.persona-track .persona-card {
  flex: 0 0 calc((100% - (var(--persona-per-view) - 1) * var(--persona-gap)) / var(--persona-per-view));
  margin: 0;
}

.persona-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 7, 40, 0.92);
  color: #FFFFFF;
  font-size: 32px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.persona-nav.prev {
  left: 8px;
}

.persona-nav.next {
  right: 8px;
}

.persona-nav:hover {
  background: rgba(45, 24, 110, 0.95);
}

.persona-nav:focus-visible {
  outline: 2px solid #F59E0B;
  outline-offset: 3px;
}

.persona-dots {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.persona-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.persona-dot.active {
  background: #F59E0B;
  transform: scale(1.25);
}

.persona-card {
  position: relative;
  overflow: hidden;
  min-height: auto;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  padding: 22px 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.persona-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 14%;
  width: 72%;
  height: 2px;
  background: linear-gradient(90deg, rgba(245, 158, 11, 0), rgba(245, 158, 11, 0.5), rgba(139, 92, 246, 0));
  pointer-events: none;
}

.persona-card:hover {
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(139, 92, 246, 0.12);
}

.persona-icon {
  font-size: clamp(42px, 3.6vw, 52px);
  line-height: 1;
  margin-bottom: 8px;
}

.persona-title {
  margin: 0;
  color: #FFFFFF;
  font-size: clamp(16px, 1.9vw, 20px);
  font-weight: 700;
  line-height: 1.25;
}

.persona-subtitle {
  margin-top: 6px;
  color: #9CA3AF;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
}

.persona-block {
  margin-top: 12px;
  text-align: left;
  border-radius: 8px;
  padding: 10px 12px;
}

.persona-label {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}

.persona-text {
  margin-top: 5px;
  color: #D1D5DB;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
}

.persona-pain {
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.12);
}

.pain-label {
  color: #FCA5A5;
}

.persona-arrow {
  margin: 9px 0;
  font-size: 20px;
  line-height: 1;
  color: #C4B5FD;
}

.persona-outcome {
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.12);
}

.outcome-label {
  color: #86EFAC;
}

.persona-items {
  background: rgba(139, 92, 246, 0.06);
  border: 1px solid rgba(139, 92, 246, 0.12);
}

.items-label {
  color: #C4B5FD;
}

.persona-items-list {
  margin: 6px 0 0;
  padding-left: 16px;
}

.persona-items-list li {
  color: #D1D5DB;
  font-size: 12.5px;
  line-height: 1.5;
}

.persona-items-list li::marker {
  color: #F59E0B;
}

.persona-relevance {
  margin-top: 12px;
  color: #F59E0B;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
}

.who-usecase-box {
  max-width: 760px;
  margin: 56px auto 0;
  border-radius: 16px;
  border: 1px solid rgba(34, 197, 94, 0.15);
  background: rgba(34, 197, 94, 0.05);
  padding: 36px 40px;
}

.who-usecase-box h3 {
  margin: 0 0 24px;
  color: #FFFFFF;
  font-size: clamp(17px, 2.1vw, 22px);
  font-weight: 700;
  line-height: 1.5;
}

.who-usecase-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.who-usecase-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #E5E7EB;
  font-size: clamp(14px, 1.8vw, 16px);
  font-style: italic;
  line-height: 1.7;
}

.who-usecase-list li + li {
  margin-top: 14px;
}

.who-usecase-closing {
  margin-top: 24px;
  text-align: center;
  color: #86EFAC;
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 600;
  line-height: 1.6;
}

.who-levels {
  margin-top: 56px;
}

.who-levels-heading {
  margin: 0 0 28px;
  text-align: center;
  color: #FFFFFF;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  line-height: 1.5;
}

.who-levels-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.who-level-card {
  position: relative;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  padding: 24px 20px;
  text-align: center;
}

.who-level-card.has-arrow::after {
  content: '→→';
  position: absolute;
  right: -26px;
  top: 50%;
  transform: translateY(-50%);
  color: #C4B5FD;
  font-size: 24px;
  line-height: 1;
}

.who-level-icon {
  font-size: 48px;
  line-height: 1;
}

.who-level-name {
  margin-top: 10px;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 700;
}

.who-level-bn {
  margin-top: 4px;
  color: #9CA3AF;
  font-size: 13px;
  font-weight: 400;
}

.who-level-fit {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
}

.perfect-fit {
  color: #86EFAC;
}

.useful-fit {
  color: #C4B5FD;
}

.who-level-text {
  margin-top: 10px;
  color: #D1D5DB;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
}

.who-level-progress {
  width: min(100%, 860px);
  height: 6px;
  margin: 24px auto 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.who-level-progress-fill {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #86EFAC 0%, #F59E0B 50%, #8B5CF6 100%);
}

.who-level-progress-label {
  margin-top: 10px;
  text-align: center;
  color: #9CA3AF;
  font-size: 12px;
  font-weight: 500;
}

.who-negative-box {
  max-width: 700px;
  margin: 48px auto 0;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  padding: 28px 32px;
}

#who-negative-heading {
  margin: 0 0 20px;
  color: #FCA5A5;
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 600;
  line-height: 1.5;
}

.who-negative-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.who-negative-box li {
  color: #9CA3AF;
  font-size: clamp(14px, 1.8vw, 15px);
  font-weight: 400;
  line-height: 1.7;
}

.who-negative-box li + li {
  margin-top: 14px;
}

.who-negative-closing {
  margin-top: 20px;
  text-align: center;
  color: #86EFAC;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
}

.reviews-section {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #0B0218 0%, #0C0320 100%);
  padding: 80px 40px;
}

.reviews-container {
  max-width: 980px;
  margin: 0 auto;
}

#reviews-heading {
  text-align: center;
  color: #FFFFFF;
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
}

.reviews-subtitle {
  margin: 0 auto 28px;
  max-width: 640px;
  text-align: center;
  color: #C4B5FD;
  font-size: clamp(14px, 1.9vw, 17px);
  line-height: 1.6;
}

.reviews-carousel {
  position: relative;
  --reviews-per-view: 3;
  --reviews-gap: 16px;
}

.reviews-viewport {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  padding: 10px;
}

.reviews-track {
  display: flex;
  gap: var(--reviews-gap);
  transition: transform 0.4s ease;
  will-change: transform;
}

.reviews-slide {
  flex: 0 0 calc((100% - (var(--reviews-per-view) - 1) * var(--reviews-gap)) / var(--reviews-per-view));
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(12, 7, 34, 0.85);
  display: grid;
  place-items: center;
  padding: 6px;
}

.reviews-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  max-height: min(72vh, 640px);
}

.reviews-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 0;
  background: rgba(15, 7, 40, 0.9);
  color: #FFFFFF;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}

.reviews-nav.prev {
  left: -16px;
}

.reviews-nav.next {
  right: -16px;
}

.reviews-nav:focus-visible {
  outline: 2px solid #F59E0B;
  outline-offset: 3px;
}

.reviews-dots {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.review-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.review-dot.active {
  background: #F59E0B;
  transform: scale(1.2);
}

.bonus-section {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #0A0115 0%, #0B0218 100%);
  padding: 80px 40px;
}

.bonus-container {
  max-width: 1100px;
  margin: 0 auto;
}

#bonus-heading {
  text-align: center;
  color: #FFFFFF;
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 28px;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.bonus-card {
  margin: 0;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
  cursor: zoom-in;
}

.bonus-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.bonus-card:focus-visible {
  outline: 2px solid #F59E0B;
  outline-offset: 3px;
}

.final-price-section {
  position: relative;
  z-index: 1;
  background: #0A0115;
  padding: 88px 40px 96px;
}

.final-price-container {
  max-width: 980px;
  margin: 0 auto;
}

#final-price-heading {
  text-align: center;
  color: #FFFFFF;
  font-size: clamp(26px, 4.2vw, 40px);
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 12px;
}

.final-section-sub {
  max-width: 600px;
  margin: 0 auto 40px;
  text-align: center;
  color: #C4B5FD;
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.6;
}

.final-value-recap {
  max-width: 800px;
  margin: 0 auto 36px;
  border-radius: 14px;
  border: 1px solid rgba(139, 92, 246, 0.2);
  background: rgba(139, 92, 246, 0.08);
  padding: 20px 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
}

.recap-item {
  position: relative;
  color: #C4B5FD;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.recap-item:not(:last-child)::after {
  content: '•';
  margin-left: 10px;
  color: rgba(196, 181, 253, 0.7);
}

.final-price-card {
  position: relative;
  margin: 0 auto;
  max-width: 640px;
  border-radius: 24px;
  border: 2px solid rgba(245, 158, 11, 0.3);
  background: linear-gradient(160deg, #1A0A3E 0%, #0D0221 50%, #1A0A3E 100%);
  padding: 48px 56px 40px;
  box-shadow: 0 16px 64px rgba(245, 158, 11, 0.12), 0 0 0 1px rgba(139, 92, 246, 0.1);
  text-align: center;
}

.final-price-card .offer-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(135deg, #EF4444 0%, #F59E0B 100%);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 28px;
  box-shadow: 0 4px 16px rgba(239, 68, 68, 0.3);
  z-index: 2;
  animation: offerBadgePulse 3s ease-in-out infinite;
}

.final-bundle-name {
  margin: 20px 0 6px;
  color: #FFFFFF;
  font-size: clamp(20px, 2.8vw, 26px);
  font-weight: 700;
  line-height: 1.3;
}

.final-bundle-sub {
  margin: 0 0 20px;
  color: #9CA3AF;
  font-size: 14px;
  line-height: 1.5;
}

.final-card-divider {
  margin: 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.final-item-checklist {
  max-width: 480px;
  margin: 24px auto;
  padding: 0;
  list-style: none;
  text-align: left;
}

.final-item-checklist li {
  color: #D1D5DB;
  font-size: 15px;
  line-height: 1.5;
}

.final-item-checklist li + li {
  margin-top: 10px;
}

.final-item-checklist strong {
  color: #F59E0B;
  font-weight: 600;
}

.final-original-price {
  margin: 24px 0 8px;
  color: #6B7280;
  font-size: 15px;
  line-height: 1.4;
}

.final-original-price del {
  color: #6B7280;
  font-size: clamp(18px, 2.3vw, 24px);
  font-weight: 600;
  text-decoration-color: #EF4444;
  text-decoration-thickness: 2px;
}

.final-price-label {
  margin: 0 0 6px;
  color: #E5E7EB;
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 500;
}

.final-price-amount {
  margin: 0 0 8px;
}

.final-price-amount strong {
  display: inline-block;
  color: #F59E0B;
  font-size: clamp(56px, 10vw, 88px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -3px;
  text-shadow: 0 4px 30px rgba(245, 158, 11, 0.35);
  animation: priceGlow 3s ease-in-out infinite;
}

.final-price-savings {
  margin: 0;
  color: #86EFAC;
  font-size: clamp(14px, 2vw, 17px);
  font-weight: 600;
  line-height: 1.5;
}

.final-price-context {
  margin: 8px 0 0;
  color: #9CA3AF;
  font-size: 14px;
  font-style: italic;
  line-height: 1.5;
}

.final-timer {
  margin-top: 20px;
  margin-bottom: 28px;
}

.final-cta {
  text-decoration: none;
}

.primary-cta {
  display: block;
  width: min(100%, 520px);
  min-width: 400px;
  margin: 0 auto;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
  color: #FFFFFF;
  font-size: clamp(18px, 2.8vw, 24px);
  font-weight: 700;
  line-height: 1.2;
  padding: 20px 64px;
  box-shadow: 0 10px 40px rgba(245, 158, 11, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  animation: finalCtaPulse 2.5s ease-in-out infinite;
}

.primary-cta:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #FBBF24 0%, #DC2626 100%);
  box-shadow: 0 14px 50px rgba(245, 158, 11, 0.55);
}

.primary-cta:active {
  transform: scale(0.97);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
  transition-duration: 0.1s;
}

.primary-cta:focus-visible {
  outline: 3px solid #FFFFFF;
  outline-offset: 4px;
}

.final-micro-trust {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  color: #9CA3AF;
  font-size: 13px;
  line-height: 1.5;
}

.order-destination-info {
  margin: 16px auto 0;
  max-width: 520px;
  color: #6B7280;
  font-size: 12px;
  line-height: 1.6;
}

.udemy-disclaimer {
  margin: 12px auto 0;
  max-width: 520px;
  color: #4B5563;
  font-size: 11px;
  font-style: italic;
  line-height: 1.6;
}

.final-guarantee-block {
  max-width: 600px;
  margin: 40px auto 0;
  border-radius: 14px;
  border: 1px solid rgba(34, 197, 94, 0.15);
  background: rgba(34, 197, 94, 0.05);
  padding: 28px 32px;
}

.final-guarantee-block h3 {
  margin: 0 0 16px;
  color: #FFFFFF;
  font-size: clamp(16px, 2.2vw, 20px);
  font-weight: 700;
}

.final-guarantee-block ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.final-guarantee-block li {
  color: #D1D5DB;
  font-size: clamp(14px, 1.8vw, 15px);
  line-height: 1.7;
}

.final-guarantee-block li + li {
  margin-top: 12px;
}

.final-guarantee-block strong {
  color: #86EFAC;
  font-weight: 600;
}

.final-urgency-block {
  max-width: 500px;
  margin: 48px auto 0;
  text-align: center;
}

.final-urgency-block h3 {
  margin: 0 0 16px;
  color: #FCA5A5;
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 600;
}

.final-urgency-block ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.final-urgency-block li {
  color: #D1D5DB;
  font-size: clamp(14px, 1.8vw, 15px);
  line-height: 1.65;
}

.final-urgency-block li + li {
  margin-top: 10px;
}

.secondary-cta {
  display: block;
  width: min(100%, 480px);
  margin: 24px auto 0;
  border-radius: 12px;
  border: 2px solid #F59E0B;
  color: #F59E0B;
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 600;
  line-height: 1.3;
  padding: 16px 40px;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.secondary-cta:hover {
  background: rgba(245, 158, 11, 0.1);
  border-color: #FBBF24;
  color: #FBBF24;
}

.secondary-cta:focus-visible {
  outline: 3px solid #F59E0B;
  outline-offset: 3px;
}

.final-social-proof {
  max-width: 640px;
  margin: 48px auto 0;
  text-align: center;
}

.final-social-stars {
  margin: 0;
  color: #FCD34D;
  font-size: 20px;
  font-weight: 600;
}

.final-social-stars span {
  margin-left: 6px;
  font-size: 15px;
}

.final-social-note {
  margin: 14px auto 0;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  color: #D1D5DB;
  font-size: 14px;
  line-height: 1.6;
  padding: 16px 20px;
}

.sticky-cta-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  border-top: 1px solid rgba(245, 158, 11, 0.2);
  background: rgba(13, 2, 33, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(110%);
  transition: transform 0.3s ease;
}

.sticky-cta-bar.visible {
  transform: translateY(0);
}

.sticky-price {
  flex-shrink: 0;
  color: #F59E0B;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.sticky-cta-btn {
  flex-grow: 1;
  text-decoration: none;
  text-align: center;
  border-radius: 10px;
  background: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  padding: 12px 24px;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
}

.sticky-cta-btn:focus-visible {
  outline: 2px solid #FFFFFF;
  outline-offset: 3px;
}

@keyframes priceGlow {
  0%,
  100% {
    text-shadow: 0 4px 30px rgba(245, 158, 11, 0.35);
  }

  50% {
    text-shadow: 0 4px 40px rgba(245, 158, 11, 0.5);
  }
}

@keyframes finalCtaPulse {
  0%,
  100% {
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.45);
  }

  50% {
    box-shadow: 0 10px 50px rgba(245, 158, 11, 0.6), 0 0 0 10px rgba(245, 158, 11, 0.08);
  }
}

@keyframes offerBadgePulse {
  0%,
  100% {
    transform: translateX(-50%) scale(1);
  }

  50% {
    transform: translateX(-50%) scale(1.04);
  }
}

.ebook-sample-section {
  position: relative;
  z-index: 1;
  background: #0C0320;
  padding: 80px 40px;
}

.ebook-sample-container {
  max-width: 1180px;
  margin: 0 auto;
}

#ebook-preview-heading {
  text-align: center;
  color: #FFFFFF;
  font-size: clamp(24px, 3.4vw, 36px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
}

.ebook-sample-subtitle {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
  color: #C4B5FD;
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.5;
}

.ebook-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.ebook-tab {
  min-width: 200px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #9CA3AF;
  border-radius: 12px;
  padding: 14px 20px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}

.ebook-tab:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
}

.ebook-tab.active {
  background: rgba(139, 92, 246, 0.15);
  border: 2px solid rgba(139, 92, 246, 0.5);
  color: #FFFFFF;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.15);
}

.ebook-tab:focus-visible {
  outline: 2px solid #8B5CF6;
  outline-offset: 3px;
}

.tab-title {
  display: block;
  font-size: 15px;
}

.tab-sub {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #6B7280;
}

.ebook-tab.active .tab-sub {
  color: #C4B5FD;
}

.ebook-panel {
  margin-top: 28px;
}

.ebook-info {
  max-width: 780px;
  margin: 0 auto 28px;
  border-radius: 12px;
  background: rgba(139, 92, 246, 0.06);
  border: 1px solid rgba(139, 92, 246, 0.15);
  padding: 24px 28px;
}

.ebook-info-title {
  color: #FFFFFF;
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 700;
}

.ebook-info p {
  margin-top: 8px;
  color: #D1D5DB;
  font-size: 15px;
  line-height: 1.6;
}

.ebook-tags {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ebook-tags span {
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: #C4B5FD;
  font-size: 12px;
  padding: 4px 12px;
}

.flipbook-viewer {
  max-width: 700px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 46px 1fr 46px;
  align-items: center;
  gap: 8px;
}

.flip-nav {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 0;
  background: rgba(120, 120, 120, 0.45);
  color: #FFFFFF;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.flip-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.book-stage {
  position: relative;
  border-radius: 12px;
  background: #8a8a8a;
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.38);
}

.book-stage::before {
  content: '';
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(120, 120, 120, 0.65));
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 0 10px rgba(255, 255, 255, 0.18);
  opacity: 0.9;
  pointer-events: none;
}

.book-page {
  background: #f7f7f7;
  min-height: 270px;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}

.book-page.left {
  box-shadow: inset 18px 0 20px rgba(0, 0, 0, 0.08), 0 8px 22px rgba(0, 0, 0, 0.25);
}

.book-page.right {
  box-shadow: inset -18px 0 20px rgba(0, 0, 0, 0.08), 0 8px 22px rgba(0, 0, 0, 0.25);
}

.book-page img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #ffffff;
  display: block;
  cursor: zoom-in;
  transform-origin: left center;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.flip-indicator {
  margin: 12px 0 10px;
  text-align: center;
  color: #C4B5FD;
  font-size: 14px;
}

.flip-thumbs {
  display: none;
}

.flip-thumb {
  flex: 0 0 86px;
  height: 118px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  padding: 0;
  cursor: pointer;
}

.flip-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.flip-thumb.active {
  border-color: #8B5CF6;
  box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.35);
}

.book-page img.turn-next {
  animation: pageTurnNext 520ms ease;
}

.book-page img.turn-prev {
  animation: pageTurnPrev 520ms ease;
}

@keyframes pageTurnNext {
  0% { transform: perspective(1600px) rotateY(0deg); filter: brightness(1); }
  45% { transform: perspective(1600px) rotateY(-28deg); filter: brightness(0.85); }
  100% { transform: perspective(1600px) rotateY(0deg); filter: brightness(1); }
}

@keyframes pageTurnPrev {
  0% { transform: perspective(1600px) rotateY(0deg); filter: brightness(1); }
  45% { transform: perspective(1600px) rotateY(22deg); filter: brightness(0.88); }
  100% { transform: perspective(1600px) rotateY(0deg); filter: brightness(1); }
}

.flip-nav.prev {
  justify-self: start;
}

.flip-nav.next {
  justify-self: end;
}

.sample-carousel {
  max-width: 1180px;
  margin: 0 auto;
}

.sample-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 4px 8px;
  scrollbar-width: none;
}

.sample-track::-webkit-scrollbar {
  display: none;
}

.sample-card {
  flex: 0 0 calc((100% - 48px) / 4);
  min-width: 240px;
  scroll-snap-align: center;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  padding: 12px;
}

.sample-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.sample-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.sample-card:hover .sample-img-wrap img {
  transform: scale(1.03);
}

.page-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  border-radius: 4px;
  padding: 3px 8px;
  background: rgba(0, 0, 0, 0.6);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 600;
  z-index: 2;
}

.zoom-hint {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.5);
  color: #FFFFFF;
  font-size: 14px;
}

.sample-card p {
  margin-top: 10px;
  color: #C4B5FD;
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
}

.sample-card.locked img {
  filter: blur(8px) brightness(0.6);
}

.lock-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  text-align: center;
  padding: 16px;
}

.lock-overlay strong {
  display: block;
  color: #FFFFFF;
  font-size: 15px;
  margin-bottom: 6px;
}

.lock-overlay span {
  color: #F59E0B;
  font-size: 13px;
}

.sample-dots {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.sample-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

.sample-dots .dot.active {
  width: 10px;
  height: 10px;
  background: #8B5CF6;
}

.swipe-hint {
  display: none;
  margin-top: 10px;
  text-align: center;
  font-size: 12px;
  color: #6B7280;
}

.chapter-preview {
  max-width: 600px;
  margin: 28px auto 0;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  padding: 24px 28px;
}

.chapter-title {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

.chapter-preview ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.chapter-preview li {
  color: #D1D5DB;
  font-size: 14px;
  line-height: 1.6;
}

.chapter-preview li + li {
  margin-top: 10px;
}

.chapter-preview strong {
  color: #FFFFFF;
}

.chapter-more {
  margin-top: 12px;
  color: #F59E0B;
  font-size: 14px;
  font-weight: 500;
  font-style: italic;
}

.trust-note {
  max-width: 600px;
  margin: 32px auto 0;
  border-radius: 10px;
  border: 1px solid rgba(34, 197, 94, 0.12);
  background: rgba(34, 197, 94, 0.05);
  padding: 16px 20px;
}

.trust-note p {
  color: #D1D5DB;
  font-size: 14px;
  line-height: 1.6;
}

.trust-note p + p {
  margin-top: 8px;
}

.trust-note strong {
  color: #86EFAC;
}

.showcase-kicker {
  color: #FCD34D;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

#bundle-preview-heading {
  color: #FFFFFF;
  font-size: clamp(24px, 3.2vw, 36px);
  line-height: 1.2;
  margin-bottom: 24px;
}

.carousel-shell {
  --slides-per-view: 3;
  --carousel-gap: 16px;
  position: relative;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: 18px;
  padding: 4px;
}

.carousel-track {
  display: flex;
  gap: var(--carousel-gap);
  transition: transform 0.45s ease;
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 calc((100% - (var(--slides-per-view) - 1) * var(--carousel-gap)) / var(--slides-per-view));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  padding: 10px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.carousel-slide:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 158, 11, 0.5);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  border-radius: 12px;
  background: rgba(9, 5, 24, 0.45);
}

.carousel-nav {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(15, 7, 40, 0.88);
  color: #FFFFFF;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  z-index: 2;
}

.carousel-nav.prev {
  left: -12px;
}

.carousel-nav.next {
  right: -12px;
}

.carousel-nav:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.carousel-dots {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.carousel-dot.active {
  background: #F59E0B;
  transform: scale(1.2);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(3, 2, 12, 0.88);
  display: grid;
  place-items: center;
  z-index: 1000;
  padding: 24px;
}

.lightbox[hidden] {
  display: none;
}

#lightbox-image {
  max-width: min(92vw, 1100px);
  max-height: 84vh;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
}

.lightbox-close,
.lightbox-nav {
  position: fixed;
  border: 0;
  color: #FFFFFF;
  background: rgba(20, 14, 54, 0.86);
  cursor: pointer;
}

.lightbox-close {
  top: 20px;
  right: 22px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  font-size: 30px;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 999px;
  font-size: 36px;
  line-height: 1;
}

.lightbox-nav.prev {
  left: 22px;
}

.lightbox-nav.next {
  right: 22px;
}

.proof-rating,
.proof-quote,
.proof-support {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stars {
  font-size: 20px;
}

.count {
  color: var(--trust-text);
  font-size: 14px;
  font-weight: 500;
}

.proof-quote q {
  color: var(--sub-headline);
  font-size: 14px;
  font-style: italic;
  line-height: 1.6;
  text-align: center;
}

.proof-quote cite {
  color: var(--pre-headline);
  font-size: 13px;
  font-weight: 500;
  font-style: normal;
}

.badge {
  color: var(--savings);
  font-size: 14px;
  font-weight: 500;
}

.sub {
  color: var(--microtrust);
  font-size: 12px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes ctaPulse {
  0%,
  100% {
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
  }

  50% {
    box-shadow: 0 8px 40px rgba(245, 158, 11, 0.6), 0 0 0 8px rgba(245, 158, 11, 0.1);
  }
}

@keyframes pricePulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.02);
  }
}

@keyframes sepBlink {
  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0.4;
  }
}

@keyframes trustIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

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

@keyframes floatingCard {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.motion-heading {
  position: relative;
  animation: headingBreath 6s ease-in-out infinite;
}

.motion-heading::after {
  content: '';
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent 0%, rgba(245, 158, 11, 0.6) 50%, transparent 100%);
  transform-origin: center;
  animation: headingUnderlineSweep 5.6s ease-in-out infinite;
  pointer-events: none;
}

.motion-subtext {
  animation: subtextGlow 5.8s ease-in-out infinite;
}

.motion-chip {
  animation: chipPulse 4.4s ease-in-out infinite;
}

.motion-emoji {
  animation: emojiFloat 3.6s ease-in-out infinite;
  animation-delay: var(--emoji-delay, 0ms);
}

.motion-enabled .motion-card {
  opacity: 0;
  transform: translateY(28px) scale(0.97);
  filter: saturate(0.9);
  transition: opacity 0.65s ease, transform 0.65s ease, filter 0.65s ease;
  transition-delay: var(--motion-delay, 0ms);
}

.motion-enabled .motion-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: saturate(1);
}

@keyframes headingBreath {
  0%,
  100% {
    text-shadow: 0 0 0 rgba(245, 158, 11, 0);
    transform: translateY(0);
  }

  50% {
    text-shadow: 0 0 14px rgba(245, 158, 11, 0.16);
    transform: translateY(-2px);
  }
}

@keyframes headingUnderlineSweep {
  0%,
  100% {
    transform: scaleX(0.75);
    opacity: 0.5;
  }

  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes subtextGlow {
  0%,
  100% {
    opacity: 0.95;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-1px);
  }
}

@keyframes chipPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.03);
  }
}

@keyframes emojiFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-3px) rotate(-2deg);
  }
}

.problem-solution-section,
.whats-inside-section,
.prompt-library-section,
.ebook-sample-section,
.who-for-section,
.reviews-section,
.bonus-section,
.final-price-section {
  isolation: isolate;
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: 980px;
}

.problem-solution-section::before,
.whats-inside-section::before,
.prompt-library-section::before,
.ebook-sample-section::before,
.who-for-section::before,
.reviews-section::before,
.bonus-section::before,
.final-price-section::before {
  content: '';
  position: absolute;
  top: -24%;
  left: -14%;
  width: min(46vw, 620px);
  height: min(46vw, 620px);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, rgba(245, 158, 11, 0.08) 38%, rgba(11, 2, 24, 0) 72%);
  pointer-events: none;
  z-index: 0;
  animation: sectionOrbFloat 20s ease-in-out infinite;
  animation-play-state: paused;
}

.problem-solution-section::after,
.whats-inside-section::after,
.prompt-library-section::after,
.ebook-sample-section::after,
.who-for-section::after,
.reviews-section::after,
.bonus-section::after,
.final-price-section::after {
  content: '';
  position: absolute;
  right: -16%;
  bottom: -28%;
  width: min(42vw, 560px);
  height: min(42vw, 560px);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.14) 0%, rgba(139, 92, 246, 0.12) 42%, rgba(10, 1, 21, 0) 74%);
  pointer-events: none;
  z-index: 0;
  animation: sectionOrbFloat 22s ease-in-out infinite reverse;
  animation-delay: -4s;
  animation-play-state: paused;
}

.problem-solution-section.perf-fx-active::before,
.whats-inside-section.perf-fx-active::before,
.prompt-library-section.perf-fx-active::before,
.ebook-sample-section.perf-fx-active::before,
.who-for-section.perf-fx-active::before,
.reviews-section.perf-fx-active::before,
.bonus-section.perf-fx-active::before,
.final-price-section.perf-fx-active::before,
.problem-solution-section.perf-fx-active::after,
.whats-inside-section.perf-fx-active::after,
.prompt-library-section.perf-fx-active::after,
.ebook-sample-section.perf-fx-active::after,
.who-for-section.perf-fx-active::after,
.reviews-section.perf-fx-active::after,
.bonus-section.perf-fx-active::after,
.final-price-section.perf-fx-active::after {
  animation-play-state: running;
}

.problem-solution-container,
.whats-inside-container,
.prompt-library-container,
.ebook-sample-container,
.who-for-container,
.reviews-container,
.bonus-container,
.final-price-container {
  position: relative;
  z-index: 1;
}

.summary-strip,
.final-value-recap,
.prompt-library-note {
  position: relative;
  overflow: hidden;
}

.summary-strip::after,
.final-value-recap::after,
.prompt-library-note::after {
  content: '';
  position: absolute;
  top: -20%;
  bottom: -20%;
  left: -60%;
  width: 42%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
  pointer-events: none;
  animation: softSheen 7.4s ease-in-out infinite;
  animation-play-state: paused;
}

.final-value-recap::after {
  animation-delay: 1.3s;
}

.prompt-library-note::after {
  animation-delay: 2.2s;
}

.summary-strip.perf-anim-active::after,
.final-value-recap.perf-anim-active::after,
.prompt-library-note.perf-anim-active::after {
  animation-play-state: running;
}

.hero-cta,
.section-cta-btn,
.primary-cta,
.secondary-cta,
.sticky-cta-btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero-cta::before,
.section-cta-btn::before,
.primary-cta::before,
.secondary-cta::before,
.sticky-cta-btn::before {
  content: '';
  position: absolute;
  top: -34%;
  left: -52%;
  width: 34%;
  height: 180%;
  transform: translateX(-180%) rotate(17deg);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
  pointer-events: none;
  animation: ctaSheen 5.2s ease-in-out infinite;
  animation-play-state: paused;
}

.section-cta-btn::before {
  animation-delay: 0.7s;
}

.primary-cta::before {
  animation-delay: 1.1s;
}

.secondary-cta::before {
  animation-delay: 1.5s;
}

.sticky-cta-btn::before {
  animation-delay: 0.4s;
}

.hero-cta.perf-anim-active::before,
.section-cta-btn.perf-anim-active::before,
.primary-cta.perf-anim-active::before,
.secondary-cta.perf-anim-active::before,
.sticky-cta-btn.perf-anim-active::before {
  animation-play-state: running;
}

.prompt-tab.active {
  box-shadow: 0 0 0 1px rgba(139, 92, 246, 0.45), 0 0 18px rgba(139, 92, 246, 0.28);
  animation: tabActiveAura 3.2s ease-in-out infinite;
}

.reviews-slide img,
.bonus-card img {
  animation: mediaDrift 8.8s ease-in-out infinite;
  transform-origin: center center;
  animation-play-state: paused;
}

.reviews-slide:nth-child(even) img,
.bonus-card:nth-child(even) img {
  animation-delay: 1.4s;
}

.reviews-slide img.perf-anim-active,
.bonus-card img.perf-anim-active {
  animation-play-state: running;
}

@keyframes sectionOrbFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.72;
  }

  50% {
    transform: translate3d(16px, -12px, 0) scale(1.06);
    opacity: 1;
  }
}

@keyframes softSheen {
  0% {
    transform: translateX(0) skewX(-18deg);
    opacity: 0;
  }

  12% {
    opacity: 0.88;
  }

  55%,
  100% {
    transform: translateX(390%) skewX(-18deg);
    opacity: 0;
  }
}

@keyframes ctaSheen {
  0%,
  78% {
    transform: translateX(-210%) rotate(17deg);
    opacity: 0;
  }

  82% {
    opacity: 0.95;
  }

  100% {
    transform: translateX(420%) rotate(17deg);
    opacity: 0;
  }
}

@keyframes mediaDrift {
  0%,
  100% {
    transform: scale(1) translateY(0);
  }

  50% {
    transform: scale(1.028) translateY(-2px);
  }
}

@keyframes tabActiveAura {
  0%,
  100% {
    box-shadow: 0 0 0 1px rgba(139, 92, 246, 0.45), 0 0 14px rgba(139, 92, 246, 0.2);
  }

  50% {
    box-shadow: 0 0 0 1px rgba(139, 92, 246, 0.56), 0 0 24px rgba(139, 92, 246, 0.36);
  }
}

@media (max-width: 1023px) {
  .hero-section {
    min-height: 90vh;
    padding: 64px 28px 50px;
  }

  .hero-social-proof {
    gap: 24px;
    padding: 20px 24px;
  }

  .hero-benefits-media {
    grid-template-columns: 1fr;
    width: min(100%, 640px);
  }

  .hero-image-card {
    max-width: 420px;
    margin-inline: auto;
  }

  .problem-solution-section {
    padding: 60px 24px;
  }

  .problem-solution-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .whats-inside-section {
    padding: 60px 24px;
  }

  .prompt-library-section {
    padding: 60px 24px;
  }

  .who-for-section {
    padding: 60px 24px;
  }

  .reviews-section {
    padding: 60px 24px;
  }

  .bonus-section {
    padding: 60px 24px;
  }

  .final-price-section {
    padding: 72px 24px 84px;
  }

  .ebook-sample-section {
    padding: 60px 24px;
  }

  .prompt-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .prompt-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .prompt-tab-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .prompt-sample-card {
    max-width: 100%;
  }

  .who-for-subtitle {
    margin-bottom: 36px;
  }

  .persona-nav.prev {
    left: 6px;
  }

  .persona-nav.next {
    right: 6px;
  }

  .persona-card {
    min-height: auto;
    padding: 20px 14px;
  }

  .who-usecase-box {
    margin-top: 40px;
    padding: 30px 24px;
  }

  .who-levels-grid {
    gap: 16px;
  }

  .who-level-card.has-arrow::after {
    display: none;
  }

  .reviews-nav.prev {
    left: -8px;
  }

  .reviews-nav.next {
    right: -8px;
  }

  .bonus-grid {
    gap: 16px;
  }

  .final-value-recap {
    padding: 18px 20px;
  }

  .final-price-card {
    padding: 42px 32px 34px;
  }

  .primary-cta {
    min-width: 0;
    width: 100%;
    padding: 18px 36px;
  }

  .items-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .items-grid-last {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    max-width: none;
  }

  .sample-card {
    flex-basis: calc((100% - 32px) / 3);
    min-width: 220px;
  }

  .book-page {
    min-height: 220px;
  }

  .carousel-shell {
    --slides-per-view: 2;
  }

  .carousel-nav.prev {
    left: -6px;
  }

  .carousel-nav.next {
    right: -6px;
  }
}

@media (max-width: 767px) {
  .hero-section {
    min-height: auto;
    padding: 48px 16px 40px;
  }

  .hero-trust-bar {
    font-size: 12.5px;
    margin-bottom: 20px;
  }

  .sub-headline {
    margin-bottom: 26px;
  }

  .price-block {
    padding: 0;
  }

  .timer-digits {
    gap: 8px;
  }

  .timer-box {
    min-width: 64px;
    padding: 10px 14px;
  }

  .timer-sep {
    font-size: 24px;
  }

  .hero-cta {
    min-width: 0;
    width: 100%;
    padding: 18px 32px;
  }

  .hero-social-proof {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding: 20px 16px;
  }

  .hero-benefits-media {
    gap: 20px;
    margin-bottom: 28px;
  }

  .hero-image-card {
    max-width: 100%;
  }

  .showcase-section {
    padding: 20px 14px 56px;
  }

  .problem-solution-section {
    padding: 48px 16px;
  }

  .whats-inside-section {
    padding: 48px 16px;
  }

  .mobile-between-sections-image {
    display: block;
    background: #0D0319;
    padding: 0 16px 20px;
  }

  .mobile-between-inside-prompts-image {
    display: block;
    background: #0D0319;
    padding: 0 16px 20px;
  }

  .mobile-between-prompts-ebook-image {
    display: block;
    background: #0D0319;
    padding: 0 16px 20px;
  }

  .prompt-library-section {
    padding: 48px 16px;
  }

  .who-for-section {
    padding: 48px 16px;
  }

  #who-for {
    display: none;
  }

  .reviews-section {
    padding: 48px 16px;
  }

  .bonus-section {
    padding: 48px 16px;
  }

  .final-price-section {
    padding: 56px 16px 120px;
  }

  .ebook-sample-section {
    padding: 48px 16px;
  }

  #problem-solution-heading {
    margin-bottom: 24px;
  }

  .problem-card,
  .solution-card {
    padding: 18px 14px;
  }

  .transition-text {
    margin-top: 32px;
    margin-bottom: 32px;
  }

  .whats-inside-subtitle {
    margin-bottom: 32px;
  }

  .summary-strip {
    padding: 14px 16px;
    font-size: 13px;
  }

  .prompt-library-subtitle {
    margin-bottom: 28px;
  }

  .prompt-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .prompt-stat-card {
    padding: 20px 12px;
  }

  .prompt-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .prompt-category-card {
    padding: 14px 16px;
  }

  .prompt-tabs {
    justify-content: flex-start;
  }

  .prompt-tab {
    font-size: 13px;
    padding: 10px 14px;
  }

  .prompt-tab-panel {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .prompt-sample-card {
    padding: 18px 16px;
  }

  .prompt-code {
    font-size: 13px;
    padding: 14px 16px;
  }

  .prompt-code-fade {
    padding: 40px 16px 10px;
  }

  .prompt-library-note {
    padding: 12px 14px;
    font-size: 15px;
  }

  .prompt-teaser-box {
    margin-top: 36px;
    padding: 20px 16px;
  }

  .who-for-subtitle {
    margin-bottom: 32px;
  }

  .persona-carousel {
    --persona-per-view: 1;
    --persona-gap: 12px;
  }

  .persona-viewport {
    padding: 2px 0;
  }

  .persona-nav {
    top: 42%;
    width: 48px;
    height: 48px;
    font-size: 36px;
  }

  .persona-nav.prev {
    left: 4px;
  }

  .persona-nav.next {
    right: 4px;
  }

  .persona-card {
    padding: 18px 14px;
  }

  .persona-title {
    font-size: 18px;
  }

  .persona-subtitle,
  .persona-text,
  .persona-items-list li,
  .persona-relevance {
    font-size: 12.5px;
  }

  .who-usecase-box {
    display: none;
  }

  .who-usecase-list li {
    font-size: 14px;
  }

  .who-levels {
    margin-top: 40px;
  }

  .who-levels-heading {
    margin-bottom: 20px;
    font-size: 18px;
  }

  .who-levels-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .who-level-card {
    padding: 14px 10px;
    border-radius: 10px;
  }

  .who-level-icon {
    font-size: 34px;
  }

  .who-level-name {
    margin-top: 6px;
    font-size: 16px;
  }

  .who-level-bn {
    margin-top: 3px;
    font-size: 11px;
  }

  .who-level-fit {
    margin-top: 6px;
    font-size: 12px;
  }

  .who-level-text {
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.5;
  }

  .who-levels-grid .who-level-card:last-child {
    grid-column: 1 / -1;
    max-width: 260px;
    justify-self: center;
  }

  .who-negative-box {
    margin-top: 36px;
    padding: 20px 16px;
  }

  .reviews-subtitle {
    margin-bottom: 20px;
  }

  .reviews-carousel {
    --reviews-per-view: 1;
    --reviews-gap: 12px;
  }

  .reviews-viewport {
    padding: 8px;
  }

  .reviews-slide img {
    max-height: min(68vh, 520px);
  }

  .reviews-nav {
    display: none;
  }

  .bonus-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  #bonus-heading {
    margin-bottom: 20px;
  }

  .final-section-sub {
    margin-bottom: 28px;
  }

  .final-value-recap {
    margin-bottom: 28px;
    padding: 16px;
    gap: 10px 14px;
  }

  .recap-item {
    font-size: 12.5px;
  }

  .recap-item:not(:last-child)::after {
    margin-left: 8px;
  }

  .final-price-card {
    padding: 36px 20px 28px;
    border-radius: 18px;
  }

  .final-price-card .offer-badge {
    top: -14px;
    font-size: 13px;
    padding: 7px 20px;
  }

  .final-item-checklist li {
    font-size: 13.5px;
  }

  .final-original-price {
    font-size: 14px;
  }

  .final-price-context {
    font-size: 13px;
  }

  .primary-cta {
    width: 100%;
    min-width: 0;
    padding: 18px 24px;
    font-size: 19px;
  }

  .final-micro-trust {
    font-size: 12px;
    gap: 6px 12px;
  }

  .order-destination-info {
    font-size: 12px;
  }

  .final-guarantee-block {
    margin-top: 32px;
    padding: 20px 16px;
  }

  .final-urgency-block {
    margin-top: 36px;
  }

  .secondary-cta {
    width: 100%;
    padding: 14px 20px;
    font-size: 16px;
  }

  .final-social-proof {
    margin-top: 34px;
  }

  .final-social-stars {
    font-size: 18px;
  }

  .final-social-stars span {
    display: block;
    margin: 4px 0 0;
    font-size: 14px;
  }

  .final-social-note {
    font-size: 13px;
    padding: 14px 16px;
  }

  .sticky-cta-bar {
    display: flex;
  }

  .items-grid,
  .items-grid-last {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .items-grid-last {
    margin-top: 12px;
    grid-template-columns: 1fr;
  }

  .item-card.item-card-access {
    display: none !important;
  }

  .item-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: auto;
    padding: 14px 11px 12px;
    border-radius: 14px;
    border-color: rgba(139, 92, 246, 0.3);
    background: linear-gradient(160deg, rgba(30, 12, 62, 0.92) 0%, rgba(19, 8, 42, 0.96) 100%);
    box-shadow: 0 10px 20px rgba(4, 1, 18, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }

  .item-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 14%;
    width: 72%;
    height: 2px;
    background: linear-gradient(90deg, rgba(245, 158, 11, 0), rgba(245, 158, 11, 0.65), rgba(139, 92, 246, 0));
    pointer-events: none;
  }

  .card-badge {
    top: 6px;
    right: 6px;
    font-size: 8.5px;
    line-height: 1.2;
    padding: 3px 6px;
    border-radius: 999px;
  }

  .card-icon {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    margin: 0 auto 8px;
    border-radius: 10px;
    background: rgba(139, 92, 246, 0.14);
    border: 1px solid rgba(139, 92, 246, 0.28);
    font-size: 22px;
  }

  .card-title {
    margin-bottom: 7px;
    font-size: 13.5px;
    line-height: 1.28;
    letter-spacing: -0.1px;
    min-height: 34px;
  }

  .card-desc {
    margin-bottom: 8px;
    color: #D9D4EA;
    font-size: 11.2px;
    line-height: 1.48;
    min-height: 66px;
  }

  .card-stat {
    margin-bottom: 6px;
    font-size: 22px;
    letter-spacing: -0.3px;
  }

  .card-stat-large {
    font-size: 25px;
    letter-spacing: -0.6px;
  }

  .card-stat-green {
    font-size: 12.4px;
  }

  .card-sub-stat {
    margin-bottom: 6px;
    color: #C8BCF2;
    font-size: 10.8px;
    line-height: 1.42;
  }

  .card-value {
    margin-top: auto;
    font-size: 10.6px;
    line-height: 1.35;
    opacity: 0.92;
  }

  .card-disclaimer {
    margin-top: 6px;
    font-size: 9.4px;
    line-height: 1.34;
    opacity: 0.84;
  }

  .value-summary-bar {
    margin-top: 36px;
    padding: 24px 20px;
  }

  .section-cta-btn {
    display: block;
    width: 100%;
    max-width: 480px;
    margin-inline: auto;
    padding: 16px 32px;
  }

  .ebook-sample-subtitle {
    margin-bottom: 28px;
  }

  .ebook-tabs {
    flex-direction: column;
    gap: 8px;
  }

  .ebook-tab {
    width: 100%;
    min-width: 0;
  }

  .ebook-info {
    padding: 20px 16px;
  }

  .sample-card {
    flex-basis: 78%;
    min-width: 200px;
  }

  .flipbook-viewer {
    grid-template-columns: 56px 1fr 56px;
    gap: 6px;
  }

  .flip-nav {
    display: block;
    width: 52px;
    height: 52px;
    font-size: 34px;
    background: rgba(15, 7, 40, 0.92);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  }

  .book-stage {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .book-page {
    min-height: 230px;
  }

  .book-stage::before {
    display: none;
  }

  .flip-thumbs {
    gap: 8px;
  }

  .flip-thumb {
    flex-basis: 72px;
    height: 100px;
  }

  .swipe-hint {
    display: block;
  }

  .chapter-preview {
    display: none;
  }

  .carousel-shell {
    --slides-per-view: 1;
    --carousel-gap: 12px;
  }

  .carousel-nav {
    display: none;
  }

  .carousel-slide {
    aspect-ratio: 4 / 5;
  }

  .lightbox-nav {
    width: 44px;
    height: 44px;
    font-size: 30px;
  }
}

@media (max-width: 379px) {
  .prompt-stats-grid {
    grid-template-columns: 1fr;
  }

  .prompt-category-grid {
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-trust-bar,
  .price-actual strong,
  .timer-sep,
  .hero-cta,
  .hero-image-card,
  .final-price-amount strong,
  .final-price-card .offer-badge,
  .primary-cta,
  .motion-heading,
  .motion-subtext,
  .motion-chip,
  .motion-emoji,
  .problem-solution-section::before,
  .whats-inside-section::before,
  .prompt-library-section::before,
  .ebook-sample-section::before,
  .who-for-section::before,
  .reviews-section::before,
  .bonus-section::before,
  .final-price-section::before,
  .problem-solution-section::after,
  .whats-inside-section::after,
  .prompt-library-section::after,
  .ebook-sample-section::after,
  .who-for-section::after,
  .reviews-section::after,
  .bonus-section::after,
  .final-price-section::after,
  .summary-strip::after,
  .final-value-recap::after,
  .prompt-library-note::after,
  .hero-cta::before,
  .section-cta-btn::before,
  .primary-cta::before,
  .secondary-cta::before,
  .sticky-cta-btn::before,
  .prompt-tab.active,
  .reviews-slide img,
  .bonus-card img {
    animation: none !important;
  }

  .hero-cta {
    transition: none !important;
  }

  .carousel-track,
  .carousel-slide,
  .carousel-dot,
  .item-card,
  .section-cta-btn,
  .sample-img-wrap img,
  .ebook-tab,
  .flip-thumb,
  .prompt-category-card,
  .prompt-tab,
  .persona-card,
  .reviews-track,
  .review-dot,
  .primary-cta,
  .secondary-cta,
  .sticky-cta-bar,
  .motion-enabled .motion-card {
    transition: none !important;
  }

  .motion-enabled .motion-card {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
