.bot-page {
  padding: 56px 0 72px;
}

.bot-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 24px;
  align-items: stretch;
}

.bot-card {
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.035));
  border-radius: 28px;
  box-shadow: 0 22px 60px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.04);
  overflow: hidden;
}

.bot-copy {
  padding: clamp(28px, 4vw, 46px);
  position: relative;
}

.bot-kicker,
.bot-mini-kicker {
  margin: 0 0 12px;
  color: #9ecbff;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.bot-title {
  margin: 0;
  max-width: 820px;
  color: var(--text);
  font-size: clamp(2.3rem, 5vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.bot-text {
  margin: 22px 0 0;
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.75;
}

.bot-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.bot-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.11);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  text-decoration: none;
  font-weight: 900;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.bot-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(127, 184, 255, 0.42);
  background: rgba(77, 143, 255, 0.14);
}

.bot-btn.primary {
  background: linear-gradient(135deg, #7c5cff, #3b82f6);
  border-color: rgba(158, 203, 255, 0.38);
  box-shadow: 0 14px 32px rgba(65, 105, 255, 0.22);
}

.bot-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.bot-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(245,247,251,0.84);
  font-weight: 800;
  font-size: 0.88rem;
}

.bot-side {
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bot-status {
  border-radius: 22px;
  padding: 20px;
  background: rgba(7, 13, 28, 0.62);
  border: 1px solid rgba(255,255,255,0.08);
}

.bot-status-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.bot-status-head strong {
  color: var(--text);
  font-size: 1.1rem;
}

.bot-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #47d97f;
  box-shadow: 0 0 18px rgba(71,217,127,0.65);
}

.bot-status-grid {
  display: grid;
  gap: 12px;
}

.bot-status-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-weight: 700;
}

.bot-status-row strong {
  color: var(--text);
}

.bot-section {
  margin-top: 24px;
}

.bot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.bot-feature {
  padding: 22px;
}

.bot-feature h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 1.1rem;
}

.bot-feature p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.bot-note {
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(119,190,255,0.18);
  background: rgba(59,132,255,0.08);
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 980px) {
  .bot-hero,
  .bot-grid {
    grid-template-columns: 1fr;
  }
}
