/* ── Design tokens ───────────────────────────────────────────────────────── */

:root {
  --edge: 2rem;
}

/* ── Reset ──────────────────────────────────────────────────────────────── */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  background: #ffffff;
}

/* ── Map ────────────────────────────────────────────────────────────────── */

#map {
  position: absolute;
  inset: 0;
  background: #ffffff;
}

/* ── Intro overlay ──────────────────────────────────────────────────────── */

#intro {
  position: absolute;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 8vw;
  transition: opacity 0.6s ease;
}

#top-link {
  position: fixed;
  top: 1.75rem;
  right: var(--edge);
  z-index: 65;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-sep {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 0.68rem;
  color: #cccccc;
}

#project-link,
#people-link {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  color: #1a1a1a;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease, text-decoration 0.2s ease, opacity 0.2s ease;
}

#project-link:hover,
#people-link:hover {
  text-decoration: underline;
}

/* ── People overlay ─────────────────────────────────────────────────────── */

#people-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(248, 248, 248, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

#people-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.people-panel {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border: 1px solid rgba(200, 200, 200, 0.55);
  border-radius: 20px;
  max-width: 620px;
  width: 100%;
  max-height: 85vh;
  overflow: hidden;
  position: relative;
  animation: fadeIn 0.4s ease forwards;
}

.people-scroll {
  padding: 2rem 2.5rem 2.5rem;
  max-height: 85vh;
  overflow-y: auto;
  scrollbar-width: none;
}

.people-scroll::-webkit-scrollbar {
  display: none;
}

.scroll-indicator {
  position: absolute;
  right: 18px;
  top: 80px;
  bottom: 80px;
  width: 1px;
  background: rgba(0, 0, 0, 0.08);
  pointer-events: none;
  z-index: 1;
}

.scroll-dot {
  position: absolute;
  right: -3px;
  top: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.28);
  transition: top 0.12s ease;
}

.scroll-indicator--hidden {
  display: none;
}

.people-close-row {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1.5rem;
}

.people-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.author-block {
  padding: 0.25rem 0 1.75rem;
}

.author-name {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: #1a1a1a;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.author-bio {
  font-size: 0.62rem;
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: #555555;
  margin-bottom: 0.85rem;
}

.author-bio:last-child {
  margin-bottom: 0;
}

.author-link {
  color: #555555;
  text-decoration: underline;
  transition: color 0.2s;
}

.author-link:hover {
  color: #1a1a1a;
}

.author-divider {
  width: 28px;
  height: 1px;
  background: #cccccc;
  margin: 0.25rem 0 1.75rem;
}

.panel {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border: 1px solid rgba(200, 200, 200, 0.55);
  border-radius: 20px;
  padding: 3rem 3.5rem;
  max-width: 560px;
  width: 100%;
  display: flex;
  flex-direction: column;
  animation: fadeIn 0.7s ease forwards;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 2rem;
}

.lang-sep {
  font-size: 9px;
  color: #bbbbbb;
}

.lang-btn {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  font-weight: 400;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #aaaaaa;
  transition: color 0.2s;
}

.lang-btn.active { color: #1a1a1a; }
.lang-btn:hover  { color: #555555; }

.title {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: #1a1a1a;
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.subtitle {
  font-size: 0.68rem;
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: #555555;
  margin-bottom: 1.75rem;
  white-space: pre-line;
}

.divider {
  width: 28px;
  height: 1px;
  background: #cccccc;
  margin-bottom: 1.5rem;
}

.method {
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: #999999;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.acknowledgment {
  font-size: 0.54rem;
  font-weight: 300;
  letter-spacing: 0.07em;
  color: #aaaaaa;
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.enter-btn {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: #1a1a1a;
  background: transparent;
  border: 1px solid #1a1a1a;
  padding: 0.6rem 1.5rem;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.25s ease, color 0.25s ease;
}

.enter-btn:hover {
  background: #1a1a1a;
  color: #ffffff;
}

/* ── Map labels ─────────────────────────────────────────────────────────── */

.location-label {
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  white-space: nowrap;
}

.location-marker {
  position: relative;
  width: 4px;
  height: 4px;
  flex-shrink: 0;
}

.location-marker::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #1a1a1a;
  transform: scale(1);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.marker-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 28px;
  margin-top: -14px;
  margin-left: -14px;
  border-radius: 50%;
  border: 0.75px solid rgba(26, 26, 26, 0);
  pointer-events: none;
  transform: scale(0.15);
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.location-label:hover .location-marker::before { opacity: 0; transform: scale(0); }

.location-label:hover .marker-ring:nth-child(1) {
  animation: marker-ripple 2.8s ease-out infinite;
}

.location-label:hover .marker-ring:nth-child(2) {
  animation: marker-ripple 2.8s ease-out 1.1s infinite;
}

.location-label.active .marker-ring:nth-child(1) {
  animation: none;
  transform: scale(0.44);
  border-color: rgba(26, 26, 26, 0.25);
}

.label-text {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 8.5px;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: #1a1a1a;
  transition: opacity 0.2s;
}

.location-label.label-above {
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.location-label.label-left {
  flex-direction: row-reverse;
}

.location-label:hover .label-text { opacity: 0.45; }

/* ── Border labels ──────────────────────────────────────────────────────── */

.border-label {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 8px;
  font-weight: 300;
  letter-spacing: 0.35em;
  color: #bbbbbb;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  user-select: none;
}

/* ── Map hint ───────────────────────────────────────────────────────────── */

.map-title {
  position: fixed;
  top: 1.75rem;
  left: var(--edge);
  z-index: 65;
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.24em;
  color: #1a1a1a;
  pointer-events: none;
}

.map-hint {
  position: fixed;
  top: 2.75rem;
  left: var(--edge);
  z-index: 65;
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.24em;
  color: #bbbbbb;
  pointer-events: none;
  animation: fadeIn 2s ease forwards;
}

/* ── Location overlay ───────────────────────────────────────────────────── */

#location-overlay {
  position: absolute;
  inset: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

#location-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.overlay-panel {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(200, 200, 200, 0.5);
  border-radius: 20px;
  width: 100%;
  max-width: 1100px;
  max-height: 90vh;
  overflow: hidden;
  position: relative;
}

.overlay-scroll {
  padding: 2rem 2.5rem 2.5rem;
  height: 100%;
  max-height: 90vh;
  overflow-y: auto;
  scrollbar-width: none;
}

.overlay-scroll::-webkit-scrollbar {
  display: none;
}

.overlay-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.overlay-title-group { flex: 1; min-width: 0; }

.overlay-watershed {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  color: #aaaaaa;
  font-weight: 300;
  text-transform: lowercase;
  margin-bottom: 0.4rem;
}

.overlay-name {
  font-size: 1.05rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: #1a1a1a;
  margin-bottom: 0.7rem;
  line-height: 1.3;
}

.overlay-desc {
  font-size: 0.62rem;
  font-weight: 300;
  line-height: 1.85;
  color: #666666;
  letter-spacing: 0.04em;
}

.overlay-subtitle {
  font-size: 0.58rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: #999999;
  text-transform: lowercase;
  margin-top: 1.2em;
}

.overlay-body p {
  font-size: 0.62rem;
  font-weight: 300;
  line-height: 1.85;
  color: #666666;
  letter-spacing: 0.04em;
  margin-top: 0.9em;
}

.overlay-close-btn {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 300;
  color: #999999;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.overlay-close-btn:hover { color: #1a1a1a; }

/* ── Video grid — three equal columns, stable layout ───────────────────── */

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  padding: 0.25rem 0 0.5rem;
}

/* ── Video card ─────────────────────────────────────────────────────────── */

.video-card {
  display: flex;
  flex-direction: column;
  /* Transition only for active expansion — no hover-triggered movement */
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              opacity  0.4s ease;
  position: relative;
}

/* Active card: subtle expansion to signal "this channel is open" */
.video-card.active {
  transform: scale(1.025);
  z-index: 2;
}

/* Neighbors: almost imperceptible step back — keeps focus without compression */
.video-card.inactive-neighbor {
  transform: scale(0.985);
  opacity: 0.82;
}

/* 16:9 aspect-ratio wrapper */
.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #f0f0f0;
  overflow: hidden;
  cursor: pointer;
}

.video-wrapper video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-placeholder svg {
  width: 100%;
  height: 100%;
}

/* ── Play/pause icon overlay ────────────────────────────────────────────── */

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  /* hidden by default; appears on hover (idle) or always when active */
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

/* Icon visible only while hovering over the video area */
.video-wrapper:hover .video-overlay {
  opacity: 1;
}

.overlay-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease;
}

.video-wrapper:hover .overlay-icon {
  transform: scale(1.08);
}

/* ── Card metadata row ──────────────────────────────────────────────────── */

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0 0;
}

.card-category {
  font-size: 9px;
  letter-spacing: 0.28em;
  color: #1a1a1a;
  font-weight: 300;
  text-transform: capitalize;
  transition: color 0.2s;
}

/* Category label darkens when its card is active */
.video-card.active .card-category {
  color: #1a1a1a;
}

.card-detail-link {
  font-size: 8px;
  letter-spacing: 0.16em;
  color: #1a1a1a;
  cursor: pointer;
  transition: color 0.2s;
}

.card-detail-link:hover {
  color: #555555;
}

/* ── Detail view — full-screen video with overlaid content ──────────────── */

#detail-view {
  position: absolute;
  inset: 0;
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

#detail-view.open {
  opacity: 1;
  pointer-events: auto;
}

/* Video fills the entire viewport as background */
#detail-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #111111;
}

#detail-video-bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Scrollable editorial layer over the video */
.detail-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow-y: auto;
  isolation: isolate;
  scrollbar-width: none;
}

.detail-overlay::-webkit-scrollbar {
  display: none;
}

/* Light variant for dark-background scroll indicators (detail view) */
.scroll-indicator--light {
  background: rgba(255, 255, 255, 0.15);
  z-index: 2;
}

.scroll-indicator--light .scroll-dot {
  background: rgba(255, 255, 255, 0.55);
}

/* Top controls — lives outside #detail-view so position:fixed is viewport-relative */
#detail-top-controls {
  position: fixed;
  top: 1.75rem;
  right: var(--edge);
  z-index: 70;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

#detail-top-controls.visible {
  opacity: 1;
  pointer-events: auto;
}

#detail-info-btn {
  position: fixed;
  top: 1.75rem;
  left: var(--edge);
  z-index: 70;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

#detail-info-btn.visible {
  opacity: 1;
  pointer-events: auto;
}

#detail-info-btn.expanded {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

#detail-info-btn.expanded:hover {
  background: transparent;
  transform: none;
}

/* Hide title and nav when detail view is open */
body:has(#detail-view.open) .map-title,
body:has(#detail-view.open) #project-link,
body:has(#detail-view.open) #people-link,
body:has(#detail-view.open) .nav-sep {
  display: none !important;
}

/* Hide map hint and ack when detail view or location overlay is open */
body:has(#detail-view.open) .map-hint,
body:has(#detail-view.open) .map-ack,
body:has(#location-overlay.open) .map-hint,
body:has(#location-overlay.open) .map-ack {
  display: none !important;
}

/* Play/pause + close share a minimal style.
   mix-blend-mode: difference → white on dark video, dark on light video. */
#detail-info-btn,
#detail-play-btn,
#detail-close-btn {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 999px;
  cursor: pointer;
  padding: 0.45rem 0.7rem;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05);
  mix-blend-mode: normal;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

#detail-info-btn:hover,
#detail-play-btn:hover,
#detail-close-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.08);
}

/* Editorial content — left-aligned column */
.detail-content {
  padding: 2rem 2rem 3.5rem;
  margin: 1.75rem var(--edge) 0;
  max-width: 640px;
  background: rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  clip-path: inset(0 0 0 0 round 20px);
  transition: clip-path 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.detail-content.collapsed {
  visibility: hidden;
  pointer-events: none;
}

/* Text uses a stable overlay for readability on the moving video */
.detail-cat {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  font-weight: 300;
  text-transform: lowercase;
  color: #ffffff;
  text-shadow: 0 0 0.35rem rgba(0, 0, 0, 0.75);
  margin-bottom: 0.45rem;
}

.detail-loc {
  font-size: 1.45rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.25;
  color: #ffffff;
  text-shadow: 0 0 0.35rem rgba(0, 0, 0, 0.75);
}

.detail-hr {
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  margin: 1.5rem 0;
}

.detail-para {
  font-size: 0.65rem;
  font-weight: 300;
  line-height: 1.95;
  color: #ffffff;
  letter-spacing: 0.04em;
  font-style: italic;
  max-width: 560px;
  margin-bottom: 1.75rem;
  text-shadow: 0 0 0.35rem rgba(0, 0, 0, 0.75);
}

/* 2-column image placeholder grid */
.detail-img-grid {
  display: block;
  max-width: 480px;
  margin-bottom: 0.55rem;
}

.detail-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* 3:2 aspect-ratio image placeholder */
.detail-img-ph {
  position: relative;
  padding-top: 66.67%;
  overflow: hidden;
}

.detail-img-ph svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.detail-caption {
  font-size: 0.54rem;
  font-weight: 300;
  letter-spacing: 0.16em;
  color: #ffffff;
  font-style: italic;
  margin-bottom: 1.75rem;
  text-shadow: 0 0 0.35rem rgba(0, 0, 0, 0.75);
  opacity: 0.7;
}

/* ── Responsive — mobile —───────────────────────────────────────────────── */

@media (max-width: 768px) {
  :root {
    --edge: 1.25rem;
  }

  #intro {
    padding: 0 var(--edge);
    justify-content: center;
  }

  #location-overlay {
    align-items: flex-end;
    padding: 0 var(--edge) var(--edge);
  }

  .overlay-panel {
    max-height: 85vh;
  }

  .overlay-scroll {
    padding: 1.5rem 2.5rem 2rem 1.5rem;
    max-height: 85vh;
  }

  .video-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  /* On mobile, no spatial scaling — cards stay equal size */
  .video-card.active,
  .video-card.inactive-neighbor {
    transform: none;
    opacity: 1;
  }

  .detail-content {
    padding: 2rem 1.5rem 4rem;
    margin: 4rem var(--edge) 0;
  }

  .detail-img-grid {
    grid-template-columns: 1fr;
  }

  #detail-top-controls {
    top: 1rem;
  }
}

/* ── MapLibre control overrides ─────────────────────────────────────────── */

.maplibregl-ctrl-group {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  display: flex !important;
  flex-direction: row !important;
  gap: 0.5rem !important;
}

.maplibregl-ctrl-group button {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  position: relative !important;
  cursor: pointer !important;
}

.maplibregl-ctrl-group button + button {
  border-top: none !important;
}

.maplibregl-ctrl-group button:hover {
  background: transparent !important;
}

/* Hide default SVG icons */
.maplibregl-ctrl-zoom-in .maplibregl-ctrl-icon,
.maplibregl-ctrl-zoom-out .maplibregl-ctrl-icon {
  visibility: hidden !important;
}

/* Inject + and − as text */
.maplibregl-ctrl-zoom-in::after,
.maplibregl-ctrl-zoom-out::after {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  font-family: 'IBM Plex Mono', 'Courier New', monospace !important;
  font-size: 1.1rem !important;
  font-weight: 350 !important;
  letter-spacing: 0 !important;
  color: #aaaaaa !important;
  transition: color 0.2s ease !important;
  pointer-events: none !important;
}

.maplibregl-ctrl-zoom-in::after  { content: '+' !important; }
.maplibregl-ctrl-zoom-out::after { content: '−' !important; }

.maplibregl-ctrl-zoom-in:hover::after,
.maplibregl-ctrl-zoom-out:hover::after {
  color: #1a1a1a !important;
}

.maplibregl-ctrl-bottom-right {
  bottom: 1.75rem !important;
  right: var(--edge) !important;
}

/* Bottom-left map acknowledgment */
.map-ack {
  position: fixed;
  bottom: 1.75rem;
  left: var(--edge);
  z-index: 65;
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 0.52rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  color: #bbbbbb;
  pointer-events: none;
  max-width: 28ch;
  line-height: 1.5;
  animation: fadeIn 2s ease forwards;
}

/* ── Animations ─────────────────────────────────────────────────────────── */

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes marker-ripple {
  0%   { transform: scale(0.15); border-color: rgba(26, 26, 26, 0.7); }
  100% { transform: scale(2.2);  border-color: rgba(26, 26, 26, 0);   }
}
