/* â”€â”€ Hero â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
  padding: 140px 48px 80px;
  max-width: 1320px; margin: 0 auto;
}
.hero-bg { position: fixed; inset: 0; pointer-events: none; z-index: 0; }
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); animation: glow-pulse 4s ease infinite;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  top: -200px; left: -100px;
  background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, transparent 70%);
}
.hero-orb-2 {
  width: 500px; height: 500px;
  bottom: -100px; right: -100px;
  background: radial-gradient(circle, rgba(241,196,15,0.08) 0%, transparent 70%);
  animation-delay: 2s;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 0%, black 0%, transparent 70%);
}
.hero-inner { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 20px;
  background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.25);
  font-size: 12px; color: #93bbfd; margin-bottom: 28px;
  font-weight: 500;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #3b82f6; animation: pulse 2s ease infinite;
}
.hero-title {
  font-family: var(--font-head); font-size: clamp(44px, 6vw, 76px);
  font-weight: 800; line-height: 1.05; margin-bottom: 24px;
  color: var(--text);
}
.hero-gradient {
  background: linear-gradient(135deg, #f1c40f 0%, #e67e22 50%, #f1c40f 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}
.hero-desc {
  font-size: 17px; color: var(--text-dim); max-width: 480px;
  line-height: 1.7; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; align-items: center; gap: 24px; }
.hero-stat { display: flex; flex-direction: column; gap: 2px; }
.hero-stat-n {
  font-family: var(--font-head); font-size: 24px; font-weight: 800;
  color: var(--text);
}
.hero-stat-l { font-size: 12px; color: var(--text-dim); }
.hero-stat-div { width: 1px; height: 36px; background: var(--border); }

/* Bot preview card */
.hero-visual { position: relative; z-index: 1; }
.bot-card {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  animation: float 6s ease infinite;
}
.bot-card-header {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px; background: var(--dark3);
  border-bottom: 1px solid var(--border);
  font-size: 13px; color: var(--text-dim);
}
.bot-card-dot { width: 10px; height: 10px; border-radius: 50%; }
.bot-card-dot-r { background: #ef4444; }
.bot-card-dot-y { background: #f59e0b; }
.bot-card-dot-g { background: #22c55e; }
.bot-card-body { padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.bot-msg {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: 10px;
  border: 1px solid var(--border);
}
.bot-msg-gw { background: rgba(241,196,15,0.05); border-color: rgba(241,196,15,0.15); }
.bot-msg-pay { background: rgba(34,197,94,0.05); border-color: rgba(34,197,94,0.15); }
.bot-msg-raid { background: rgba(59,130,246,0.05); border-color: rgba(59,130,246,0.15); }
.bot-msg-icon { font-size: 20px; flex-shrink: 0; }
.bot-msg-title { font-family: var(--font-head); font-size: 14px; font-weight: 600; color: var(--text); }
.bot-msg-sub { font-size: 12px; color: var(--text-dim); margin-top: 2px; }

/* â”€â”€ Features grid â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.feat-card {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  position: relative; overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.feat-card:hover { border-color: var(--border-h); transform: translateY(-3px); }
.feat-card-premium { border-color: rgba(241,196,15,0.15); }
.feat-card-premium:hover { border-color: rgba(241,196,15,0.35); }
.feat-card-coming { opacity: 0.6; }
.feat-premium-glow {
  position: absolute; top: -40px; right: -40px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(241,196,15,0.12) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.feat-icon { font-size: 32px; margin-bottom: 14px; }
.feat-card h3 {
  font-family: var(--font-head); font-size: 17px; font-weight: 700;
  margin-bottom: 10px; color: var(--text);
}
.feat-card p { font-size: 14px; color: var(--text-dim); line-height: 1.65; margin-bottom: 18px; }
.feat-tag {
  display: inline-block; font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 20px;
  background: rgba(255,255,255,0.06); color: var(--text-dim);
}
.feat-tag-premium {
  background: var(--gold-dim); color: var(--gold);
  border: 1px solid rgba(241,196,15,0.2);
}
.feat-tag-soon {
  background: rgba(107,114,128,0.15); color: #6b7280;
}

/* â”€â”€ Pricing â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.section-pricing { background: linear-gradient(to bottom, transparent, rgba(241,196,15,0.02), transparent); }
.pricing-toggle {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 48px;
}
.ptog-label { font-size: 15px; color: var(--text-dim); cursor: pointer; transition: color 0.2s; }
.ptog-label.ptog-active { color: var(--text); font-weight: 600; }
.ptog-save {
  font-size: 11px; padding: 2px 8px; border-radius: 20px;
  background: rgba(34,197,94,0.15); color: #22c55e;
  border: 1px solid rgba(34,197,94,0.25); margin-left: 6px;
}
.ptog-switch { position: relative; width: 48px; height: 26px; }
.ptog-switch input { opacity: 0; width: 0; height: 0; }
.ptog-slider {
  position: absolute; inset: 0; cursor: pointer;
  background: var(--dark3); border: 1px solid var(--border-h);
  border-radius: 26px; transition: 0.3s;
}
.ptog-slider::before {
  content: ''; position: absolute;
  width: 18px; height: 18px; left: 3px; top: 3px;
  background: var(--text-dim); border-radius: 50%;
  transition: 0.3s;
}
.ptog-switch input:checked + .ptog-slider { background: rgba(59,130,246,0.3); border-color: rgba(59,130,246,0.4); }
.ptog-switch input:checked + .ptog-slider::before { transform: translateX(22px); background: var(--blue); }

.pricing-cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; max-width: 860px; margin: 0 auto;
}
.price-card {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
  position: relative; overflow: hidden;
}
.price-card-premium {
  border-color: rgba(241,196,15,0.25);
  background: linear-gradient(135deg, rgba(241,196,15,0.04), rgba(230,126,34,0.04));
}
.price-glow {
  position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  width: 300px; height: 200px;
  background: radial-gradient(ellipse, rgba(241,196,15,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.price-popular {
  position: absolute; top: 20px; right: -30px;
  background: var(--premium); color: #000;
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  padding: 5px 40px; transform: rotate(35deg);
}
.price-card-header { margin-bottom: 28px; }
.price-plan { font-family: var(--font-head); font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 12px; }
.price-plan-gold { color: var(--gold); }
.price-amount { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.price-n { font-family: var(--font-head); font-size: 42px; font-weight: 800; color: var(--text); }
.price-per { font-size: 14px; color: var(--text-dim); }
.price-desc { font-size: 13px; color: var(--text-dim); }
.price-features { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.price-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-dim); }
.price-features li::before { content: ''; flex-shrink: 0; width: 16px; height: 16px; border-radius: 50%; }
.pf-yes::before { background: rgba(34,197,94,0.2); }
.pf-yes::after { content: 'âœ“'; position: absolute; }
.pf-yes { position: relative; padding-left: 0; color: var(--text); }
.pf-yes::before { content: 'âœ“'; background: none; color: #22c55e; font-size: 13px; font-weight: 700; }
.pf-no::before { content: 'âœ•'; background: none; color: var(--text-muted); font-size: 13px; }
.pf-gold { color: var(--gold) !important; }
.pf-gold::before { color: var(--gold) !important; }
.pf-soon::before { content: 'â³'; background: none; font-size: 13px; }
.pf-soon { color: var(--text-muted) !important; font-style: italic; }
.btn-price-free {
  display: block; text-align: center; padding: 13px;
  border-radius: var(--radius); border: 1px solid var(--border-h);
  color: var(--text); text-decoration: none; font-weight: 500; font-size: 14px;
  transition: background 0.2s;
}
.btn-price-free:hover { background: var(--glass-b); }
.btn-price-premium {
  display: block; text-align: center; padding: 14px;
  border-radius: var(--radius);
  background: var(--premium); color: #000;
  text-decoration: none; font-family: var(--font-head); font-weight: 700; font-size: 14px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-price-premium:hover { transform: translateY(-2px); box-shadow: 0 8px 24px var(--gold-glow); }

/* â”€â”€ CTA â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cta-section {
  padding: 100px 24px; text-align: center; position: relative; overflow: hidden;
}
.cta-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(59,130,246,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-title { font-family: var(--font-head); font-size: clamp(32px, 4vw, 52px); font-weight: 800; margin-bottom: 16px; }
.cta-desc { font-size: 17px; color: var(--text-dim); margin-bottom: 36px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* â”€â”€ Footer â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.footer {
  padding: 40px 24px; border-top: 1px solid var(--border);
  background: var(--dark);
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 20px;
}
.footer-brand { display: flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 600; font-size: 15px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: var(--text-dim); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 12px; color: var(--text-muted); width: 100%; text-align: center; margin-top: 8px; }

/* â”€â”€ Responsive â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 120px 24px 60px; }
  .hero-visual { display: none; }
  .pricing-cards { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 16px; }
  .hero-stat-n { font-size: 20px; }
}