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

:root {
  --blue: #6eb8eb;
  --blue-deep: #5aa8dc;
  --navy: #3a5678;
  --navy-deep: #2c4563;
  --white: #ffffff;
  --surface: rgba(255, 255, 255, 0.62);
  --surface-strong: rgba(255, 255, 255, 0.88);
  --border: rgba(44, 69, 99, 0.14);
  --text: var(--navy-deep);
  --text-muted: rgba(44, 69, 99, 0.78);
  --font: system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, monospace;
  --radius: 10px;
  --max: 34rem;
  --header-h: 3.25rem;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text);
  background: var(--blue);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--navy);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

a:hover {
  color: var(--navy-deep);
}

code {
  font-family: var(--mono);
  font-size: 0.86em;
  background: rgba(255, 255, 255, 0.45);
  color: var(--navy-deep);
  padding: 0.12em 0.4em;
  border-radius: 4px;
}

h1, h2 {
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 4.5vw, 1.875rem);
}

h2 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
}

p {
  margin: 0 0 0.75rem;
}

p:last-child {
  margin-bottom: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.15s, transform 0.15s, border-color 0.15s;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--navy);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--navy-deep);
  color: var(--white);
}

.btn--ghost {
  background: var(--surface-strong);
  color: var(--navy-deep);
  border-color: var(--border);
}

.btn--ghost:hover {
  background: var(--white);
}

.btn--sm {
  padding: 0.4rem 0.85rem;
  font-size: 0.8125rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy-deep);
  text-decoration: none;
}

.brand:hover {
  color: var(--navy);
  text-decoration: none;
}

.brand__icon {
  display: block;
  border-radius: 8px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding: 0 1rem;
  background: var(--surface-strong);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.page {
  max-width: var(--max);
  margin: 0 auto;
  padding: calc(var(--header-h) + 1.5rem) 1rem 2rem;
}

.hero {
  text-align: center;
  margin-bottom: 1.75rem;
}

.hero__logo {
  display: block;
  width: 5.5rem;
  height: 5.5rem;
  margin: 0 auto 1rem;
  border-radius: 1rem;
  box-shadow: 0 0.35rem 1rem rgba(44, 69, 99, 0.12);
}

.hero__lead {
  max-width: 28rem;
  margin: 0 auto 1.25rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.hero__stats strong {
  display: block;
  font-size: 1.125rem;
  color: var(--navy-deep);
  font-weight: 700;
}

.panel {
  margin-bottom: 1rem;
  padding: 1rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.steps {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.steps li {
  margin-bottom: 0.45rem;
}

.steps li:last-child {
  margin-bottom: 0;
}

.code-block {
  margin: 0;
  padding: 0.85rem;
  overflow-x: auto;
  font-size: 0.72rem;
  line-height: 1.5;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) - 2px);
}

.code-block code {
  background: none;
  padding: 0;
  color: var(--navy-deep);
  white-space: pre;
}

.tok-comment {
  color: rgba(44, 69, 99, 0.55);
}

.panel__note,
.panel__intro {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.api-list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.api-list li {
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
}

.api-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.panel__links {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
}

.site-footer {
  padding: 0 1rem 1.5rem;
  text-align: center;
}

.site-footer__copy {
  margin: 0;
  font-size: 0.75rem;
  color: var(--text-muted);
}

@media (min-width: 480px) {
  .page {
    padding-inline: 1.25rem;
  }
}




/*# sourceMappingURL=index.css.map*/