*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --blue: #3b82f6;
  --blue-bright: #60a5fa;
  --cyan: #06b6d4;
  --gold: #f59e0b;
  --green: #10b981;
  --purple: #8b5cf6;
  --red: #ef4444;
  --bg: #07090f;
  --card: rgba(255, 255, 255, 0.04);
  --card-border: rgba(255, 255, 255, 0.07);
  --text: #f1f5f9;
  --text-muted: #64748b;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 32px 16px 64px;
  overflow-x: hidden;
  position: relative;
}

/* ── Background Orbs ── */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #1d4ed8 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.orb-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #7c3aed 0%, transparent 70%);
  bottom: 100px;
  left: -120px;
  animation: float 10s ease-in-out infinite reverse;
}

.orb-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, #0891b2 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: float 12s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

/* ── Container ── */
.container {
  max-width: 440px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

/* ── Hero ── */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding-top: 8px;
}

/* ── Avatar ── */
.avatar-wrapper {
  position: relative;
  margin-bottom: 4px;
}

.avatar-glow {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--blue), var(--cyan), var(--purple), var(--blue));
  animation: spin 4s linear infinite;
  z-index: 0;
}

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

.avatar {
  position: relative;
  z-index: 1;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #04080f;
  border: 3px solid var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.verified-badge {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 28px;
  height: 28px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2.5px solid var(--bg);
  z-index: 2;
}

.verified-badge svg {
  width: 13px;
  height: 11px;
}

/* ── Title ── */
.channel-title {
  font-size: 28px;
  font-weight: 900;
  line-height: 1.15;
  background: linear-gradient(135deg, #ffffff 0%, #93c5fd 60%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-tag {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-muted);
  -webkit-text-fill-color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 0.5px;
}

/* ── Live Badge ── */
.live-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 600;
  color: #e2e8f0;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 6px 16px;
  border-radius: 50px;
}

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

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

/* ── Pills ── */
.badge-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.pill {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.25);
  color: var(--blue-bright);
}

.pill-gold {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.3);
  color: #fbbf24;
}

/* ── Stats ── */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  width: 100%;
}

.stat-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 16px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(12px);
  transition: border-color 0.2s, transform 0.2s;
}

.stat-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-2px);
}

.stat-card-highlight {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(6, 182, 212, 0.1));
  border-color: rgba(59, 130, 246, 0.35);
}

.stat-icon {
  font-size: 20px;
}

.stat-value {
  font-size: 20px;
  font-weight: 900;
  background: linear-gradient(135deg, #fff, var(--blue-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-card-highlight .stat-value {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
}

/* ── Section Divider ── */
.section-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--card-border), transparent);
}

/* ── Features Card ── */
.features-card {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 8px;
  backdrop-filter: blur(16px);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 15px 12px;
  border-radius: 14px;
  transition: background 0.15s;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

.feature-separator {
  height: 1px;
  background: var(--card-border);
  margin: 0 12px;
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 21px;
  height: 21px;
}

.fi-blue  { background: rgba(59, 130, 246, 0.18); color: var(--blue-bright); }
.fi-green { background: rgba(16, 185, 129, 0.18); color: #34d399; }
.fi-gold  { background: rgba(245, 158, 11, 0.18); color: #fbbf24; }
.fi-purple{ background: rgba(139, 92, 246, 0.18); color: #a78bfa; }

.feature-text strong {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 4px;
  line-height: 1.3;
}

.feature-text p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── CTA Button ── */
.cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px 28px;
  background: linear-gradient(135deg, #2563eb 0%, #0891b2 100%);
  border-radius: 50px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  box-shadow:
    0 0 0 0 rgba(59, 130, 246, 0.4),
    0 8px 32px rgba(37, 99, 235, 0.45);
  animation: pulse-btn 2.5s ease-in-out infinite;
  transition: transform 0.15s;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  border-radius: inherit;
}

@keyframes pulse-btn {
  0%, 100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.3), 0 8px 32px rgba(37, 99, 235, 0.45); }
  50% { box-shadow: 0 0 0 8px rgba(59, 130, 246, 0), 0 8px 32px rgba(37, 99, 235, 0.6); }
}

.cta-button:hover {
  transform: translateY(-2px);
}

.cta-button:active {
  transform: translateY(0);
}

.tg-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* ── Social Proof ── */
.social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
}

.proof-avatars {
  display: flex;
}

.proof-av {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  margin-left: -8px;
}

.proof-av:first-child {
  margin-left: 0;
}

.proof-av-more {
  background: rgba(59, 130, 246, 0.3);
  border-color: rgba(59, 130, 246, 0.5);
  color: var(--blue-bright);
  font-size: 13px;
}

.social-proof p {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── Trust Row ── */
.trust-row {
  display: flex;
  justify-content: space-around;
  width: 100%;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 16px 8px;
  backdrop-filter: blur(12px);
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}

.trust-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon-wrap svg {
  width: 20px;
  height: 20px;
}

/* ── Reviews Carousel ── */
.reviews-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.reviews-track {
  display: flex;
  width: 500%;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.reviews-page {
  width: 20%;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.review-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 10px 12px;
  backdrop-filter: blur(12px);
  transition: border-color 0.2s;
}

.review-card:hover {
  border-color: rgba(59, 130, 246, 0.25);
}

.review-av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.review-content {
  flex: 1;
  min-width: 0;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3px;
}

.review-name {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text);
}

.review-stars {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 1px;
}

.review-text {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

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

.rdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--card-border);
  transition: background 0.3s, transform 0.3s, width 0.3s;
  display: block;
  cursor: pointer;
}

.rdot.active {
  background: var(--blue);
  transform: scale(1.2);
  width: 18px;
  border-radius: 3px;
}

/* ── Disclaimer ── */
.disclaimer {
  font-size: 11px;
  color: #334155;
  text-align: center;
  line-height: 1.6;
  padding: 0 8px;
}

/* ── Mobile ── */
@media (max-width: 380px) {
  .channel-title { font-size: 24px; }
  .stats-grid { gap: 8px; }
  .stat-value { font-size: 18px; }
  .badge-row { gap: 6px; }
  .pill { font-size: 11px; padding: 4px 10px; }
}
