@font-face {
  font-family: "Outfit";
  src: url("../fonts/outfit-normal.woff2") format("woff2");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Outfit-fallback";
  src: local("Arial");
  size-adjust: 105%;
  ascent-override: 90%;
  descent-override: 22%;
  line-gap-override: 0%;
}

:root {
  --bg: #010315;
  --panel: #070b22;
  --panel-2: #0b1028;
  --surface: rgba(17, 17, 24, 0.6);
  --surface-solid: #0d0d18;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #b0b0c8;
  --muted: rgba(255, 255, 255, 0.45);
  --white: #fff;
  --blue: #004cff;
  --blue-soft: #4d8eff;
  --gold: #ffc002;
  --red: #ef4444;
  --green: #22c55e;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color-scheme: dark;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Outfit", "Outfit-fallback", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  overflow-x: hidden;
}

h1,
h2,
h3,
p,
a,
button,
label,
span,
strong {
  overflow-wrap: anywhere;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
}

svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.wrap {
  width: min(1248px, calc(100% - 32px));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 10px;
  padding: 0 18px;
  color: var(--white);
  background: var(--blue);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(0, 76, 255, 0.32);
}

.btn--gold {
  color: #111;
  background: var(--gold);
  box-shadow: none;
}

.btn--ghost {
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  box-shadow: none;
}

.muted {
  color: var(--muted);
}

.page-shell {
  min-height: 100vh;
  background: var(--bg);
}

.breadcrumbs {
  min-height: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: flex-start;
  color: rgba(255, 255, 255, 0.35);
  font-size: 14px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.breadcrumbs a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs span {
  color: rgba(255, 255, 255, 0.2);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.section-head h2 {
  margin: 0;
  color: var(--white);
  font-size: 24px;
  line-height: 1.45;
  font-weight: 800;
}

.section-head p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 14px;
}

.section-head a {
  color: var(--blue-soft);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .wrap {
    width: calc(100% - 32px);
  }

  .section-head {
    align-items: flex-start;
  }

  .section-head h2 {
    font-size: 20px;
  }
}
