/* =============================================
   MarketMastery — Main Stylesheet
   Dark Green Theme (replicated from React)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ---- CSS Variables ---- */
:root {
  --background:      hsl(144, 21%, 5%);
  --foreground:      hsl(0, 0%, 100%);
  --card:            hsl(146, 14%, 10%);
  --card-foreground: hsl(0, 0%, 100%);
  --card-border:     hsl(140, 13%, 19%);
  --primary:         hsl(144, 100%, 50%);
  --primary-fg:      hsl(144, 21%, 5%);
  --muted:           hsl(146, 14%, 15%);
  --muted-fg:        hsl(240, 5%, 65%);
  --destructive:     hsl(0, 84%, 60%);
  --radius:          0.5rem;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea { font-family: inherit; }

/* ---- Utility: Dot Grid Background ---- */
.bg-dot-grid {
  background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* ---- Utility: Glow ---- */
.glow-text { text-shadow: 0 0 20px rgba(0,255,102,0.4); }
.glow-border { box-shadow: 0 0 20px rgba(0,255,102,0.2); }
.glow-border:hover { box-shadow: 0 0 30px rgba(0,255,102,0.4); }

/* ---- Utility: Glass Card ---- */
.glass-card {
  background: rgba(14,26,14,0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--card-border);
}

/* ---- Utility: Primary Color Text ---- */
.text-primary { color: var(--primary); }
.text-white   { color: #ffffff; }
.text-muted   { color: var(--muted-fg); }

/* ---- Utility: Fade-up animation ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.animate-fade-up   { animation: fadeUp 0.55s ease-out forwards; }
.animate-fade-in   { animation: fadeIn 0.5s ease-out forwards; }
.anim-delay-1      { animation-delay: 0.1s; }
.anim-delay-2      { animation-delay: 0.2s; }
.anim-delay-3      { animation-delay: 0.3s; }
.anim-delay-4      { animation-delay: 0.4s; }
.anim-delay-5      { animation-delay: 0.5s; }

/* Intersection observer animation — hidden by default, revealed on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-x-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}
.reveal-x-right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}
.reveal-x-left.visible,
.reveal-x-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  background: rgba(14,26,14,0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(42,51,42,0.5);
}
.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.navbar-logo {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}
.navbar-logo .logo-market { color: var(--primary); text-shadow: 0 0 20px rgba(0,255,102,0.4); }
.navbar-logo .logo-mastery { color: #ffffff; }
.navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.navbar-links a {
  color: var(--muted-fg);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
.navbar-links a:hover { color: #ffffff; }
.btn-get-access {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.25rem;
  background: var(--primary);
  color: var(--primary-fg);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: var(--radius);
  box-shadow: 0 0 20px rgba(0,255,102,0.2);
  transition: background 0.2s, box-shadow 0.2s;
}
.btn-get-access:hover {
  background: rgba(0,255,102,0.9);
  box-shadow: 0 0 30px rgba(0,255,102,0.4);
}
.navbar-mobile-btn {
  display: none;
  padding: 0.5rem;
  border-radius: 0.375rem;
  color: var(--muted-fg);
  transition: color 0.2s;
}
.navbar-mobile-btn:hover { color: #ffffff; }
.navbar-mobile-btn svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 2; }
.mobile-menu {
  display: none;
  background: rgba(14,26,14,0.95);
  border-top: 1px solid var(--card-border);
  padding: 0.5rem 0.75rem 0.75rem;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  color: var(--muted-fg);
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: #ffffff; }
.mobile-menu .btn-get-access { margin-top: 1rem; width: 100%; }

@media (max-width: 768px) {
  .navbar-links, .navbar-desktop-btn { display: none !important; }
  .navbar-mobile-btn { display: block; }
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--background);
  border-top: 1px solid var(--card-border);
  padding: 3rem 1.5rem;
  position: relative;
  z-index: 10;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  display: block;
  margin-bottom: 1rem;
}
.footer-brand-name .logo-market  { color: var(--primary); text-shadow: 0 0 20px rgba(0,255,102,0.4); }
.footer-brand-name .logo-mastery { color: #ffffff; }
.footer-tagline { color: var(--muted-fg); font-size: 0.875rem; max-width: 280px; }
.footer-col h3 { color: #ffffff; font-weight: 600; margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a { color: var(--muted-fg); font-size: 0.875rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid var(--card-border);
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer-bottom p { color: var(--muted-fg); font-size: 0.875rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: var(--muted-fg); font-size: 0.875rem; transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--primary); }
.footer-disclaimer {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(42,51,42,0.3);
  color: #666;
  font-size: 0.75rem;
  line-height: 1.6;
  text-align: justify;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--primary);
  color: var(--primary-fg);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius);
  box-shadow: 0 0 20px rgba(0,255,102,0.2);
  transition: background 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: rgba(0,255,102,0.9);
  box-shadow: 0 0 30px rgba(0,255,102,0.4);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: 1px solid rgba(0,255,102,0.4);
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius);
  transition: border-color 0.2s, color 0.2s;
  background: transparent;
  cursor: pointer;
}
.btn-outline:hover {
  border-color: rgba(0,255,102,0.8);
  color: var(--primary);
}
.btn-card {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 0.75rem;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-card-primary {
  background: var(--primary);
  color: var(--primary-fg);
  box-shadow: 0 0 20px rgba(0,255,102,0.2);
}
.btn-card-primary:hover {
  background: rgba(0,255,102,0.9);
  box-shadow: 0 0 30px rgba(0,255,102,0.4);
}
.btn-card-outline {
  background: rgba(7,14,7,0.3);
  border: 1px solid var(--card-border);
  color: #ffffff;
}
.btn-card-outline:hover {
  border-color: rgba(0,255,102,0.5);
  color: var(--primary);
}

/* ============================================
   BADGE / TAG
   ============================================ */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(0,255,102,0.1);
  color: var(--primary);
  border: 1px solid rgba(0,255,102,0.2);
}

/* ============================================
   SECTION LAYOUT HELPERS
   ============================================ */
.section { padding: 5rem 1.5rem; }
.section-sm { padding: 3rem 1.5rem; }
.section-lg { padding: 6rem 1.5rem; }
.container { max-width: 1152px; margin: 0 auto; }
.container-sm { max-width: 896px; margin: 0 auto; }
.container-xs { max-width: 672px; margin: 0 auto; }
.text-center { text-align: center; }
.pt-hero { padding-top: 10rem; }

/* ============================================
   HERO STYLES
   ============================================ */
.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: rgba(0,255,102,0.04);
  filter: blur(80px);
  pointer-events: none;
}
.hero-title {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero-title .accent { color: var(--primary); text-shadow: 0 0 20px rgba(0,255,102,0.4); }
.hero-subtitle {
  font-size: 1.125rem;
  color: var(--muted-fg);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Stats Strip */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 700px;
  margin: 4rem auto 0;
}
.stat-card {
  border-radius: 0.75rem;
  padding: 1.25rem 1rem;
  text-align: center;
}
.stat-value { font-size: 1.5rem; font-weight: 900; color: var(--primary); text-shadow: 0 0 20px rgba(0,255,102,0.4); }
.stat-label { color: var(--muted-fg); font-size: 0.75rem; margin-top: 0.25rem; }

/* ============================================
   PRODUCT / HEATMAP VISUAL SECTION
   ============================================ */
.product-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 3.5rem;
  align-items: center;
}
.heatmap-visual {
  border-radius: 1.5rem;
  padding: 1.25rem 1.75rem;
  position: relative;
  overflow: hidden;
}
.heatmap-glow {
  position: absolute;
  top: -6rem;
  right: -4rem;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: rgba(0,255,102,0.1);
  filter: blur(60px);
  pointer-events: none;
}
.heatmap-titlebar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red    { background: hsl(0,84%,60%); }
.dot-yellow { background: #eab308; }
.dot-green  { background: var(--primary); }
.heatmap-label { margin-left: 0.5rem; font-size: 0.75rem; color: var(--muted-fg); font-family: monospace; }
.heatmap-tag { margin-left: auto; font-size: 0.75rem; color: var(--primary); font-weight: 600; }
.heatmap-chart {
  height: 18rem;
  border-radius: 1rem;
  border: 1px solid var(--card-border);
  background: rgba(7,14,7,0.7);
  position: relative;
  overflow: hidden;
}
.heatmap-grid-line {
  position: absolute;
  left: 0; right: 0;
  border-top: 1px solid rgba(0,255,102,0.1);
}
.heatmap-grid-line:nth-child(1) { top: 25%; }
.heatmap-grid-line:nth-child(2) { top: 50%; }
.heatmap-grid-line:nth-child(3) { top: 75%; }
.heatmap-bars {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  padding: 2rem 1rem 1rem;
}
.heatmap-bar { flex: 1; border-radius: 2px 2px 0 0; position: relative; }
.heatmap-bar-label {
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  color: var(--primary);
  font-family: monospace;
  white-space: nowrap;
}
.heatmap-poc-line {
  position: absolute;
  left: 2.5rem;
  right: 2.5rem;
  top: 44%;
  border-top: 2px solid rgba(0,255,102,0.7);
  transform: rotate(-4deg);
}
.heatmap-poc-label {
  position: absolute;
  right: 0;
  top: -1.25rem;
  font-size: 10px;
  color: var(--primary);
  font-family: monospace;
}
.heatmap-zone-line {
  position: absolute;
  left: 3rem;
  right: 5rem;
  bottom: 23%;
  border-top: 2px solid rgba(96,165,250,0.6);
  transform: rotate(3deg);
}
.heatmap-zone-label {
  position: absolute;
  left: 0;
  top: -1.25rem;
  font-size: 10px;
  color: #93c5fd;
  font-family: monospace;
}
.heatmap-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--muted-fg);
  font-family: monospace;
}
.heatmap-footer .high { color: var(--primary); }

/* Product text side */
.product-eyebrow { color: var(--primary); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; }
.product-title { font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 700; color: #ffffff; margin: 1rem 0 1.25rem; }
.product-desc { color: var(--muted-fg); line-height: 1.7; margin-bottom: 2rem; }
.capability-list { display: flex; flex-direction: column; gap: 1.25rem; }
.capability-item { display: flex; gap: 1rem; }
.capability-icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: 0.75rem;
  background: rgba(0,255,102,0.1);
  border: 1px solid rgba(0,255,102,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.capability-icon svg { width: 20px; height: 20px; }
.capability-title { color: #ffffff; font-weight: 600; margin-bottom: 0.25rem; font-size: 0.9375rem; }
.capability-desc  { color: var(--muted-fg); font-size: 0.875rem; line-height: 1.6; }
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.25rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: color 0.2s;
}
.link-arrow:hover { color: #ffffff; }
.link-arrow svg { width: 16px; height: 16px; }

/* ============================================
   WHY / FEATURES GRID
   ============================================ */
.section-eyebrow { color: var(--primary); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; }
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.75rem;
}
.section-title .accent { color: var(--primary); text-shadow: 0 0 20px rgba(0,255,102,0.4); }
.section-subtitle { color: var(--muted-fg); max-width: 480px; margin: 0 auto; }
.section-header-block { text-align: center; margin-bottom: 3.5rem; }
.cards-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.cards-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.feature-card {
  border-radius: 1rem;
  padding: 1.5rem;
  transition: border-color 0.3s;
}
.feature-card:hover { border-color: rgba(0,255,102,0.3) !important; }
.feature-icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: 0.5rem;
  background: rgba(0,255,102,0.1);
  border: 1px solid rgba(0,255,102,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  margin-bottom: 1rem;
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-card h3 { color: #ffffff; font-weight: 600; font-size: 0.9375rem; margin-bottom: 0.5rem; }
.feature-card p  { color: var(--muted-fg); font-size: 0.875rem; line-height: 1.6; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card { border-radius: 1rem; padding: 1.5rem; }
.stars { display: flex; gap: 0.25rem; margin-bottom: 1rem; }
.stars svg { width: 16px; height: 16px; fill: var(--primary); color: var(--primary); }
.testimonial-quote { color: var(--muted-fg); font-size: 0.875rem; line-height: 1.7; margin-bottom: 1rem; font-style: italic; }
.testimonial-name  { color: #ffffff; font-weight: 600; font-size: 0.875rem; }
.testimonial-role  { color: rgba(157,157,170,0.7); font-size: 0.75rem; }

/* ============================================
   BORDER TOP SECTIONS
   ============================================ */
.border-top { border-top: 1px solid var(--card-border); }

/* ============================================
   PRICING PAGE
   ============================================ */
.pricing-card {
  border-radius: 1.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s;
}
.pricing-card:hover { transform: scale(1.01); }
.pricing-card.highlighted { border-color: rgba(0,255,102,0.5) !important; }
.pricing-card-glow {
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  background: rgba(0,255,102,0.05);
  pointer-events: none;
}
.best-value-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.375rem 1rem;
  background: var(--primary);
  color: var(--primary-fg);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 9999px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(0,255,102,0.2);
  white-space: nowrap;
}
.pricing-plan-name { color: #ffffff; font-weight: 700; font-size: 1.25rem; margin-bottom: 0.25rem; }
.pricing-amount { font-size: 2.5rem; font-weight: 900; color: #ffffff; }
.pricing-period { color: var(--muted-fg); font-size: 0.875rem; margin-left: 0.5rem; }
.pricing-price-row { display: flex; align-items: flex-end; gap: 0.5rem; margin-top: 1rem; margin-bottom: 1.5rem; }
.pricing-features { flex: 1; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.pricing-feature { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; }
.pricing-feature svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.pricing-feature span { color: var(--muted-fg); }
.pricing-btns { display: flex; flex-direction: column; gap: 0.75rem; }
.access-info-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 0.75rem;
  padding: 1.25rem;
  margin-top: 2rem;
}
.access-info-bar svg { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; }
.access-info-bar p { color: var(--muted-fg); font-size: 0.875rem; }
.access-info-bar strong { color: #ffffff; }

/* ============================================
   FAQ PAGE
   ============================================ */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  border-radius: 0.75rem;
  border: 1px solid var(--card-border);
  overflow: hidden;
  transition: border-color 0.2s;
  padding: 0 1.5rem;
}
.faq-item.open { border-color: rgba(0,255,102,0.3); }
.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9375rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}
.faq-trigger:hover { color: var(--primary); }
.faq-chevron {
  flex-shrink: 0;
  width: 20px; height: 20px;
  transition: transform 0.3s;
  color: var(--muted-fg);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
}
.faq-content.open { max-height: 600px; }
.faq-content p {
  color: var(--muted-fg);
  line-height: 1.7;
  font-size: 0.875rem;
  padding-bottom: 1.25rem;
}
.faq-still-questions {
  margin-top: 3rem;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  border-color: rgba(0,255,102,0.2) !important;
}
.faq-still-questions p:first-child { color: #ffffff; font-weight: 600; margin-bottom: 0.5rem; }
.faq-still-questions p:nth-child(2) { color: var(--muted-fg); font-size: 0.875rem; margin-bottom: 1.25rem; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.form-group { margin-bottom: 0; }
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 0.375rem;
}
.form-input, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: rgba(7,14,7,0.5);
  border: 1px solid var(--card-border);
  color: #ffffff;
  font-size: 0.875rem;
  transition: border-color 0.2s;
  outline: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted-fg); }
.form-input:focus, .form-textarea:focus { border-color: rgba(0,255,102,0.6); }
.form-textarea { resize: none; }
.form-error { color: hsl(0,84%,60%); font-size: 0.75rem; margin-top: 0.25rem; }
.form-stack { display: flex; flex-direction: column; gap: 1.25rem; }
.success-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.5rem 1rem;
  text-align: center;
}
.success-message svg { width: 64px; height: 64px; color: var(--primary); text-shadow: 0 0 20px rgba(0,255,102,0.4); margin-bottom: 1rem; }
.success-message h2 { font-size: 1.5rem; font-weight: 700; color: #ffffff; margin-bottom: 0.5rem; }
.success-message p { color: var(--muted-fg); max-width: 320px; }
.email-link-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.email-link-row svg { width: 16px; height: 16px; color: var(--primary); }
.email-link-row p { color: var(--muted-fg); font-size: 0.875rem; }
.email-link-row a { color: var(--primary); transition: color 0.2s; }
.email-link-row a:hover { color: rgba(0,255,102,0.8); }

/* Input with icon */
.input-icon-wrap { position: relative; }
.input-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted-fg);
  width: 16px; height: 16px;
  pointer-events: none;
}
.input-icon-wrap .form-input { padding-left: 2.25rem; }

/* File upload */
.file-upload-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 0.75rem;
  border: 1px dashed var(--card-border);
  background: rgba(7,14,7,0.5);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--muted-fg);
  cursor: pointer;
  transition: border-color 0.2s;
}
.file-upload-label:hover { border-color: rgba(0,255,102,0.6); }
.file-upload-label svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; }
.file-upload-label span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.file-hint { font-size: 0.75rem; color: rgba(157,157,170,0.6); margin-top: 0.375rem; }

/* ============================================
   SUCCESS PAGE
   ============================================ */
.success-page-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  position: relative;
}
.success-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(0,255,102,0.05);
  filter: blur(80px);
  pointer-events: none;
}
.success-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}
.success-logo .accent { color: var(--primary); text-shadow: 0 0 20px rgba(0,255,102,0.4); }
.access-submitted-box {
  background: rgba(7,14,7,0.3);
  border: 1px solid var(--card-border);
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: left;
  margin-bottom: 1.5rem;
}
.access-submitted-box .label { font-size: 0.75rem; color: var(--muted-fg); margin-bottom: 0.25rem; }
.access-submitted-box .value { color: #ffffff; font-family: monospace; font-size: 0.875rem; }
.access-submitted-box .label-2 { font-size: 0.75rem; color: var(--muted-fg); margin-top: 0.75rem; margin-bottom: 0.25rem; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  border-radius: 1.5rem;
  padding: 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-color: rgba(0,255,102,0.2) !important;
}
.cta-banner-glow {
  position: absolute;
  inset: 0;
  background: rgba(0,255,102,0.05);
  pointer-events: none;
  border-radius: 1.5rem;
}
.cta-banner h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 700; color: #ffffff; margin-bottom: 1rem; position: relative; z-index: 1; }
.cta-banner p  { color: var(--muted-fg); max-width: 480px; margin: 0 auto 2rem; position: relative; z-index: 1; }
.cta-banner a  { position: relative; z-index: 1; }

/* ============================================
   HOW IT WORKS PAGE
   ============================================ */
.steps-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.step-card {
  border-radius: 1rem;
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}
.step-card:hover { border-color: rgba(0,255,102,0.4) !important; }
.step-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 1.25rem; margin-bottom: 2rem; }
.step-icon {
  width: 2.75rem; height: 2.75rem;
  border-radius: 0.75rem;
  background: rgba(0,255,102,0.1);
  border: 1px solid rgba(0,255,102,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.step-icon svg { width: 24px; height: 24px; }
.step-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.1);
  transition: color 0.3s;
  line-height: 1;
}
.step-card:hover .step-number { color: rgba(0,255,102,0.2); }
.step-card h2 { color: #ffffff; font-weight: 700; font-size: 1.25rem; margin-bottom: 0.75rem; }
.step-card p  { color: var(--muted-fg); line-height: 1.7; }

/* Principles row */
.principles-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 3rem; align-items: start; }
.principles-eyebrow { color: var(--primary); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; }
.principles-title { font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 700; color: #ffffff; margin: 1rem 0 1rem; }
.principles-desc { color: var(--muted-fg); line-height: 1.7; }
.principle-item {
  border-radius: 0.75rem;
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
}
.principle-icon {
  width: 2.25rem; height: 2.25rem;
  border-radius: 0.5rem;
  background: rgba(0,255,102,0.1);
  border: 1px solid rgba(0,255,102,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.principle-icon svg { width: 20px; height: 20px; }
.principle-item h3 { color: #ffffff; font-weight: 600; margin-bottom: 0.25rem; font-size: 0.9375rem; }
.principle-item p  { color: var(--muted-fg); font-size: 0.875rem; line-height: 1.6; }
.principles-list { display: flex; flex-direction: column; gap: 1rem; }

/* ============================================
   INDICATOR PAGE — FEATURES GRID
   ============================================ */
.indicator-hero-tags { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
.indicator-tag {
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
  background: rgba(0,255,102,0.1);
  border: 1px solid rgba(0,255,102,0.2);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
}
.chart-placeholder {
  height: 13rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--card-border);
  border-radius: 0.75rem;
  background: rgba(7,14,7,0.5);
  position: relative;
  overflow: hidden;
}
.chart-placeholder-bars {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 0.75rem;
  gap: 4px;
}
.chart-placeholder-bar { flex: 1; border-radius: 2px 2px 0 0; }
.chart-placeholder-overlay {
  position: relative;
  z-index: 1;
  text-align: center;
}
.chart-placeholder-overlay svg { width: 28px; height: 28px; color: rgba(0,255,102,0.4); margin: 0 auto 0.5rem; display: block; }
.chart-placeholder-overlay p { color: var(--muted-fg); font-size: 0.75rem; font-weight: 500; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-fg);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  transition: color 0.2s;
}
.back-link:hover { color: var(--primary); }
.back-link svg { width: 16px; height: 16px; }

/* ============================================
   FEATURES PAGE (deep dive)
   ============================================ */
.feature-deep-card {
  border-radius: 1rem;
  padding: 2rem;
  transition: border-color 0.3s;
}
.feature-deep-card:hover { border-color: rgba(0,255,102,0.3) !important; }
.feature-deep-inner { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.feature-deep-icon {
  width: 3.5rem; height: 3.5rem;
  border-radius: 0.75rem;
  background: rgba(0,255,102,0.1);
  border: 1px solid rgba(0,255,102,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.feature-deep-icon svg { width: 28px; height: 28px; }
.feature-deep-content { flex: 1; min-width: 0; }
.feature-deep-content h3 { color: #ffffff; font-weight: 700; font-size: 1.25rem; margin-bottom: 0.5rem; }
.feature-deep-content .main-desc { color: var(--muted-fg); line-height: 1.7; margin-bottom: 1rem; }
.feature-detail-border { border-left: 2px solid rgba(0,255,102,0.4); padding-left: 1rem; }
.feature-detail-border p { color: rgba(157,157,170,0.8); font-size: 0.875rem; line-height: 1.7; }

/* ============================================
   LEGAL PAGES (Terms / Risk Disclaimer)
   ============================================ */
.legal-card {
  border-radius: 1rem;
  padding: 2rem 2.5rem;
}
.legal-section { margin-bottom: 0; }
.legal-section h2 { color: #ffffff; font-weight: 700; font-size: 1.125rem; margin-bottom: 0.75rem; }
.legal-section p { color: var(--muted-fg); font-size: 0.875rem; line-height: 1.7; }
.legal-section p + p { margin-top: 0.75rem; }
.legal-section ul { list-style: disc; padding-left: 1.25rem; margin-top: 0.5rem; display: flex; flex-direction: column; gap: 0.25rem; }
.legal-section ul li { color: var(--muted-fg); font-size: 0.875rem; line-height: 1.6; }
.legal-space { display: flex; flex-direction: column; gap: 2rem; }
.risk-warning-box {
  border: 1px solid rgba(234,179,8,0.2);
  background: rgba(234,179,8,0.05);
  border-radius: 0.75rem;
  padding: 1.25rem;
}
.risk-warning-box p { color: #fbbf24; font-weight: 600; font-size: 0.875rem; line-height: 1.7; }
.risk-icon-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.risk-icon-row svg { width: 24px; height: 24px; color: #eab308; }
.risk-icon-row span { color: #eab308; font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; }
.legal-footer-note { border-top: 1px solid var(--card-border); padding-top: 1.5rem; }
.legal-footer-note p { color: rgba(157,157,170,0.6); font-size: 0.75rem; }
.legal-footer-note a { color: var(--primary); transition: color 0.2s; }
.legal-footer-note a:hover { color: rgba(0,255,102,0.8); }

/* ============================================
   CRYPTO PAYMENT MODAL
   ============================================ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}
.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}
.modal-card,
.modal-box {
  position: relative;
  width: 100%;
  max-width: 530px;
  max-height: calc(100vh - 3rem);
  overflow-y: auto;
  border-radius: 1.25rem;
  border: 1px solid #233a28 !important;
  background: #0d170f !important; /* 100% SOLID OPAQUE DARK - ZERO TRANSPARENCY */
  padding: 1.75rem;
  color: #ffffff;
  box-shadow: 0 25px 60px rgba(0,0,0,0.95), 0 0 35px rgba(0, 255, 102, 0.08);
  opacity: 1 !important;
}
.modal-close {
  position: absolute;
  right: 1.25rem;
  top: 1.25rem;
  padding: 0.35rem;
  border-radius: 0.35rem;
  color: var(--muted-fg);
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
}
.modal-close:hover { color: #ffffff; }
.modal-close svg { width: 20px; height: 20px; }
.modal-icon {
  width: 2.75rem; height: 2.75rem;
  border-radius: 0.75rem;
  background: rgba(0,255,102,0.1);
  border: 1px solid rgba(0,255,102,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.modal-icon svg { width: 20px; height: 20px; }
.modal-title { font-size: 1.4rem; font-weight: 700; color: #ffffff; }
.modal-subtitle { font-size: 0.85rem; color: var(--muted-fg); margin-top: 0.25rem; }
.modal-section-title { font-size: 0.875rem; font-weight: 600; color: #ffffff; margin-bottom: 0.75rem; }
.crypto-asset {
  border-radius: 0.75rem;
  border: 1px solid var(--card-border);
  background: #112014;
  padding: 1rem;
}
.crypto-asset + .crypto-asset { margin-top: 0.75rem; }
.crypto-meta { display: flex; justify-content: space-between; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.crypto-coin-label { font-size: 0.75rem; color: var(--muted-fg); }
.crypto-coin-value { font-size: 0.875rem; font-weight: 700; color: #34d399; }
.crypto-net-label { font-size: 0.75rem; color: var(--muted-fg); text-align: right; }
.crypto-net-value { font-size: 0.875rem; font-weight: 600; color: #ffffff; text-align: right; }
.crypto-addr-label { font-size: 0.75rem; color: var(--muted-fg); margin-bottom: 0.25rem; }
.crypto-addr-row { display: flex; align-items: center; gap: 0.5rem; }
.crypto-addr-text { flex: 1; word-break: break-all; font-family: monospace; font-size: 0.75rem; color: rgba(255,255,255,0.9); }
.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  border-radius: 0.5rem;
  border: 1px solid var(--card-border);
  padding: 0.5rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffffff;
  transition: all 0.2s;
  background: #16291a;
  cursor: pointer;
  flex-shrink: 0;
}
.copy-btn:hover { border-color: rgba(0,255,102,0.5); color: var(--primary); }
.copy-btn svg { width: 14px; height: 14px; }
.modal-shield-box {
  border: 1px solid rgba(0,255,102,0.25);
  background: #112014;
  border-radius: 0.75rem;
  padding: 1rem;
}
.modal-shield-inner { display: flex; gap: 0.75rem; }
.modal-shield-inner svg { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.modal-shield-inner h4 { font-size: 0.875rem; font-weight: 600; color: #ffffff; margin-bottom: 0.5rem; }
.modal-shield-inner ol { padding-left: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.modal-shield-inner ol li { display: flex; gap: 0.5rem; font-size: 0.875rem; color: var(--muted-fg); }
.modal-shield-inner ol li .num { color: var(--primary); font-weight: 600; }
.modal-note { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.75rem; color: var(--muted-fg); }
.modal-note svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.modal-footer { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 0.5rem; margin-top: 1.5rem; }
.modal-footer .btn-close-modal {
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  border: 1px solid var(--card-border);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  transition: border-color 0.2s;
  background: #132216;
  cursor: pointer;
}
.modal-footer .btn-close-modal:hover { border-color: rgba(0,255,102,0.5); }
.modal-footer .btn-submit-payment {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  background: var(--primary);
  color: var(--primary-fg);
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 0 20px rgba(0,255,102,0.2);
  transition: all 0.2s;
  text-decoration: none;
}
.modal-footer .btn-submit-payment:hover { background: rgba(0,255,102,0.9); box-shadow: 0 0 30px rgba(0,255,102,0.4); }
.modal-footer .btn-submit-payment svg { width: 16px; height: 16px; }
.modal-content-space { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.5rem; }

/* ============================================
   NOTIFICATION (toast-like)
   ============================================ */
.notif {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  padding: 0.875rem 1.25rem;
  border-radius: 0.75rem;
  background: var(--card);
  border: 1px solid rgba(0,255,102,0.3);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
}
.notif.show { transform: translateY(0); opacity: 1; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .product-grid     { grid-template-columns: 1fr; }
  .principles-layout{ grid-template-columns: 1fr; }
  .cards-grid-3     { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .cards-grid-3   { grid-template-columns: 1fr; }
  .cards-grid-2   { grid-template-columns: 1fr; }
  .steps-grid     { grid-template-columns: 1fr; }
  .stats-strip    { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
  .cta-banner     { padding: 2rem 1.5rem; }
  .legal-card     { padding: 1.5rem; }
  .hero-btns      { flex-direction: column; align-items: center; }
  .pricing-card   { padding: 1.5rem; }
  .modal-footer   { flex-direction: column-reverse; }
  .modal-footer .btn-close-modal,
  .modal-footer .btn-submit-payment { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .stats-strip    { grid-template-columns: 1fr; }
}

/* ============================================
   WHOP PAYMENT TABS & CARD PLACEHOLDERS
   ============================================ */
.whop-badge-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 98, 0, 0.12);
  border: 1px solid rgba(255, 98, 0, 0.35);
  border-radius: 0.5rem;
  font-size: 0.75rem;
  color: #ff9d5c;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.whop-badge-row svg { width: 16px; height: 16px; flex-shrink: 0; color: #ff9d5c; }

.plan-summary-box {
  background: #112014;
  border: 1px solid #233a28;
  border-radius: 0.75rem;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}
.plan-summary-title { font-size: 0.95rem; font-weight: 700; color: #ffffff; }
.plan-summary-sub { font-size: 0.75rem; color: var(--muted-fg); margin-top: 0.2rem; }
.plan-summary-price { font-size: 1.3rem; font-weight: 800; color: var(--primary); text-shadow: 0 0 10px rgba(0,255,102,0.3); }

.payment-method-selector {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.pay-method-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid #233a28;
  background: #112014;
  color: var(--muted-fg);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.pay-method-btn.active {
  background: rgba(0, 255, 102, 0.12);
  border-color: var(--primary);
  color: #ffffff;
}
.pay-method-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.card-input-wrapper {
  position: relative;
}
.card-input-wrapper input {
  padding-right: 90px;
}
.card-brand-tags {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  pointer-events: none;
}
.brand-tag {
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.15rem 0.35rem;
  border-radius: 0.25rem;
  background: #192d1d;
  color: #a7f3d0;
  border: 1px solid #2f4d36;
}

.sub-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1.25rem 0;
}
.sub-detail-cell {
  background: #112014;
  border: 1px solid #233a28;
  border-radius: 0.5rem;
  padding: 0.75rem;
}
.sub-detail-label { font-size: 0.7rem; color: var(--muted-fg); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.25rem; }
.sub-detail-val { font-size: 0.9rem; font-weight: 600; color: #ffffff; word-break: break-all; }
.sub-detail-val.accent { color: var(--primary); }

.modal-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem auto;
}
.modal-icon-circle.success {
  background: rgba(0, 255, 102, 0.15);
  border: 2px solid rgba(0, 255, 102, 0.4);
  color: var(--primary);
  box-shadow: 0 0 30px rgba(0, 255, 102, 0.3);
}
.modal-icon-circle.error {
  background: rgba(239, 68, 68, 0.15);
  border: 2px solid rgba(239, 68, 68, 0.4);
  color: #ef4444;
  box-shadow: 0 0 30px rgba(239, 68, 68, 0.3);
}
.modal-icon-circle svg { width: 28px; height: 28px; }

.error-desc-box {
  background: #1c1112;
  border: 1px solid #451a1a;
  border-radius: 0.75rem;
  padding: 1rem;
  color: #fca5a5;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  text-align: left;
}

.btn-whop-pay {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.875rem 1.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #00ff66 0%, #00cc52 100%);
  color: #000000;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 0 25px rgba(0, 255, 102, 0.3);
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}
.btn-whop-pay:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 35px rgba(0, 255, 102, 0.5);
  filter: brightness(1.05);
}
.btn-whop-pay:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.direct-whop-link {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted-fg);
  margin-top: 0.75rem;
  text-decoration: none;
}
.direct-whop-link:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* Whop Modal Feature List */
.whop-feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1.25rem 0 1.5rem 0;
  padding: 1rem;
  background: rgba(0, 255, 102, 0.03);
  border: 1px solid rgba(0, 255, 102, 0.12);
  border-radius: 0.75rem;
}
.whop-feature-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: #d1d5db;
}
.whop-feature-item svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

/* Activation Pill */
.activation-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  background: rgba(0, 255, 102, 0.12);
  border: 1px solid rgba(0, 255, 102, 0.3);
  color: #00ff66;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.activation-pill svg {
  width: 14px;
  height: 14px;
}

/* Warning Close Modal */
.modal-icon-circle.warning {
  background: rgba(245, 158, 11, 0.15);
  border: 2px solid rgba(245, 158, 11, 0.4);
  color: #f59e0b;
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.3);
}
.warning-desc-box {
  background: #1c1810;
  border: 1px solid #4d3810;
  border-radius: 0.75rem;
  padding: 1rem;
  color: #fde68a;
  font-size: 0.85rem;
  line-height: 1.55;
  margin-bottom: 1.5rem;
  text-align: left;
}

