:root {
  --page-pad: clamp(14px, 4vw, 22px);
  --content-max: 1120px;
  --bg: #04121f;
  --panel: #071d33;
  --panel-strong: #09284b;
  --text: #ecfbff;
  --muted: #8bb8ce;
  --line: rgba(84, 226, 255, 0.2);
  --cyan: #22cfff;
  --blue: #086bff;
  --deep-blue: #002fbb;
  --lime: #6df03b;
  --acid: #afff38;
  --hot: #ff4fd8;
  --shadow: rgba(0, 5, 18, 0.42);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  min-width: 0;
  margin: 0;
  overflow-x: clip;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(34, 207, 255, 0.08), transparent 28rem),
    linear-gradient(115deg, rgba(109, 240, 59, 0.1), transparent 32rem),
    linear-gradient(300deg, rgba(255, 79, 216, 0.08), transparent 30rem),
    var(--bg);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(34, 207, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 207, 255, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

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

button {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 60px;
  padding: 8px var(--page-pad);
  border-bottom: 1px solid var(--line);
  background: rgba(4, 18, 31, 0.78);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 auto;
  min-width: 0;
  max-width: min(68vw, 320px);
  font-size: clamp(0.76rem, 3.8vw, 0.95rem);
  font-weight: 850;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand img {
  width: clamp(34px, 11vw, 40px);
  height: clamp(34px, 11vw, 40px);
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(34, 207, 255, 0.45));
}

.brand span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.verify-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(109, 240, 59, 0.45);
  border-radius: var(--radius);
  color: var(--acid);
  background: rgba(109, 240, 59, 0.08);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero {
  position: relative;
  display: grid;
  align-content: center;
  gap: clamp(18px, 5svh, 30px);
  min-height: calc(88svh - 60px);
  padding: clamp(18px, 4svh, 28px) var(--page-pad) clamp(32px, 6svh, 44px);
  overflow: hidden;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 72px;
  pointer-events: none;
  content: "";
  background: linear-gradient(to top, var(--bg), transparent);
}

.hero__media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(170px, 34svh, 310px);
  min-width: 0;
  isolation: isolate;
}

.hero__media::before,
.hero__media::after {
  position: absolute;
  inset: 18% 0 auto;
  z-index: -2;
  height: 18%;
  content: "";
  background:
    linear-gradient(90deg, transparent, rgba(34, 207, 255, 0.56), transparent),
    linear-gradient(90deg, transparent, rgba(109, 240, 59, 0.4), transparent);
  filter: blur(18px);
  transform: skewY(-8deg);
}

.hero__media::after {
  top: 55%;
  background: linear-gradient(90deg, transparent, rgba(8, 107, 255, 0.62), transparent);
  transform: skewY(7deg);
}

.hero__media img {
  width: clamp(148px, 56vw, 270px);
  max-height: clamp(158px, 30svh, 285px);
  object-fit: contain;
  filter:
    drop-shadow(0 0 22px rgba(34, 207, 255, 0.65))
    drop-shadow(0 16px 35px rgba(0, 0, 0, 0.55));
}

.pulse-ring {
  position: absolute;
  z-index: -1;
  width: clamp(190px, 72vw, 330px);
  aspect-ratio: 1;
  border: 1px solid rgba(34, 207, 255, 0.23);
  border-radius: 50%;
  animation: scan-pulse 4s ease-in-out infinite;
}

.pulse-ring--two {
  width: clamp(150px, 56vw, 252px);
  border-color: rgba(109, 240, 59, 0.22);
  animation-delay: -1.4s;
}

.hero__copy {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--acid);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1 {
  margin-bottom: 10px;
  font-size: clamp(2.45rem, 15.5vw, 7.2rem);
  line-height: 0.92;
  overflow-wrap: normal;
  text-transform: uppercase;
  text-wrap: balance;
  word-break: normal;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.45rem, 7vw, 3.2rem);
  line-height: 1;
  overflow-wrap: normal;
  text-transform: uppercase;
  text-wrap: balance;
  word-break: normal;
}

h3 {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.2;
}

.lead {
  max-width: 35rem;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.48;
  text-wrap: pretty;
}

.hero__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  width: 100%;
  min-width: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid rgba(34, 207, 255, 0.28);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(7, 29, 51, 0.8);
  font-size: 0.92rem;
  font-weight: 850;
  text-align: center;
  overflow-wrap: anywhere;
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.button:hover,
.button:focus-visible {
  border-color: rgba(175, 255, 56, 0.78);
  transform: translateY(-1px);
}

.button--primary {
  border-color: transparent;
  color: #02101b;
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  box-shadow: 0 14px 30px rgba(34, 207, 255, 0.18);
}

.button--ghost {
  background: rgba(34, 207, 255, 0.08);
}

.button--full {
  width: 100%;
}

.section {
  min-width: 0;
  padding: 34px var(--page-pad);
}

.section--tight {
  padding-top: 26px;
}

.section--exclusive {
  background:
    linear-gradient(180deg, rgba(8, 107, 255, 0.08), rgba(109, 240, 59, 0.04)),
    rgba(3, 10, 20, 0.28);
}

.section__heading {
  display: block;
  max-width: var(--content-max);
  margin: 0 auto 12px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-width: 0;
  gap: 12px;
  max-width: var(--content-max);
  margin: 0 auto;
}

.content-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 29, 51, 0.72);
  box-shadow: 0 18px 38px var(--shadow);
}

.content-card__visual {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(34, 207, 255, 0.28), rgba(8, 107, 255, 0.18)),
    var(--panel);
}

.content-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-card__visual--video {
  aspect-ratio: 16 / 9;
  background: #020b13;
}

.content-card__visual--video::before,
.content-card__visual--video::after {
  display: none;
}

.content-card__video {
  display: block;
  width: 100%;
  height: 100%;
  background: #020b13;
  object-fit: cover;
}

.content-card__visual--locked-video::after {
  display: block;
  background:
    radial-gradient(circle at 50% 50%, rgba(4, 18, 31, 0.08), rgba(4, 18, 31, 0.68) 72%),
    repeating-linear-gradient(90deg, rgba(236, 251, 255, 0.08) 0 1px, transparent 1px 9px);
  mix-blend-mode: normal;
}

.content-card__video--preview {
  filter: blur(12px) saturate(1.22) contrast(1.08);
  transform: scale(1.12);
}

.content-card:not(.locked) .content-card__visual--image::before,
.content-card:not(.locked) .content-card__visual--image::after {
  display: none;
}

.content-card__visual::before {
  position: absolute;
  inset: -40%;
  content: "";
  background:
    linear-gradient(90deg, transparent 0 32%, rgba(34, 207, 255, 0.45) 36% 44%, transparent 48% 100%),
    linear-gradient(135deg, rgba(109, 240, 59, 0.22), transparent 40%),
    linear-gradient(315deg, rgba(8, 107, 255, 0.42), transparent 42%);
  animation: drift 8s linear infinite;
}

.content-card__visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    repeating-linear-gradient(180deg, rgba(236, 251, 255, 0.08) 0 1px, transparent 1px 8px),
    linear-gradient(to top, rgba(4, 18, 31, 0.62), transparent 48%);
  mix-blend-mode: screen;
}

.visual-label {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(236, 251, 255, 0.34);
  border-radius: 50%;
  color: var(--text);
  background: rgba(4, 18, 31, 0.44);
  font-size: 0.76rem;
  font-weight: 900;
  backdrop-filter: blur(8px);
}

.content-card__body {
  display: grid;
  gap: 12px;
  padding: 12px;
}

.content-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  text-transform: uppercase;
}

.card-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.mini-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 39px;
  border: 1px solid rgba(34, 207, 255, 0.25);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(34, 207, 255, 0.07);
  font-size: 0.82rem;
  font-weight: 850;
  overflow-wrap: anywhere;
  text-align: center;
  cursor: pointer;
}

.mini-button:hover,
.mini-button:focus-visible {
  border-color: rgba(109, 240, 59, 0.72);
}

.rail {
  display: grid;
  grid-auto-columns: minmax(232px, 82vw);
  grid-auto-flow: column;
  gap: 12px;
  max-width: var(--content-max);
  min-width: 0;
  margin: 0 auto;
  padding-bottom: 8px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
}

.rail .content-card {
  scroll-snap-align: start;
}

.locked .content-card__visual {
  background:
    linear-gradient(120deg, rgba(109, 240, 59, 0.28), rgba(34, 207, 255, 0.34), rgba(8, 107, 255, 0.25)),
    var(--panel-strong);
}

.locked .content-card__visual::before {
  filter: blur(10px);
  animation-duration: 3.6s;
}

.locked .content-card__visual > img,
.locked .content-card__visual .visual-label {
  filter: blur(13px);
  transform: scale(1.08);
}

.locked .content-card__visual::after {
  background:
    linear-gradient(to bottom, rgba(4, 18, 31, 0.34), rgba(4, 18, 31, 0.72)),
    repeating-linear-gradient(90deg, rgba(236, 251, 255, 0.08) 0 1px, transparent 1px 9px);
}

.locked .content-card__visual--locked-video::after {
  background:
    radial-gradient(circle at 50% 50%, rgba(4, 18, 31, 0.08), rgba(4, 18, 31, 0.68) 72%),
    repeating-linear-gradient(90deg, rgba(236, 251, 255, 0.08) 0 1px, transparent 1px 9px);
  mix-blend-mode: normal;
}

.lock-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(175, 255, 56, 0.4);
  border-radius: 999px;
  color: var(--acid);
  background: rgba(4, 18, 31, 0.68);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.photo-card .content-card__visual {
  aspect-ratio: 4 / 5;
}

.section--map {
  padding-right: var(--page-pad);
  padding-bottom: 58px;
  padding-left: var(--page-pad);
}

.map-layout {
  display: grid;
  gap: 10px;
  max-width: var(--content-max);
  min-width: 0;
  margin: 0 auto;
}

.map-shell {
  position: relative;
  aspect-ratio: 1122 / 1280;
  min-height: 0;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(34, 207, 255, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(34, 207, 255, 0.2), rgba(109, 240, 59, 0.08)),
    var(--panel);
  box-shadow: 0 20px 44px var(--shadow);
}

.map-toolbar {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 6;
  display: grid;
  gap: 8px;
}

.map-toolbar .icon-button {
  border-color: rgba(236, 251, 255, 0.34);
  background: rgba(4, 18, 31, 0.76);
  font-size: 1.05rem;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.drop-map {
  position: absolute;
  inset: 0;
  overflow: hidden;
  cursor: grab;
  touch-action: none;
}

.drop-map.is-zoomed {
  cursor: grabbing;
}

.map-layer {
  position: absolute;
  inset: 0;
  transform-origin: center;
  transition: transform 120ms ease;
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: fill;
  filter: saturate(1.08) contrast(1.03);
  user-select: none;
  pointer-events: none;
}

.map-label {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  max-width: min(38vw, 164px);
  padding: 0 7px;
  border: 1px solid rgba(236, 251, 255, 0.48);
  border-radius: 6px;
  color: var(--text);
  background: rgba(4, 18, 31, 0.58);
  box-shadow:
    0 0 0 1px rgba(34, 207, 255, 0.18),
    0 10px 24px rgba(0, 5, 18, 0.35);
  font-size: clamp(0.48rem, 2vw, 0.8rem);
  font-weight: 950;
  line-height: 1.05;
  text-align: center;
  text-shadow: 0 2px 5px rgba(0, 5, 18, 0.75);
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  cursor: pointer;
  backdrop-filter: blur(5px);
}

.map-label::after {
  position: absolute;
  right: calc(50% - 4px);
  bottom: -10px;
  width: 7px;
  height: 7px;
  border: 2px solid #02101b;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  box-shadow: 0 0 14px rgba(109, 240, 59, 0.85);
  content: "";
}

.map-label:hover,
.map-label:focus-visible {
  border-color: rgba(175, 255, 56, 0.82);
  color: var(--acid);
}

.map-panel {
  min-height: 190px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 29, 51, 0.78);
  box-shadow: 0 18px 38px var(--shadow);
  overflow: hidden;
}

.map-panel__empty {
  display: grid;
  place-items: center;
  min-height: 190px;
  padding: 18px;
  color: var(--muted);
}

.map-panel__empty span {
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 10px;
  border: 1px solid rgba(34, 207, 255, 0.25);
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--cyan) 0 4px, transparent 5px),
    rgba(34, 207, 255, 0.08);
  box-shadow: 0 0 24px rgba(34, 207, 255, 0.28);
}

.map-panel__preview {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(8, 107, 255, 0.36), rgba(109, 240, 59, 0.25));
}

.map-panel__preview::before {
  position: absolute;
  inset: -35%;
  content: "";
  background:
    linear-gradient(90deg, transparent, rgba(34, 207, 255, 0.6), transparent),
    linear-gradient(140deg, rgba(109, 240, 59, 0.32), transparent 55%);
  filter: blur(14px);
  animation: drift 5s linear infinite;
}

.map-panel__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(12px);
  transform: scale(1.08);
}

.map-panel__body {
  display: grid;
  gap: 12px;
  padding: 12px;
}

.map-panel__body p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.45;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: end center;
  padding: var(--page-pad);
}

.modal.is-open {
  display: grid;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 5, 18, 0.72);
  backdrop-filter: blur(10px);
}

.modal__body {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  padding: 20px;
  border: 1px solid rgba(34, 207, 255, 0.3);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(34, 207, 255, 0.08), transparent),
    #061a2e;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.58);
}

.modal__body h2 {
  margin-bottom: 10px;
  font-size: 1.7rem;
}

.modal__body p:not(.eyebrow) {
  margin-bottom: 18px;
  color: var(--muted);
  line-height: 1.5;
}

.icon-button {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(236, 251, 255, 0.16);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(236, 251, 255, 0.05);
  cursor: pointer;
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 1.45rem;
  line-height: 1;
}

.toast {
  position: fixed;
  right: var(--page-pad);
  bottom: var(--page-pad);
  z-index: 120;
  max-width: min(360px, calc(100vw - 28px));
  padding: 12px 14px;
  border: 1px solid rgba(109, 240, 59, 0.38);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(4, 18, 31, 0.92);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.34);
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
  pointer-events: none;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drift {
  from {
    transform: translateX(-12%) translateY(-8%) rotate(0deg);
  }

  to {
    transform: translateX(12%) translateY(8%) rotate(360deg);
  }
}

@keyframes scan-pulse {
  0%,
  100% {
    opacity: 0.42;
    transform: scale(0.96);
  }

  50% {
    opacity: 0.86;
    transform: scale(1.04);
  }
}

@media (max-width: 360px) {
  :root {
    --page-pad: 10px;
  }

  .brand {
    gap: 8px;
  }

  .verify-link {
    padding: 0 10px;
  }

  .hero__actions {
    gap: 8px;
  }

  .button {
    padding: 0 8px;
    font-size: 0.84rem;
  }

  .content-card__meta {
    font-size: 0.7rem;
  }

  .map-label {
    min-height: 22px;
    max-width: 126px;
    padding: 0 5px;
    font-size: 0.49rem;
  }

  .map-toolbar {
    gap: 6px;
  }

  .icon-button {
    width: 34px;
    height: 34px;
  }
}

@media (max-width: 620px) and (max-height: 700px) {
  .hero {
    padding-bottom: 22px;
    gap: 14px;
  }

  .hero__media {
    min-height: clamp(138px, 29svh, 230px);
  }

  .hero__media img {
    width: clamp(132px, 49vw, 210px);
    max-height: 26svh;
  }

  .lead {
    margin-bottom: 12px;
  }
}

@media (min-width: 480px) {
  .hero__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 700px) {
  .topbar {
    padding-inline: 28px;
  }

  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: clamp(24px, 5vw, 54px);
    min-height: calc(92svh - 64px);
    padding: 34px 28px 46px;
  }

  .hero__media {
    min-height: 62svh;
  }

  .hero__copy {
    order: -1;
  }

  h1 {
    font-size: clamp(4rem, 8.6vw, 7.2rem);
  }

  .hero__actions {
    display: flex;
  }

  .hero__actions .button {
    width: auto;
    min-width: 150px;
  }

  .section {
    padding-inline: 28px;
  }

  .content-grid--video {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .content-grid--photo {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rail {
    grid-auto-columns: minmax(290px, 34%);
  }

  .modal {
    place-items: center;
  }
}

@media (min-width: 980px) {
  .hero,
  .section {
    padding-inline: max(36px, calc((100vw - 1180px) / 2));
  }

  .content-grid--video {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .content-grid--photo {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .map-layout {
    grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.7fr);
    align-items: stretch;
  }

  .map-panel {
    min-height: 420px;
  }

  .map-panel__empty {
    min-height: 420px;
  }
}
