@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;700&display=swap");

:root {
  --lh-bg: #f5f7f9;
  --lh-surface: #ffffff;
  --lh-surface-soft: #eef2f6;
  --lh-text: #111827;
  --lh-text-soft: #4b5563;
  --lh-border: #d7dee7;
  --lh-brand: #0f766e;
  --lh-brand-strong: #115e59;
  --lh-code-bg: #0b1220;
  --lh-code-text: #dbe7ff;
  --md-code-fg-color: var(--lh-code-text);
  --md-code-bg-color: #eef2f6;
  --md-code-hl-color: rgba(148, 163, 184, 0.2);
  --md-code-hl-number-color: #fda4af;
  --md-code-hl-special-color: #f9a8d4;
  --md-code-hl-function-color: #93c5fd;
  --md-code-hl-constant-color: #5eead4;
  --md-code-hl-keyword-color: #c4b5fd;
  --md-code-hl-string-color: #86efac;
  --md-code-hl-name-color: #e2e8f0;
  --md-code-hl-operator-color: #e2e8f0;
  --md-code-hl-punctuation-color: #94a3b8;
  --md-code-hl-comment-color: #94a3b8;
  --md-code-hl-generic-color: #e2e8f0;
  --md-code-hl-variable-color: #fcd34d;
}

body,
.md-typeset,
.md-nav,
.md-header,
.md-tabs {
  font-family: "Plus Jakarta Sans", sans-serif;
}

code,
pre,
.md-typeset code,
.md-typeset pre {
  font-family: "JetBrains Mono", monospace;
}

.md-main {
  background:
    radial-gradient(circle at 10% 10%, #ffffff 0%, rgba(255, 255, 255, 0) 35%),
    linear-gradient(180deg, #f8fbfd 0%, var(--lh-bg) 100%);
}

.md-header {
  background: rgba(255, 255, 255, 0.88);
  color: var(--lh-text);
  border-bottom: 1px solid var(--lh-border);
  backdrop-filter: blur(10px);
}

.md-header__title,
.md-header__button,
.md-search__icon,
.md-search__input {
  color: var(--lh-text);
}

.md-sidebar,
.md-nav {
  background: transparent;
}

.md-nav__item .md-nav__link--active {
  color: var(--lh-brand);
  font-weight: 700;
}

.md-typeset h1,
.md-typeset h2,
.md-typeset h3 {
  letter-spacing: -0.02em;
  color: var(--lh-text);
}

.md-typeset {
  color: var(--lh-text-soft);
}

.md-typeset a {
  color: var(--lh-brand);
}

.md-typeset a:hover {
  color: var(--lh-brand-strong);
}

.md-typeset table:not([class]) {
  border: 1px solid var(--lh-border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--lh-surface);
}

.md-typeset table:not([class]) th,
.md-typeset table:not([class]) td {
  border-color: var(--lh-border);
}

.md-typeset table:not([class]) th {
  background: var(--lh-surface-soft);
  color: var(--lh-text);
}

.md-typeset .admonition,
.md-typeset details {
  border-radius: 14px;
  border: 1px solid var(--lh-border);
  box-shadow: none;
}

.md-typeset pre > code {
  background: var(--lh-code-bg);
  color: var(--lh-code-text);
  border-radius: 12px;
}

.md-typeset .highlight pre code,
.md-typeset .highlight pre code *,
.md-typeset pre > code,
.md-typeset pre > code *,
.md-typeset .highlighttable .linenos,
.md-typeset .highlighttable .linenodiv {
  color: var(--lh-code-text) !important;
  -webkit-text-fill-color: var(--lh-code-text) !important;
  opacity: 1 !important;
}

.md-typeset .highlight pre {
  background: var(--lh-code-bg);
}

.md-clipboard {
  color: #cbd5e1 !important;
}

.md-clipboard:hover,
.md-clipboard:focus {
  color: #ffffff !important;
}

.hero {
  background:
    radial-gradient(circle at 88% 12%, #99f6e4 0%, rgba(153, 246, 228, 0) 40%),
    linear-gradient(135deg, #ecfeff 0%, #f8fafc 55%, #ffffff 100%);
  border: 1px solid var(--lh-border);
  border-radius: 22px;
  padding: 2.4rem;
  margin-bottom: 1.8rem;
}

.hero-kicker {
  display: inline-block;
  margin: 0;
  padding: 0.24rem 0.7rem;
  border-radius: 999px;
  background: #ccfbf1;
  color: #134e4a;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0.9rem 0 0.7rem;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.1;
  color: var(--lh-text);
}

.hero-lead {
  margin: 0;
  max-width: 54ch;
  font-size: 1.06rem;
  color: var(--lh-text-soft);
}

.hero-actions {
  display: flex;
  gap: 0.74rem;
  margin-top: 1.2rem;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid var(--lh-brand);
  background: var(--lh-brand);
  color: #ffffff !important;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none !important;
}

.hero-btn:hover {
  background: var(--lh-brand-strong);
}

.hero-btn-secondary {
  background: transparent;
  color: var(--lh-brand) !important;
}

.hero-btn-secondary:hover {
  background: #f0fdfa;
}

@media (max-width: 768px) {
  .hero {
    padding: 1.4rem;
  }
}
