:root {
  --primary: #0088cc;
  --primary-dark: #0066cc;
  --bg: #020617;
  --card-bg: #020617;
  --accent: #facc15;
  --text-main: #f9fafb;
  --text-muted: #9ca3af;
  --border-subtle: rgba(148, 163, 184, 0.35);
  --shadow-soft: 0 25px 60px rgba(15, 23, 42, 0.9);
  --radius-lg: 1.5rem;
}

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

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(34, 158, 217, 0.25), transparent 55%),
    radial-gradient(circle at top right, rgba(0, 136, 204, 0.25), transparent 55%),
    radial-gradient(circle at bottom, rgba(250, 204, 21, 0.2), transparent 50%),
    var(--bg);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.page {
  max-width: 1120px;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 900px) {
  .page {
    grid-template-columns: minmax(0, 1fr);
  }
}

.card {
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 1));
  border-radius: 2rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  padding: 2.4rem 2.6rem;
  position: relative;
  overflow: hidden;
}

@media (max-width: 600px) {
  .card {
    padding: 1.7rem 1.6rem;
  }
}

.badge-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
  font-size: 0.9rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  background: rgba(0, 136, 204, 0.16);
  border: 1px solid rgba(34, 158, 217, 0.35);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pill span {
  opacity: 0.9;
}

.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #229ED9;
  box-shadow: 0 0 0 6px rgba(34, 158, 217, 0.25);
}

.timer {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px dashed rgba(148, 163, 184, 0.7);
  font-size: 0.8rem;
  color: var(--text-muted);
}

h1 {
  font-size: clamp(2.3rem, 4vw, 3rem);
  margin-bottom: 0.4rem;
  letter-spacing: 0.04em;
}

.subtitle-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.subtitle-tag .dots {
  display: inline-flex;
  gap: 0.2rem;
}

.subtitle-tag .dots span {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.8);
}

.lead {
  font-size: 1rem;
  color: #e5e7eb;
  margin-bottom: 1.6rem;
  max-width: 32rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 1.6rem;
}

.btn-telegram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  background: radial-gradient(circle at top, #229ED9, #0088cc);
  color: #ffffff;
  text-decoration: none;
  box-shadow:
    0 12px 35px rgba(0, 136, 204, 0.45),
    0 0 0 1px rgba(0, 102, 204, 0.7);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.btn-telegram:hover {
  transform: translateY(-1px) scale(1.01);
  filter: brightness(1.05);
  box-shadow:
    0 16px 40px rgba(0, 136, 204, 0.6),
    0 0 0 1px rgba(0, 102, 204, 0.85);
}

.btn-telegram span.icon {
  font-size: 1.3rem;
}

.cta-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.45);
  font-size: 0.82rem;
  color: #e5e7eb;
}

.feature-icon {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 158, 217, 0.12);
  font-size: 0.9rem;
}

.footnote {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

/* Right side: Social proof / testimonials */
.panel {
  background: rgba(15, 23, 42, 0.95);
  border-radius: 2rem;
  border: 1px solid var(--border-subtle);
  padding: 2rem 1.8rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.8);
  position: relative;
  overflow: hidden;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
}

.panel-title {
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.panel-title-badge {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #229ED9;
  box-shadow: 0 0 0 5px rgba(34, 158, 217, 0.18);
}

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

.rating-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.stars {
  font-size: 1rem;
}

.testimonials {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.8rem;
}

.testimonial {
  border-radius: 1.2rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding: 0.95rem 1rem;
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 1));
}

.testimonial-quote {
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

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

.panel-footer {
  margin-top: 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.online-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(0, 136, 204, 0.08);
  border: 1px solid rgba(0, 136, 204, 0.5);
  font-size: 0.78rem;
}

.online-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #229ED9;
  box-shadow: 0 0 0 4px rgba(34, 158, 217, 0.25);
}

/* Floating ball */
.orb {
  position: absolute;
  inset: auto auto -140px -80px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #229ED9, #0066cc);
  opacity: 0.14;
  filter: blur(2px);
  pointer-events: none;
}

.orb--small {
  inset: -80px -60px auto auto;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle at 40% 40%, #facc15, #f97316);
  opacity: 0.12;
}

