:root {
  --magenta: #e20074;
  --ink: #181818;
  --paper: #f4f1ea;
  --muted: #bfbfbf;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  color-scheme: dark;
  font-family: Inter, Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #111713;
}

body {
  min-height: 100svh;
  margin: 0;
  background: #181818;
  color: white;
}

body.modal-open {
  overflow: hidden;
}

button,
a {
  font: inherit;
}

.page-shell {
  min-height: 100svh;
  display: grid;
  align-items: start;
  justify-items: center;
  padding: 0;
  background: #181818;
}

.desktop-experience {
  display: none;
}

.poster-shell {
  position: relative;
  width: 100%;
  max-width: 100vw;
  height: max(100svh, calc(100vw * 1078 / 516));
  overflow: hidden;
  border-radius: 0;
  background: #f7f7f5;
  box-shadow: none;
}

.poster-art {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  user-select: none;
}

.hotspot {
  position: absolute;
  display: block;
  border: 0;
  border-radius: 12px;
  background: rgba(226, 0, 116, 0);
  cursor: pointer;
  transition: background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.hotspot:hover,
.hotspot:focus-visible {
  background: rgba(226, 0, 116, 0.16);
  box-shadow: 0 0 0 3px white, 0 0 0 7px var(--magenta);
  outline: 0;
  transform: rotate(-1deg) scale(1.01);
}

.hotspot-satellite {
  left: 8.8%;
  top: 49.4%;
  width: 41%;
  height: 19.1%;
}

.hotspot-stargazing {
  left: 55.6%;
  top: 52.6%;
  width: 39.5%;
  height: 16.1%;
}

.hotspot-photo {
  left: 9.5%;
  top: 70.5%;
  width: 39.5%;
  height: 17.5%;
}

.hotspot-travel {
  left: 55.8%;
  top: 70%;
  width: 39.5%;
  height: 18%;
}

.modal {
  width: min(92vw, 620px);
  max-height: min(90svh, 920px);
  margin: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: white;
  overflow: visible;
}

.modal::backdrop {
  background: rgba(4, 6, 5, 0.76);
  backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  max-height: min(90svh, 920px);
  overflow: auto;
  padding: clamp(28px, 6vw, 46px);
  border-radius: clamp(26px, 7vw, 44px);
  background: var(--ink);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.55);
}

.modal-card-tall {
  padding-bottom: clamp(24px, 5vw, 40px);
}

.modal-close {
  position: sticky;
  top: 0;
  float: right;
  width: clamp(52px, 12vw, 64px);
  height: clamp(52px, 12vw, 64px);
  margin: calc(clamp(8px, 2vw, 12px) * -1) calc(clamp(8px, 2vw, 12px) * -1) 12px 16px;
  border: 0;
  border-radius: 18px;
  background: var(--magenta);
  cursor: pointer;
  z-index: 2;
}

.modal-close::before,
.modal-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58%;
  height: 3px;
  border-radius: 3px;
  background: #111;
}

.modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal-close:focus-visible,
.cta:focus-visible {
  outline: 3px solid white;
  outline-offset: 4px;
}

.modal-kicker {
  margin: 0 0 10px;
  color: var(--magenta);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.modal h2 {
  clear: none;
  max-width: 12ch;
  margin: 0 0 14px;
  color: white;
  font-size: clamp(2rem, 7vw, 4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.modal p {
  max-width: 30rem;
  margin: 0 0 24px;
  color: #eeeeee;
  font-size: clamp(1.05rem, 3.6vw, 1.35rem);
  line-height: 1.32;
}

.photo-card,
.wide-art {
  overflow: hidden;
  margin: 26px 0 28px;
  border: 8px solid var(--paper);
  border-radius: 8px;
  background: #2b2b2b;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.34);
}

.photo-card {
  aspect-ratio: 16 / 10;
  transform: rotate(2deg);
}

.photo-card img,
.wide-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-card-satellite img {
  width: 152%;
  height: auto;
  max-width: none;
  object-fit: initial;
  transform: translate(-24%, -28%);
}

.photo-card-travel {
  transform: rotate(-2deg);
}

.photo-card-travel img {
  width: 148%;
  height: auto;
  max-width: none;
  object-fit: initial;
  transform: translate(-18%, -32%);
}

.wide-art {
  aspect-ratio: 16 / 7;
  border-width: 6px;
  transform: rotate(-1deg);
}

.wide-art img {
  object-position: 50% 48%;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  max-width: 100%;
  padding: 0.95rem 1.45rem;
  border-radius: 8px;
  background: var(--magenta);
  color: white;
  font-size: clamp(1rem, 3.8vw, 1.2rem);
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
}

.fine-print {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.event-list {
  display: grid;
  gap: 12px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.event-list li {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 86px;
  padding: 14px 16px;
  border-left: 8px solid var(--magenta);
  background: #e8e8e8;
  color: #171717;
}

.event-list time {
  color: #704816;
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 0.9;
}

.event-list time span {
  display: block;
  margin-bottom: 6px;
  color: var(--magenta);
  font-size: 0.85rem;
  line-height: 1;
  text-transform: uppercase;
}

.event-list strong,
.event-list div span {
  display: block;
}

.event-list strong {
  font-size: clamp(1.1rem, 4vw, 1.55rem);
  line-height: 1.05;
}

.event-list div span {
  margin-top: 5px;
  color: #757575;
  font-size: clamp(0.94rem, 3.2vw, 1.18rem);
  line-height: 1.2;
}

.tip-group {
  margin: 26px 0;
}

.tip-group h3 {
  margin: 0 0 16px;
  color: #777;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tip-group ol {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: tips;
}

.tip-group li {
  position: relative;
  min-height: 44px;
  padding-left: 60px;
  color: #d0d0d0;
  font-size: clamp(1.02rem, 3.7vw, 1.28rem);
  line-height: 1.25;
  counter-increment: tips;
}

.tip-group li::before {
  content: counter(tips);
  position: absolute;
  top: -5px;
  left: 0;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--magenta);
  color: white;
  font-size: 1rem;
  font-weight: 900;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (min-width: 1024px) {
  body {
    position: relative;
    background: linear-gradient(140deg, #101713 0%, #1b241f 42%, #070908 100%);
  }

  body::before {
    content: "";
    position: fixed;
    inset: -34px;
    background: url("assets/landing-mobile.png") center / cover no-repeat;
    filter: blur(9px) saturate(0.88);
    opacity: 0.34;
    pointer-events: none;
    transform: scale(1.04);
  }

  body::after {
    content: "";
    position: fixed;
    inset: 0;
    background:
      linear-gradient(90deg, rgba(7, 9, 8, 0.96), rgba(7, 9, 8, 0.78) 45%, rgba(7, 9, 8, 0.9)),
      radial-gradient(circle at 75% 18%, rgba(226, 0, 116, 0.18), transparent 28rem);
    pointer-events: none;
  }

  .page-shell {
    position: relative;
    z-index: 1;
    display: block;
    padding: clamp(28px, 4vw, 56px);
  }

  .poster-shell {
    display: none;
  }

  .desktop-experience {
    display: grid;
    grid-template-columns: minmax(300px, 0.82fr) minmax(430px, 1fr);
    gap: clamp(28px, 4vw, 64px);
    align-items: center;
    width: min(100%, 1280px);
    min-height: calc(100svh - clamp(56px, 8vw, 112px));
    margin: 0 auto;
  }

  .desktop-copy {
    max-width: 560px;
    padding-block: 22px;
  }

  .brand-lockup {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: clamp(30px, 5vw, 56px);
  }

  .t-mark {
    display: grid;
    place-items: center;
    width: clamp(72px, 7vw, 96px);
    aspect-ratio: 1;
    background: var(--magenta);
    color: white;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.6rem, 6vw, 4.9rem);
    font-weight: 700;
    line-height: 1;
  }

  .brand-rule {
    width: 2px;
    height: clamp(74px, 7vw, 96px);
    background: rgba(255, 255, 255, 0.86);
  }

  .npf-mark {
    position: relative;
    display: block;
    width: clamp(52px, 5vw, 68px);
    aspect-ratio: 1;
    border-radius: 7px;
    background: #f6f7f4;
  }

  .npf-mark::before {
    content: "";
    position: absolute;
    inset: 18% 25% 16%;
    background: #15231d;
    clip-path: polygon(50% 0, 87% 16%, 80% 72%, 50% 100%, 20% 72%, 13% 16%);
  }

  .npf-text {
    color: white;
    font-size: clamp(2rem, 3.6vw, 3.35rem);
    font-weight: 800;
    line-height: 0.82;
  }

  .desktop-kicker {
    margin: 0 0 10px;
    color: white;
    font-size: clamp(1.1rem, 1.6vw, 1.42rem);
    font-weight: 900;
    line-height: 1.05;
  }

  .desktop-title {
    margin: 0;
    color: white;
    font-size: clamp(5.2rem, 9.7vw, 9.4rem);
    font-style: italic;
    font-weight: 950;
    letter-spacing: 0;
    line-height: 0.76;
  }

  .desktop-title span,
  .desktop-title em {
    display: block;
  }

  .desktop-title em {
    color: var(--magenta);
  }

  .desktop-intro {
    max-width: 560px;
    margin: clamp(28px, 4vw, 44px) 0 24px;
    color: #f3f3ef;
    font-size: clamp(1.24rem, 1.7vw, 1.58rem);
    line-height: 1.25;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.46);
  }

  .network-badge {
    display: inline-block;
    margin: 16px 0 0;
    padding: 0.3rem 0.85rem 0.44rem;
    border: 3px solid white;
    border-radius: 999px;
    background: #111;
    color: var(--magenta);
    font-size: clamp(1.35rem, 2.4vw, 2.2rem);
    font-style: italic;
    font-weight: 950;
    line-height: 1;
    text-shadow:
      -1px -1px 0 white,
      1px -1px 0 white,
      -1px 1px 0 white,
      1px 1px 0 white;
    transform: rotate(-2deg);
  }

  .desktop-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(18px, 2.4vw, 28px);
    align-content: center;
  }

  .feature-card {
    display: grid;
    min-height: clamp(260px, 29vw, 360px);
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 8px;
    background: #191919;
    color: white;
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.38);
    cursor: pointer;
    text-align: left;
    transform: rotate(var(--tilt, -1deg));
    transition: transform 180ms ease, box-shadow 180ms ease;
  }

  .feature-card:nth-child(even) {
    --tilt: 1.2deg;
  }

  .feature-card:hover,
  .feature-card:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 4px white, 0 0 0 9px var(--magenta), 0 30px 70px rgba(0, 0, 0, 0.48);
    transform: rotate(0deg) translateY(-5px);
  }

  .feature-image {
    display: block;
    min-height: 0;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border: 8px solid var(--paper);
    border-radius: 8px;
    background: #2a2a2a;
  }

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

  .feature-satellite .feature-image img {
    width: 142%;
    height: auto;
    max-width: none;
    transform: translate(-21%, -32%);
  }

  .feature-photo .feature-image img {
    object-position: 50% 0%;
  }

  .feature-travel .feature-image img {
    width: 138%;
    height: auto;
    max-width: none;
    transform: translate(-15%, -29%);
  }

  .feature-text {
    display: grid;
    gap: 6px;
    padding: clamp(18px, 2vw, 24px);
  }

  .feature-text span {
    color: white;
    font-size: clamp(1.25rem, 1.8vw, 1.7rem);
    font-weight: 950;
    line-height: 1;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
  }

  .feature-text small {
    color: #d8d8d8;
    font-size: clamp(0.96rem, 1.18vw, 1.08rem);
    line-height: 1.2;
  }
}

@media (min-width: 1024px) and (max-width: 1180px) {
  .desktop-experience {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: 0;
  }

  .desktop-copy {
    max-width: 760px;
  }

  .desktop-title {
    font-size: clamp(4.8rem, 14vw, 8rem);
  }
}

@media (max-width: 420px) {
  .modal {
    width: 100vw;
    max-height: 100svh;
  }

  .modal-card {
    min-height: 100svh;
    max-height: 100svh;
    border-radius: 0;
  }

  .event-list li {
    grid-template-columns: 70px 1fr;
    gap: 12px;
    padding: 12px;
  }
}
