:root {
  --bg: #05070e;
  --bg-soft: #0c1224;
  --text: #eef2ff;
  --muted: #a9b3d0;
  --primary: #74b8ff;
  --accent: #76ffd3;
  --glass: rgba(9, 15, 30, 0.56);
  --line: rgba(190, 213, 255, 0.42);
  --veil: 1;
  --image-scale: 1;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: #04060d;
}

html {
  scroll-behavior: smooth;
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.overlay-ui {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}

.hero {
  position: relative;
  height: 100%;
  padding: 1.2rem 5vw 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.2rem;
  background:
    radial-gradient(
      circle at 10% 15%,
      rgba(34, 51, 103, calc(0.58 * var(--veil))) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 82% 8%,
      rgba(18, 73, 71, calc(0.5 * var(--veil))) 0%,
      transparent 24%
    ),
    linear-gradient(
      180deg,
      rgba(4, 6, 13, calc(0.48 * var(--veil))) 0%,
      rgba(4, 6, 13, calc(0.72 * var(--veil))) 100%
    );
}

.topbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 0.75rem;
  pointer-events: auto;
  transition: opacity 0.2s linear, transform 0.2s linear;
}

.back-pchub {
  justify-self: start;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  padding: 0.45rem 0.65rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.25);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.back-pchub:hover {
  color: #fff;
  border-color: rgba(116, 184, 255, 0.55);
  background: rgba(116, 184, 255, 0.12);
}

.topbar-logo {
  justify-self: end;
  display: block;
  padding: 0;
  margin: 0;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  line-height: 0;
}

.topbar-logo:hover {
  transform: none;
  box-shadow: none;
}

.topbar-logo img {
  display: block;
  height: 3.5rem;
  width: auto;
  vertical-align: middle;
}

.brand {
  justify-self: center;
  font-weight: 800;
  letter-spacing: 0.12rem;
}

.hero-content {
  max-width: 700px;
  margin-top: clamp(1.3rem, 8vh, 5.4rem);
  transition: opacity 0.2s linear, transform 0.2s linear, filter 0.2s linear;
}

.kicker {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.45rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02rem;
  color: #cfe8ff;
  background: rgba(116, 184, 255, 0.12);
  border: 1px solid rgba(116, 184, 255, 0.3);
  border-radius: 999px;
}

.kicker-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.12rem;
  padding: 0.16rem 0.4rem;
  margin-left: -0.28rem;
  white-space: nowrap;
  background: rgba(4, 11, 24, 0.72);
  border-color: rgba(162, 208, 255, 0.24);
}

.kicker-logo span {
  line-height: 1;
}

.kicker-logo img {
  display: block;
  width: auto;
  height: 14px;
  max-width: none;
  margin-left: -0.2rem;
  flex: 0 0 auto;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 5.8vw, 4.2rem);
  line-height: 1.04;
}

#sectorWord {
  display: inline-block;
  min-width: 10ch;
  color: #9fd8ff;
  font-size: 1.5em;
  font-weight: 800;
  letter-spacing: 0.01em;
}

#sectorWord::after {
  content: "|";
  margin-left: 0.04em;
  opacity: 1;
  animation: typingCursorBlink 0.75s steps(1, end) infinite;
}

@keyframes typingCursorBlink {
  50% {
    opacity: 0;
  }
}

.lead {
  margin: 1rem 0 0.8rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.55;
}

.short-copy {
  margin: 0 0 1.2rem;
  color: #c3cde7;
  font-size: clamp(0.95rem, 1.45vw, 1.08rem);
  line-height: 1.5;
}

.reg-note {
  margin: 0 0 1rem;
  color: #9cc6ff;
  font-size: clamp(0.85rem, 1.2vw, 0.96rem);
  line-height: 1.45;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.1rem;
  border-radius: 0.8rem;
  font-weight: 600;
  background: linear-gradient(90deg, var(--primary), #87d7ff);
  color: #02122c;
  box-shadow: 0 16px 35px rgba(42, 132, 255, 0.24);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(55, 145, 255, 0.34);
}

.cta-small {
  padding: 0.6rem 0.9rem;
  font-size: 0.9rem;
}

.hero-cta {
  pointer-events: auto;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  pointer-events: auto;
  transition: opacity 0.2s linear, transform 0.2s linear, filter 0.2s linear;
}

.benefit {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.7rem 0.75rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(189, 213, 255, 0.28);
  background: rgba(8, 16, 34, 0.46);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transform: scale(1);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.2rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(120deg, #7ebfff, #9fd9ff);
}

.benefit-icon img {
  width: 1.35rem;
  height: 1.35rem;
  object-fit: contain;
  object-position: center;
  display: block;
}

.benefit h3 {
  margin: 0;
  font-size: 0.86rem;
}

.benefit p {
  margin: 0.15rem 0 0;
  color: #c6d8ff;
  font-size: 0.8rem;
}

.benefit:hover {
  transform: translateY(-2px);
}

.benefit.active {
  transform: scale(1.03);
  border-color: rgba(123, 199, 255, 0.72);
  background: rgba(13, 29, 56, 0.78);
}

.benefit-keyword {
  display: inline-block;
  font-weight: 700;
  color: #9dd6ff;
}

.benefit-extra {
  margin-top: 0.34rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.28s ease, opacity 0.22s ease;
}

.benefit.active .benefit-extra {
  max-height: 120px;
  opacity: 1;
}

.benefit.pulse .benefit-keyword,
.benefit.pulse .benefit-icon {
  animation: benefitPulse 0.55s ease;
}

@keyframes benefitPulse {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.16);
  }
  100% {
    transform: scale(1);
  }
}

.story {
  height: 500vh;
  position: relative;
}

.sticky-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.image-wrapper {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: #090d18;
  transition: transform 0.5s cubic-bezier(0.2, 0.82, 0.24, 1);
  will-change: transform;
}

.image-wrapper.contact-zooming {
  transform: scale(1.018);
}

#antennaImage {
  position: absolute;
  left: 50%;
  top: 0;
  width: 100%;
  transform: translateX(-50%) translateY(0) translate(0, 0) scale(var(--image-scale));
  transform-origin: center top;
  will-change: transform;
  user-select: none;
  filter: saturate(1.06) contrast(1.05);
  transition: transform 0.65s cubic-bezier(0.18, 0.88, 0.2, 1);
}

.annotations-layer {
  position: absolute;
  inset: 0;
  pointer-events: auto;
  transition: none;
}

.marker {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 2px solid #f1f7ff;
  background: rgba(116, 184, 255, 0.2);
  transform: translate(-50%, -50%) scale(0.85);
  opacity: 0;
  transition: none;
  pointer-events: none;
}

.bubble {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(152, 211, 255, 0.72);
  background: rgba(124, 201, 255, 0.12);
  transform: translate(-50%, -50%) scale(0.88);
  opacity: 0;
  transition: none;
  pointer-events: auto;
  cursor: pointer;
  z-index: 6;
}

.bubble::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  border: 1px solid rgba(171, 226, 255, 0.34);
  animation: bubblePulse 1.8s ease-out infinite;
}

.line {
  position: absolute;
  height: 2px;
  transform-origin: left center;
  background: rgba(220, 236, 255, 0.72);
  opacity: 0;
  transition: none;
  pointer-events: none;
}

.label {
  position: absolute;
  width: min(300px, 70vw);
  padding: 0.7rem 0.85rem;
  border-radius: 0.8rem;
  background: rgba(10, 17, 34, 0.72);
  border: 1px solid rgba(196, 220, 255, 0.38);
  backdrop-filter: blur(9px);
  opacity: 0;
  transform: translateY(12px);
  transition: none;
  box-shadow: 0 14px 38px rgba(3, 8, 22, 0.55);
  pointer-events: auto;
  cursor: pointer;
  z-index: 8;
}

.label h3 {
  margin: 0 0 0.2rem;
  font-size: 0.95rem;
}

.label p {
  margin: 0;
  color: #cae0ff;
  font-size: 0.84rem;
  line-height: 1.35;
}

.marker.active,
.line.active,
.label.active {
  opacity: 1;
}

.marker.active {
  transform: translate(-50%, -50%) scale(1);
  box-shadow: 0 0 0 8px rgba(118, 255, 211, 0.12);
  background: rgba(118, 255, 211, 0.32);
}

.bubble.active {
  transform: translate(-50%, -50%) scale(1);
}

.bubble.active:hover {
  transform: translate(-50%, -50%) scale(1.12);
}

.label.active {
  transform: translateY(0);
}

.label.active:hover {
  transform: translateY(-2px);
}

@keyframes bubblePulse {
  0% {
    transform: scale(0.82);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.24);
    opacity: 0;
  }
}

.image-wrapper.focus-open .overlay-ui {
  opacity: 0.18;
}

.image-wrapper.focus-open .line,
.image-wrapper.focus-open .label {
  opacity: 0 !important;
}

.part-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 30;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
  align-items: center;
  justify-items: end;
  padding: 1rem;
}

.part-modal.open {
  pointer-events: auto;
  opacity: 1;
}

.part-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 20, 0.55);
  backdrop-filter: blur(4px);
}

.part-modal-card {
  position: relative;
  width: min(480px, 42vw);
  border-radius: 1rem;
  border: 1px solid rgba(184, 214, 255, 0.3);
  background: rgba(10, 18, 35, 0.92);
  box-shadow: 0 22px 65px rgba(0, 0, 0, 0.45);
  padding: 1rem 1rem 1.1rem;
  transform: translateX(16px) scale(0.98);
  transition: transform 0.25s ease;
}

.part-modal.open .part-modal-card {
  transform: translateX(0) scale(1);
}

.part-modal-kicker {
  margin: 0 0 0.45rem;
  color: #9ec8ff;
  font-size: 0.78rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
}

.part-modal-card h2 {
  margin: 0 0 0.45rem;
  font-size: 1.25rem;
}

.part-modal-intro,
.part-modal-detail {
  margin: 0;
  color: #d2e2ff;
  line-height: 1.5;
}

.part-modal-detail {
  margin-top: 0.6rem;
  color: #bad0f3;
  font-size: 0.95rem;
}

.part-modal-close {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(176, 210, 255, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #dce9ff;
  cursor: pointer;
  font-size: 1.1rem;
}

.contact-modal {
  align-items: center;
  justify-items: center;
}

.contact-card {
  width: min(560px, 92vw);
  transform: translateY(18px) scale(0.98);
  opacity: 0;
  transition: transform 0.32s ease, opacity 0.32s ease;
}

.contact-modal.open .contact-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.contact-modal .part-modal-backdrop {
  opacity: 0;
  transition: opacity 0.28s ease;
}

.contact-modal.open .part-modal-backdrop {
  opacity: 1;
}

.contact-form {
  margin-top: 0.9rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.72rem;
  color: #cae0ff;
  font-size: 0.85rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(174, 210, 255, 0.32);
  border-radius: 0.7rem;
  background: rgba(8, 14, 29, 0.76);
  color: #e9f3ff;
  font: inherit;
  padding: 0.68rem 0.72rem;
}

.contact-form textarea {
  resize: vertical;
  min-height: 96px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.contact-submit {
  border: none;
  cursor: pointer;
}

.closing-sections {
  position: relative;
  z-index: 2;
  padding: 0 5vw clamp(3.2rem, 7vw, 5.8rem);
  background:
    radial-gradient(circle at 12% 14%, rgba(26, 49, 96, 0.36) 0%, transparent 38%),
    radial-gradient(circle at 86% 8%, rgba(18, 78, 76, 0.28) 0%, transparent 30%),
    linear-gradient(180deg, #060a14 0%, #04060d 100%);
}

.closing-shell {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1rem;
}

.closing-panel {
  border-radius: 1rem;
  border: 1px solid rgba(176, 211, 255, 0.26);
  background: rgba(9, 17, 34, 0.72);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.3);
  padding: clamp(1rem, 2vw, 1.5rem);
  min-width: 0;
}

.products-panel {
  overflow-x: hidden;
  grid-column: 1 / -1;
  width: 100%;
  padding-left: clamp(1rem, 2vw, 1.5rem);
  padding-right: clamp(1rem, 2vw, 1.5rem);
}

.future-panel {
  grid-column: 1 / -1;
  position: relative;
  width: 100dvw;
  max-width: none;
  margin-left: calc(50% - 50dvw);
  margin-right: calc(50% - 50dvw);
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.closing-kicker {
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
  color: #9ec8ff;
}

.closing-panel h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.25rem, 2.1vw, 1.8rem);
}

.closing-panel p {
  margin: 0;
  color: #c6d7f3;
  line-height: 1.6;
}

.future-list {
  margin: 0;
  padding: 0.9rem 1rem 1rem 2rem;
  display: grid;
  gap: 0.5rem;
  color: #d8e8ff;
  background: rgba(9, 17, 34, 0.72);
  border: 1px solid rgba(176, 211, 255, 0.26);
  border-top: none;
  border-radius: 0 0 1rem 1rem;
}

.future-map-wrap {
  margin-top: 0;
}

.future-map-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 320px;
  border-radius: 0;
  overflow: hidden;
  background: #060d1d;
}

.map-ui-mode-btn {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 500;
  border: 1px solid rgba(127, 195, 255, 0.65);
  border-radius: 999px;
  background: rgba(7, 20, 39, 0.88);
  color: #dcecff;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.42rem 0.75rem;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.map-ui-mode-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(147, 210, 255, 0.9);
  background: rgba(12, 30, 52, 0.95);
}

.future-coverage-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.future-map-overlay {
  position: absolute;
  inset: 0;
  z-index: 420;
  padding: clamp(0.75rem, 2.2vw, 1.35rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.45rem;
  background:
    linear-gradient(180deg, rgba(4, 9, 20, 0.68) 0%, rgba(4, 9, 20, 0.26) 38%, rgba(4, 9, 20, 0.78) 100%),
    radial-gradient(circle at 76% 18%, rgba(26, 92, 150, 0.2) 0%, transparent 44%);
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.future-map-stage.map-ui-hidden .future-map-overlay {
  opacity: 0;
  pointer-events: none;
}

.future-map-overlay > * {
  pointer-events: auto;
}

.future-map-overlay h2 {
  margin: 0.1rem 0 0.35rem;
  font-size: clamp(1.35rem, 2.4vw, 1.95rem);
}

.future-map-overlay > p {
  margin: 0;
  max-width: 70ch;
  color: #d5e8ff;
  line-height: 1.45;
  font-size: clamp(0.84rem, 1.25vw, 0.98rem);
}

.future-coverage-map .leaflet-tile-pane {
  filter: saturate(0.72) brightness(0.68) contrast(1.12);
}

.future-coverage-map .coverage-overlay-aura {
  filter: saturate(1.65) brightness(1.2) blur(3px) drop-shadow(0 0 18px rgba(70, 255, 120, 0.9));
  mix-blend-mode: screen;
  animation: coverageAuraPulse 2.3s ease-in-out infinite;
}

.future-coverage-map .coverage-overlay-core {
  filter: saturate(1.45) contrast(1.28) brightness(1.14);
  mix-blend-mode: screen;
  animation: coverageCorePulse 2.8s ease-in-out infinite;
}

@keyframes coverageAuraPulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.86;
  }
  100% {
    opacity: 0.5;
  }
}

@keyframes coverageCorePulse {
  0% {
    opacity: 0.6;
  }
  50% {
    opacity: 0.88;
  }
  100% {
    opacity: 0.6;
  }
}

.leaflet-zoom-anim .future-coverage-map .coverage-overlay-aura,
.leaflet-zoom-anim .future-coverage-map .coverage-overlay-core {
  animation-play-state: paused;
}

.future-coverage-map.map-interacting .coverage-overlay-aura {
  opacity: 0 !important;
  animation: none !important;
}

.future-coverage-map.map-interacting .coverage-overlay-core {
  animation: none !important;
}

.future-map-toolbar {
  margin-top: 0.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.coverage-percent-card {
  margin-top: 0.15rem;
  padding: 0.68rem 0.82rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(107, 187, 255, 0.34);
  background: linear-gradient(140deg, rgba(8, 20, 36, 0.92) 0%, rgba(8, 22, 39, 0.7) 100%);
  box-shadow: 0 12px 24px rgba(2, 11, 24, 0.28);
  width: fit-content;
  min-width: 210px;
}

.coverage-percent-label {
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #9dcfff;
}

.coverage-percent-value {
  margin: 0.2rem 0 0;
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  font-weight: 800;
  line-height: 1;
  color: #dbf0ff;
  text-shadow: 0 0 16px rgba(102, 190, 255, 0.42);
}

.coverage-percent-note {
  margin: 0.24rem 0 0 !important;
  font-size: 0.78rem;
  color: #b8d8f7 !important;
}

.map-toggle-btn {
  border: 1px solid rgba(119, 188, 255, 0.55);
  border-radius: 999px;
  background: rgba(13, 28, 49, 0.9);
  color: #d8ebff;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.45rem 0.72rem;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.map-toggle-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(130, 205, 255, 0.8);
  background: rgba(18, 38, 64, 0.95);
}

.future-map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem 0.8rem;
  font-size: 0.76rem;
  color: #b9d6f5;
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.36rem;
}

.legend-swatch {
  width: 0.64rem;
  height: 0.64rem;
  border-radius: 999px;
  display: inline-block;
}

.legend-swatch-coverage {
  background: radial-gradient(circle at 30% 30%, #c2ffcd 0%, #3edd6d 55%, #18a342 100%);
  box-shadow: 0 0 8px rgba(62, 221, 109, 0.75);
}

.legend-swatch-target {
  background: radial-gradient(circle at 35% 35%, #e1ffc2 0%, #8cff4d 100%);
  box-shadow: 0 0 7px rgba(140, 255, 77, 0.62);
}

.legend-swatch-site {
  background: radial-gradient(circle at 35% 35%, #d4f8ff 0%, #5ad7ff 100%);
  box-shadow: 0 0 7px rgba(89, 221, 255, 0.68);
}

.legend-swatch-region {
  border: 2px dashed #88c9ff;
  background: transparent;
  box-shadow: none;
}

.future-map-hint {
  margin-top: 0.15rem !important;
  font-size: 0.82rem;
  color: #9cc6ff !important;
}

.future-map-hint.warn {
  color: #ffd289 !important;
}

.future-list li::marker {
  color: #84c7ff;
}

.products-grid {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 0.65rem;
}

.product-card {
  border: 1px solid rgba(177, 214, 255, 0.25);
  border-radius: 0.85rem;
  background: rgba(7, 14, 28, 0.84);
  padding: 0.75rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(95, 180, 255, 0) 24%, rgba(95, 180, 255, 0.12) 50%, rgba(95, 180, 255, 0) 76%);
  transform: translateX(-120%);
  transition: transform 0.4s ease;
  pointer-events: none;
}

.product-card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.93rem;
}

.product-card p {
  color: #bad0f3;
  font-size: 0.84rem;
  line-height: 1.45;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(122, 194, 255, 0.8);
  box-shadow: 0 14px 26px rgba(4, 14, 30, 0.35);
  background: rgba(10, 21, 40, 0.92);
}

.product-card:hover::after {
  transform: translateX(120%);
}

.product-card:focus-visible {
  outline: 2px solid rgba(135, 206, 255, 0.85);
  outline-offset: 2px;
}

@media (max-width: 980px) {
  .closing-shell {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 900px) {
  .hero {
    position: relative;
  }

  .hero-content {
    max-width: 760px;
    padding-right: 320px;
  }

  .kicker-logo {
    top: 116px;
    right: 5vw;
    margin: 0;
    gap: 0.35rem;
    padding: 0.32rem 0.65rem;
    border: 1px solid rgba(176, 212, 255, 0.34);
    background: rgba(7, 14, 29, 0.66);
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 28px rgba(2, 8, 18, 0.34);
    z-index: 10;
  }

  .kicker-logo span {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
  }

  .kicker-logo img {
    height: 18px;
    width: auto;
    margin-left: 0;
  }
}

@media (max-width: 700px) {
  .hero {
    padding-inline: 1rem;
    padding-top: 0.9rem;
  }

  h1 {
    font-size: clamp(1.65rem, 9.4vw, 2.5rem);
  }

  .lead {
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-content {
    max-width: 92vw;
    margin-top: clamp(1.3rem, 5vh, 2.8rem);
  }

  .short-copy {
    font-size: 0.96rem;
    margin-bottom: 1rem;
  }

  .reg-note {
    font-size: 0.84rem;
    margin-bottom: 0.8rem;
  }

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

  .topbar {
    align-items: flex-start;
  }

  .back-pchub {
    font-size: 0.68rem;
    padding: 0.32rem 0.5rem;
    letter-spacing: 0.02em;
  }

  .brand {
    font-size: 1.3rem;
  }

  .cta-small {
    font-size: 0.82rem;
    padding: 0.55rem 0.78rem;
  }

  .kicker-logo {
    gap: 0.1rem;
    padding: 0.12rem 0.28rem;
    margin-left: -0.2rem;
    margin-bottom: 0.72rem;
  }

  .kicker-logo img {
    height: 12px;
    width: auto;
    margin-left: -0.12rem;
  }

  :root {
    --image-scale: 1.55;
  }

  .label {
    width: min(250px, 82vw);
  }

  .part-modal {
    align-items: end;
    justify-items: center;
    padding: 0.6rem;
  }

  .part-modal-card {
    width: min(560px, 96vw);
    transform: translateY(16px) scale(0.98);
  }

  .part-modal.open .part-modal-card {
    transform: translateY(0) scale(1);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .closing-sections {
    padding-inline: 1rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .future-map-legend {
    width: 100%;
  }

  .coverage-percent-card {
    padding: 0.62rem 0.7rem;
    width: 100%;
    min-width: 0;
  }

  .future-map-stage {
    aspect-ratio: 4 / 5;
    min-height: clamp(360px, 68vh, 620px);
  }

  .future-map-overlay > p {
    max-width: 100%;
  }
}

/* Gallery Hero Section */
.gallery-hero {
  padding: 6rem 1.5rem;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 10;
  width: 100%;
}

.gallery-header {
  text-align: center;
  max-width: 600px;
}

.gallery-header h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 0.5rem;
  background: linear-gradient(to right, #ffffff, #88bfff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gallery-header p {
  color: #a4c2e6;
  font-size: 1.15rem;
  line-height: 1.5;
}

.gallery-grid {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 320px);
  gap: 1.25rem;
  padding-bottom: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease;
  margin: 0;
  background: #0d1a33;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
  transition: border-color 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(26, 92, 150, 0.4);
}

.gallery-item:hover::after {
  border-color: rgba(136, 191, 255, 0.4);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* Bento Layout Placement */
.item-1 { grid-column: 1 / 3; grid-row: 1 / 2; }
.item-2 { grid-column: 3 / 4; grid-row: 1 / 2; }
.item-3 { grid-column: 4 / 5; grid-row: 1 / 3; }
.item-4 { grid-column: 1 / 2; grid-row: 2 / 3; }
.item-5 { grid-column: 2 / 3; grid-row: 2 / 3; }
.item-6 { grid-column: 3 / 4; grid-row: 2 / 3; }

/* Responsive adjustments */
@media (max-width: 980px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    grid-auto-rows: 280px;
  }
  .item-1 { grid-column: 1 / -1; grid-row: 1 / 2; }
  .item-2 { grid-column: 1 / 2; grid-row: 2 / 3; }
  .item-3 { grid-column: 2 / 3; grid-row: 2 / 4; }
  .item-4 { grid-column: 1 / 2; grid-row: 4 / 5; }
  .item-5 { grid-column: 2 / 3; grid-row: 4 / 5; }
  .item-6 { grid-column: 1 / 2; grid-row: 3 / 4; }
}

@media (max-width: 600px) {
  .gallery-hero {
    padding: 4rem 1rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
    gap: 1rem;
  }
  .item-1, .item-2, .item-3, .item-4, .item-5, .item-6 {
    grid-column: 1 / -1;
    grid-row: auto;
  }
  .item-3 {
    height: 300px;
  }
}
