@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.css");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&display=swap");

@font-face {
  font-family: "Sekuya";
  src:
    url("/fonts/sekuya.woff2") format("woff2"),
    url("/fonts/sekuya.woff") format("woff");
  font-weight: 500 700;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --bg-base: #f7f8fb;
  --bg-soft: #eff1f5;
  --canvas: var(--bg-base);
  --ink: #111318;
  --muted: rgba(17, 19, 24, 0.6);
  --accent: #2b2f36;
  --accent-strong: #1c1f24;
  --accent-soft: rgba(28, 31, 36, 0.12);
  --panel: rgba(255, 255, 255, 0.92);
  --panel-strong: #ffffff;
  --glass: rgba(255, 255, 255, 0.82);
  --stroke: rgba(17, 19, 24, 0.08);
  --stroke-strong: rgba(17, 19, 24, 0.14);
  --shadow: 0 14px 32px rgba(17, 19, 24, 0.08), 0 2px 8px rgba(17, 19, 24, 0.05);
  --shadow-soft: 0 8px 20px rgba(17, 19, 24, 0.06), 0 2px 6px rgba(17, 19, 24, 0.04);
  --shadow-hover: 0 18px 36px rgba(17, 19, 24, 0.1), 0 6px 14px rgba(17, 19, 24, 0.08);
  --hero-navy: #1c1f24;
  --hero-navy-2: #2a2f36;
  --success: #7ccba4;
  --danger: #e08585;
  --warning: #d9b07a;
  --radius-card: 24px;
  --radius-btn: 18px;
  --radius-pill: 999px;
  --blur-strong: 16px;
  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
  --duration-fast: 240ms;
  --duration-normal: 320ms;
  --sidebar-duration: 900ms;
  --sidebar-expanded: 320px;
  --sidebar-collapsed: 84px;
  --sidebar-current: var(--sidebar-expanded);
  --sidebar-inset: 16px;
  --sidebar-gap: 16px;
  --content-offset: calc(var(--sidebar-collapsed) + var(--sidebar-gap) + var(--sidebar-inset));
  --nav-item-gap: 12px;
  --nav-text-offset: 36px;
  --surface: var(--panel);
  --surface-strong: var(--panel-strong);
  --paper: var(--panel);
  --paper-strong: var(--panel-strong);
}

html,
body {
  overflow-x: hidden;
}

@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

body {
  font-family: "Manrope", "Inter", "SF Pro", sans-serif;
  background: var(--bg-base);
  color: var(--ink);
}

body.nav-animating {
  overflow-x: hidden;
}

@supports (overflow: clip) {
  body.nav-animating {
    overflow-x: clip;
  }
}

body.nav-animating .nav-panel {
  overflow-y: hidden;
}

body::before {
  content: none;
  display: none;
}

body::after {
  content: none;
  display: none;
}

h1,
h2,
h3,
.section-title,
.hero-title,
.brand-text span:last-child {
  font-family: "Manrope", "Inter", "SF Pro", sans-serif;
  letter-spacing: 0.01em;
}

img {
  filter: grayscale(100%) saturate(0.25) brightness(0.95);
}

.page {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 28px;
  padding-left: calc(28px + var(--content-offset));
  box-sizing: border-box;
  border: 0;
  background: transparent;
  box-shadow: none;
  display: block;
  transition: none;
  overflow-x: hidden;
}

.site-header {
  --sidebar-pad-x: 16px;
  --sidebar-pad-y: 16px;
  --nav-item-pad-x: var(--sidebar-pad-x);
  --nav-item-pad-y: 4px;
  --nav-item-height: 56px;
  --icon-slot-size: 48px;
  --nav-icon-size: var(--icon-slot-size);
  --brand-mark-size: clamp(64px, 8vw, 88px);
  --nav-card-inset: 8px;
  --group-title-height: 12px;
  --nav-offset-collapsed: 0px;
  --title-block-height: 24px;
  position: fixed;
  left: var(--sidebar-inset);
  top: var(--sidebar-inset);
  bottom: var(--sidebar-inset);
  height: auto;
  width: var(--sidebar-current);
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: var(--sidebar-pad-y) var(--sidebar-pad-x);
  box-sizing: border-box;
  background: var(--glass);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  overflow: hidden;
  pointer-events: auto;
  transition: width var(--sidebar-duration) var(--ease-out), box-shadow var(--sidebar-duration) var(--ease-out);
  will-change: width;
  z-index: 60;
}

@supports (backdrop-filter: blur(2px)) {
  .site-header {
    backdrop-filter: blur(var(--blur-strong));
  }
}

.header-top {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  min-height: 0;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: nowrap;
  width: 100%;
}

.sidebar-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  --brand-shift: 0px;
  width: calc(100% + (2 * var(--sidebar-pad-x)));
  margin-inline: calc(-1 * var(--sidebar-pad-x));
  padding-left: var(--nav-item-pad-x);
  padding-right: var(--sidebar-pad-x);
}

.sidebar-title {
  display: none;
}

.sidebar-title-main {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-strong);
  word-spacing: 0.14em;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sidebar-title-sub {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.18em;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 0;
  margin-left: 0;
  width: 100%;
  transform: none;
  text-decoration: none;
  color: inherit;
}

.sidebar-header .brand {
  display: grid;
  grid-template-columns: var(--nav-icon-size) minmax(0, 1fr);
  column-gap: var(--nav-item-gap);
  align-items: center;
  width: 100%;
  min-width: 0;
  min-height: var(--brand-mark-size);
}

.brand-mark {
  width: var(--brand-mark-size);
  height: var(--brand-mark-size);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  flex-shrink: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: none;
}

.sidebar-header .brand-mark {
  margin-left: 0;
  justify-self: center;
}

.brand-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  font-family: "Sekuya", "Oswald", "Manrope", "Inter", "SF Pro", sans-serif;
  font-size: clamp(1.12rem, 1.55vw, 1.6rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
  white-space: nowrap;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-left: -30px;
}

.sidebar-header .brand-text {
  position: static;
  display: flex;
  align-items: center;
  margin-left: 0;
  width: 100%;
  justify-content: flex-start;
  text-align: left;
  padding-left: var(--nav-text-offset);
  box-sizing: border-box;
}

.brand-text span:first-child {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}
.brand-text span:last-child {
  display: none;
}

.sidebar-avatar {
  width: var(--icon-slot-size);
  height: var(--icon-slot-size);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: #f5f7ff;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 10px 18px rgba(20, 34, 66, 0.2);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  color: var(--accent-strong);
  transition:
    transform var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out),
    background var(--duration-fast) var(--ease-out);
}

.nav-toggle:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
}

.nav-toggle:focus-visible {
  outline: 2px solid rgba(17, 19, 24, 0.25);
  outline-offset: 2px;
}

.nav-toggle-bars {
  position: relative;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent-strong);
  transition:
    background var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out);
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--accent-strong);
  transition: transform var(--duration-fast) var(--ease-out);
}

.nav-toggle-bars::before {
  transform: translateY(-6px);
}

.nav-toggle-bars::after {
  transform: translateY(6px);
}

body.nav-mobile-open .nav-toggle-bars {
  background: transparent;
}

body.nav-mobile-open .nav-toggle-bars::before {
  transform: rotate(45deg);
}

body.nav-mobile-open .nav-toggle-bars::after {
  transform: rotate(-45deg);
}

.nav-panel {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  background: transparent;
  border: none;
  overflow-x: hidden;
  overflow-y: auto;
  min-height: 0;
  flex: 1 1 auto;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: flex-start;
  width: calc(100% + (2 * var(--sidebar-pad-x)));
  margin-inline: calc(-1 * var(--sidebar-pad-x));
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.nav-panel::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.nav-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-group-title {
  display: block;
  font-size: 0.68rem;
  line-height: 1.2;
  min-height: var(--group-title-height);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding-left: calc(
    var(--nav-item-pad-x) + var(--nav-icon-size) + var(--nav-item-gap) + var(--nav-text-offset)
  );
  padding-right: var(--sidebar-pad-x);
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 1;
  transform: translateX(0);
  transition:
    opacity var(--sidebar-duration) var(--ease-out),
    transform var(--sidebar-duration) var(--ease-out);
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-bottom {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 6px;
  flex: 0 0 auto;
  align-items: stretch;
}

.sidebar-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
  width: calc(100% + (2 * var(--sidebar-pad-x)));
  margin-inline: calc(-1 * var(--sidebar-pad-x));
}

.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--nav-item-gap);
  padding: var(--nav-item-pad-y) var(--nav-item-pad-x);
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: var(--nav-item-height);
  overflow: visible;
  box-sizing: border-box;
  border-radius: 18px;
  background: transparent;
  border: none;
  box-shadow: none;
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
  font: inherit;
  appearance: none;
  transition:
    transform var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out),
    background var(--duration-fast) var(--ease-out);
}

.nav-link::before {
  content: "";
  position: absolute;
  inset: 0;
  left: var(--nav-card-inset);
  right: var(--nav-card-inset);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--stroke);
  box-shadow: 0 10px 18px rgba(20, 26, 33, 0.1);
  opacity: 1;
  transition:
    box-shadow var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out),
    background var(--duration-fast) var(--ease-out),
    opacity var(--duration-fast) var(--ease-out);
}

.nav-link > * {
  position: relative;
  z-index: 1;
}

.nav-link:focus-visible {
  outline: 2px solid rgba(17, 19, 24, 0.25);
  outline-offset: 2px;
}

.label-slot {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
  padding: 0 0 0 var(--nav-text-offset);
  box-sizing: border-box;
  opacity: 1;
  transform: translateX(0);
  transition:
    opacity var(--sidebar-duration) var(--ease-out),
    transform var(--sidebar-duration) var(--ease-out);
}

.nav-panel .label-slot {
  align-items: flex-start;
  text-align: left;
}

.sidebar-actions .label-slot {
  padding-left: 0;
}

.label-slot .label-title,
.label-slot span {
  font-size: 0.96rem;
  font-weight: 700;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.label-slot .label-subtitle,
.label-slot small {
  font-size: 0.78rem;
  color: var(--muted);
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
  width: var(--nav-icon-size);
  height: var(--nav-icon-size);
  border-radius: 16px;
  overflow: visible;
  background: linear-gradient(135deg, rgba(28, 31, 36, 0.12), rgba(28, 31, 36, 0.2));
  box-shadow: inset 0 0 0 1px rgba(17, 19, 24, 0.16);
  color: var(--accent-strong);
  font-size: 1.2rem;
}

.nav-link-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.nav-link:not(.primary) .nav-link-icon {
  background: linear-gradient(135deg, rgba(28, 31, 36, 0.08), rgba(28, 31, 36, 0.16));
}

.nav-link-icon.nav-link-icon--fallback {
  font-family: "Manrope", "Inter", "SF Pro", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
}

body:not(.nav-collapsed) .nav-link.primary::before,
body:not(.nav-collapsed) .nav-link[aria-current="page"]::before {
  background: linear-gradient(135deg, rgba(28, 31, 36, 0.08), rgba(28, 31, 36, 0.04));
  border-color: rgba(17, 19, 24, 0.14);
  box-shadow: 0 12px 20px rgba(17, 19, 24, 0.1);
}

body:not(.nav-collapsed) .nav-link.primary,
body:not(.nav-collapsed) .nav-link[aria-current="page"] {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  color: var(--accent-strong);
}

.nav-link.primary .nav-link-icon,
.nav-link[aria-current="page"] .nav-link-icon {
  color: var(--accent-strong);
  background: linear-gradient(135deg, rgba(28, 31, 36, 0.2), rgba(28, 31, 36, 0.12));
  box-shadow: inset 0 0 0 1px rgba(17, 19, 24, 0.2);
}

body:not(.nav-collapsed) .nav-link:hover::before {
  border-color: rgba(17, 19, 24, 0.18);
  box-shadow: 0 16px 28px rgba(17, 19, 24, 0.12);
}

body:not(.nav-collapsed) .nav-link:hover {
  transform: translateY(-1px);
}

.nav-bottom {
  margin-top: auto;
}

.nav-bottom .nav-link {
  width: 100%;
  min-width: 0;
  max-width: none;
}

body.nav-collapsed {
  --sidebar-current: var(--sidebar-collapsed);
}

body.nav-collapsed .site-header {
  width: var(--sidebar-current);
}

body.nav-collapsed .nav-link {
  background: transparent;
}

body.nav-collapsed .nav-link::before {
  opacity: 0;
  border-color: transparent;
  box-shadow: none;
}

body.nav-collapsed .nav-group-title,
body.nav-collapsed .label-slot,
body.nav-collapsed .brand-text,
body.nav-collapsed .sidebar-title {
  display: none;
}

body.nav-collapsed .nav-group::before {
  content: "";
  display: block;
  height: var(--group-title-height);
}

body.nav-collapsed .sidebar-bottom {
  padding-top: 6px;
}

body.nav-collapsed .nav-panel {
  margin-top: var(--nav-offset-collapsed);
}

body:not(.nav-collapsed) .sidebar-header {
  --brand-shift: 0px;
}

.sidebar-appear {
  opacity: 0;
  transform: translateX(-10px);
}

.auth {
  display: grid;
  gap: 10px;
  background: var(--glass);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 10px;
  box-shadow: var(--shadow-soft);
}

.auth .btn {
  width: 100%;
  text-transform: none;
  letter-spacing: normal;
  font-size: 0.85rem;
  padding: 10px 14px;
}

.btn {
  border-radius: var(--radius-btn);
  font-weight: 600;
  transition:
    transform var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out),
    background var(--duration-fast) var(--ease-out),
    color var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #ffffff;
  box-shadow: 0 12px 22px rgba(17, 19, 24, 0.18);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--stroke-strong);
  color: var(--accent-strong);
}

.btn.outline {
  border-color: var(--stroke-strong);
  color: var(--accent-strong);
}

main,
footer {
  grid-column: auto;
}

main {
  display: grid;
  gap: 24px;
}

footer {
  margin-top: 0;
  background: var(--glass);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

.section,
.hero-copy,
.hero-card,
.profile-card,
.panel,
.auth-card,
.intro {
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

.section {
  background: var(--panel);
  border: 1px solid var(--stroke);
  padding: 26px;
}

@supports (backdrop-filter: blur(2px)) {
  .section,
  .panel,
  .auth-card,
  .intro,
  .auth {
    backdrop-filter: blur(var(--blur-strong));
  }
}

.dashboard {
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.9fr);
  gap: 22px;
}

.hero-copy {
  position: relative;
  background: var(--hero-navy);
  color: #f5f7ff;
  border: 0;
  overflow: hidden;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(17, 19, 24, 0.78), rgba(42, 47, 54, 0.55)),
    url("/img/1658685634_y2.jpg") center/cover no-repeat;
  filter: grayscale(100%) saturate(0.2) brightness(0.9);
  transform: scale(1.02);
  opacity: 0.96;
  z-index: 0;
  pointer-events: none;
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(17, 19, 24, 0.35), rgba(42, 47, 54, 0.15));
  opacity: 0.55;
  pointer-events: none;
  z-index: 1;
}

.hero-copy > * {
  position: relative;
  z-index: 2;
}

.hero-kicker {
  color: #e6e8ee;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
}

.hero-title,
.hero-lead {
  color: #f5f6f8;
}

.hero-meta .meta-item {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  color: #f5f7ff;
}

.hero-meta .meta-item span {
  color: rgba(255, 255, 255, 0.7);
}

.hero-meta .meta-item strong {
  color: #f7f8fa;
}

.hero-card {
  background: var(--panel-strong);
  border: 1px solid var(--stroke);
  display: grid;
  align-content: start;
  gap: 14px;
}

.status-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-pill);
  background: rgba(20, 26, 33, 0.35);
  box-shadow: 0 0 0 6px rgba(20, 26, 33, 0.08);
}

.status-dot.dot-online {
  background: var(--success);
  box-shadow: 0 0 0 6px rgba(116, 198, 157, 0.22);
}

.status-dot.dot-offline {
  background: var(--danger);
  box-shadow: 0 0 0 6px rgba(230, 124, 124, 0.2);
}

.status-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--stroke);
}

.servers-grid,
.news-grid,
.future-grid,
.panel-grid,
.stats-grid,
.card-grid {
  gap: 18px;
}

.server-card,
.news-card,
.future-card,
.stat-card,
.panel,
.rule-item,
.roadmap-card,
.product-card,
.cart,
.wallet,
.method-card,
.step-card {
  background: rgba(255, 255, 255, 0.92);
  border-color: var(--stroke);
  box-shadow: var(--shadow-soft);
}

.news-grid .news-card {
  background:
    linear-gradient(180deg, rgba(24, 26, 32, 0.68), rgba(24, 26, 32, 0.2)),
    radial-gradient(circle at top, rgba(255, 255, 255, 0.14), transparent 60%),
    linear-gradient(140deg, var(--hero-navy), var(--hero-navy-2));
  color: #f6f8ff;
  border-color: rgba(255, 255, 255, 0.2);
}

.news-grid .news-card time,
.news-grid .news-card p {
  color: rgba(245, 246, 248, 0.85);
}

.news-grid .news-card h3 {
  color: #f5f6f8;
}

.rule-item p,
.section-lead,
.news-card p,
.future-card p,
.panel li,
.note,
.comment-user,
.comment-card p,
.notification-meta {
  color: var(--muted);
}

.table-wrap {
  border-radius: 18px;
  border-color: var(--stroke);
  box-shadow: var(--shadow-soft);
}

table th {
  background: rgba(248, 248, 250, 0.85);
}

input,
textarea,
select {
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--stroke);
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition:
    border-color var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out);
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: none;
  border-color: rgba(17, 19, 24, 0.2);
  box-shadow: 0 0 0 3px rgba(17, 19, 24, 0.12);
}

.support-item,
.support-message,
.notification-card {
  background: rgba(255, 255, 255, 0.92);
  border-color: var(--stroke);
}

.status-chip,
.ticket-status,
.severity-chip,
.badge,
.chip,
.tag {
  border-radius: 999px;
}

@media (max-width: 1200px) {
  .page {
    padding: 24px;
    padding-left: calc(24px + var(--content-offset));
  }

  .site-header {
    --sidebar-pad-y: 14px;
  }
}

@media (max-width: 980px) {
  body {
    --content-offset: 0px;
  }

  .site-header {
    position: static;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }

  .sidebar-header {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .nav-toggle {
    display: inline-flex;
    flex-shrink: 0;
    margin-left: auto;
  }

  body.nav-mobile-ready .site-header .nav-panel,
  body.nav-mobile-ready .site-header .sidebar-bottom {
    display: none;
  }

  body.nav-mobile-ready.nav-mobile-open .site-header .nav-panel,
  body.nav-mobile-ready.nav-mobile-open .site-header .sidebar-bottom {
    display: flex;
  }

  .dashboard {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page {
    padding: 20px;
    padding-left: calc(20px + var(--content-offset));
  }

  .section,
  .hero-copy,
  .hero-card {
    padding: 20px;
  }

  .site-header {
    --sidebar-pad-y: 10px;
    --sidebar-pad-x: 8px;
    --brand-mark-size: 64px;
  }

  .site-header .brand-text {
    font-size: 0.95rem;
    letter-spacing: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
