:root {
  color-scheme: dark;
  --bg: #000;
  --panel: #0a0a0a;
  --panel-soft: #101010;
  --line: rgba(255, 255, 255, .11);
  --line-strong: rgba(255, 255, 255, .18);
  --text: #fff;
  --muted: #b6bbc5;
  --muted-2: #7c828d;
  --accent: #4ED869;
  --accent-2: #8AF29A;
  --warning: #ffb703;
  --danger: #ff6b6b;
  --shadow: 0 22px 70px rgba(0, 0, 0, .48);
  --container: min(calc(100% - 32px), 1440px);
  --topbar: 48px;
  --nav: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

main {
  background: #000;
}

body.menu-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 72%, transparent);
  opacity: .32;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: calc(100% - 32px);
  max-width: 1440px;
  margin-inline: auto;
}

.hero__grid > *,
.page-hero__inner > *,
.section-head > *,
.split-grid > *,
.architecture-grid > *,
.service-tabs > *,
.offer-grid > *,
.network-grid > *,
.mega-layout > *,
.mega-services > *,
.cards-3 > *,
.cards-4 > *,
.cta__inner > * {
  min-width: 0;
}

.topbar {
  background: var(--warning);
  color: #000;
  border-bottom: 1px solid rgba(0, 0, 0, .24);
}

@keyframes topbar-slide-down {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.topbar {
  animation: topbar-slide-down .65s cubic-bezier(.16, 1, .3, 1) both;
}

.topbar__inner {
  min-height: var(--topbar);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-block: 8px;
  font-size: 14px;
  font-weight: 400;
}

.topbar__message,
.status-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}

.topbar__message span:last-child {
  min-width: 0;
  line-height: 1.45;
  overflow-wrap: anywhere;
}
.topbar__message strong {
  font-weight: 700;
}

.topbar__warning-triangle {
  position: relative;
  width: 19px;
  height: 17px;
  margin-top: .22em;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  color: var(--warning);
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, .28));
  animation: topbar-warning-blink 1.15s cubic-bezier(.4, 0, .2, 1) infinite;
}

.topbar__warning-triangle::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.topbar__warning-mark {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding-top: 4px;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.02em;
}

@keyframes topbar-warning-blink {
  0%, 100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, .28));
  }

  50% {
    opacity: .36;
    transform: translateY(0) scale(.92);
    filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
  }
}


.dot {
  width: 10px;
  height: 10px;
  margin-top: .35em;
  flex: 0 0 auto;
  border-radius: 999px;
  background: currentColor;
}

.dot--accent {
  color: var(--accent);
}

.dot--warning {
  color: #000;
  box-shadow: 0 0 0 5px rgba(0, 0, 0, .08);
}

.topbar__action {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 36px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 48, 64, .74);
  background:
    linear-gradient(135deg, rgba(255, 48, 64, .26), rgba(110, 0, 12, .44)),
    rgba(90, 0, 10, .34);
  color: #fff;
  white-space: nowrap;
  font-weight: 500;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .05), 0 0 24px rgba(255, 48, 64, .16);
  transition: background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.topbar__action:hover {
  background:
    linear-gradient(135deg, rgba(255, 48, 64, .42), rgba(180, 0, 18, .56)),
    rgba(155, 0, 18, .46);
  border-color: #ff3040;
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08), 0 0 30px rgba(255, 48, 64, .28);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .98), rgba(2, 20, 17, .98) 50%, rgba(0, 0, 0, .98)),
    #000;
  border-bottom: 1px solid rgba(78, 216, 105, .18);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .035), 0 18px 50px rgba(0, 0, 0, .5);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(78, 216, 105, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(78, 216, 105, .028) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent);
  opacity: .55;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(78, 216, 105, .74), transparent);
}

.nav {
  position: relative;
  z-index: 1;
  min-height: var(--nav);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand__mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(78, 216, 105, .55);
  background:
    linear-gradient(135deg, rgba(78, 216, 105, .18), rgba(78, 216, 105, .07)),
    rgba(78, 216, 105, .08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04), 0 0 28px rgba(78, 216, 105, .13);
}

.brand__grid {
  display: grid;
  grid-template-columns: repeat(2, 8px);
  gap: 5px;
}

.brand__grid span {
  width: 8px;
  height: 8px;
  background: var(--accent);
}

.brand__grid span:nth-child(2) {
  background: var(--accent-2);
}

.brand__grid span:nth-child(3) {
  background: #fff;
}

.brand__name {
  display: block;
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
}

.brand__sub {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted-2);
  letter-spacing: .04em;
}

.desktop-nav {
  display: flex;
  align-items: stretch;
  gap: 30px;
  align-self: stretch;
}

.nav-item {
  position: static;
  display: flex;
  align-items: center;
}

.nav-trigger {
  height: var(--nav);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: #e8e8e8;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .01em;
}

.nav-item:hover .nav-trigger,
.nav-item:focus-within .nav-trigger {
  color: #8AF29A;
  border-color: var(--accent);
}

.nav-dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--accent);
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  width: min(980px, calc(100vw - 32px));
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(12px);
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, .99);
  box-shadow: var(--shadow);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.mega-menu::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.mega-menu::before {
  content: "";
  position: absolute;
  top: -14px;
  inset-inline: 0;
  height: 14px;
}

.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-menu--services {
  width: 100vw;
  padding: 16px 0 18px;
  border-inline: 0;
  border-top: 1px solid rgba(78, 216, 105, .26);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 20px 80px rgba(0, 0, 0, .62);
}

.mega-menu--services::after {
  display: none;
}

.mega-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
}

.eyebrow {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.mega-services {
  width: calc(100% - 56px);
  max-width: 1880px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 24px;
}

.mega-column {
  min-height: 100%;
}

.mega-column-label {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.mega-column:nth-child(2) .mega-column-label {
  color: #05a8ff;
}

.mega-row-list {
  display: grid;
  gap: 8px;
}

.mega-row {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  overflow: hidden;
  padding: 0 10px 0 32px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #000;
  color: #fff;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.mega-row:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: #061507;
}

.mega-row__title,
.mega-feature-card strong {
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}

.mega-row:hover .mega-row__title {
  color: #061507;
}

.mega-feature-card small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.mega-feature-card strong {
  max-width: 96%;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.12;
}

.mega-row__glyph {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 46px;
  color: var(--accent);
  opacity: .74;
  transform: translateX(12px);
}

.mega-row__glyph svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.3;
}

.mega-row:hover .mega-row__glyph {
  color: #061507;
  opacity: .9;
}

.mega-row--active {
  border-color: rgba(78, 216, 105, .42);
  background: rgba(78, 216, 105, .055);
}

.mega-feature-card {
  position: relative;
  min-height: 266px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #050505;
  padding: 26px 16px;
  transition: transform .18s ease, border-color .18s ease;
}

.mega-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .88;
  background: url("../img/service-colocation.jpg") center / cover no-repeat;
  transform: scale(1.02);
  transition: opacity .22s ease, transform .35s ease;
}

.mega-feature-card--compute::before {
  background: url("../img/service-dedicated-servers.jpg") center / cover no-repeat;
}

.mega-feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .08) 0%, rgba(0, 0, 0, .18) 46%, rgba(0, 0, 0, .84) 100%),
    linear-gradient(90deg, rgba(0, 72, 60, .46), rgba(0, 0, 0, .12) 56%, rgba(0, 0, 0, .28) 100%);
}

.mega-feature-card:hover {
  transform: translateY(-2px);
  border-color: rgba(78, 216, 105, .38);
}

.mega-feature-card:hover::before {
  opacity: 1;
  transform: scale(1.06);
}

.mega-feature-card > * {
  position: relative;
  z-index: 1;
}

.mega-link,
.feature-card,
.metric-card,
.panel,
.service-card,
.detail-card,
.step-card {
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255, 255, 255, .038), rgba(255, 255, 255, .012)), var(--panel);
}

.mega-link {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 14px;
  padding: 16px;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.mega-link:hover {
  background: rgba(78, 216, 105, .08);
  border-color: rgba(78, 216, 105, .32);
  transform: translateY(-2px);
}

.icon-box {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--accent);
  background: rgba(78, 216, 105, .10);
}

.mega-title,
.card-title {
  display: block;
  color: #fff;
  font-weight: 600;
}

.mega-copy,
.muted {
  color: var(--muted);
}

.mega-copy {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.55;
}

.mega-aside,
.panel {
  padding: 20px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-status {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  color: rgba(255, 255, 255, .74);
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.nav-status span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  border: 1px solid rgba(78, 216, 105, .18);
  background: rgba(78, 216, 105, .045);
}

.nav-status__dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #4ED869;
  box-shadow: 0 0 14px rgba(78, 216, 105, .75);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 20px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-weight: 800;
  max-width: 100%;
  text-align: center;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(78, 216, 105, .35);
}

.nav-actions .btn:hover {
  transform: none;
}

.btn--primary {
  background: #fff;
  border-color: #fff;
  color: #000;
}

.site-header .btn,
.mobile-section__toggle,
.mobile-link {
  font-weight: 500;
}

.btn--header-pricing {
  background: rgba(8, 51, 42, .62);
  border-color: #2D7A3B;
  color: #8AF29A;
}

.btn--header-pricing:hover {
  background: #4ED869;
  border-color: #4ED869;
  color: #000;
}

.btn--accent {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
}

.btn--dark {
  background: #000;
  color: #fff;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  background: #000;
  color: #fff;
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: #000;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu__inner {
  display: grid;
  gap: 12px;
  padding-block: 16px;
}

.mobile-section {
  border: 1px solid var(--line);
}

.mobile-section__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border: 0;
  background: transparent;
  color: #fff;
  font-weight: 800;
}

.mobile-section__panel {
  display: none;
  gap: 4px;
  border-top: 1px solid var(--line);
  padding: 8px;
}

.mobile-section.open .mobile-section__panel {
  display: grid;
}

.mobile-link {
  padding: 12px;
  color: #e8e8e8;
}

.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(78, 216, 105, .55), transparent);
}

.hero__image,
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.hero__video {
  filter: saturate(1.04) contrast(1.06) brightness(.88);
  object-position: center center;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, .06) 0%, rgba(0, 0, 0, .28) 18%, rgba(0, 0, 0, .72) 39%, #000 51%, #000 100%);
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, .06) 0%, rgba(0, 0, 0, .28) 18%, rgba(0, 0, 0, .72) 39%, #000 51%, #000 100%);
  pointer-events: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, .94) 20%, rgba(0, 0, 0, .60) 38%, rgba(0, 0, 0, .14) 58%, rgba(0, 0, 0, .02) 74%, rgba(0, 0, 0, .28) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .60) 0%, rgba(0, 0, 0, .08) 22%, rgba(0, 0, 0, .08) 68%, rgba(0, 0, 0, .98) 100%);
}

.hero__grid {
  position: relative;
  display: block;
  padding-block: 58px 76px;
}

.hero__content {
  max-width: 830px;
  margin-left: min(7vw, 120px);
}

@keyframes hero-content-in {
  from {
    opacity: 0;
    transform: translateY(22px);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.hero__content .badge--hero,
.hero__content h1,
.hero__content .hero__copy,
.hero__actions .btn {
  opacity: 0;
  transform: translateY(22px);
  animation: hero-content-in .9s cubic-bezier(.16, 1, .3, 1) forwards;
}

.hero__content .badge--hero {
  animation-delay: .12s;
}

.hero__content h1 {
  animation-delay: .28s;
}

.hero__content .hero__copy {
  animation-delay: .46s;
}

.hero__actions .btn:first-child {
  animation-delay: .64s;
}

.hero__actions .btn:nth-child(2) {
  animation-delay: .76s;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  border: 1px solid rgba(78, 216, 105, .30);
  background: rgba(78, 216, 105, .10);
  color: var(--accent);
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.badge--hero {
  border-color: rgba(78, 216, 105, .16);
  background: rgba(78, 216, 105, .13);
  color: var(--accent);
  padding: 8px 15px;
  font-size: 16px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

.hero h1,
.page-hero h1 {
  max-width: 880px;
  margin: 18px 0 0;
  font-size: 70px;
  line-height: .98;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 780px;
  font-weight: 430;
}

.hero-rotating-word {
  position: relative;
  display: inline-block;
  color: var(--accent);
  min-width: 7.7em;
  white-space: nowrap;
  vertical-align: baseline;
  transform-origin: left 72%;
  will-change: opacity, transform, filter;
  text-shadow:
    0 0 18px rgba(78, 216, 105, .24),
    0 0 46px rgba(78, 216, 105, .12);
}


.hero-rotating-word.is-exiting {
  animation: hero-word-out .46s cubic-bezier(.7, 0, .3, 1) forwards;
}

.hero-rotating-word.is-entering {
  animation: hero-word-in .68s cubic-bezier(.16, 1, .3, 1) both;
}


@keyframes hero-word-out {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotateX(0deg);
    filter: blur(0);
  }

  100% {
    opacity: 0;
    transform: translate3d(0, -.42em, 0) rotateX(12deg) scale(.985);
    filter: blur(10px);
  }
}

@keyframes hero-word-in {
  0% {
    opacity: 0;
    transform: translate3d(0, .48em, 0) rotateX(-14deg) scale(.985);
    filter: blur(12px);
    letter-spacing: -.018em;
  }

  60% {
    opacity: 1;
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotateX(0deg) scale(1);
    filter: blur(0);
    letter-spacing: 0;
  }
}

.hero p,
.page-hero p {
  max-width: 760px;
  color: #e5e7eb;
  font-size: 20px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.hero__copy {
  max-width: 780px;
  margin-top: 22px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
  max-width: 100%;
}

.post-hero-bars {
  --post-hero-bar-line: #2D7A3B;
  --post-hero-bar-gap: 10px;
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--post-hero-bar-gap);
  overflow: hidden;
  background: var(--bg);
  padding-bottom: 0;
}

.hero-service-bar {
  position: relative;
  z-index: 1;
  overflow: hidden;
  isolation: isolate;
  background: var(--bg);
  color: #fff;
}

.hero-service-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: center;
}

.hero-service-bar::after {
  z-index: 1;
  background:
    linear-gradient(var(--post-hero-bar-line), var(--post-hero-bar-line)) center top / 100% 1px no-repeat,
    linear-gradient(var(--post-hero-bar-line), var(--post-hero-bar-line)) center bottom / 100% 1px no-repeat;
  animation: bar-rule-open .92s cubic-bezier(.16, 1, .3, 1) .08s forwards;
}

.hero-service-bar__inner {
  position: relative;
  z-index: 2;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(22px, 3vw, 42px);
  padding-left: min(7vw, 120px);
  overflow-x: auto;
  scrollbar-width: none;
  white-space: nowrap;
}

.hero-service-bar__inner::-webkit-scrollbar {
  display: none;
}

.hero-service-bar__inner a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  opacity: 0;
  transform: translateY(10px);
  filter: blur(8px);
  text-shadow: 0 1px 14px rgba(0, 0, 0, .18);
  animation: bar-item-in .58s cubic-bezier(.16, 1, .3, 1) forwards;
  animation-delay: calc(.82s + (var(--bar-item-index, 0) * .08s));
  transition: background .18s ease, opacity .18s ease;
}

.hero-service-bar__inner a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  height: 2px;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(78, 216, 105, .28);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .18s ease, opacity .18s ease;
  opacity: 0;
  pointer-events: none;
}

.hero-service-bar__inner a:hover::after,
.hero-service-bar__inner a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.hero-service-bar__inner a:nth-child(1) {
  --bar-item-index: 0;
}

.hero-service-bar__inner a:nth-child(2) {
  --bar-item-index: 1;
}

.hero-service-bar__inner a:nth-child(3) {
  --bar-item-index: 2;
}

.hero-service-bar__inner a:nth-child(4) {
  --bar-item-index: 3;
}

.hero-service-bar__inner a:nth-child(5) {
  --bar-item-index: 4;
}

.hero-service-bar__inner a:nth-child(6) {
  --bar-item-index: 5;
}

.hero-service-bar__inner a:hover {
  opacity: .92;
}

.partners {
  --partner-logo-slot-width: 260px;
  --partner-logo-slot-height: 70px;
  --partner-logo-visual-height: 54px;
  position: relative;
  overflow: hidden;
  padding-block: 0;
  background: var(--bg);
}

.partners__marquee {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  border-block: 0;
  background: var(--bg);
  line-height: 0;
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  clip-path: inset(0 50% 0 50%);
  animation: bar-clip-open .92s cubic-bezier(.16, 1, .3, 1) .36s forwards;
}

.partners__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: partners-marquee 34s linear infinite;
}

.partners__group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: clamp(22px, 3vw, 42px);
  padding: 18px 21px;
}

.partner-logo {
  display: grid;
  place-items: center;
  flex: 0 0 var(--partner-logo-slot-width);
  width: var(--partner-logo-slot-width);
  height: var(--partner-logo-slot-height);
  margin: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  filter: blur(8px);
  animation: bar-item-in .58s cubic-bezier(.16, 1, .3, 1) forwards;
  animation-delay: calc(1.08s + (var(--partner-index, 0) * .08s));
}

.partner-logo img {
  display: block;
  width: auto;
  height: var(--partner-logo-visual-height);
  max-width: 100%;
  max-height: var(--partner-logo-visual-height);
  object-fit: contain;
  object-position: center;
  opacity: .72;
  filter: none;
  transition: opacity .22s ease;
}

.partner-logo:hover img {
  opacity: 1;
}

@keyframes bar-rule-open {
  to {
    transform: scaleX(1);
  }
}

@keyframes bar-clip-open {
  to {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes bar-item-in {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes partners-marquee {
  to {
    transform: translateX(-50%);
  }
}

.operations-panel {
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(10, 10, 10, .72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.operations-panel,
.panel,
.feature-card,
.service-card,
.detail-card,
.step-card,
.media-card,
.architecture-node {
  position: relative;
}

.operations-panel::before,
.panel::before,
.feature-card::before,
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(78, 216, 105, .24), transparent 28%, transparent 72%, rgba(120, 168, 255, .16)) border-box;
  mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .22s ease;
}

.operations-panel:hover::before,
.panel:hover::before,
.feature-card:hover::before,
.service-card:hover::before {
  opacity: 1;
}

.panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  color: var(--accent);
  background: rgba(78, 216, 105, .10);
  font-size: 14px;
  font-weight: 800;
}

.status--danger {
  color: var(--danger);
  background: rgba(255, 107, 107, .10);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.metric-card {
  padding: 18px;
  min-width: 0;
}

.metric-label {
  color: var(--muted-2);
  font-size: 14px;
}

.metric-value {
  margin-top: 8px;
  font-size: 34px;
  line-height: 1;
  font-weight: 850;
  overflow-wrap: break-word;
}

.progress {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, .46);
}

.progress__top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 14px;
}

.progress__bar {
  height: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, .10);
}

.progress__bar span {
  display: block;
  width: 74%;
  height: 100%;
  background: var(--accent);
}

.section {
  padding-block: 82px;
}

.section-dc {
  position: relative;
  overflow: hidden;
}

.section-dc::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0, rgba(78, 216, 105, .08) 18%, transparent 40%),
    radial-gradient(circle at 82% 18%, rgba(120, 168, 255, .10), transparent 28%);
  opacity: .68;
}

.section-dc > .container {
  position: relative;
}

.section--tight {
  padding-block: 68px;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  align-items: end;
  gap: 42px;
  margin-bottom: 34px;
}

.section-head h2,
.page-section h2 {
  margin: 12px 0 0;
  font-size: 52px;
  line-height: 1.05;
}

.section-head p,
.page-section p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.cards-3,
.cards-4,
.split-grid,
.service-layout {
  display: grid;
  gap: 22px;
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.split-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
}

.feature-card,
.service-card,
.detail-card,
.step-card {
  padding: 26px;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.feature-card:hover,
.service-card:hover,
.detail-card:hover,
.step-card:hover,
.architecture-node:hover {
  transform: translateY(-4px);
  border-color: rgba(78, 216, 105, .30);
  background: linear-gradient(135deg, rgba(78, 216, 105, .055), rgba(255, 255, 255, .012)), var(--panel);
}

.feature-card h3,
.service-card h3,
.detail-card h3,
.step-card h3 {
  margin: 24px 0 0;
  font-size: 26px;
}

.feature-card p,
.service-card p,
.detail-card p,
.step-card p {
  color: var(--muted);
  line-height: 1.75;
}

.media-card {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}

.media-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .55;
  transform: scale(1.02);
  transition: transform .55s ease, opacity .35s ease;
}

.media-card:hover img {
  opacity: .68;
  transform: scale(1.06);
}

.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, #000 92%);
}

.media-card__content {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 1;
  padding: 28px;
}

.offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) repeat(2, minmax(0, .88fr));
  grid-auto-rows: minmax(260px, auto);
  gap: 22px;
}

.offer-card {
  display: flex;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .012)), var(--panel);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.offer-card:hover {
  transform: translateY(-4px);
  border-color: rgba(78, 216, 105, .30);
}

.offer-card--featured {
  display: grid;
  grid-template-columns: 1fr;
  grid-row: span 2;
  min-height: 560px;
}

.offer-card__media {
  position: relative;
  min-height: 240px;
  overflow: hidden;
}

.offer-card__media img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  opacity: .62;
  transform: scale(1.02);
  transition: transform .55s ease, opacity .35s ease;
}

.offer-card:hover .offer-card__media img {
  opacity: .74;
  transform: scale(1.06);
}

.offer-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .88));
}

.offer-card__body {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 18px;
  padding: 30px;
}

.offer-card h3 {
  margin: 0;
  font-size: 34px;
  line-height: 1.05;
}

.offer-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.spec-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.spec-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid rgba(78, 216, 105, .18);
  background: rgba(78, 216, 105, .08);
  color: #dffbf6;
  font-size: 13px;
  font-weight: 750;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 800;
}

.text-link:hover {
  color: var(--accent);
}

.service-tabs {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 22px;
}

.tab-list {
  display: grid;
  gap: 10px;
  align-content: start;
}

.tab-button {
  width: 100%;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: #fff;
  text-align: left;
  cursor: pointer;
}

.tab-button[aria-selected="true"] {
  border-color: rgba(78, 216, 105, .46);
  background: rgba(78, 216, 105, .10);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.architecture-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.architecture-grid--stacked {
  grid-template-columns: 1fr;
}

.architecture-node {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 18px;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.architecture-node strong {
  display: block;
  font-size: 20px;
}

.architecture-node span {
  color: var(--muted);
  line-height: 1.6;
}

.connector-line {
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(78, 216, 105, .12));
}

.page-hero--colo {
  background:
    radial-gradient(circle at 16% 18%, rgba(78, 216, 105, .09), transparent 28%),
    radial-gradient(circle at 80% 32%, rgba(120, 168, 255, .08), transparent 30%),
    #000;
}


.kpi-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.kpi-strip .metric-card {
  min-height: 92px;
}

.kpi-strip .metric-value {
  font-size: 28px;
  line-height: 1.08;
}

.network-section {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(78, 216, 105, .035), transparent 30%),
    #000;
}

.network-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 22px;
  align-items: stretch;
}

.network-visual {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}

.network-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .56;
  transform: scale(1.02);
}

.network-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .10), rgba(0, 0, 0, .84)),
    linear-gradient(90deg, rgba(0, 0, 0, .48), transparent 70%);
}

.network-visual__content {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 1;
  padding: 34px;
}

.network-visual__content h3 {
  max-width: 760px;
  margin: 12px 0 0;
  font-size: 34px;
  line-height: 1.1;
}

.network-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.network-stats span {
  min-height: 76px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(0, 0, 0, .48);
  color: var(--muted);
}

.network-stats strong {
  display: block;
  color: #fff;
  font-size: 24px;
  line-height: 1.05;
}

.network-sites {
  display: grid;
  gap: 14px;
}

.site-card {
  min-height: 164px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .012)), var(--panel);
  transition: transform .22s ease, border-color .22s ease;
}

.site-card:hover {
  transform: translateY(-3px);
  border-color: rgba(78, 216, 105, .30);
}

.site-card h3 {
  margin: 8px 0 0;
  font-size: 28px;
}

.site-card p {
  color: var(--muted);
  line-height: 1.65;
}

.quote-panel {
  border-left: 3px solid var(--accent);
  padding: 22px 24px;
  background: var(--panel);
  color: #e8e8e8;
  line-height: 1.75;
}

.list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #e7e7e7;
}

.list li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: .55em;
  flex: 0 0 auto;
  background: var(--accent);
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity .45s ease, transform .45s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.error-hero {
  min-height: calc(100svh - var(--topbar) - var(--nav));
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .96), rgba(0, 0, 0, .78)),
    url("../img/hero-network.jpg") center / cover no-repeat;
}

.error-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .72fr);
  align-items: center;
  gap: 44px;
  padding-block: 70px;
}

.error-hero h1 {
  margin: 12px 0 0;
  font-size: 88px;
  line-height: .94;
}

.error-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.65;
}

.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.page-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(360px, .92fr);
  align-items: center;
  gap: 48px;
  min-height: 620px;
  padding-block: 64px;
}

.page-hero__visual {
  min-height: 460px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  color: var(--muted-2);
  font-size: 14px;
  margin-bottom: 24px;
}

.breadcrumbs a {
  color: var(--muted);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.spec-table th,
.spec-table td {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.spec-table th {
  width: 32%;
  color: #fff;
}

.spec-table td {
  color: var(--muted);
}

.cta {
  border: 1px solid var(--line);
  background: var(--accent);
  color: #000;
  overflow: hidden;
}

.cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  padding: 44px;
}

.cta h2 {
  margin: 0;
  font-size: 48px;
  line-height: 1.05;
}

.cta p {
  color: rgba(0, 0, 0, .78);
  font-size: 18px;
  line-height: 1.65;
}

.footer {
  border-top: 1px solid var(--line);
  background: #050505;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) repeat(3, minmax(0, 1fr));
  gap: 38px;
  padding-block: 48px;
}

.footer ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
  color: #d6d6d6;
}

.footer__bottom {
  border-top: 1px solid var(--line);
  padding: 18px;
  text-align: center;
  color: var(--muted-2);
  font-size: 14px;
}

@media (max-width: 1100px) {
  .desktop-nav,
  .nav-actions {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .hero__grid,
  .page-hero__inner,
  .section-head,
  .split-grid,
  .service-layout,
  .cta__inner {
    grid-template-columns: 1fr;
  }

  .cards-3,
  .cards-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero h1,
  .page-hero h1 {
    font-size: 64px;
  }

  .section-head h2,
  .page-section h2 {
    font-size: 44px;
  }

  .error-hero__inner {
    grid-template-columns: 1fr;
  }

  .service-tabs,
  .offer-grid,
  .network-grid,
  .architecture-grid {
    grid-template-columns: 1fr;
  }

  .offer-card--featured {
    grid-template-columns: 1fr;
    grid-row: auto;
    min-height: 420px;
  }

  .network-visual {
    min-height: 440px;
  }


  .kpi-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  :root {
    --topbar: 92px;
  }

  .topbar__inner {
    align-items: flex-start;
  }

  .brand {
    min-width: 0;
  }

  .topbar__action {
    white-space: normal;
    width: 100%;
  }

  .hero,
  .page-hero__inner {
    min-height: auto;
  }

  .hero__grid {
    padding-block: 48px;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 46px;
  }

  .hero-rotating-word {
    min-width: 0;
  }


  .hero-service-bar__inner {
    min-height: 46px;
    justify-content: flex-start;
    gap: 24px;
  }

  .hero-service-bar__inner a {
    min-height: 46px;
    font-size: 13px;
  }

  .partners {
    --partner-logo-slot-width: 196px;
    --partner-logo-slot-height: 58px;
    --partner-logo-visual-height: 42px;
    padding-block: 0;
  }

  .partners__group {
    gap: 18px;
    padding: 14px 9px;
  }

  .section-head h2,
  .page-section h2 {
    font-size: 36px;
  }

  .cta h2 {
    font-size: 34px;
  }

  .error-hero h1 {
    font-size: 56px;
  }

  .operations-panel {
    padding: 18px;
  }

  .metrics-grid,
  .cards-3,
  .cards-4,
  .network-stats,
  .kpi-strip {
    grid-template-columns: 1fr;
  }

  .topbar__inner {
    flex-direction: column;
  }

  .section {
    padding-block: 72px;
  }

  .cta__inner {
    padding: 28px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .topbar,
  .topbar__warning-triangle {
    animation: none !important;
  }

  .hero__content .badge--hero,
  .hero__content h1,
  .hero__content .hero__copy,
  .hero__actions .btn {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none !important;
  }

  .hero-rotating-word {
    animation: none !important;
    transition: none !important;
  }

  .hero-service-bar::after,
  .partners__marquee {
    opacity: 1;
    transform: scaleX(1);
    animation: none !important;
  }

  .hero-service-bar__inner a,
  .partner-logo {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none !important;
  }

  .partners__marquee {
    overflow: visible;
    mask-image: none;
    -webkit-mask-image: none;
    clip-path: none;
    animation: none !important;
  }

  .partners__track {
    width: 100%;
    animation: none !important;
  }

  .partners__group {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .partners__group[aria-hidden="true"] {
    display: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}



.hero__actions .btn {
  font-weight: 500;
}

.btn--hero-offer {
  background: transparent;
  border-color: #2D7A3B;
  color: #8AF29A;
}

.btn--hero-offer:hover {
  background: rgba(8, 51, 42, .62);
  border-color: #2D7A3B;
  color: #8AF29A;
}

.btn--hero-contact {
  background: transparent;
  color: #fff;
  border-color: var(--line-strong);
}

.topbar__message,
.topbar__message span,
.topbar__action,
.topbar__action span {
  font-weight: 400;
}

/* Final topbar warning typography */
.topbar__message strong {
  font-weight: 700;
}

.topbar__warning-mark {
  font-weight: 900;
}



/* Stronger hover effects for header dropdown items */
.mega-row,
.mega-link,
.mega-feature-card {
  position: relative;
}

.mega-link {
  overflow: hidden;
}

.mega-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(78, 216, 105, .16), rgba(78, 216, 105, .04));
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity .22s ease, transform .22s ease;
}

.mega-link:hover {
  background: rgba(78, 216, 105, .10);
  border-color: rgba(78, 216, 105, .44);
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(78, 216, 105, .12);
}

.mega-link:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.mega-link > * {
  position: relative;
  z-index: 1;
}

.mega-link .icon-box {
  transition: transform .22s ease, background .22s ease, color .22s ease, box-shadow .22s ease;
}

.mega-link:hover .icon-box {
  transform: translateX(4px) scale(1.04);
  background: rgba(78, 216, 105, .18);
  color: #9ff7e4;
  box-shadow: 0 0 0 1px rgba(78, 216, 105, .16) inset;
}

.mega-link .mega-title,
.mega-link .mega-copy {
  transition: color .22s ease, transform .22s ease;
}

.mega-link:hover .mega-title {
  color: var(--accent);
  transform: translateX(2px);
}

.mega-link:hover .mega-copy {
  color: #eefcf8;
  transform: translateX(2px);
}

.mega-row {
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.mega-row:hover {
  transform: translateX(4px);
  box-shadow: 0 12px 28px rgba(78, 216, 105, .14);
}

.mega-row__glyph,
.mega-row__title {
  transition: color .18s ease, transform .18s ease, opacity .18s ease;
}

.mega-row:hover .mega-row__glyph {
  transform: translateX(6px);
}

.mega-feature-card {
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.mega-feature-card:hover {
  box-shadow: 0 18px 38px rgba(78, 216, 105, .14);
}

@media (prefers-reduced-motion: reduce) {
  .mega-link::before,
  .mega-link,
  .mega-link .icon-box,
  .mega-link .mega-title,
  .mega-link .mega-copy,
  .mega-row,
  .mega-row__glyph,
  .mega-row__title,
  .mega-feature-card {
    transition: none !important;
    transform: none !important;
  }
}


.mega-row--emergency {
  border-color: #ff3348;
  background: #c4001a;
  color: #fff;
}

.mega-row--emergency .mega-row__title,
.mega-row--emergency .mega-row__glyph {
  color: #fff;
  opacity: 1;
}

.mega-row--emergency .mega-row__title {
  font-weight: 400;
}

.mega-row--emergency:hover {
  border-color: #ff5a6e;
  background: #ff1f3d;
  color: #fff;
  box-shadow: 0 12px 28px rgba(196, 0, 26, .26);
}

.mega-row--emergency:hover .mega-row__title,
.mega-row--emergency:hover .mega-row__glyph {
  color: #fff;
}


/* Final corrected header + dropdown layout */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  overflow: visible;
  background:
    radial-gradient(circle at 18% 0%, rgba(78, 216, 105, .09), transparent 32%),
    linear-gradient(180deg, rgba(2, 10, 10, .98) 0%, rgba(0, 0, 0, .94) 100%);
  border-bottom: 1px solid rgba(78, 216, 105, .18);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .42);
  backdrop-filter: blur(18px) saturate(1.08);
}

.site-header::after {
  background: linear-gradient(90deg, transparent, rgba(78, 216, 105, .34), transparent);
}

.nav {
  position: relative;
  min-height: 80px;
  gap: 34px;
}

.brand {
  gap: 14px;
}

.brand__mark {
  width: 46px;
  height: 46px;
  border-color: rgba(78, 216, 105, .42);
  background: linear-gradient(180deg, rgba(78, 216, 105, .14), rgba(78, 216, 105, .045));
  box-shadow: 0 12px 26px rgba(78, 216, 105, .10), inset 0 0 0 1px rgba(255, 255, 255, .03);
}

.brand__name {
  letter-spacing: -.01em;
}

.brand__sub {
  color: #8f9aa4;
  letter-spacing: .015em;
}

.desktop-nav {
  gap: 34px;
}

.nav-trigger {
  height: 80px;
  padding-inline: 10px;
  color: rgba(255, 255, 255, .88);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.01em;
  transition: color .18s ease, background .18s ease, border-color .18s ease, transform .18s ease, text-shadow .18s ease;
}

.nav-item:hover .nav-trigger,
.nav-item:focus-within .nav-trigger {
  color: #fff;
  background: rgba(78, 216, 105, .065);
  border-color: var(--accent);
  transform: translateY(-1px);
  text-shadow: 0 0 18px rgba(78, 216, 105, .18);
}

.nav-dot {
  box-shadow: 0 0 0 3px rgba(78, 216, 105, .08), 0 0 16px rgba(78, 216, 105, .32);
}

.nav-actions {
  margin-left: auto;
  gap: 14px;
}

.nav-actions .btn {
  min-height: 48px;
  padding-inline: 22px;
  font-weight: 600;
}

.nav-actions .btn:first-child {
  background: linear-gradient(180deg, rgba(255, 255, 255, .025), rgba(255, 255, 255, .008));
  border-color: rgba(255, 255, 255, .16);
}

.nav-actions .btn:first-child:hover {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(78, 216, 105, .28);
}

.btn--header-pricing {
  background: linear-gradient(180deg, rgba(8, 51, 42, .74), rgba(6, 38, 31, .82));
  border-color: rgba(78, 216, 105, .38);
  color: #8AF29A;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .24), inset 0 0 0 1px rgba(255, 255, 255, .025);
}

.btn--header-pricing:hover {
  background: #4ED869;
  border-color: #4ED869;
  color: #000;
  box-shadow: 0 16px 36px rgba(78, 216, 105, .17);
}

/* Network dropdown: same green/teal visual system as Services, with image cards */
.mega-menu--network,
.mega-menu--about {
  border-top-color: rgba(78, 216, 105, .26);
}

.mega-services--network,
.mega-services--about {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mega-services--network .mega-column-label,
.mega-services--network .mega-column:nth-child(2) .mega-column-label,
.mega-services--about .mega-column-label,
.mega-services--about .mega-column:nth-child(2) .mega-column-label {
  color: var(--accent);
}

.mega-services--network .mega-row,
.mega-services--about .mega-row {
  min-width: 0;
  background: #000;
  border-color: var(--line);
  color: #fff;
}

.mega-services--network .mega-row__title,
.mega-services--about .mega-row__title {
  color: #fff;
}

.mega-services--network .mega-row__glyph,
.mega-services--about .mega-row__glyph {
  color: var(--accent);
}

.mega-services--network .mega-row:hover,
.mega-services--about .mega-row:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #061507;
  box-shadow: 0 12px 28px rgba(78, 216, 105, .14);
}

.mega-services--network .mega-row:hover .mega-row__title,
.mega-services--network .mega-row:hover .mega-row__glyph,
.mega-services--about .mega-row:hover .mega-row__title,
.mega-services--about .mega-row:hover .mega-row__glyph {
  color: #061507;
}

.mega-feature-card--network-backbone::before {
  background: url("../img/hero-network.jpg") center / cover no-repeat;
}

.mega-feature-card--network-ops::before {
  background: url("../img/noc-operations.jpg") center / cover no-repeat;
}

.mega-feature-card--about-company::before {
  background: url("../img/datacenter-hero-poster.jpg") center / cover no-repeat;
}

.mega-feature-card--about-careers::before {
  background: url("../img/noc-operations.jpg") center / cover no-repeat;
}

.mega-feature-card--network-backbone::after,
.mega-feature-card--network-ops::after,
.mega-feature-card--about-company::after,
.mega-feature-card--about-careers::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .08) 0%, rgba(0, 0, 0, .18) 46%, rgba(0, 0, 0, .84) 100%),
    linear-gradient(90deg, rgba(0, 72, 60, .46), rgba(0, 0, 0, .12) 56%, rgba(0, 0, 0, .28) 100%);
}

.mega-services--network .mega-feature-card strong,
.mega-services--about .mega-feature-card strong {
  font-size: 23px;
}

@media (max-width: 1280px) {
  .mega-services,
  .mega-services--network,
  .mega-services--about {
    width: calc(100vw - 32px);
    gap: 16px;
  }

  .mega-services--network,
  .mega-services--about {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .mega-row {
    padding-left: 20px;
  }

  .mega-feature-card {
    min-height: 236px;
  }

  .mega-feature-card strong,
  .mega-services--network .mega-feature-card strong,
  .mega-services--about .mega-feature-card strong {
    font-size: 21px;
  }
}

@media (max-width: 1100px) {
  .nav {
    min-height: var(--nav);
  }
}


/* Header enhancement: cybersecurity / carrier / datacenter look */
.site-header {
  background:
    radial-gradient(circle at 14% -30%, rgba(78, 216, 105, .16), transparent 34%),
    radial-gradient(circle at 86% 0%, rgba(78, 216, 105, .07), transparent 28%),
    linear-gradient(180deg, rgba(2, 9, 10, .985) 0%, rgba(0, 0, 0, .955) 100%);
  border-bottom: 1px solid rgba(78, 216, 105, .18);
  box-shadow: 0 18px 54px rgba(0, 0, 0, .42);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(78, 216, 105, .035) 0, rgba(78, 216, 105, .035) 1px, transparent 1px, transparent 120px),
    linear-gradient(180deg, rgba(255, 255, 255, .018) 0, rgba(255, 255, 255, .018) 1px, transparent 1px, transparent 72px),
    linear-gradient(180deg, rgba(255, 255, 255, .035), transparent 35%);
  opacity: .42;
}

.nav {
  min-height: 84px;
  gap: 32px;
}

.nav > * {
  position: relative;
  z-index: 1;
}

.brand {
  gap: 15px;
}

.brand__mark {
  position: relative;
  width: 48px;
  height: 48px;
  border-color: rgba(78, 216, 105, .48);
  background: linear-gradient(180deg, rgba(78, 216, 105, .16), rgba(78, 216, 105, .05));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .03) inset,
    0 12px 28px rgba(78, 216, 105, .14),
    0 0 22px rgba(78, 216, 105, .08);
}

.brand__mark::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(255, 255, 255, .06);
  pointer-events: none;
}

.brand__name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.02em;
}

.brand__sub {
  color: #93a1aa;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.desktop-nav {
  gap: 26px;
}

.nav-trigger {
  position: relative;
  height: 84px;
  padding-inline: 14px;
  border-bottom-width: 2px;
  color: rgba(255, 255, 255, .9);
  font-size: 15px;
  font-weight: 600;
}

.nav-trigger::before {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 10px;
  height: 30px;
  border: 1px solid transparent;
  background: linear-gradient(180deg, rgba(78, 216, 105, .06), rgba(78, 216, 105, .02));
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .18s ease, transform .18s ease, border-color .18s ease;
  pointer-events: none;
}

.nav-item:hover .nav-trigger::before,
.nav-item:focus-within .nav-trigger::before {
  opacity: 1;
  transform: translateY(0);
  border-color: rgba(78, 216, 105, .12);
}

.nav-dot {
  width: 5px;
  height: 5px;
  box-shadow: 0 0 0 4px rgba(78, 216, 105, .07), 0 0 18px rgba(78, 216, 105, .3);
}

.nav-actions .btn {
  min-height: 50px;
  padding-inline: 24px;
  border-radius: 0;
}

.nav-actions .btn:first-child {
  background: linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .01));
  border-color: rgba(255, 255, 255, .12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .02);
}

.nav-actions .btn:first-child:hover {
  background: linear-gradient(180deg, rgba(78, 216, 105, .08), rgba(255, 255, 255, .02));
}

.btn--header-pricing {
  background: linear-gradient(180deg, rgba(8, 55, 46, .82), rgba(4, 34, 28, .92));
  border-color: rgba(78, 216, 105, .42);
  color: #80f1d2;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .025),
    0 16px 30px rgba(0, 0, 0, .24),
    0 0 24px rgba(78, 216, 105, .07);
}

.btn--header-pricing:hover {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .03),
    0 18px 34px rgba(78, 216, 105, .18);
}

.mega-menu {
  background:
    linear-gradient(180deg, rgba(3, 11, 11, .995) 0%, rgba(0, 0, 0, .985) 100%);
  border-color: rgba(78, 216, 105, .16);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .52), inset 0 1px 0 rgba(255, 255, 255, .02);
}

.mega-menu::after {
  height: 1px;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, transparent, rgba(78, 216, 105, .55), transparent);
}

@media (max-width: 1100px) {
  .site-header::before,
  .nav-trigger::before {
    display: none;
  }

  .nav {
    min-height: 76px;
  }
}

/* Final header polish: cyber / carrier / datacenter posture */
.topbar__action {
  border: 1px solid rgba(255, 48, 48, .68);
  background:
    linear-gradient(135deg, rgba(255, 48, 48, .20), rgba(120, 0, 10, .34)),
    rgba(130, 0, 12, .18);
  color: #fff;
  font-weight: 500;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .05), 0 0 22px rgba(255, 48, 48, .14);
}

.topbar__action:hover {
  border-color: rgba(255, 59, 59, .98);
  background:
    linear-gradient(135deg, rgba(255, 59, 59, .34), rgba(150, 0, 14, .46)),
    rgba(180, 0, 16, .24);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08), 0 0 28px rgba(255, 48, 48, .24);
  transform: none;
}

.site-header {
  background:
    radial-gradient(circle at 18% 0%, rgba(78, 216, 105, .11), transparent 26%),
    radial-gradient(circle at 78% 0%, rgba(78, 216, 105, .08), transparent 24%),
    linear-gradient(90deg, rgba(0, 0, 0, .99), rgba(1, 13, 12, .98) 48%, rgba(0, 0, 0, .99)),
    #000;
  border-bottom-color: rgba(78, 216, 105, .22);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .035), 0 20px 50px rgba(0, 0, 0, .58);
}

.brand__mark {
  border-color: rgba(78, 216, 105, .58);
  background:
    linear-gradient(135deg, rgba(78, 216, 105, .18), rgba(78, 216, 105, .08)),
    rgba(0, 0, 0, .74);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .05),
    0 0 28px rgba(78, 216, 105, .16);
}

.brand__name {
  font-weight: 600;
}

.brand__sub {
  color: rgba(255, 255, 255, .54);
}

.nav-trigger {
  color: rgba(255, 255, 255, .84);
  font-weight: 500;
  transform: none;
}

.nav-item:hover .nav-trigger,
.nav-item:focus-within .nav-trigger {
  color: #8AF29A;
  background: rgba(78, 216, 105, .055);
  transform: none;
}

.nav-status {
  margin-left: 0;
}

.nav-actions {
  margin-left: 0;
}

.nav-actions .btn {
  font-weight: 500;
}

.nav-actions .btn:hover {
  transform: none;
}

@media (max-width: 1320px) {
  .nav-status {
    display: none;
  }
}

/* Clean production header reset */
.site-header {
  background: rgba(0, 0, 0, .96);
  border-bottom: 1px solid rgba(78, 216, 105, .18);
  box-shadow: none;
}

.site-header::before {
  display: none;
}

.site-header::after {
  background: linear-gradient(90deg, transparent, rgba(78, 216, 105, .46), transparent);
}

.nav {
  min-height: 72px;
  gap: 32px;
}

.brand__mark {
  width: 46px;
  height: 46px;
  border-color: rgba(78, 216, 105, .46);
  background: rgba(78, 216, 105, .08);
  box-shadow: none;
}

.brand__mark::after {
  display: none;
}

.brand__name {
  font-weight: 600;
}

.brand__sub {
  color: rgba(255, 255, 255, .56);
  letter-spacing: .10em;
}

.desktop-nav {
  flex: 1;
  justify-content: center;
  gap: 42px;
  position: static !important;
}

.nav-trigger {
  height: 72px;
  padding-inline: 0;
  background: transparent !important;
  color: rgba(255, 255, 255, .86);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  text-shadow: none;
  transform: none !important;
}

.nav-trigger::before {
  display: none !important;
}

.nav-item:hover .nav-trigger,
.nav-item:focus-within .nav-trigger {
  color: #8AF29A;
  background: transparent !important;
  transform: none !important;
  text-shadow: none;
}

.nav-dot {
  width: 5px;
  height: 5px;
  box-shadow: 0 0 12px rgba(78, 216, 105, .55);
}

.nav-status {
  display: none !important;
}

.nav-actions {
  margin-left: 0;
  gap: 12px;
}

.nav-actions .btn {
  min-height: 50px;
  padding-inline: 24px;
  border-radius: 0;
  font-weight: 500;
  box-shadow: none;
  transform: none !important;
}

.nav-actions .btn:first-child {
  background: transparent;
  border-color: rgba(255, 255, 255, .18);
  color: #fff;
}

.nav-actions .btn:first-child:hover {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(78, 216, 105, .30);
}

.btn--header-pricing {
  background: rgba(8, 51, 42, .62);
  border-color: #2D7A3B;
  color: #8AF29A;
  box-shadow: none;
}

.btn--header-pricing:hover {
  background: #4ED869;
  border-color: #4ED869;
  color: #000;
  box-shadow: none;
}

.topbar__action {
  border: 1px solid rgba(255, 28, 44, .86);
  background: rgba(190, 0, 24, .82);
  color: #fff;
  font-weight: 600;
  box-shadow: none;
  transform: none !important;
}

.topbar__action:hover {
  border-color: rgba(255, 28, 44, 1);
  background: rgba(225, 0, 28, .92);
  color: #fff;
  box-shadow: none;
  transform: none !important;
}

.desktop-nav .mega-menu {
  left: 50% !important;
  width: 100vw !important;
  max-width: none !important;
  transform: translateX(-50%) translateY(12px) !important;
  z-index: 80;
}

.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu {
  transform: translateX(-50%) translateY(0) !important;
}

.mega-menu--services {
  padding: 16px;
  border-inline: 1px solid rgba(78, 216, 105, .14);
}

.mega-services,
.mega-services--network,
.mega-services--about,
.mega-layout {
  width: 100%;
  max-width: none;
}

.brand__mark--logo {
  width: clamp(166px, 14vw, 220px);
  height: 58px;
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
  flex: 0 0 auto;
}

.brand__mark--logo::after {
  display: none !important;
}

.brand__logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand__wording {
  display: none;
}

.mega-layout {
  grid-template-columns: minmax(0, 1fr) 360px;
}

.mega-row--emergency {
  border-color: rgba(255, 48, 48, .45) !important;
  background: rgba(185, 0, 16, .14) !important;
  color: #fff !important;
}

.mega-row--emergency .mega-row__title,
.mega-row--emergency .mega-row__glyph {
  color: #fff !important;
}

.mega-row--emergency:hover {
  border-color: rgba(255, 48, 48, .78) !important;
  background: rgba(220, 0, 20, .26) !important;
  box-shadow: none !important;
}

@media (max-width: 1100px) {
  .desktop-nav,
  .nav-actions {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }
}

/* Professional emergency topbar refinement */
.topbar {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 183, 3, .14), transparent 18%, transparent 82%, rgba(255, 183, 3, .10)),
    linear-gradient(180deg, #120b03 0%, #070707 100%);
  color: #fff;
  border-bottom: 1px solid rgba(255, 183, 3, .22);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, .045);
}

.topbar::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, rgba(255, 210, 86, .95), rgba(255, 128, 0, .88));
  box-shadow: 0 0 24px rgba(255, 183, 3, .35);
  pointer-events: none;
}

.topbar__inner {
  min-height: 54px;
  align-items: center;
  gap: 24px;
  padding-block: 7px;
  font-size: 13px;
  letter-spacing: -.005em;
}

.topbar__message {
  flex: 1 1 auto;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.topbar__text {
  display: block;
  min-width: 0;
  color: rgba(255, 255, 255, .78);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.topbar__text strong {
  margin-right: 4px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0;
}

.topbar__message span:last-child {
  line-height: 1.35;
}

.topbar__alert-icon {
  position: relative;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  display: inline-grid;
  place-items: center;
  color: #ffd256;
  transform-origin: center;
  filter: drop-shadow(0 0 10px rgba(255, 183, 3, .18));
  animation: topbar-alert-pulse 1.9s cubic-bezier(.22, 1, .36, 1) infinite;
}

.topbar__alert-icon::after {
  content: "";
  position: absolute;
  inset: 2px;
  border: 1px solid rgba(255, 210, 86, .36);
  border-radius: 999px;
  opacity: 0;
  transform: scale(.72);
  animation: topbar-alert-ring 1.9s cubic-bezier(.22, 1, .36, 1) infinite;
}

.topbar__alert-svg {
  width: 24px;
  height: 24px;
  overflow: visible;
}

.topbar__alert-shape {
  fill: rgba(255, 183, 3, .13);
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linejoin: round;
}

.topbar__alert-line {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
}

.topbar__alert-dot {
  fill: currentColor;
}

@keyframes topbar-alert-pulse {
  0%, 100% {
    opacity: 1;
    transform: translateZ(0) scale(1);
    filter: drop-shadow(0 0 10px rgba(255, 183, 3, .18));
  }

  48% {
    opacity: .72;
    transform: translateZ(0) scale(.96);
    filter: drop-shadow(0 0 4px rgba(255, 183, 3, .10));
  }
}

@keyframes topbar-alert-ring {
  0% {
    opacity: .40;
    transform: scale(.72);
  }

  62% {
    opacity: 0;
    transform: scale(1.22);
  }

  100% {
    opacity: 0;
    transform: scale(1.22);
  }
}

.topbar__action {
  align-self: center;
  min-height: 40px;
  padding: 0 18px;
  gap: 10px;
  border: 1px solid rgba(255, 52, 68, .64);
  background:
    linear-gradient(135deg, rgba(255, 60, 76, .88), rgba(151, 0, 18, .92));
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -.01em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .16),
    0 10px 24px rgba(255, 28, 44, .16);
}

.topbar__action:hover {
  border-color: rgba(255, 94, 106, .95);
  background:
    linear-gradient(135deg, rgba(255, 73, 88, .96), rgba(183, 0, 21, .98));
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .18),
    0 12px 30px rgba(255, 28, 44, .24);
}

@media (max-width: 720px) {
  :root {
    --topbar: 112px;
  }

  .topbar::before {
    width: 3px;
  }

  .topbar__inner {
    align-items: stretch;
    gap: 11px;
    padding-block: 12px;
  }

  .topbar__message {
    align-items: center;
  }

  .topbar__action {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .topbar__alert-icon,
  .topbar__alert-icon::after {
    animation: none !important;
  }
}

/* Final emergency topbar: yellow version, aligned and refined */
.topbar {
  position: relative;
  overflow: hidden;
  background: var(--warning) !important;
  color: #050505 !important;
  border-bottom: 1px solid rgba(0, 0, 0, .20) !important;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .06) !important;
}

.topbar::before {
  content: none !important;
}

.topbar__inner {
  min-height: 58px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 24px !important;
  padding-block: 7px !important;
  font-size: 13px !important;
  line-height: 1.25 !important;
  letter-spacing: -.005em !important;
}

.topbar__message {
  flex: 1 1 auto !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  min-width: 0 !important;
}

.topbar__text,
.topbar__message span:last-child {
  display: block !important;
  min-width: 0 !important;
  color: rgba(0, 0, 0, .88) !important;
  line-height: 1.28 !important;
  overflow-wrap: anywhere !important;
}

.topbar__text strong,
.topbar__message strong {
  margin-right: 4px !important;
  color: #000 !important;
  font-weight: 800 !important;
  letter-spacing: -.01em !important;
}

.topbar__alert-icon {
  position: relative !important;
  width: 22px !important;
  height: 22px !important;
  flex: 0 0 22px !important;
  display: inline-grid !important;
  place-items: center !important;
  color: #111 !important;
  transform-origin: center !important;
  filter: none !important;
  animation: topbar-alert-clean-blink 1.7s cubic-bezier(.4, 0, .2, 1) infinite !important;
}

.topbar__alert-icon::after {
  content: none !important;
}

.topbar__alert-svg {
  width: 21px !important;
  height: 21px !important;
  overflow: visible !important;
  display: block !important;
}

.topbar__alert-shape {
  fill: rgba(0, 0, 0, .08) !important;
  stroke: currentColor !important;
  stroke-width: 1.9 !important;
  stroke-linejoin: round !important;
}

.topbar__alert-line {
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2 !important;
  stroke-linecap: round !important;
}

.topbar__alert-dot {
  fill: currentColor !important;
}

@keyframes topbar-alert-clean-blink {
  0%, 100% {
    opacity: 1;
    transform: translateZ(0) scale(1);
  }

  50% {
    opacity: .50;
    transform: translateZ(0) scale(.96);
  }
}

.topbar__action {
  align-self: center !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 44px !important;
  padding: 0 18px !important;
  gap: 10px !important;
  border: 1px solid rgba(255, 255, 255, .22) !important;
  background: #d71920 !important;
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  letter-spacing: -.01em !important;
  white-space: nowrap !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16), 0 10px 22px rgba(0, 0, 0, .12) !important;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease !important;
}

.topbar__action:hover {
  background: #b91218 !important;
  color: #fff !important;
  transform: translateY(-1px) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18), 0 12px 28px rgba(0, 0, 0, .16) !important;
}

@media (max-width: 720px) {
  :root {
    --topbar: 116px;
  }

  .topbar__inner {
    align-items: stretch !important;
    gap: 12px !important;
    padding-block: 12px !important;
  }

  .topbar__message {
    align-items: center !important;
  }

  .topbar__action {
    width: 100% !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .topbar__alert-icon {
    animation: none !important;
  }
}
