:root {
  --bg: #ffffff;
  --surface: #f7f7f7;
  --ink: #3f3f3f;
  --muted: #3f3f3f;
  --brand: #014f8f;
  --brand-hover: #013b6a;
  --brand-soft: #eaf2f9;
  --brand-line: rgba(1, 79, 143, 0.18);
  --accent: #ffa806;
  --accent-blue: #008acc;
  --accent-cyan: #2ad2e9;
  --accent-gray: #d8d8d8;
  --accent-teal: #41dcdc;
  --line: #d8d8d8;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  --radius-lg: 12px;
  --radius-md: 10px;
  --radius-sm: 8px;
  --max-width: 1140px;
  --header-bg: #ffffff;
  --panel-bg: #ffffff;
  --page-bg: linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
  --swagger-bg: #ffffff;
  --swagger-ink: #1f2d3d;
  --swagger-line: rgba(1, 79, 143, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Titillium Web", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--page-bg);
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

.content h1::after,
.content h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  margin-top: 8px;
  background: var(--accent);
  border-radius: 999px;
}

a:hover {
  color: var(--accent-blue);
}

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  background: var(--header-bg);
  border-bottom: 1px solid var(--brand-line);
  z-index: 10;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 32px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  height: 36px;
  width: auto;
}


.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid var(--brand-line);
  background: var(--panel-bg);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--brand);
  border-radius: 99px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-theme-toggle {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid var(--brand-line);
  background: var(--panel-bg);
  color: var(--muted);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 700;
  opacity: 0.62;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16);
}

.nav-theme-toggle:hover {
  border-color: var(--brand);
  color: var(--brand);
  opacity: 0.95;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: var(--muted);
}

.lang-switch button {
  border: 1px solid var(--brand-line);
  background: var(--panel-bg);
  color: var(--ink);
  min-width: 44px;
  min-height: 38px;
  padding: 6px 9px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  line-height: 1;
}

.lang-switch button.active {
  border-color: var(--brand);
  color: var(--brand);
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 6px;
  border: 1px solid transparent;
}

.nav-links a.active,
.nav-links a:hover {
  border-color: var(--brand-line);
  background: var(--brand-soft);
  color: var(--brand);
}

.nav-group {
  position: relative;
}

.nav-group summary {
  list-style: none;
  padding: 8px 14px;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  color: inherit;
}

.nav-group summary::-webkit-details-marker {
  display: none;
}

.nav-group summary::after {
  content: "▾";
  margin-left: 8px;
  font-size: 0.8em;
  color: var(--muted);
}

.nav-group.active summary,
.nav-group summary:hover,
.nav-group[open] summary {
  border-color: var(--brand-line);
  background: var(--brand-soft);
  color: var(--brand);
}

.nav-submenu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  z-index: 20;
  background: var(--panel-bg);
  border: 1px solid var(--brand-line);
  border-radius: 8px;
  padding: 8px;
  box-shadow: 0 8px 24px rgba(1, 79, 143, 0.12);
}

.nav-group[open] .nav-submenu {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-submenu a {
  padding: 8px 10px;
  border-radius: 6px;
  border: 1px solid transparent;
}

.nav-submenu a:hover,
.nav-submenu a.active {
  border-color: var(--brand-line);
  background: var(--brand-soft);
  color: var(--brand);
}

.page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 56px 32px 96px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
  padding: 48px;
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, #f6f9fc 0%, #eef4f9 55%, #f3f7fb 100%);
  border: 1px solid var(--brand-line);
  position: relative;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-media {
  margin: 0;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(1, 79, 143, 0.14);
  background: #e9f1f7;
  box-shadow: 0 3px 10px rgba(1, 79, 143, 0.06);
  min-height: 320px;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(238, 245, 251, 0.24) 0%,
    rgba(232, 241, 248, 0.12) 45%,
    rgba(246, 250, 253, 0.18) 100%
  );
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: 70% 64%;
  display: block;
  filter: saturate(0.9) contrast(0.95) brightness(1.03);
  transform: scale(1.2);
  transform-origin: center;
}

.hero::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(1, 79, 143, 0.18) 0%, rgba(1, 79, 143, 0) 70%);
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin-bottom: 16px;
  color: var(--brand);
}

.hero p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.button {
  padding: 12px 22px;
  border-radius: 8px;
  border: 1px solid var(--brand);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
}

.button.primary {
  background: var(--brand);
  color: #ffffff;
}

.button:hover {
  border-color: var(--brand-hover);
  color: var(--brand-hover);
}

.button.primary:hover {
  background: var(--brand-hover);
  border-color: var(--brand-hover);
  color: #ffffff;
}

.section {
  margin-top: 56px;
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--brand-line);
}

.page > .section:first-child {
  margin-top: 0;
}

.section-accent {
  background: linear-gradient(135deg, var(--panel-bg) 0%, #eef5fb 100%);
  border-color: rgba(1, 79, 143, 0.22);
}

.section h2 {
  margin-top: 0;
}

.content {
  line-height: 1.7;
  color: var(--muted);
}

.content a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.content a:hover {
  color: var(--brand-hover);
}

.content a.email-link {
  font-weight: 600;
}

.content a.email-link::before,
.content a.link-jira::before,
.content a.link-forms::before {
  content: "";
  display: inline-block;
  width: 1.3em;
  height: 1.3em;
  margin-right: 7px;
  vertical-align: -0.2em;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.content a.email-link::before {
  background-image: url("../icons/email-badge.svg");
  width: 1.38em;
  height: 1.38em;
  vertical-align: -0.34em;
}

.content a.link-jira::before {
  background-image: url("../icons/jira-badge.png");
}

.content a.link-forms::before {
  background-image: url("../icons/forms-badge.svg");
}

.content a.link-jira::after,
.content a.link-forms::after {
  content: "↗";
  margin-left: 6px;
  font-size: 0.9em;
  color: var(--brand);
}

.support-page .content a {
  font-weight: 600;
}

.content h2,
.content h3 {
  color: var(--brand);
}

.content h4 {
  color: var(--brand);
}

.content h1 {
  color: var(--brand);
}

.docs-hero h1 {
  color: var(--brand);
}

.content ul {
  padding-left: 18px;
}

.content .nested-list {
  margin-top: 8px;
  padding-left: 18px;
}

.icon-list-item {
  list-style: none;
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: start;
  column-gap: 12px;
  gap: 12px;
  margin-bottom: 8px;
}

.list-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  margin-top: 2px;
}

.icon-list-item > :not(.list-icon) {
  min-width: 0;
}

.icon-list-content {
  min-width: 0;
}

.icon-list-content strong {
  display: block;
  margin-bottom: 2px;
}

.support-item-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.support-item-label,
.support-item-link {
  margin: 0;
}

.support-item-link a {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.content code {
  background: var(--brand-soft);
  padding: 2px 6px;
  border-radius: 6px;
}

.content a.download-link {
  color: var(--brand);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.content a.download-link:hover {
  color: var(--brand-hover);
}

.content a.download-link::after {
  content: "↗";
  margin-left: 6px;
  font-size: 0.9em;
  color: var(--muted);
}

.content pre {
  margin: 16px 0 20px;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--brand-line);
  background: #f4f8fc;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.content pre code {
  display: block;
  background: transparent;
  border-radius: 0;
  padding: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  font-size: 0.9rem;
  line-height: 1.5;
  white-space: pre;
  color: #1f2d3d;
}

.content blockquote {
  margin: 16px 0;
  padding: 12px 16px;
  border-left: 4px solid var(--brand-line);
  background: var(--brand-soft);
  border-radius: 8px;
}

.content blockquote p {
  margin: 0;
}

.content-collapse {
  margin: 16px 0 0;
  border: 1px solid var(--brand-line);
  border-radius: 10px;
  background: linear-gradient(180deg, #f9fbff 0%, #f3f8ff 100%);
}

.content-collapse summary {
  list-style: none;
  cursor: pointer;
  padding: 12px 14px;
  font-weight: 700;
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.content-collapse summary::-webkit-details-marker {
  display: none;
}

.content-collapse summary::after {
  content: "▾";
  font-size: 0.85rem;
  transition: transform 0.18s ease;
}

.content-collapse[open] summary::after {
  transform: rotate(180deg);
}

.content-collapse > *:not(summary) {
  margin-left: 14px;
  margin-right: 14px;
}

.content-collapse > *:last-child {
  margin-bottom: 14px;
}

.catalog-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}

.catalog-controls .version-filter {
  width: fit-content;
}

.catalog-version-filter {
  margin: 0 0 16px;
}

.search {
  flex: 1;
  min-width: 200px;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--brand-line);
  font-size: 0.95rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.version-filter {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--brand-line);
  background: var(--panel-bg);
}

.radio-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand);
  cursor: pointer;
}

.radio-pill input {
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--brand-line);
  display: inline-block;
  position: relative;
}

.radio-pill input:checked {
  border-color: var(--brand);
}

.radio-pill input:checked::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--brand);
}

.tag {
  min-height: 40px;
  padding: 6px 14px;
  border-radius: 8px;
  border: 1px solid var(--brand-line);
  background: var(--brand-soft);
  font-size: 0.85rem;
  cursor: pointer;
}

.tag.active {
  background: var(--brand);
  color: #ffffff;
  border-color: var(--brand);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.card {
  border-radius: var(--radius-md);
  background: var(--panel-bg);
  padding: 24px;
  border: 1px solid var(--brand-line);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease,
    transform 0.18s ease;
}

.card:hover {
  border-color: rgba(1, 79, 143, 0.44);
  box-shadow: 0 14px 28px rgba(1, 79, 143, 0.16);
  transform: translateY(-2px);
}

.card-link {
  text-decoration: none;
  color: inherit;
  position: relative;
  cursor: pointer;
  padding-right: 52px;
}

.card-link::after {
  content: "↗";
  position: absolute;
  top: 18px;
  right: 18px;
  color: var(--brand);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0.55;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.card-link:hover::after,
.card-link:focus-visible::after {
  opacity: 1;
  transform: translate(1px, -1px);
}

.card-link:focus-visible {
  border-color: rgba(1, 79, 143, 0.52);
  box-shadow: 0 0 0 3px rgba(1, 79, 143, 0.2), 0 14px 28px rgba(1, 79, 143, 0.16);
  outline: none;
}

.card h3 {
  margin: 0;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.card-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.card-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.card-tag {
  background: var(--brand-soft);
  border: 1px solid transparent;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.75rem;
  color: var(--ink);
  cursor: pointer;
}

.card-tag:hover {
  border-color: var(--brand-line);
}

.card-tag:focus-visible {
  outline: 2px solid rgba(1, 79, 143, 0.26);
  outline-offset: 1px;
}

.badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid var(--brand-line);
  background: var(--brand-soft);
  color: var(--brand);
}

.badge.v1,
.badge.legacy {
  background: #fff4df;
  border-color: #ffd59a;
  color: #7a4a00;
}

.docs-hero {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.docs-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.docs-meta-left,
.docs-meta-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.docs-meta-right {
  margin-left: auto;
}

.env-toggle {
  display: inline-flex;
  gap: 8px;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid var(--brand-line);
  background: var(--panel-bg);
}

.env-toggle button {
  border: none;
  background: transparent;
  min-height: 40px;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
}

.env-toggle button.active {
  background: var(--brand);
  color: #ffffff;
}

.auth-toggle {
  border: 1px solid var(--brand-line);
  background: var(--panel-bg);
  color: var(--brand);
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.auth-toggle:hover {
  border-color: var(--brand-hover);
  color: var(--brand-hover);
}

.swagger-ui .computed-url,
.swagger-ui .server-variables {
  display: none;
}

.swagger-ui .servers input {
  display: none;
}

#swagger-ui.swagger-readonly .auth-wrapper,
#swagger-ui.swagger-readonly .btn.authorize,
#swagger-ui.swagger-readonly .authorization__btn {
  display: none !important;
}

.swagger-container {
  background: var(--swagger-bg);
  border-radius: var(--radius-md);
  padding: 16px;
  border: 1px solid var(--brand-line);
}

.callout {
  background: var(--panel-bg);
  border-left: 4px solid var(--brand);
  border-color: var(--brand-line);
}

.auth-hint {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--brand-soft);
  color: var(--ink);
  font-weight: 500;
}

footer {
  padding: 48px 32px;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--brand-line);
  background: var(--header-bg);
}

.footer-link {
  margin-top: 10px;
}

.footer-link a {
  color: var(--brand);
  font-weight: 600;
}

body.theme-dark {
  --bg: #0f141a;
  --surface: #141b23;
  --ink: #e4edf8;
  --muted: #c8d5e6;
  --brand: #4ea1f2;
  --brand-hover: #75b8fb;
  --brand-soft: rgba(78, 161, 242, 0.15);
  --brand-line: rgba(78, 161, 242, 0.26);
  --line: #2a3645;
  --shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
  --header-bg: #0f141a;
  --panel-bg: #171f29;
  --page-bg: linear-gradient(180deg, #0f141a 0%, #111923 100%);
  --swagger-bg: #171f29;
  --swagger-ink: #d7e3f3;
  --swagger-line: rgba(78, 161, 242, 0.2);
}

body.theme-dark .hero {
  background: linear-gradient(140deg, #162230 0%, #13212f 55%, #152434 100%);
}

body.theme-dark .hero-media {
  background: #1b2938;
}

body.theme-dark .section-accent {
  background: linear-gradient(135deg, #162230 0%, #13212f 100%);
}

body.theme-dark .nav-links {
  background: var(--panel-bg);
}

body.theme-dark .search,
body.theme-dark .version-filter,
body.theme-dark .env-toggle,
body.theme-dark .auth-toggle,
body.theme-dark .callout,
body.theme-dark .card,
body.theme-dark .tag,
body.theme-dark .nav-theme-toggle,
body.theme-dark .lang-switch button,
body.theme-dark .nav-toggle,
body.theme-dark .nav-submenu {
  background: var(--panel-bg);
}

body.theme-dark .content pre {
  background: #111a24;
  border-color: var(--swagger-line);
}

body.theme-dark .content pre code {
  color: var(--swagger-ink);
}

body.theme-dark .content-collapse {
  background: linear-gradient(180deg, #15212e 0%, #13202d 100%);
}

body.theme-dark .swagger-ui,
body.theme-dark .swagger-ui .opblock .opblock-summary-description,
body.theme-dark .swagger-ui .opblock .opblock-summary-path,
body.theme-dark .swagger-ui .info,
body.theme-dark .swagger-ui label,
body.theme-dark .swagger-ui p,
body.theme-dark .swagger-ui h1,
body.theme-dark .swagger-ui h2,
body.theme-dark .swagger-ui h3,
body.theme-dark .swagger-ui h4 {
  color: var(--swagger-ink);
}

body.theme-dark .swagger-ui .scheme-container,
body.theme-dark .swagger-ui .opblock,
body.theme-dark .swagger-ui .model-box,
body.theme-dark .swagger-ui table tbody tr td,
body.theme-dark .swagger-ui .responses-inner,
body.theme-dark .swagger-ui .response-col_status,
body.theme-dark .swagger-ui .response-col_description {
  background: #111a24;
  border-color: var(--swagger-line);
}

body.theme-dark .swagger-ui .opblock-tag,
body.theme-dark .swagger-ui .tab li,
body.theme-dark .swagger-ui .tab li button.tablinks,
body.theme-dark .swagger-ui .parameter__name,
body.theme-dark .swagger-ui .parameter__type,
body.theme-dark .swagger-ui .parameter__deprecated {
  color: var(--swagger-ink);
}

@media (max-width: 720px) {
  .site-header {
    z-index: 20;
  }

  .navbar {
    position: relative;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
  }

  .brand {
    order: 1;
  }

  .brand img {
    height: 30px;
  }

  .header-actions {
    order: 2;
    margin-left: auto;
  }

  .lang-switch {
    gap: 8px;
  }

  .lang-switch button {
    min-width: 38px;
    min-height: 34px;
    padding: 4px 8px;
  }

  .nav-theme-toggle {
    right: 12px;
    bottom: 12px;
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
    opacity: 0.72;
  }

  .nav-toggle {
    order: 3;
    display: inline-flex;
  }

  .nav-links {
    order: 4;
    width: 100%;
    display: none;
    margin-top: 8px;
    padding: 12px;
    gap: 6px;
    flex-direction: column;
    border: 1px solid var(--brand-line);
    border-radius: 10px;
    background: var(--panel-bg);
    box-shadow: 0 8px 20px rgba(1, 79, 143, 0.12);
  }

  .site-header.nav-open .nav-links {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 10px 12px;
  }

  .nav-group {
    width: 100%;
  }

  .nav-group summary {
    width: 100%;
    padding: 10px 12px;
  }

  .nav-submenu {
    position: static;
    min-width: 0;
    width: 100%;
    box-shadow: none;
    margin-top: 6px;
  }

  .page {
    padding: 24px 16px 56px;
  }

  .hero {
    gap: 20px;
    padding: 22px 18px;
  }

  .hero-media {
    min-height: 220px;
  }

  .hero-media img {
    min-height: 220px;
    object-position: 68% 64%;
    transform: scale(1.1);
  }

  .hero h1 {
    font-size: clamp(1.9rem, 8vw, 2.4rem);
    margin-bottom: 10px;
  }

  .hero p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-actions {
    margin-top: 16px;
    gap: 10px;
  }

  .hero-actions .button {
    width: 100%;
    justify-content: center;
  }

  .section {
    margin-top: 28px;
    padding: 18px 16px;
  }

  .catalog-version-filter {
    margin: 0 0 12px;
  }

  .version-filter {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    flex-wrap: wrap;
    padding: 6px 10px;
  }

  .catalog-controls {
    gap: 12px;
    margin-bottom: 14px;
  }

  .search {
    min-width: 0;
    width: 100%;
  }

  .tag-list {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
  }

  .tag {
    flex: 0 0 auto;
  }

  .card-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .card {
    padding: 16px;
  }

  .icon-list-item {
    gap: 10px;
    margin-bottom: 14px;
  }

  .list-icon {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    margin-top: 2px;
  }

  .icon-list-item strong {
    margin-bottom: 3px;
  }

  .support-page .icon-list-item {
    grid-template-columns: 24px minmax(0, 1fr);
    column-gap: 10px;
    align-items: start;
    margin-bottom: 16px;
  }

  .support-page .icon-list-item .list-icon {
    grid-column: 1;
  }

  .support-page .support-item-link a {
    margin-top: 2px;
    line-height: 1.25;
  }

  .support-page .content a.email-link::before,
  .support-page .content a.link-jira::before,
  .support-page .content a.link-forms::before {
    margin-right: 6px;
    vertical-align: middle;
  }

  .docs-hero {
    margin-bottom: 14px;
  }

  .docs-meta {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .docs-meta-left,
  .docs-meta-right {
    width: 100%;
    margin-left: 0;
  }

  .docs-meta-left {
    flex-direction: column;
    align-items: stretch;
  }

  .env-toggle {
    width: 100%;
    justify-content: center;
  }

  .env-toggle button {
    flex: 1;
  }

  .auth-toggle {
    width: 100%;
  }

  .swagger-container {
    padding: 8px;
  }

  footer {
    padding: 28px 16px;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  animation: fadeUp 0.8s ease both;
}
