/* ==========================================
   AI-ოსტატი: Light-Theme High-Converting Mobile Landing Page
   ========================================== */

/* Color Space Interpolation Fallbacks (Modern CSS) */
:root {
  --in-oklab: ;
  --in-oklch: ;
  
  /* Color Palette (Premium Light Theme with Sunset & Electric Indigo Accents) */
  --bg-deep: #f8f7fb;
  --bg-panel: rgba(255, 255, 255, 0.78);
  --bg-panel-solid: #ffffff;
  --accent-purple: #6c23c6;
  --accent-cyan: #007bff;   /* Deeper cyan for contrast */
  --accent-pink: #d5006d;   /* Deeper pink for contrast */
  --accent-green: #00aa00;  /* Legible green */
  --text-main: #141121;
  --text-muted: #5e5970;
  --gold: #f1c40f;
  
  /* Typography */
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  
  /* Layout constraints */
  --container-width: 480px;
}

@supports (linear-gradient(in oklab, white, black)) {
  :root {
    --in-oklab: in oklab;
    --in-oklch: in oklch;
  }
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 16px;
  background-color: #0b0914; /* Dark canvas background for desktop presentation */
  color: var(--text-main);
  font-family: var(--font-sans);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  width: 100vw;
  overflow-x: hidden;
}

/* Outer Shell: Centered Smart-Phone Container for Desktop, Full Screen for Mobile */
.app-container {
  width: 100%;
  max-width: var(--container-width);
  min-height: 100vh;
  background: radial-gradient(circle at 50% 0%, #ffffff 0%, var(--bg-deep) 100%);
  border-left: 1px solid rgba(0, 0, 0, 0.06);
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.3);
  padding-bottom: 90px; /* Space for floating sticky CTA bar */
}

/* Typography styles */
h1, h2, h3, .font-outfit {
  font-family: var(--font-display);
}

.gradient-text {
  background: linear-gradient(135deg var(--in-oklch), var(--accent-cyan), var(--accent-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Top Live Ticker */
.live-ticker {
  background: rgba(213, 0, 109, 0.06);
  border-bottom: 1px solid rgba(213, 0, 109, 0.12);
  color: var(--accent-pink);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 10;
}

.live-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-green);
  animation: pulse-live 1.5s infinite;
}

@keyframes pulse-live {
  0% { transform: scale(0.9); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 12px var(--accent-green); }
  100% { transform: scale(0.9); opacity: 0.5; }
}

/* Header styling */
.app-header {
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.logo {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -1px;
}

.badge-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.badge-rating .stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 2px;
}

.badge-rating .rating-text {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}

/* General Layout Elements */
.hero-section {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pre-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-purple);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-shadow: 0 2px 4px rgba(108, 35, 198, 0.05);
}

.main-headline {
  font-size: 2.1rem;
  line-height: 1.15;
  font-weight: 900;
  color: var(--text-main);
  letter-spacing: -0.5px;
}

.main-headline .highlight {
  background: linear-gradient(to right var(--in-oklch), var(--accent-purple) 0%, var(--accent-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 12px rgba(108, 35, 198, 0.15);
  display: inline-block;
}

/* Rotating subheadlines */
.dynamic-headlines {
  min-height: 52px; /* Prevent layout shifting */
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.headline-variant {
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--text-muted);
  font-weight: 500;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.headline-variant.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}

.sub-headlines {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-left: 3px solid var(--accent-pink);
  padding-left: 12px;
}

.sub-v1 {
  font-size: 1rem;
  color: var(--text-main);
  line-height: 1.4;
  font-weight: 650;
}

.feature-tagline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-tagline span {
  background: rgba(108, 35, 198, 0.05);
  border: 1px solid rgba(108, 35, 198, 0.1);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-purple);
}

/* VSL Video Mockup Styling (Glows & Animations) */
.vsl-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vsl-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background-color: #000;
  box-shadow: 0 10px 25px rgba(26, 21, 44, 0.1), 0 0 15px rgba(108, 35, 198, 0.05);
  cursor: pointer;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.vsl-wrapper:hover {
  transform: scale(1.015);
  border-color: var(--accent-purple);
}

.vsl-preview {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.vsl-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  transition: opacity 0.3s ease;
}

.vsl-wrapper:hover .vsl-thumbnail {
  opacity: 0.9;
}

.vsl-overlay-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(108, 35, 198, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

.vsl-play-button {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg var(--in-oklch), var(--accent-pink), var(--accent-purple));
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(213, 0, 109, 0.4);
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.play-btn-glow {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(213, 0, 109, 0.2);
  filter: blur(8px);
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.25); opacity: 1; }
  100% { transform: scale(1); opacity: 0.6; }
}

.vsl-wrapper:hover .vsl-play-button {
  transform: scale(1.08);
}

.vsl-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(213, 0, 109, 0.9);
  padding: 4px 8px;
  border-radius: 4px;
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.vsl-duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.65);
  padding: 4px 8px;
  border-radius: 4px;
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Video loader inside player */
.vsl-iframe-wrapper {
  width: 100%;
  height: 100%;
  background: #000;
  position: relative;
  z-index: 3;
}

.vsl-loader-screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
}

.spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(108, 35, 198, 0.1);
  border-top-color: var(--accent-purple);
  border-radius: 50%;
  animation: spin 1s infinite linear;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.vsl-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 8px;
}

.avatar-group {
  display: flex;
}

.avatar-group img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--bg-deep);
  margin-right: -8px;
}

.vsl-meta-text {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.vsl-meta-text strong {
  color: var(--text-main);
}

/* High Converting CTA Buttons */
.cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 12px 0;
}

.cta-button {
  width: 100%;
  min-height: 58px;
  background: linear-gradient(135deg var(--in-oklch), var(--accent-purple) 0%, var(--accent-pink) 100%);
  border: none;
  border-radius: 14px;
  color: white;
  font-size: 1.15rem;
  font-weight: 800;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(108, 35, 198, 0.3);
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
  padding: 8px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cta-button::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: rotate(30deg);
  animation: shine 3s infinite linear;
}

@keyframes shine {
  0% { left: -60%; }
  30% { left: 140%; }
  100% { left: 140%; }
}

.cta-button.pulse-effect {
  animation: pulse-button 2.5s infinite;
}

@keyframes pulse-button {
  0% { transform: scale(1); box-shadow: 0 8px 20px rgba(108, 35, 198, 0.3); }
  50% { transform: scale(1.02); box-shadow: 0 10px 25px rgba(108, 35, 198, 0.4), 0 0 15px rgba(213, 0, 109, 0.25); }
  100% { transform: scale(1); box-shadow: 0 8px 20px rgba(108, 35, 198, 0.3); }
}

.cta-button:active {
  transform: scale(0.96);
  box-shadow: 0 4px 10px rgba(108, 35, 198, 0.2);
}

.cta-button.secondary {
  background: linear-gradient(135deg var(--in-oklch), #ffffff 0%, #f5f3fa 100%);
  border: 1.5px solid var(--accent-purple);
  color: var(--accent-purple);
  box-shadow: 0 4px 12px rgba(108, 35, 198, 0.08);
}

.cta-button.secondary:hover {
  border-color: var(--accent-pink);
  box-shadow: 0 0 15px rgba(213, 0, 109, 0.15);
}

.cta-content {
  display: block;
}

.cta-sub {
  font-size: 0.7rem;
  font-weight: 600;
  opacity: 0.9;
  margin-top: 3px;
  letter-spacing: 0.5px;
}

.spots-status {
  display: flex;
  justify-content: center;
  align-items: center;
}

.spots-pill {
  background-color: rgba(213, 0, 109, 0.05);
  border: 1px dashed var(--accent-pink);
  color: var(--accent-pink);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 4px;
  animation: pulse-spots 2s infinite;
}

@keyframes pulse-spots {
  0% { opacity: 0.8; }
  50% { opacity: 1; transform: scale(1.02); }
  100% { opacity: 0.8; }
}

.w-100 {
  width: 100%;
}

/* Info Section Styling */
.info-section {
  padding: 36px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-headline {
  font-size: 1.6rem;
  line-height: 1.25;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.3px;
}

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

.section-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

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

.section-description {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.section-description strong {
  color: var(--text-main);
}

.highlight-box {
  background: rgba(108, 35, 198, 0.04);
  border-left: 3px solid var(--accent-purple);
  padding: 12px 16px;
  border-radius: 0 8px 8px 0;
  color: var(--text-main);
  font-weight: 550;
}

/* Dashboard Mockup (Section 1) */
.dashboard-mockup {
  width: 100%;
  background-color: var(--bg-panel-solid);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(26, 21, 44, 0.04), 0 1px 3px rgba(26, 21, 44, 0.01);
}

.dash-header {
  background-color: rgba(0, 0, 0, 0.01);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.dot.red { background-color: #ff5f56; }
.dot.yellow { background-color: #ffbd2e; }
.dot.green { background-color: #27c93f; }

.dash-title {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-left: 4px;
}

.dash-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.payout-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.payout-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

.payout-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-purple);
}

.progress-bar-container {
  width: 100%;
  height: 8px;
  background-color: rgba(0, 0, 0, 0.04);
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(to right var(--in-oklch), var(--accent-cyan), var(--accent-purple));
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(108, 35, 198, 0.3);
}

.dash-notification {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(108, 35, 198, 0.04);
  border: 1px solid rgba(108, 35, 198, 0.08);
  padding: 8px 12px;
  border-radius: 8px;
}

.notification-icon {
  font-size: 1.1rem;
}

.notification-text {
  font-size: 0.75rem;
  color: var(--text-main);
}

.animate-pulse {
  animation: pulse-dash-notification 2s infinite;
}

@keyframes pulse-dash-notification {
  0% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.01); opacity: 1; border-color: rgba(108, 35, 198, 0.2); }
  100% { transform: scale(1); opacity: 0.9; }
}

/* Comparison Card (Section 2) */
.comparison-card {
  position: relative;
  display: flex;
  gap: 8px;
  margin: 16px 0;
  width: 100%;
}

.vs-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: white;
  border: 1.5px solid var(--accent-pink);
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--accent-pink);
  box-shadow: 0 4px 10px rgba(213, 0, 109, 0.15);
  z-index: 2;
}

.comp-col {
  flex: 1;
  border-radius: 12px;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comp-col.standard {
  background-color: rgba(0, 0, 0, 0.01);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.comp-col.standard h3 {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comp-col.standard ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.comp-col.standard li {
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.comp-col.premium {
  background: rgba(108, 35, 198, 0.03);
  border: 1.5px solid rgba(108, 35, 198, 0.15);
  box-shadow: 0 6px 15px rgba(108, 35, 198, 0.04);
}

.comp-col.premium h3 {
  font-size: 0.8rem;
  color: var(--accent-purple);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
}

.comp-col.premium ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.comp-col.premium li {
  font-size: 0.7rem;
  color: var(--text-main);
  font-weight: 600;
  line-height: 1.3;
}

/* ==========================================
   Section 3: Gamified 9-Step Timeline (Light Theme)
   ========================================== */
.timeline-section {
  padding: 40px 20px;
  background-color: rgba(108, 35, 198, 0.02);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.timeline-sub {
  color: var(--accent-purple);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 6px;
  margin-bottom: 24px;
}

.timeline-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-left: 28px; /* Room for vertical bar */
}

/* Vertical Timeline Line */
.timeline-line {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 3px;
  height: calc(100% - 20px);
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  z-index: 1;
}

.timeline-progress {
  width: 100%;
  height: 0%;
  background: linear-gradient(to bottom var(--in-oklch), var(--accent-cyan) 0%, var(--accent-pink) 50%, var(--accent-purple) 100%);
  box-shadow: 0 0 8px rgba(108, 35, 198, 0.3);
  border-radius: 4px;
}

.timeline-node {
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease;
}

/* Bullet markers */
.node-marker {
  position: absolute;
  left: -28px;
  top: 2px;
  transform: translateX(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: white;
  border: 2px solid rgba(0, 0, 0, 0.1);
  color: var(--text-muted);
  font-size: 0.65rem;
  font-weight: 800;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Highlighting nodes that are active */
.timeline-node.node-highlighted .node-marker {
  border-color: var(--accent-purple);
  color: white;
  background-color: var(--accent-purple);
  box-shadow: 0 0 8px rgba(108, 35, 198, 0.4);
}

.node-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: var(--bg-panel-solid);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 4px 15px rgba(26, 21, 44, 0.02);
  transition: all 0.4s ease;
}

.timeline-node.node-highlighted .node-content {
  border-color: rgba(108, 35, 198, 0.15);
  box-shadow: 0 8px 25px rgba(26, 21, 44, 0.05);
}

.node-badge {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--accent-purple);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.timeline-node.node-highlighted .node-badge {
  color: var(--accent-pink);
  animation: shine-badge 2s infinite;
}

@keyframes shine-badge {
  0% { text-shadow: 0 0 2px rgba(213, 0, 109, 0.1); }
  50% { text-shadow: 0 0 8px rgba(213, 0, 109, 0.3); }
  100% { text-shadow: 0 0 2px rgba(213, 0, 109, 0.1); }
}

.node-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
}

.node-content p {
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--text-muted);
}

/* Custom Visual Placeholders for Phases (dopamine representations) */
.phase-visual-placeholder {
  margin-top: 6px;
  width: 100%;
  height: 44px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.01);
  border: 1px dashed rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  padding: 0 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-main);
}

/* Neon Glow classes for visuals (tuned for light background) */
.neon-blue-glow { border-color: rgba(0, 123, 255, 0.2); background: rgba(0, 123, 255, 0.02); color: var(--accent-cyan); }
.neon-purple-glow { border-color: rgba(108, 35, 198, 0.2); background: rgba(108, 35, 198, 0.02); color: var(--accent-purple); }
.neon-pink-glow { border-color: rgba(213, 0, 109, 0.2); background: rgba(213, 0, 109, 0.02); color: var(--accent-pink); }
.neon-yellow-glow { border-color: rgba(241, 196, 15, 0.3); background: rgba(241, 196, 15, 0.02); color: #d68910; }
.neon-cyan-glow { border-color: rgba(0, 123, 255, 0.2); background: rgba(0, 123, 255, 0.02); color: var(--accent-cyan); }
.neon-green-glow { border-color: rgba(0, 170, 0, 0.2); background: rgba(0, 170, 0, 0.02); color: var(--accent-green); }
.neon-orange-glow { border-color: rgba(255, 69, 0, 0.2); background: rgba(255, 69, 0, 0.02); color: #e65100; }
.neon-red-glow { border-color: rgba(213, 0, 109, 0.2); background: rgba(213, 0, 109, 0.02); color: var(--accent-pink); }

/* Timeline mid cta */
.timeline-cta {
  padding: 10px 0;
  display: flex;
  justify-content: center;
}

/* Next months card */
.next-months-section {
  background: radial-gradient(circle at 100% 100%, rgba(108, 35, 198, 0.02) 0%, transparent 60%);
}

.next-months-card {
  background-color: var(--bg-panel-solid);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 4px 15px rgba(26, 21, 44, 0.02);
}

.next-months-card p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.next-months-card .highlight-text {
  color: var(--text-main);
  border-left: 3px solid var(--accent-purple);
  padding-left: 10px;
}

.price-box {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 10px 0;
  padding-top: 10px;
  border-top: 1px dashed rgba(0, 0, 0, 0.06);
}

.price-old {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 500;
}

.price-current {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent-green);
  font-family: var(--font-display);
}

.price-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-left: 4px;
}

.guarantee-text {
  font-size: 0.75rem !important;
  color: #c0392b !important; /* Premium crimson for guarantee text on white */
  font-weight: 600;
}

/* Reviews section */
.reviews-section {
  background-color: rgba(108, 35, 198, 0.01);
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.video-placeholder-card {
  aspect-ratio: 4/5;
  border-radius: 12px;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  cursor: pointer;
  background-size: cover;
  background-position: center;
}

.video-placeholder-card:nth-child(1) { background-image: url('https://images.unsplash.com/photo-1506794778202-cad84cf45f1d?auto=format&fit=crop&w=300&q=80'); }
.video-placeholder-card:nth-child(2) { background-image: url('https://images.unsplash.com/photo-1544005313-94ddf0286df2?auto=format&fit=crop&w=300&q=80'); }
.video-placeholder-card:nth-child(3) { background-image: url('https://images.unsplash.com/photo-1500648767791-00dcc994a43e?auto=format&fit=crop&w=300&q=80'); }
.video-placeholder-card:nth-child(4) { background-image: url('https://images.unsplash.com/photo-1517841905240-472988babdf9?auto=format&fit=crop&w=300&q=80'); }

.video-thumb-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.8) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
  gap: 8px;
}

.play-icon {
  width: 28px;
  height: 28px;
  background-color: white;
  border-radius: 50%;
  color: var(--accent-purple);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.65rem;
  font-weight: bold;
  align-self: center;
  margin-bottom: auto;
  margin-top: auto;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.student-name {
  font-size: 0.65rem;
  color: white;
  font-weight: 600;
  line-height: 1.2;
}

.written-reviews {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 12px;
}

.review-bubble {
  background-color: var(--bg-panel-solid);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(26, 21, 44, 0.02);
}

.review-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 1.5px;
}

.review-bubble p {
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--text-main);
  font-style: italic;
}

.review-author {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
  align-self: flex-end;
}

/* Audience section (Who is this for) */
.audience-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.audience-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.audience-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-pink);
  font-weight: 700;
}

.audience-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.audience-card {
  background-color: var(--bg-panel-solid);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(26, 21, 44, 0.02);
}

.card-num {
  position: absolute;
  top: 10px;
  right: 16px;
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(108, 35, 198, 0.03);
  font-family: var(--font-display);
}

.audience-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-purple);
}

.audience-card p {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--text-muted);
}

/* ==========================================
   Section 7: Scroll-Snap Bonus Carousel
   ========================================== */
.bonuses-section {
  background: radial-gradient(circle at 0% 100%, rgba(0, 123, 255, 0.02) 0%, transparent 60%);
}

.bonus-carousel-wrapper {
  width: 100%;
  margin-top: 12px;
  position: relative;
}

.bonus-scroller {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 4px 20px 4px;
  list-style: none;
  scrollbar-width: none;
}

.bonus-scroller::-webkit-scrollbar {
  display: none;
}

.bonus-card {
  flex: 0 0 calc(100% - 32px);
  scroll-snap-align: center;
  background-color: var(--bg-panel-solid);
  border: 1.5px solid rgba(108, 35, 198, 0.1);
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 8px 20px rgba(26, 21, 44, 0.04);
  transition: all 0.3s ease;
}

/* Feature Detection for Scroll Driven Scale/Fade Animations */
@supports ((animation-timeline: view()) and (animation-range: entry)) {
  @keyframes carousel-anim {
    0% { transform: scale(0.92); opacity: 0.65; }
    50% { transform: scale(1); opacity: 1; }
    100% { transform: scale(0.92); opacity: 0.65; }
  }
  
  .bonus-scroller > * {
    animation: carousel-anim auto linear both;
    animation-timeline: view(inline);
    animation-range: cover 0% cover 100%;
  }
}

.bonus-icon {
  font-size: 2.2rem;
  display: flex;
  align-items: center;
}

.bonus-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.3;
}

.bonus-desc {
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: -6px;
}

.carousel-indicators .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.carousel-indicators .dot.active {
  background-color: var(--accent-purple);
  width: 14px;
  border-radius: 3px;
  box-shadow: 0 0 8px rgba(108, 35, 198, 0.3);
}

/* ==========================================
   Section 8: Scratch Card (Light Mode texture)
   ========================================== */
.scratch-section {
  background-color: rgba(108, 35, 198, 0.01);
}

.scratch-card-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 12px 0;
}

.scratch-card {
  position: relative;
  width: 100%;
  max-width: 340px;
  height: 160px;
  background: linear-gradient(135deg var(--in-oklch), #ffffff, #f5f4f8);
  border: 1.5px solid rgba(108, 35, 198, 0.2);
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(26, 21, 44, 0.05), inset 0 0 10px rgba(108, 35, 198, 0.02);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.scratch-content {
  text-align: center;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 1;
}

.gift-emoji {
  font-size: 2rem;
  animation: bounce-gift 1.5s infinite alternate;
}

@keyframes bounce-gift {
  from { transform: translateY(0); }
  to { transform: translateY(-8px); }
}

.scratch-content h3 {
  font-size: 1.2rem;
  color: var(--accent-green);
  font-weight: 800;
  text-shadow: 0 0 8px rgba(0, 170, 0, 0.15);
}

.prize-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.3;
}

.prize-code {
  background-color: rgba(0, 170, 0, 0.05);
  border: 1.5px dashed var(--accent-green);
  color: var(--accent-green);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  margin-top: 4px;
}

.scratch-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: crosshair;
  z-index: 5;
  touch-action: none;
}

/* ==========================================
   Section 9: Pricing Card (Light Theme glass)
   ========================================== */
.pricing-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1.5px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 30px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 15px 35px rgba(26, 21, 44, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg var(--in-oklch), var(--accent-pink), var(--accent-purple));
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(213, 0, 109, 0.3);
}

.pricing-card h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-main);
  text-align: center;
  margin-top: 8px;
}

.pricing-lead {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: -10px;
  line-height: 1.4;
}

.pricing-amount {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--text-main);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  font-family: var(--font-display);
}

.pricing-amount .currency {
  font-size: 1.8rem;
  color: var(--accent-purple);
  margin-top: 8px;
}

.pricing-amount .once {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  align-self: flex-end;
  margin-bottom: 12px;
  margin-left: 6px;
}

.pricing-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 18px;
}

.pricing-benefits li {
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.pricing-benefits li.active-benefit {
  color: var(--text-main);
}

.check-icon {
  color: var(--text-muted);
  font-weight: 900;
  font-size: 0.95rem;
  opacity: 0.3;
  transition: all 0.3s ease;
}

.pricing-benefits li.active-benefit .check-icon {
  color: var(--accent-green);
  opacity: 1;
  text-shadow: 0 0 5px rgba(0, 170, 0, 0.3);
}

.guarantee-footer {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.3;
}

/* ==========================================
   Section 10: Accordion FAQs (Light Theme)
   ========================================== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background-color: var(--bg-panel-solid);
  border: 1.5px solid rgba(0, 0, 0, 0.04);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease;
  box-shadow: 0 4px 12px rgba(26, 21, 44, 0.01);
}

.faq-item.active {
  border-color: rgba(108, 35, 198, 0.2);
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  color: var(--text-main);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  gap: 12px;
}

.faq-icon {
  font-size: 0.65rem;
  color: var(--text-muted);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--accent-purple);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer p {
  padding: 0 20px 16px 20px;
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--text-muted);
}

/* Final Call To Action */
.final-cta-section {
  background: radial-gradient(circle at 50% 100%, rgba(108, 35, 198, 0.04) 0%, transparent 70%);
}

.final-text {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.final-bullets {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 4px;
}

.final-bullets span {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* ==========================================
   Sticky Floating Footer CTA
   ========================================== */
.sticky-footer {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  width: 100%;
  max-width: var(--container-width);
  height: 76px;
  background: rgba(255, 255, 255, 0.9);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  box-shadow: 0 -8px 25px rgba(26, 21, 44, 0.05);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-footer.visible {
  transform: translate(-50%, 0);
}

.sticky-payout {
  display: flex;
  flex-direction: column;
}

.sticky-price {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--accent-green);
  font-family: var(--font-display);
}

.sticky-strike {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-top: -2px;
}

.sticky-cta-btn {
  background: linear-gradient(135deg var(--in-oklch), var(--accent-purple) 0%, var(--accent-pink) 100%);
  border: none;
  border-radius: 10px;
  color: white;
  font-size: 0.95rem;
  font-weight: 800;
  padding: 10px 18px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(108, 35, 198, 0.2);
  animation: pulse-sticky-cta 2.5s infinite;
}

@keyframes pulse-sticky-cta {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); box-shadow: 0 6px 15px rgba(213, 0, 109, 0.3); }
  100% { transform: scale(1); }
}

/* ==========================================
   Dopamine Emitter Particle Effects
   ========================================== */
.emoji-burst {
  position: absolute;
  pointer-events: none;
  font-size: 1.5rem;
  z-index: 1000;
  user-select: none;
  animation: float-emoji-fade 1.2s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
}

@keyframes float-emoji-fade {
  0% {
    transform: translate(-50%, -50%) scale(0.5) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translate(var(--tx), var(--ty)) scale(1.1) rotate(var(--rot));
    opacity: 0;
  }
}

/* ==========================================
   FOMO Toast Alerts popup
   ========================================== */
.toast-notification {
  position: fixed;
  bottom: 96px;
  left: 50%;
  transform: translate(-50%, 150px);
  width: calc(100% - 40px);
  max-width: 400px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(108, 35, 198, 0.15);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(26, 21, 44, 0.08);
  z-index: 99;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast-notification.active {
  transform: translate(-50%, 0);
}

.toast-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(108, 35, 198, 0.06);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  border: 1px solid rgba(108, 35, 198, 0.12);
}

.toast-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.toast-text {
  font-size: 0.75rem;
  color: var(--text-main);
  line-height: 1.3;
}

.toast-time {
  font-size: 0.65rem;
  color: var(--text-muted);
}
