:root {
  --ev-shell-green: #347f00;
  --ev-shell-green-2: #2f7600;
  --ev-shell-ink: #07100b;
  --ev-shell-panel: #0d130f;
  --ev-shell-muted: #b8c2b3;
  --ev-shell-line: rgba(255, 255, 255, 0.14);
}

html {
  scroll-padding-top: 92px;
}

body {
  overflow-x: hidden;
}

.ev-shell-header,
.ev-shell-footer {
  box-sizing: border-box;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

.ev-shell-header *,
.ev-shell-footer * {
  box-sizing: border-box;
}

.ev-shell-header a,
.ev-shell-footer a {
  color: inherit;
  text-decoration: none;
}

.ev-shell-header {
  position: sticky;
  top: 0;
  z-index: 5000;
  background:
    linear-gradient(180deg, rgba(9, 14, 11, 0.98), rgba(9, 14, 11, 0.92)),
    var(--ev-shell-panel);
  color: #f7fbf4;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.ev-shell-header__inner {
  width: min(1240px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, auto) minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.ev-shell-brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.ev-shell-brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.10);
}

.ev-shell-brand__text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.ev-shell-brand__name {
  font-size: clamp(22px, 2.3vw, 31px);
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
}

.ev-shell-brand__tag {
  color: var(--ev-shell-muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.ev-shell-nav {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.ev-shell-nav__link,
.ev-shell-lang__link,
.ev-shell-menu {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #dce5d8;
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.ev-shell-nav__link {
  padding: 10px 11px;
}

.ev-shell-nav__link:hover,
.ev-shell-nav__link:focus-visible,
.ev-shell-lang__link:hover,
.ev-shell-lang__link:focus-visible,
.ev-shell-menu:hover,
.ev-shell-menu:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--ev-shell-line);
  outline: none;
}

.ev-shell-nav__link[aria-current="page"] {
  color: #fff;
  background: rgba(52, 127, 0, 0.18);
  border-color: rgba(52, 127, 0, 0.54);
}

.ev-shell-nav__link--cta {
  padding-inline: 16px;
  color: #fff;
  background: var(--ev-shell-green);
  border-color: var(--ev-shell-green);
  box-shadow: 0 10px 24px rgba(52, 127, 0, 0.26);
}

.ev-shell-nav__link--cta:hover,
.ev-shell-nav__link--cta:focus-visible {
  background: var(--ev-shell-green-2);
  border-color: var(--ev-shell-green-2);
}

.ev-shell-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.ev-shell-lang {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
}

.ev-shell-lang__link {
  min-width: 38px;
  min-height: 34px;
  padding: 8px 9px;
  font-size: 12px;
}

.ev-shell-lang__link[aria-current="page"] {
  color: #fff;
  background: rgba(52, 127, 0, 0.28);
  border-color: rgba(52, 127, 0, 0.42);
}

.ev-shell-menu {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.ev-shell-menu__bars {
  position: relative;
  width: 18px;
  height: 13px;
}

.ev-shell-menu__bars::before,
.ev-shell-menu__bars::after,
.ev-shell-menu__bars span {
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  content: "";
}

.ev-shell-menu__bars::before {
  top: 0;
}

.ev-shell-menu__bars span {
  top: 5.5px;
}

.ev-shell-menu__bars::after {
  bottom: 0;
}

.ev-shell-drawer {
  display: none;
}

.ev-shell-footer {
  background:
    radial-gradient(760px 300px at 12% 0%, rgba(52, 127, 0, 0.20), transparent 62%),
    linear-gradient(180deg, #0c120e 0%, #060806 100%);
  color: #f7fbf4;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ev-shell-footer__inner {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(34px, 5vw, 58px) 0 28px;
}

.ev-shell-footer__top {
  display: grid;
  grid-template-columns: minmax(240px, 0.95fr) minmax(0, 2.8fr);
  gap: clamp(26px, 4vw, 52px);
  align-items: start;
}

.ev-shell-footer__brand {
  display: grid;
  gap: 14px;
}

.ev-shell-footer__brand strong {
  display: block;
  color: #fff;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 950;
  line-height: 0.98;
}

.ev-shell-footer__brand p {
  max-width: 320px;
  margin: 0;
  color: var(--ev-shell-muted);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.55;
}

.ev-shell-footer__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ev-shell-footer__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 900;
}

.ev-shell-footer__button--primary {
  border-color: var(--ev-shell-green);
  background: var(--ev-shell-green);
}

.ev-shell-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.ev-shell-footer__col h2 {
  margin: 0 0 12px;
  color: #a9e88a;
  font-size: 12px;
  font-weight: 950;
  line-height: 1.2;
  text-transform: uppercase;
}

.ev-shell-footer__col ul,
.ev-shell-footer__legal,
.ev-shell-footer__social {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ev-shell-footer__col ul {
  display: grid;
  gap: 8px;
}

.ev-shell-footer__col a {
  color: #c7d0c2;
  font-size: 14px;
  font-weight: 760;
  line-height: 1.35;
}

.ev-shell-footer__col a:hover,
.ev-shell-footer__col a:focus-visible,
.ev-shell-footer__legal a:hover,
.ev-shell-footer__legal a:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: var(--ev-shell-green);
  text-underline-offset: 4px;
  outline: none;
}

.ev-shell-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ev-shell-footer__legal,
.ev-shell-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 14px;
}

.ev-shell-footer__legal a,
.ev-shell-footer__copy {
  color: #aeb9aa;
  font-size: 13px;
  font-weight: 700;
}

.ev-shell-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #f7fbf4;
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 850;
}

@media (max-width: 1120px) {
  .ev-shell-header__inner {
    grid-template-columns: minmax(220px, auto) auto;
  }

  .ev-shell-nav {
    display: none;
  }

  .ev-shell-menu {
    display: inline-flex;
  }

  .ev-shell-drawer {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    border-top: 1px solid transparent;
    transition: grid-template-rows 180ms ease, border-color 180ms ease;
  }

  .ev-shell-header.is-open .ev-shell-drawer {
    grid-template-rows: 1fr;
    border-color: rgba(255, 255, 255, 0.10);
  }

  .ev-shell-drawer__inner {
    min-height: 0;
    overflow: hidden;
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .ev-shell-header.is-open .ev-shell-drawer__inner {
    padding: 12px 0 16px;
  }

  .ev-shell-drawer .ev-shell-nav__link {
    justify-content: flex-start;
    min-height: 44px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 840px) {
  .ev-shell-header__inner {
    width: min(100% - 24px, 1240px);
    min-height: 68px;
    gap: 10px;
  }

  .ev-shell-brand__mark {
    width: 36px;
    height: 36px;
  }

  .ev-shell-brand__name {
    font-size: 21px;
  }

  .ev-shell-brand__tag {
    display: none;
  }

  .ev-shell-lang {
    display: none;
  }

  .ev-shell-drawer__inner {
    width: min(100% - 24px, 1240px);
    grid-template-columns: 1fr 1fr;
  }

  .ev-shell-footer__top,
  .ev-shell-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .ev-shell-header__inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .ev-shell-brand__name {
    font-size: 19px;
  }

  .ev-shell-drawer__inner,
  .ev-shell-footer__top,
  .ev-shell-footer__grid {
    grid-template-columns: 1fr;
  }

  .ev-shell-footer__inner {
    width: min(100% - 24px, 1240px);
  }

  .ev-shell-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
