/* ==========================================================================
   KAB.ZONE — лендинг
   Источник дизайна: Claude Design «KAB.ZONE лендинг разбор» / KAB Hero v2.dc.html
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Токены
   -------------------------------------------------------------------------- */
:root {
  --bg:            #020917;
  --bg-hero:       #03162c;
  --bg-hero-deep:  #031127;
  --bg-details:    #030b1c;
  --bg-footer:     #010610;

  --accent:        #4fd5ff;
  --accent-hover:  #087ff2;
  --accent-soft:   #55d8ff;
  --accent-label:  #68ddff;

  --text:          #f6fbff;
  --text-strong:   #ffffff;
  --text-body:     #c6dcee;
  --text-muted:    #b9d3e6;
  --text-dim:      #7fa9c9;
  --text-faint:    #55779b;
  --link:          #b7d6ec;
  --link-hover:    #5edbff;

  --line:          rgba(91, 206, 255, .18);
  --line-soft:     rgba(91, 206, 255, .12);
  --line-faint:    rgba(91, 206, 255, .08);
  --chip-border:   rgba(119, 213, 255, .35);
  --chip-bg:       rgba(6, 26, 56, .55);

  --font:          "Golos Text", Arial, Helvetica, sans-serif;
  --font-mono:     "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --wrap:          1280px;
  --pad-x:         clamp(18px, 6vw, 130px);
  --pad-y:         clamp(48px, 6vw, 100px);

  /* Параметры карты — соответствуют props компонента (mapBrightness / dotOpacity / fadeStart) */
  --map-brightness: 1;
  --dot-opacity:    .5;
  --fade-start:     40%;
  --fade-mid:       62%;
}

/* --------------------------------------------------------------------------
   2. Сброс и база
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.page {
  min-height: 100vh;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

a { color: var(--link); }
a:hover { color: var(--link-hover); }

img { max-width: 100%; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 10px 16px;
  background: var(--accent);
  color: #021329;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: #021329; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  color: #e5f5ff;
}

/* --------------------------------------------------------------------------
   3. Анимации
   -------------------------------------------------------------------------- */
@keyframes kabTipIn {
  from { opacity: 0; transform: translate(-50%, calc(-100% - 8px)); }
  to   { opacity: 1; transform: translate(-50%, calc(-100% - 14px)); }
}
@keyframes kabTicker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes kabSheen {
  0%, 55%   { background-position: 115% 0; }
  75%, 100% { background-position: -15% 0; }
}
@keyframes kabGlow {
  0%, 100% { filter: drop-shadow(0 0 7px rgba(53, 199, 255, .3)); }
  50%      { filter: drop-shadow(0 0 16px rgba(83, 214, 255, .65)); }
  58%      { filter: drop-shadow(0 0 9px rgba(53, 199, 255, .35)); }
  63%      { filter: drop-shadow(0 0 15px rgba(83, 214, 255, .6)); }
}

/* --------------------------------------------------------------------------
   4. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 100vh;
  background: var(--bg-hero);
  border-bottom: 1px solid var(--line);
}

.hero__bg {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-color: var(--bg-hero-deep);
  background-image: radial-gradient(ellipse at 62% 45%, rgba(0, 131, 255, .14), transparent 43%);
}

/* — слои карты — */
.hero__maplayers {
  position: absolute;
  z-index: 0;
  inset: 0;
}

/* Позиционирование карты: 16:9 во всю ширину, по центру экрана со сдвигом на 12px вверх.
   28.125vw = половина высоты карты (100vw × 9/16 ÷ 2). */
.hero__mappos,
.hero__dots {
  position: absolute;
  top: calc(50% - 28.125vw - 12px);
  left: 50%;
  width: 100vw;
  aspect-ratio: 16 / 9;
  transform: translateX(-50%);
}
.hero__dots { z-index: 2; }

.hero__map {
  display: block;
  width: 100%;
  height: 100%;
  filter: brightness(var(--map-brightness)) saturate(.95);
}

.hero__fade {
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg,
    rgba(2, 9, 23, 0) var(--fade-start),
    rgba(2, 9, 23, .62) var(--fade-mid),
    rgba(2, 9, 23, .94) 96%);
}

/* — точки городов — */
.city-dot {
  position: absolute;
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: #9fd4ef;
  opacity: var(--dot-opacity);
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease, opacity .15s ease;
}
.city-dot:hover,
.city-dot:focus-visible {
  transform: translate(-50%, -50%) scale(2);
  background: #ffffff;
  opacity: 1;
  box-shadow: 0 0 6px #fff, 0 0 16px #47e6ff, 0 0 30px rgba(41, 190, 255, .95);
  z-index: 7;
}

.city-tip {
  position: absolute;
  z-index: 9;
  pointer-events: none;
  transform: translate(-50%, calc(-100% - 14px));
  padding: 7px 12px 6px;
  background: #051b33;
  border: 1px solid rgba(91, 222, 255, .8);
  border-radius: 8px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .5), 0 0 18px rgba(33, 200, 255, .3);
  animation: kabTipIn .16s ease both;
}
.city-tip[hidden] { display: none; }
.city-tip::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4.5px;
  width: 8px;
  height: 8px;
  transform: translateX(-50%) rotate(45deg);
  background: #051b33;
  border-right: 1px solid rgba(91, 222, 255, .8);
  border-bottom: 1px solid rgba(91, 222, 255, .8);
}
.city-tip__name {
  display: block;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .01em;
  white-space: nowrap;
}
.city-tip__status {
  display: block;
  margin-top: 2px;
  color: var(--accent-soft);
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .2em;
}

/* — шапка — */
.hero__header {
  position: absolute;
  z-index: 8;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
  padding: 14px clamp(22px, 4vw, 80px);
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.brand__name {
  font-size: clamp(25px, 2.15vw, 35px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.04em;
  animation: kabGlow 5s ease-in-out infinite;
}
.brand__sheen {
  display: inline-block;
  background: linear-gradient(100deg, #f9fcff 42%, #7ce4ff 50%, #f9fcff 58%);
  background-size: 260% 100%;
  background-position: 115% 0;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: kabSheen 5s ease-in-out infinite;
}
.brand__tag {
  color: #b5d7f1;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .14em;
}
.brand__partner {
  display: block;
  width: 124px;
  height: 30px;
  margin-top: 4px;
  line-height: 0;
  opacity: .82;
  filter: drop-shadow(0 0 7px rgba(56, 201, 255, .22));
}
.brand__partner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px 13px;
  padding-top: 10px;
  color: var(--link);
  font-size: clamp(12px, 1vw, 15px);
  font-weight: 500;
  line-height: 1.45;
}
.contacts a {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}
.contacts a:hover { color: var(--link-hover); }
.contacts__sep {
  color: #5b7c99;
  font-weight: 500;
}

/* — текстовая панель — */
.hero__panel {
  position: absolute;
  z-index: 8;
  top: 50%;
  right: clamp(24px, 5vw, 90px);
  transform: translateY(-50%);
  width: min(42vw, 560px);
  text-align: left;
}
.hero__title {
  margin: 0 0 20px;
  color: var(--text-strong);
  font-size: clamp(32px, 3.1vw, 56px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -.045em;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* — бегущая строка — */
.ticker {
  position: absolute;
  z-index: 8;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 0 18px;
}
.ticker__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 clamp(22px, 4vw, 80px);
}
.ticker__label {
  flex: 0 0 auto;
  color: var(--text-faint);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .26em;
  white-space: nowrap;
}
.ticker__viewport {
  flex: 1 1 auto;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.ticker__track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: kabTicker 60s linear infinite;
}
.ticker__item {
  display: inline-block;
  color: rgba(168, 199, 224, .44);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  white-space: nowrap;
  transition: color .2s ease;
}
.ticker__item:hover { color: rgba(210, 236, 252, .9); }

/* --------------------------------------------------------------------------
   5. Общие элементы
   -------------------------------------------------------------------------- */
.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-label);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .24em;
}
.eyebrow--wide {
  color: var(--text-dim);
  font-size: clamp(10px, .85vw, 13px);
  letter-spacing: .22em;
  margin-bottom: 14px;
}

/* Заголовки секций и подзаголовки идут в стандартном bold (700), как в исходном
   компоненте, — 900 зарезервирован для h1 и заголовка CTA. */
.h2 {
  margin: 0;
  color: var(--text-strong);
  font-size: clamp(34px, 3vw, 46px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -.045em;
}
.h2--tight  { margin-bottom: 14px; }
.h2--spaced { margin-bottom: 48px; }

.h3 {
  margin: 0 0 10px;
  color: var(--text-strong);
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 700;
}

.lead {
  margin: 0 0 12px;
  color: var(--text-body);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.55;
}
.lead--last { margin-bottom: 26px; }

.body {
  margin: 0 0 16px;
  color: var(--text-body);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.5;
}

.note {
  margin: 0;
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.5;
}

/* — чипы — */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}
.chips--sm { margin: 0; }

.chip {
  padding: 7px 14px;
  border: 1px solid var(--chip-border);
  border-radius: 999px;
  background: var(--chip-bg);
  color: #dff2ff;
  font-size: clamp(12px, .95vw, 15px);
  font-weight: 600;
}
.chip--sm {
  padding: 6px 12px;
  border-color: rgba(119, 213, 255, .3);
  background: none;
  color: #bfe8fb;
  font-size: 13px;
  font-weight: 400;
}

/* — кнопки — */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  border-radius: 8px;
  transition: color .18s ease, background .18s ease, border-color .18s ease, transform .18s ease;
}
.btn--primary {
  min-height: 50px;
  padding: 0 26px;
  color: #021329;
  background: var(--accent);
  font-weight: 800;
  font-size: clamp(15px, 1.15vw, 18px);
  box-shadow: 0 0 28px rgba(47, 205, 255, .4);
}
.btn--primary:hover {
  color: var(--text-strong);
  background: var(--accent-hover);
  transform: translateY(-2px);
}
.hero__actions .btn--primary,
.hero__actions .btn--max {
  justify-content: center;
  width: 250px;
  white-space: nowrap;
}
.btn--max {
  min-height: 50px;
  padding: 0 22px;
  color: #fff;
  background: linear-gradient(135deg, #7864ff, #a253ff);
  box-shadow: 0 0 28px rgba(141, 92, 255, .38);
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 800;
}
.btn--max:hover {
  color: #fff;
  background: linear-gradient(135deg, #907dff, #bd6fff);
  transform: translateY(-2px);
}
.btn__badge {
  display: inline-flex;
  align-items: center;
  height: 20px;
  padding: 0 6px;
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 4px;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .12em;
}
.btn--lg {
  min-height: 54px;
  padding: 0 32px;
  font-size: clamp(16px, 1.2vw, 18px);
  box-shadow: 0 0 32px rgba(47, 205, 255, .45);
}
.btn--max.btn--lg {
  box-shadow: 0 0 32px rgba(141, 92, 255, .42);
}
.btn--lg:hover { transform: none; }

/* Кнопка звонка — только на мобильных, как в исходном компоненте (sc-if isMobile) */
.btn--call {
  display: none;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(119, 213, 255, .5);
  background: rgba(6, 26, 56, .6);
  color: #7ce4ff;
}
.btn--call:hover {
  background: rgba(10, 44, 90, .9);
  border-color: rgba(140, 226, 255, .9);
  color: var(--text-strong);
}

/* --------------------------------------------------------------------------
   6. Details
   -------------------------------------------------------------------------- */
.details {
  padding: var(--pad-y) var(--pad-x);
  background: var(--bg-details);
}

.row--split {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: clamp(28px, 4vw, 56px);
}
.row--bordered {
  padding-bottom: clamp(36px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
}
.row--padded { padding: clamp(36px, 4vw, 56px) 0; }
.row--top    { padding-top: clamp(36px, 4vw, 56px); }

.speclist {
  margin: 0;
  padding: 0;
  list-style: none;
  columns: 2;
  column-gap: 48px;
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.4;
  color: #dcedfa;
}
.speclist li {
  padding: 9px 0;
  border-bottom: 1px solid var(--line-soft);
  break-inside: avoid;
}

.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 48px);
}

.project {
  display: grid;
  grid-template-columns: minmax(150px, 230px) 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 13px 10px;
  margin: 0 -10px;
  border-bottom: 1px solid var(--line-soft);
  border-radius: 6px;
  transition: background .15s ease;
}
.project:hover { background: rgba(8, 38, 80, .5); }
.project__name {
  color: var(--text-strong);
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 700;
}
.project__text {
  color: var(--text-muted);
  font-size: clamp(13px, 1.05vw, 15px);
  line-height: 1.45;
}

/* --------------------------------------------------------------------------
   7. Процесс
   -------------------------------------------------------------------------- */
.process {
  padding: var(--pad-y) var(--pad-x);
  background: var(--bg);
  border-top: 1px solid rgba(91, 206, 255, .14);
}
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.step {
  position: relative;
  padding-top: 26px;
  border-top: 1px solid rgba(91, 206, 255, .25);
}
.step__dot {
  position: absolute;
  top: -5.5px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(79, 213, 255, .45);
}
.step--active .step__dot {
  background: var(--accent);
  box-shadow: 0 0 12px rgba(79, 213, 255, .8);
}
.step__num {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-soft);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .2em;
}
.step .h3 { margin-bottom: 8px; font-size: clamp(19px, 1.5vw, 22px); }
.step .body {
  margin: 0;
  color: var(--text-muted);
  font-size: clamp(14px, 1.05vw, 15px);
}

/* --------------------------------------------------------------------------
   8. CTA
   -------------------------------------------------------------------------- */
.cta {
  position: relative;
  isolation: isolate;
  padding: clamp(70px, 8vw, 130px) var(--pad-x) clamp(64px, 7vw, 110px);
  background: var(--bg);
  border-top: 1px solid rgba(91, 206, 255, .14);
  text-align: center;
}
.cta__glow {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: radial-gradient(ellipse at 50% 115%, rgba(0, 131, 255, .22), transparent 60%);
}
.cta .eyebrow--wide {
  color: var(--accent-label);
  font-size: clamp(10px, .9vw, 12px);
  letter-spacing: .26em;
  margin-bottom: 18px;
}
.cta__title {
  max-width: 860px;
  margin: 0 auto 22px;
  color: var(--text-strong);
  font-size: clamp(34px, 4.2vw, 62px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -.05em;
}
.cta__text {
  max-width: 560px;
  margin: 0 auto 40px;
  color: var(--text-muted);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.5;
}
.cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
}
.cta__actions .btn {
  justify-content: center;
  width: 250px;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   9. Подвал
   -------------------------------------------------------------------------- */
.footer {
  padding: clamp(36px, 4vw, 56px) var(--pad-x) clamp(28px, 3vw, 40px);
  background: var(--bg-footer);
  border-top: 1px solid var(--line-soft);
  color: var(--text-faint);
  font-size: 14px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  max-width: var(--wrap);
  margin: 0 auto;
}
.footer__brand {
  margin-bottom: 10px;
  color: #dceefb;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -.03em;
}
.footer__about {
  max-width: 360px;
  margin: 0;
  line-height: 1.55;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__col a {
  color: var(--link);
  text-decoration: none;
}
.footer__col a:hover { color: var(--link-hover); }
.footer__label {
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .22em;
}
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 20px;
  max-width: var(--wrap);
  margin: clamp(28px, 3vw, 44px) auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--line-faint);
  font-size: 12px;
}
.footer__partner {
  color: var(--text-faint);
  text-decoration: none;
}
.footer__partner:hover { color: var(--link-hover); }

/* --------------------------------------------------------------------------
   10. Мобильная раскладка (≤820px — брейкпоинт исходного компонента)
   -------------------------------------------------------------------------- */
@media (max-width: 820px) {
  .hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .hero__maplayers {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    inset: auto;
  }
  .hero__mappos,
  .hero__dots {
    position: absolute;
    inset: 0;
    top: 0;
    left: 0;
    width: auto;
    aspect-ratio: auto;
    transform: none;
  }
  .hero__fade { display: none; }

  .hero__header {
    position: relative;
    order: -1;
    z-index: 8;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 14px 18px 12px;
  }
  .contacts { display: none; }

  .hero__panel {
    position: relative;
    z-index: 8;
    top: auto;
    right: auto;
    width: auto;
    transform: none;
    padding: 26px 18px 12px;
  }

  .hero__actions {
    gap: 8px;
  }

  .hero__actions .btn--primary,
  .hero__actions .btn--max {
    flex: 1 1 calc(50% - 6px);
    min-width: 0;
    width: auto;
    padding-inline: 8px;
    gap: 4px;
    font-size: 12px;
  }
  .hero__actions .btn__badge {
    height: 18px;
    padding-inline: 3px;
    font-size: 8px;
  }
  .btn--call { display: inline-flex; }

  .cta__actions {
    gap: 10px;
  }
  .cta__actions .btn {
    flex: 1 1 220px;
    width: auto;
    max-width: 280px;
  }

  .ticker {
    position: relative;
    z-index: 8;
    padding: 12px 0 22px;
  }

  .row--split { grid-template-columns: 1fr; }
  .duo        { grid-template-columns: 1fr; }
  .speclist   { columns: 1; }
  .project    { grid-template-columns: 1fr; gap: 3px 24px; }
  .footer__grid { grid-template-columns: 1fr; }
}

@media (max-width: 360px) {
  .hero__actions .btn--primary,
  .hero__actions .btn--max {
    flex-basis: 100%;
  }
}

/* --------------------------------------------------------------------------
   11. Уважение к системным настройкам
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .brand__name,
  .brand__sheen,
  .ticker__track,
  .city-tip {
    animation: none !important;
  }
  .brand__sheen { background-position: 50% 0; }
  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
  }
}

@media print {
  .hero__maplayers,
  .ticker,
  .cta__glow { display: none; }
  .hero,
  .page { min-height: 0; background: #fff; }
  .hero__panel,
  .hero__header { position: static; transform: none; width: auto; }
}
