@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --background: 0 0% 4%;
  --foreground: 0 0% 98%;
  --card: 0 0% 7%;
  --card-foreground: 0 0% 98%;
  --popover: 0 0% 7%;
  --popover-foreground: 0 0% 98%;
  --primary: 73 100% 56%;
  --primary-foreground: 0 0% 6%;
  --secondary: 0 0% 12%;
  --secondary-foreground: 0 0% 95%;
  --muted: 0 0% 14%;
  --muted-foreground: 0 0% 65%;
  --accent: 73 100% 56%;
  --accent-foreground: 0 0% 6%;
  --destructive: 0 84% 60%;
  --border: 0 0% 16%;
  --radius: 1rem;
  --neon: 73 100% 56%;
  --neon-soft: 73 100% 70%;
  --danger: 0 90% 60%;
  --gradient-hero: radial-gradient(ellipse 80% 60% at 50% 0%, hsl(73 100% 56% / 0.14), transparent 60%);
  --gradient-cta: linear-gradient(180deg, hsl(73 100% 60%), hsl(70 100% 50%));
  --shadow-neon: 0 0 0 1px hsl(73 100% 56% / 0.4), 0 10px 40px -10px hsl(73 100% 56% / 0.5);
  --shadow-card: 0 10px 30px -15px hsl(0 0% 0% / 0.6);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-color: hsl(var(--border));
}

html {
  scroll-behavior: smooth;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  line-height: 1.5;
}

.font-display {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.text-neon {
  color: hsl(var(--neon));
}

.bg-neon {
  background-color: hsl(var(--neon));
}

.bg-danger {
  background-color: hsl(var(--danger));
}

.bg-hero-glow {
  background: var(--gradient-hero);
}

.bg-cta {
  background: var(--gradient-cta);
}

.shadow-neon {
  box-shadow: var(--shadow-neon);
}

.shadow-card {
  box-shadow: var(--shadow-card);
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Announcement Bars */
.sticky-announcement {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background-color: hsl(var(--neon));
  color: hsl(var(--primary-foreground));
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.countdown-bar {
  width: 100%;
  background-color: hsl(var(--danger));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.countdown-digits {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: ui-monospace, monospace;
}

.countdown-box {
  background: rgba(0, 0, 0, 0.3);
  padding: 0.15rem 0.4rem;
  border-radius: 0.25rem;
}

/* Header & Hero */
.hero-section {
  position: relative;
  background: var(--gradient-hero);
  padding-top: 2.5rem;
  padding-bottom: 3.5rem;
  text-align: center;
}

.hero-banner-container {
  max-width: 56rem;
  margin: 0 auto 2rem auto;
  border-radius: 1.5rem;
  border: 1px solid hsl(var(--neon) / 0.35);
  box-shadow: var(--shadow-neon);
  overflow: hidden;
}

.hero-banner-container img {
  width: 100%;
  height: auto;
  display: block;
}

.badge-live {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  border: 1px solid hsl(var(--neon) / 0.4);
  background: hsl(var(--neon) / 0.1);
  color: hsl(var(--neon));
  font-size: 0.875rem;
  font-weight: 600;
}

.pulse-dot-wrap {
  position: relative;
  display: flex;
  height: 0.5rem;
  width: 0.5rem;
}

.pulse-dot {
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background-color: hsl(var(--neon));
  animation: pulse-dot 2s ease-in-out infinite;
}

.pulse-dot-center {
  position: relative;
  display: inline-flex;
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 9999px;
  background-color: hsl(var(--neon));
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.6); }
}

.hero-title {
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-top: 1.5rem;
}

.hero-subtitle {
  max-width: 42rem;
  margin: 1.5rem auto 0 auto;
  font-size: 1.05rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.original-price {
  font-size: 1.75rem;
  text-decoration: line-through;
  color: hsl(var(--muted-foreground));
}

.discount-tag {
  background-color: hsl(var(--danger));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 9999px;
}

.current-price {
  font-size: clamp(3rem, 6vw, 4rem);
  color: hsl(var(--neon));
  font-weight: 400;
  line-height: 1;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 1rem;
  background: var(--gradient-cta);
  color: hsl(var(--primary-foreground));
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--shadow-neon);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  border: none;
  cursor: pointer;
}

.cta-btn:hover {
  transform: scale(1.02);
}

.cta-btn:active {
  transform: scale(0.98);
}

.guarantee-subtext {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
}

.hero-pill {
  border-radius: 9999px;
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Marquee Styles */
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  display: flex;
  width: 100%;
}

.marquee-content {
  display: flex;
  gap: 2.5rem;
  animation: marquee 40s linear infinite;
  flex-shrink: 0;
  min-width: 100%;
  align-items: center;
}

.marquee-slow {
  animation: marquee 85s linear infinite;
}

.marquee-reverse {
  animation: marquee-reverse 75s linear infinite;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee-reverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.metrics-strip {
  border-top: 1px solid hsl(var(--border));
  border-bottom: 1px solid hsl(var(--border));
  background-color: hsl(var(--secondary) / 0.4);
  padding: 1rem 0;
}

.metric-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  font-weight: 500;
}

/* Sections Common */
.section {
  border-top: 1px solid hsl(var(--border));
  padding: 4.5rem 0;
  position: relative;
}

.section-bg-dark {
  background-color: hsl(var(--background));
}

.section-bg-subtle {
  background-color: hsl(var(--secondary) / 0.2);
}

.section-header {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto 3rem auto;
}

.section-tag {
  display: inline-block;
  color: hsl(var(--neon));
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  line-height: 1.1;
}

.section-desc {
  margin-top: 1rem;
  color: hsl(var(--muted-foreground));
  font-size: 1rem;
}

/* Card Common */
.feature-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
  border-color: hsl(var(--neon) / 0.5);
}

/* 4 Grid Infographics in uE */
.infographics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.infographic-card {
  border-radius: 1.5rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: border-color 0.2s;
}

.infographic-card:hover {
  border-color: hsl(var(--neon) / 0.5);
}

.infographic-card img {
  width: 100%;
  height: auto;
  display: block;
}

.infographic-caption {
  padding: 1rem 1.25rem;
  font-size: 0.85rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.4;
}

/* Subscription Profile Cards Marquee */
.sub-card {
  width: 240px;
  flex-shrink: 0;
  border-radius: 1rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: border-color 0.2s;
}

.sub-card:hover {
  border-color: hsl(var(--neon) / 0.5);
}

.sub-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.sub-card-details {
  padding: 1rem;
}

.sub-username {
  font-size: 1.05rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sub-stats {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  margin-top: 0.25rem;
}

.sub-revenue {
  color: hsl(var(--neon));
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 0.25rem;
}

/* Instagram Profiles Marquee */
.profile-card {
  width: 250px;
  flex-shrink: 0;
  border-radius: 1.25rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.profile-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* Reels Showcase Marquee */
.reel-thumb-card {
  width: 220px;
  flex-shrink: 0;
  border-radius: 1.25rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.reel-thumb-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* 4-column feature grid */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

/* Money Back Guarantee Banner */
.guarantee-banner {
  max-width: 60rem;
  margin: 0 auto;
  border-radius: 1.5rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.guarantee-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* Master the Workflow Comparison & Syllabus */
.workflow-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 900px) {
  .workflow-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
}

.check-icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.check-ok {
  background-color: hsl(var(--neon));
  color: hsl(var(--primary-foreground));
}

.check-no {
  background-color: hsl(var(--danger));
  color: #fff;
}

.syllabus-box {
  border-radius: 1.5rem;
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--card));
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

.syllabus-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border-bottom: 1px solid hsl(var(--border) / 0.6);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.syllabus-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.syllabus-num {
  font-size: 1.5rem;
  color: hsl(var(--neon));
  width: 2rem;
  flex-shrink: 0;
}

/* 3 Simple Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.step-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: border-color 0.2s;
}

.step-card:hover {
  border-color: hsl(var(--neon) / 0.5);
}

.step-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.step-num {
  font-size: 3rem;
  color: hsl(var(--neon));
  line-height: 1;
}

/* Connected Ecosystem Pills */
.ecosystem-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.ecosystem-center {
  background-color: hsl(var(--neon));
  color: hsl(var(--primary-foreground));
  font-size: 1.15rem;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
}

.ecosystem-pill {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  color: hsl(var(--foreground));
  padding: 0.65rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
}

/* Course Comparison (Traditional vs Mastery) */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.comparison-card-old {
  border-radius: 1.5rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  padding: 2rem;
}

.comparison-card-new {
  border-radius: 1.5rem;
  border: 1px solid hsl(var(--neon) / 0.4);
  background: hsl(var(--card));
  padding: 2rem;
  box-shadow: var(--shadow-neon);
}

/* Bonuses Grid */
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.bonus-box {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: border-color 0.2s;
}

.bonus-box:hover {
  border-color: hsl(var(--neon) / 0.5);
}

.bonus-badge {
  background: hsl(var(--neon) / 0.15);
  color: hsl(var(--neon));
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

/* Final Offer Box */
.final-offer-card {
  position: relative;
  max-width: 50rem;
  margin: 0 auto;
  border-radius: 1.5rem;
  border: 1px solid hsl(var(--neon) / 0.4);
  background: hsl(var(--card));
  padding: clamp(1.5rem, 5vw, 3rem);
  box-shadow: var(--shadow-neon);
  overflow: hidden;
}

.final-offer-glow {
  position: absolute;
  top: -6rem;
  right: -6rem;
  width: 16rem;
  height: 16rem;
  border-radius: 9999px;
  background: hsl(var(--neon) / 0.2);
  filter: blur(64px);
  pointer-events: none;
}

.features-checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.75rem;
  margin: 2rem 0;
  list-style: none;
}

.features-checklist li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}

.testimonial-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  object-fit: cover;
}

/* FAQ Accordions */
.faq-list {
  max-width: 48rem;
  margin: 2.5rem auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border-radius: 1rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  padding: 1.25rem;
  cursor: pointer;
  transition: border-color 0.2s;
}

.faq-item[open] {
  border-color: hsl(var(--neon) / 0.5);
}

.faq-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  font-size: 1rem;
  list-style: none;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  color: hsl(var(--neon));
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  margin-top: 0.75rem;
  color: hsl(var(--muted-foreground));
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Footer */
.site-footer {
  border-top: 1px solid hsl(var(--border));
  padding: 2.5rem 0 7rem 0;
  text-align: center;
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

@media (min-width: 768px) {
  .site-footer {
    padding-bottom: 2.5rem;
  }
}

/* Mobile Sticky Bottom CTA */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-top: 1px solid hsl(var(--neon) / 0.3);
  background: hsl(var(--background) / 0.95);
  backdrop-filter: blur(12px);
  padding: 0.75rem;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
  .mobile-sticky-bar {
    display: none;
  }
}

.mobile-cta-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 1rem;
  background: var(--gradient-cta);
  padding: 0.9rem 1.25rem;
  font-weight: 700;
  color: hsl(var(--primary-foreground));
  text-decoration: none;
  box-shadow: var(--shadow-neon);
  transition: transform 0.1s ease;
}

.mobile-cta-link:active {
  transform: scale(0.98);
}

/* Live Sales Toast */
.sales-toast {
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 60;
  max-width: 20rem;
  transition: all 0.5s ease;
  transform: translateY(1.5rem);
  opacity: 0;
  pointer-events: none;
}

.sales-toast.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.toast-box {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border-radius: 1rem;
  border: 1px solid hsl(var(--neon) / 0.4);
  background: hsl(var(--card) / 0.95);
  backdrop-filter: blur(8px);
  padding: 0.75rem 1.5rem 0.75rem 0.75rem;
  box-shadow: var(--shadow-neon);
}

.toast-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  background: hsl(var(--neon) / 0.15);
  color: hsl(var(--neon));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Floating Language Selector */
.lang-btn {
  position: fixed;
  top: 4.5rem;
  right: 1rem;
  z-index: 70;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 9999px;
  border: 1px solid hsl(var(--neon) / 0.4);
  background: hsl(var(--card) / 0.9);
  color: hsl(var(--foreground));
  padding: 0.4rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: border-color 0.2s;
}

.lang-btn:hover {
  border-color: hsl(var(--neon));
}

.lang-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  background: hsl(var(--background) / 0.8);
  backdrop-filter: blur(4px);
  padding: 1rem;
}

.lang-modal-overlay.active {
  display: flex;
}

.lang-modal-content {
  position: relative;
  width: 100%;
  max-width: 28rem;
  border-radius: 1.5rem;
  border: 1px solid hsl(var(--neon) / 0.4);
  background: hsl(var(--card));
  padding: 1.5rem;
  box-shadow: var(--shadow-neon);
}

.lang-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: hsl(var(--muted-foreground));
  font-size: 1.25rem;
  cursor: pointer;
}

.lang-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.lang-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0.75rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--secondary));
  color: hsl(var(--foreground));
  padding: 0.75rem;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.lang-option.selected {
  border-color: hsl(var(--neon));
  background: hsl(var(--neon) / 0.1);
}
