/* ==========================================================================
   ENERGICO E&I — production stylesheet
   Recreated from design handoff. Tokens per handoff spec.
   ========================================================================== */

/* --- Self-hosted fonts (latin subset) ------------------------------------ */
/* @font-face rules are appended from fonts/fonts.css at build time. */

/* --- Design tokens ------------------------------------------------------- */
:root {
  --bg: #05080F;
  --surface: #080D18;
  --surface-hi: #0B1322;
  --brand: #0A45A5;
  --brand-hover: #0F55C8;
  --brand-border: #1E5FD0;
  --accent: #5B9BFF;
  --accent-soft: #9EC2FF;
  --link: #7FA8FF;
  --text: #E8ECF2;
  --text-2: #C3CDDA;
  --text-3: #9BA7B8;
  --text-4: #8B97A8;
  --text-mono: #6C7889;
  --text-mono-dim: #5D6A7E;
  --ok: #6FE0A8;
  --warn: #F0B646;
  --hairline: rgba(255, 255, 255, .08);
  --hairline-soft: rgba(255, 255, 255, .07);
  --hairline-strong: rgba(255, 255, 255, .14);

  --mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --pad-x: 40px;
}

/* --- Reset --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Archivo, "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--link); text-decoration: none; }
a:hover { color: #fff; }
img, svg { display: block; }
input, textarea, button, select { font-family: inherit; }
button { cursor: pointer; }
::selection { background: var(--brand); color: #fff; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #17233A; }

/* --- Ambient background layers ------------------------------------------- */
.bg-wash, .bg-grid {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
}
.bg-wash {
  background:
    radial-gradient(1100px 700px at 78% -8%, rgba(10, 69, 165, .38), transparent 62%),
    radial-gradient(800px 600px at 6% 108%, rgba(10, 69, 165, .16), transparent 60%);
}
.bg-grid {
  opacity: .5;
  background-image:
    linear-gradient(rgba(255, 255, 255, .028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .028) 1px, transparent 1px);
  background-size: 96px 96px;
}

/* --- Keyframes ----------------------------------------------------------- */
@keyframes eg-spin   { to { transform: rotate(360deg); } }
@keyframes eg-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes eg-pulse  { 0%,100% { opacity: .25; transform: scale(1); } 50% { opacity: .6; transform: scale(1.06); } }
@keyframes eg-blink  { 0%,100% { opacity: 1; } 50% { opacity: .15; } }

/* --- Scroll progress bar ------------------------------------------------- */
.progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  z-index: 60;
}

/* --- Header -------------------------------------------------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 18px var(--pad-x);
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  transition: background .35s ease, border-color .35s ease, padding .35s ease, backdrop-filter .35s ease;
}
.nav.scrolled {
  padding: 12px var(--pad-x);
  background: rgba(5, 8, 15, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--hairline);
}
.nav__brand { display: flex; align-items: center; gap: 14px; }
.nav__brand img { height: 38px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__link {
  font-size: 13px; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: #AEB9C9;
}
.nav__link:hover { color: #fff; }
.nav__toggle { display: none; }

/* --- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 700; text-transform: uppercase; border: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, color .3s ease;
}
.btn--primary {
  background: var(--brand); color: #fff; border-color: var(--brand-border);
}
.btn--primary:hover { background: var(--brand-hover); color: #fff; }
.btn--ghost {
  background: transparent; color: var(--text); border-color: rgba(255, 255, 255, .16);
}
.btn--ghost:hover { border-color: var(--accent); color: #fff; }
.btn--nav { padding: 12px 20px; font-size: 13px; letter-spacing: .06em; }
.btn--lg { padding: 18px 30px; font-size: 14px; letter-spacing: .08em; }
.btn--md { padding: 16px 28px; font-size: 13px; letter-spacing: .08em; }

/* --- Shared layout ------------------------------------------------------- */
.eyebrow {
  font-family: var(--mono); font-size: 12px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--accent);
}
.eyebrow-row {
  display: flex; align-items: baseline; gap: 20px; margin-bottom: 16px;
}
.eyebrow-row .rule { flex: 1; height: 1px; background: rgba(255, 255, 255, .1); }
.section { position: relative; z-index: 1; }

/* --- Hero ---------------------------------------------------------------- */
.hero {
  position: relative; z-index: 1; min-height: 100vh;
  display: grid; grid-template-columns: 1.15fr .85fr; align-items: center;
  gap: 40px; padding: 150px var(--pad-x) 80px;
}
.hero__eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 34px; }
.hero__dot {
  width: 8px; height: 8px; background: var(--accent);
  animation: eg-blink 1.8s ease-in-out infinite;
}
.hero__eyebrow span:last-child {
  font-family: var(--mono); font-size: 12px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--link);
}
.hero h1 {
  margin: 0; font-size: clamp(52px, 7.4vw, 116px); line-height: .92;
  font-weight: 800; letter-spacing: -.035em; text-wrap: balance;
}
.hero h1 .hl { color: var(--accent); }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; max-width: 640px; }
.chip {
  padding: 9px 15px; border: 1px solid var(--hairline-strong);
  font-family: var(--mono); font-size: 12px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--text-2);
}
.chip--accent {
  border-color: rgba(91, 155, 255, .35); background: rgba(10, 69, 165, .18);
  color: var(--accent-soft);
}
.hero__statement {
  margin: 28px 0 0; max-width: 600px; font-size: 19px; line-height: 1.6;
  color: var(--text-3); text-wrap: pretty;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 44px; }
.hero__art {
  position: relative; display: flex; align-items: center; justify-content: center;
  min-height: 440px; overflow: hidden;
}
.ring {
  position: absolute; border-radius: 50%;
}
.ring--a {
  width: min(30vw, 420px); height: min(30vw, 420px);
  border: 1px solid rgba(91, 155, 255, .22);
  animation: eg-pulse 5s ease-in-out infinite;
}
.ring--b {
  width: min(38vw, 530px); height: min(38vw, 530px);
  border: 1px dashed rgba(91, 155, 255, .16);
  animation: eg-spin 44s linear infinite;
}
.glow {
  position: absolute; width: min(22vw, 300px); height: min(22vw, 300px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 69, 165, .45), transparent 70%);
  filter: blur(18px);
}
.hero__mark {
  position: relative; width: min(20vw, 270px); height: auto; opacity: .96;
  will-change: transform, opacity;
}

/* --- Marquee ------------------------------------------------------------- */
.marquee {
  position: relative; z-index: 1; overflow: hidden;
  border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
  background: rgba(8, 13, 24, .7); padding: 18px 0;
}
.marquee__track {
  display: flex; width: max-content;
  animation: eg-marquee 34s linear infinite;
  font-family: var(--mono); font-size: 13px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--text-mono-dim);
}
.marquee__group { display: flex; gap: 44px; padding-right: 44px; }
.marquee__group .sep { color: var(--brand); }

/* --- Stats --------------------------------------------------------------- */
.stats {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--hairline); border-bottom: 1px solid var(--hairline);
}
.stats__cell { background: var(--bg); padding: 54px var(--pad-x); }
.stats__num {
  font-size: clamp(40px, 4.4vw, 68px); font-weight: 800;
  letter-spacing: -.03em; line-height: 1;
}
.stats__num .unit { color: var(--accent); }
.stats__label {
  margin-top: 12px; font-family: var(--mono); font-size: 12px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--text-mono);
}

/* --- Capability header --------------------------------------------------- */
.cap-head { position: relative; z-index: 1; padding: 130px var(--pad-x) 40px; }
.cap-head h2 {
  margin: 0; max-width: 900px; font-size: clamp(36px, 4.6vw, 68px);
  line-height: 1.02; font-weight: 800; letter-spacing: -.03em;
}

/* --- Capability sticky sequence ------------------------------------------ */
.cap {
  position: relative; z-index: 1; display: grid;
  grid-template-columns: .9fr 1.1fr; gap: 60px;
  padding: 40px var(--pad-x) 130px; align-items: start;
}
.cap__sticky { position: sticky; top: 130px; }
.cap__meta {
  font-family: var(--mono); font-size: 12px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--text-mono); margin-bottom: 24px;
}
.cap__title {
  font-size: clamp(30px, 3.4vw, 50px); font-weight: 800;
  letter-spacing: -.025em; line-height: 1.05; transition: opacity .3s ease;
}
.cap__body {
  margin-top: 20px; font-size: 17px; line-height: 1.65;
  color: var(--text-3); max-width: 420px; transition: opacity .3s ease;
}
.cap__track {
  margin-top: 36px; height: 2px; background: var(--hairline);
  position: relative; max-width: 420px;
}
.cap__bar {
  position: absolute; left: 0; top: 0; height: 100%; width: 20%;
  background: var(--accent); transition: width .45s cubic-bezier(.2, .8, .2, 1);
}
.cap__cards {
  display: flex; flex-direction: column; gap: 1px;
  background: var(--hairline); border: 1px solid var(--hairline);
}
.cap__card {
  background: var(--surface); padding: 44px 40px; min-height: 280px;
  display: flex; flex-direction: column; justify-content: center;
  transition: background .4s ease;
}
.cap__card.active { background: var(--surface-hi); }
.cap__card-idx {
  font-family: var(--mono); font-size: 12px; letter-spacing: .18em;
  color: var(--accent); margin-bottom: 14px;
}
.cap__card-title { font-size: 26px; font-weight: 700; letter-spacing: -.015em; }
.cap__card ul {
  margin: 18px 0 0; padding-left: 18px; color: var(--text-4);
  font-size: 15px; line-height: 1.9;
}

/* --- Sectors ------------------------------------------------------------- */
.sectors { position: relative; z-index: 1; padding: 0 var(--pad-x) 130px; }
.sectors h2 {
  margin: 0 0 54px; max-width: 820px; font-size: clamp(34px, 4.2vw, 60px);
  line-height: 1.04; font-weight: 800; letter-spacing: -.03em;
}
.sectors__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.sector-card {
  border: 1px solid var(--hairline); background: var(--surface);
  transition: border-color .35s ease, transform .35s ease;
}
.sector-card:hover { border-color: rgba(91, 155, 255, .45); transform: translateY(-6px); }
.sector-card__media {
  position: relative; aspect-ratio: 4 / 3;
  border-bottom: 1px solid var(--hairline); overflow: hidden;
  background:
    linear-gradient(135deg, rgba(10, 69, 165, .22), transparent 60%),
    var(--surface-hi);
}
.sector-card__media img { width: 100%; height: 100%; object-fit: cover; }
.sector-card__ph {
  position: absolute; inset: 0; display: flex; align-items: flex-end;
  padding: 16px; font-family: var(--mono); font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-mono);
}
.sector-card__body { padding: 30px; }
.sector-card__body h3 {
  margin: 0; font-size: 23px; font-weight: 700; letter-spacing: -.015em;
}
.sector-card__body p {
  margin: 12px 0 0; font-size: 15px; line-height: 1.65; color: var(--text-4);
}

/* --- Hire ---------------------------------------------------------------- */
.hire {
  position: relative; z-index: 1; padding: 110px var(--pad-x) 130px;
  border-top: 1px solid var(--hairline);
  background: linear-gradient(180deg, rgba(10, 69, 165, .10), transparent 45%);
}
.hire__inner {
  display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: start;
}
.hire__sticky { position: sticky; top: 130px; }
.hire__sticky h2 {
  margin: 0; font-size: clamp(34px, 3.8vw, 56px); line-height: 1.03;
  font-weight: 800; letter-spacing: -.03em;
}
.hire__sticky p {
  margin: 22px 0 0; max-width: 400px; font-size: 17px; line-height: 1.65;
  color: var(--text-3);
}
.hire__cta { margin-top: 32px; }
.hire__table { display: flex; flex-direction: column; }
.hire__row {
  display: grid; grid-template-columns: 1.6fr 1fr auto; gap: 24px; align-items: center;
}
.hire__head {
  padding: 18px 4px; border-bottom: 1px solid var(--hairline-strong);
  font-family: var(--mono); font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--text-mono);
}
.hire__item {
  padding: 26px 4px; border-bottom: 1px solid var(--hairline-soft);
  transition: background .3s ease, padding-left .3s ease;
}
.hire__item:last-child { border-bottom: none; }
.hire__item:hover { background: rgba(91, 155, 255, .06); padding-left: 16px; }
.hire__name { font-size: 19px; font-weight: 700; }
.hire__sub { margin-top: 6px; font-size: 14px; color: var(--text-4); }
.hire__use { font-size: 14px; color: var(--text-4); }
.hire__status {
  display: flex; align-items: center; gap: 8px; font-family: var(--mono);
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
}
.hire__status .sq { width: 6px; height: 6px; }
.hire__status.ok { color: var(--ok); }
.hire__status.ok .sq { background: var(--ok); }
.hire__status.req { color: var(--warn); }
.hire__status.req .sq { background: var(--warn); }

/* --- Projects ------------------------------------------------------------ */
.projects { position: relative; z-index: 1; padding: 0 var(--pad-x) 130px; }
.projects h2 {
  margin: 0 0 54px; max-width: 820px; font-size: clamp(34px, 4.2vw, 60px);
  line-height: 1.04; font-weight: 800; letter-spacing: -.03em;
}
.projects__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--hairline); border: 1px solid var(--hairline);
}
.project {
  background: var(--surface); padding: 40px 34px; transition: background .35s ease;
}
.project:hover { background: var(--surface-hi); }
.project__loc {
  font-family: var(--mono); font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--accent);
}
.project h3 {
  margin: 18px 0 0; font-size: 24px; font-weight: 700;
  letter-spacing: -.015em; line-height: 1.2;
}
.project p {
  margin: 14px 0 22px; font-size: 15px; line-height: 1.65; color: var(--text-4);
}
.project__tags {
  display: flex; gap: 26px; font-family: var(--mono); font-size: 11px;
  letter-spacing: .1em; text-transform: uppercase; color: var(--text-mono);
}

/* --- Credentials --------------------------------------------------------- */
.creds { position: relative; z-index: 1; padding: 0 var(--pad-x) 130px; }
.creds__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--hairline); border: 1px solid var(--hairline);
}
.cred { background: var(--surface); padding: 36px 30px; }
.cred__label {
  font-family: var(--mono); font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--text-mono);
}
.cred__value { margin-top: 10px; font-size: 20px; font-weight: 700; }
.cred__sub { margin-top: 6px; font-size: 14px; color: var(--text-4); }

/* --- Contact ------------------------------------------------------------- */
.contact {
  position: relative; z-index: 1; padding: 110px var(--pad-x) 120px;
  border-top: 1px solid var(--hairline);
  background: linear-gradient(180deg, rgba(10, 69, 165, .14), transparent 60%);
}
.contact__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start;
}
.contact h2 {
  margin: 0; font-size: clamp(38px, 4.6vw, 66px); line-height: 1.02;
  font-weight: 800; letter-spacing: -.035em;
}
.contact__lead {
  margin: 24px 0 40px; max-width: 460px; font-size: 17px; line-height: 1.65;
  color: var(--text-3);
}
.contact__details { display: flex; flex-direction: column; gap: 18px; font-size: 16px; }
.contact__row { display: flex; gap: 16px; }
.contact__row .k {
  font-family: var(--mono); font-size: 12px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--text-mono); width: 90px; padding-top: 3px;
  flex-shrink: 0;
}
.contact__row .v { color: var(--text-3); }

/* --- Form ---------------------------------------------------------------- */
.form {
  border: 1px solid rgba(255, 255, 255, .1); background: rgba(8, 13, 24, .75);
  padding: 40px; display: flex; flex-direction: column; gap: 22px;
}
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 9px; }
.field > span {
  font-family: var(--mono); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--text-mono);
}
.field input, .field select, .field textarea {
  background: var(--bg); border: 1px solid rgba(255, 255, 255, .12);
  color: var(--text); padding: 14px; font-size: 15px; outline: none;
  transition: border-color .25s ease;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); }
.field input:user-invalid, .field textarea:user-invalid { border-color: var(--warn); }
.form__submit {
  margin-top: 4px; padding: 18px; background: var(--brand);
  border: 1px solid var(--brand-border); color: #fff; font-size: 14px;
  font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  transition: background .3s ease, opacity .3s ease;
}
.form__submit:hover { background: var(--brand-hover); }
.form__submit:disabled { opacity: .6; cursor: default; }
.form__note { font-size: 13px; line-height: 1.5; color: var(--text-mono); min-height: 1em; }
.form__note.ok { color: var(--ok); }
.form__note.err { color: var(--warn); }

/* --- Footer -------------------------------------------------------------- */
.footer {
  position: relative; z-index: 1; border-top: 1px solid var(--hairline);
  padding: 56px var(--pad-x) 40px; display: flex; align-items: flex-end;
  justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.footer img { height: 72px; width: auto; opacity: .9; }
.footer__meta {
  font-family: var(--mono); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--text-mono-dim);
  text-align: right; line-height: 2;
}

/* --- Reveal animation ---------------------------------------------------- */
[data-reveal] {
  opacity: 0; transform: translateY(28px);
  transition: opacity .85s cubic-bezier(.2, .8, .2, 1), transform .85s cubic-bezier(.2, .8, .2, 1);
}
[data-reveal].in { opacity: 1; transform: none; }

/* --- Responsive ---------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding-top: 130px; }
  .hero__art { min-height: 360px; order: -1; }
  .cap { grid-template-columns: 1fr; gap: 40px; }
  .cap__sticky { position: static; }
  .hire__inner { grid-template-columns: 1fr; gap: 44px; }
  .hire__sticky { position: static; }
  .contact__inner { grid-template-columns: 1fr; gap: 44px; }
  .sectors__grid { grid-template-columns: repeat(2, 1fr); }
  .projects__grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .creds__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  :root { --pad-x: 20px; }
  .nav__links { gap: 0; }
  .nav__link { display: none; }
  .sectors__grid { grid-template-columns: 1fr; }
  .projects__grid { grid-template-columns: 1fr; }
  .creds__grid { grid-template-columns: 1fr; }
  .form__grid { grid-template-columns: 1fr; }
  .form { padding: 28px; }

  /* Hire table → stacked blocks */
  .hire__head { display: none; }
  .hire__row { grid-template-columns: 1fr; gap: 10px; }
  .hire__item { padding: 22px 4px; }
  .hire__item:hover { padding-left: 4px; }
  .hire__use::before {
    content: "Use — "; color: var(--text-mono); font-family: var(--mono);
    font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  }
}

@media (max-width: 400px) {
  .stats { grid-template-columns: 1fr; }
}

/* --- Reduced motion ------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .cap__title, .cap__body { transition: none !important; }
}

/* --- Self-hosted @font-face (latin subset) --- */
/* latin */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(/fonts/Archivo-2d6953d7.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(/fonts/Archivo-2d6953d7.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(/fonts/Archivo-2d6953d7.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(/fonts/Archivo-2d6953d7.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 800;
  font-stretch: 100%;
  font-display: swap;
  src: url(/fonts/Archivo-2d6953d7.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 900;
  font-stretch: 100%;
  font-display: swap;
  src: url(/fonts/Archivo-2d6953d7.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin */
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/fonts/IBMPlexMono-e2661bcc.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin */
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/fonts/IBMPlexMono-0bc96cd0.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin */
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/fonts/IBMPlexMono-1b581b15.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
