

body {
  position: relative;
  padding-top: 66px;
  padding-bottom: 92px; 
}


.canvas {
  width: min(92%, 1180px);
  margin-left: auto;
  margin-right: auto;
}

.canvas--tight {
  width: min(92%, 820px);
}


.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  
  z-index: 1000;
  background: rgba(11, 18, 32, 0.92);
  border-bottom: 1px solid #1e2a44;
  backdrop-filter: blur(10px);
}

.topbar__inner {
  width: min(92%, 1180px);
  margin: 0 auto;
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: max(1rem, 1.5vw);
}

.topbar__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #e2e8f0;
  flex: none;
}

.topbar__brand:hover {
  color: #ffffff;
}

.topbar__logo {
  height: 2.25rem;
  width: 2.25rem;
  flex: none;
  display: block;
}

.topbar__name {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.topbar__nav {
  margin-left: auto;
}

.topbar__list {
  display: flex;
  align-items: center;
}

.topbar__link {
  color: #cbd5e1;
  font-size: 0.95rem;
  font-weight: 500;
}

.topbar__link:hover {
  color: #22d3ee;
}

.topbar__phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: #e2e8f0;
  border: 1px solid #2b3a5c;
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  font-size: 0.92rem;
  white-space: nowrap;
  flex: none;
}

.topbar__phone:hover {
  border-color: #22d3ee;
  color: #22d3ee;
}

.topbar__burger {
  margin-left: auto;
}

.topbar__close {
  color: #e2e8f0;
}

.topbar__item {
  display: block;
}


.topbar__veil {
  display: block;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
}


.band {
  position: relative;
  width: 100%;
  padding: 1.5rem 1rem;
  background: #111a2e;
}

.band--alt {
  background: #0e1626;
}

.band__inner {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}

.band--notch {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 88%);
  padding-bottom: 4.5rem;
}

.band__head {
  max-width: 46rem;
  margin-bottom: 1.5rem;
}

.band__kicker {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #22d3ee;
  margin-bottom: 0.45rem;
}

.band__title {
  margin-bottom: 0.5rem;
}

.band__lede {
  color: #94a3b8;
  max-width: 42rem;
}


.editorial {
  columns: 3;
  column-gap: 2rem;
  column-rule: 1px solid #1e2a44;
  color: #94a3b8;
  font-size: 0.95rem;
}

.editorial p {
  break-inside: avoid;
  margin-bottom: 0.5rem;
}


.footprint {
  background: #080e1a;
  border-top: 1px solid #1e2a44;
  color: #94a3b8;
  padding: 2.5rem 1rem 1.5rem;
}

.footprint__cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
}

.footprint__col {
  min-width: 0;
}

.footprint__head {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e2e8f0;
  margin-bottom: 0.75rem;
  background: none;
  border: 0;
  width: 100%;
  text-align: left;
  font-weight: 600;
}

.footprint__body {
  font-size: 0.92rem;
}

.footprint__brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.6rem;
  color: #e2e8f0;
  font-weight: 600;
}

.footprint__list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footprint__link {
  color: #94a3b8;
  font-size: 0.92rem;
}

.footprint__link:hover {
  color: #22d3ee;
}

.footprint__note {
  font-size: 0.85rem;
  color: #64748b;
  border-top: 1px solid #1e2a44;
  margin-top: 1.75rem;
  padding-top: 1rem;
}

.footprint__bottom {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: #64748b;
  padding-top: 0.75rem;
}

.footprint__ghost {
  background: none;
  border: 0;
  color: #64748b;
  cursor: pointer;
  font-size: 0.85rem;
  text-decoration: underline;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.35rem 0;
}

.footprint__ghost:hover {
  color: #22d3ee;
}


@media (max-width: 768px) {
  body {
    padding-top: 62px;
  }

  .topbar__phone {
    display: none;
  }

  .topbar__inner {
    min-height: 62px;
  }

  
  .topbar__list {
    align-items: stretch;
  }

  
  .band {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .band--notch {
    clip-path: none;
    padding-bottom: 1.5rem;
  }

  .editorial {
    columns: 1;
    column-rule: 0;
  }

  .footprint__cols {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .footprint__col {
    border-bottom: 1px solid #1e2a44;
    padding-bottom: 0.75rem;
  }

  .footprint__head {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 44px;
    margin-bottom: 0;
  }

  .footprint__head::after {
    content: "+";
    font-size: 1.2rem;
    color: #22d3ee;
  }

  .footprint__col.is-open .footprint__head::after {
    content: "–";
  }

  .footprint__body {
    display: none;
    padding: 0.5rem 0 0.75rem;
  }

  .footprint__col.is-open .footprint__body {
    display: block;
  }
}
