.bot-page {
  min-height: 100vh;
  padding: 56px 20px 72px;
  display: grid;
  place-items: start center;
  gap: 28px;
}

.bot-hero,
.bot-panel {
  max-width: 920px;
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 44px 42px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.bot-hero::after {
  content: '';
  position: absolute;
  right: -140px;
  top: -110px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(15, 76, 92, 0.18), transparent 70%);
  pointer-events: none;
}

.bot-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}

.bot-brand img {
  width: 120px;
  height: auto;
}

.bot-brand span {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: -0.01em;
}

.bot-nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.bot-nav a {
  text-decoration: none;
  font-weight: 700;
  color: var(--accent);
  border: 1px solid rgba(15, 76, 92, 0.18);
  background: rgba(15, 76, 92, 0.06);
  padding: 10px 14px;
  border-radius: 999px;
}

.bot-kicker {
  margin: 18px 0 0;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(15, 76, 92, 0.72);
  font-weight: 800;
}

.bot-hero h1 {
  margin: 12px 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.2vw, 3rem);
  letter-spacing: -0.02em;
}

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

.bot-actions a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  border-radius: 14px;
  padding: 0 22px;
  font-size: 1rem;
  font-weight: 800;
}

.bot-btn {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 24px rgba(15, 76, 92, 0.2);
}

.bot-btn.secondary {
  background: rgba(15, 76, 92, 0.1);
  border: 1px solid rgba(15, 76, 92, 0.18);
  color: var(--accent);
  box-shadow: none;
}

.bot-panel h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.6rem;
}

.bot-panel p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.bot-grid {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.code-block {
  margin: 12px 0 0;
  background: #071e25;
  border: 1px solid rgba(242, 184, 75, 0.22);
  border-radius: 18px;
  padding: 16px 18px;
  color: #f4efe6;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
  font-size: 0.92rem;
  line-height: 1.5;
  overflow: auto;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
}

.code-block code {
  white-space: pre;
}

.bot-facts {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--ink);
  line-height: 1.55;
}

.bot-facts li {
  margin: 6px 0;
}

.bot-facts strong {
  color: var(--accent-strong);
}

.bot-note {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(242, 184, 75, 0.35);
  background: rgba(242, 184, 75, 0.14);
  color: #6a4a0a;
  font-weight: 700;
}

@media (max-width: 720px) {
  .bot-hero,
  .bot-panel {
    padding: 34px 22px;
  }

  .bot-brand img {
    width: 96px;
  }
}

