:root {
  color-scheme: dark;
  --blue: #00d9ff;
  --pink: #ff21d6;
  --yellow: #ffc400;
  --ink: #05050a;
  --paper: #fafcff;
  --muted: #b2bdce;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--ink);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 76% 22%, rgb(0 102 255 / 14%), transparent 27rem),
    radial-gradient(circle at 18% 100%, rgb(255 0 202 / 12%), transparent 28rem),
    var(--ink);
  color: var(--paper);
  font-family: Montserrat, Arial, sans-serif;
}

.landing-page {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 100svh;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 3.5vw, 3.75rem) 1.5rem;
  overflow: hidden;
}

.landing-page::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--pink), var(--blue), transparent);
  box-shadow: 0 0 16px var(--blue);
}

.ambient-glow {
  position: absolute;
  z-index: -2;
  width: 28rem;
  height: 28rem;
  opacity: 0.22;
  filter: blur(90px);
  pointer-events: none;
}

.ambient-glow--pink {
  top: -15rem;
  right: -16rem;
  background: var(--pink);
}

.ambient-glow--blue {
  bottom: -19rem;
  left: -17rem;
  background: var(--blue);
}

.site-header,
.site-footer,
.hero,
.highlights {
  position: relative;
  z-index: 1;
}

.site-header {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(0.85rem, 1.5vw, 1.5rem) clamp(1.25rem, 3.5vw, 3.75rem);
  background: transparent;
}

.brand {
  display: block;
  width: clamp(8rem, 13vw, 15rem);
  line-height: 0;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 9px rgb(0 217 255 / 35%));
}

.menu-toggle {
  display: none;
  width: 2.3rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 3px;
  margin: 0.32rem 0;
  border-radius: 2px;
  background: var(--paper);
  box-shadow: 0 0 7px rgb(255 255 255 / 42%);
}

.header-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--paper);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.header-instagram svg,
.social-link svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}

.header-instagram:hover { color: var(--pink); }

.instagram-dot { fill: currentColor; stroke: none; }

.hero {
  display: grid;
  grid-template-columns: minmax(19rem, 0.8fr) minmax(26rem, 1.2fr);
  align-items: center;
  min-height: min(42rem, calc(100svh - 5rem));
  padding: clamp(6.25rem, 8vw, 7.5rem) 0 clamp(2.25rem, 4vw, 3.5rem);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 30rem;
  padding-top: clamp(1.5rem, 5vw, 4.5rem);
}

.hero__logo {
  display: none;
}

.footer-kicker {
  margin: 0;
  color: var(--blue);
  font-family: "Bebas Neue", "Barlow Condensed", Impact, sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__headline {
  width: min(100%, 26rem);
  margin: 0 0 1rem;
  line-height: 0;
}

.hero__headline img {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 11px rgb(255 196 0 / 18%));
}

.intro {
  max-width: 26rem;
  margin: 0;
  color: #dbe2eb;
  font-size: clamp(0.84rem, 1.25vw, 1rem);
  font-weight: 500;
  line-height: 1.7;
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 11.5rem);
  margin-top: 1.5rem;
  padding: 0.85rem 1.25rem 0.8rem;
  border: 2px solid var(--pink);
  border-right-color: var(--blue);
  border-radius: 999px;
  background: linear-gradient(100deg, rgb(255 33 214 / 17%), rgb(0 217 255 / 13%));
  box-shadow: 0 0 16px rgb(255 33 214 / 25%), inset 0 0 16px rgb(0 217 255 / 8%);
  color: var(--paper);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.primary-cta svg { display: none; }

.primary-cta:hover {
  box-shadow: 0 0 24px rgb(255 33 214 / 48%), inset 0 0 16px rgb(0 217 255 / 16%);
  transform: translateY(-2px);
}

.location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1.15rem 0 0;
  color: #dce8f8;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.location svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: var(--pink);
  stroke-width: 2;
  filter: drop-shadow(0 0 5px rgb(255 33 214 / 60%));
}

.hero__art {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: -4vw;
  overflow: hidden;
  pointer-events: none;
}

.hero__art::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgb(5 5 10 / 92%) 0%, rgb(5 5 10 / 66%) 20%, rgb(5 5 10 / 18%) 47%, transparent 72%),
    linear-gradient(0deg, var(--ink) 0%, transparent 25%);
}

.hero__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right top;
  opacity: 1;
  filter: saturate(1.16) contrast(1.1);
}

.faves {
  position: relative;
  z-index: 1;
  margin: -0.4rem -3.75vw 1.3rem;
  padding: 1.35rem max(1.25rem, 3.75vw) 1.55rem;
  overflow: hidden;
  border-bottom: 1px solid rgb(255 33 214 / 32%);
  background: linear-gradient(180deg, rgb(1 6 13 / 95%), rgb(4 5 11 / 98%));
}

.faves__title {
  display: grid;
  grid-template-columns: minmax(2rem, 1fr) auto minmax(2rem, 1fr);
  align-items: center;
  gap: 1rem;
  max-width: 84rem;
  margin: 0 auto 0.8rem;
  color: #dfeaff;
  font-family: "Bebas Neue", "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(1.7rem, 3vw, 3.1rem);
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.045em;
  line-height: 0.95;
  text-align: center;
  text-transform: uppercase;
}

.faves__title::before,
.faves__title::after {
  display: block;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--blue));
  box-shadow: 0 0 9px var(--blue);
}

.faves__title::after {
  background: linear-gradient(90deg, var(--blue), transparent);
}

.faves__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(0.25rem, 1vw, 1.25rem);
  max-width: 84rem;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.faves__grid li {
  display: grid;
  min-width: 0;
  place-items: center;
}

.faves__grid img {
  display: block;
  width: min(100%, 9.6rem);
  height: auto;
  mix-blend-mode: screen;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgb(114 147 191 / 42%);
  border-radius: 1.5rem;
  background: rgb(114 147 191 / 35%);
  box-shadow: 0 0 30px rgb(0 126 255 / 8%);
}

.highlight {
  display: grid;
  grid-template-columns: 6.25rem minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 1.2rem;
  align-items: center;
  min-height: 8.3rem;
  padding: 1.25rem 1.65rem;
  background: linear-gradient(120deg, rgb(12 17 31 / 94%), rgb(5 5 10 / 94%));
}

.highlight__copy { min-width: 0; }
.highlight__arrow { display: none; }

.highlight__image {
  display: block;
  grid-row: 1 / 3;
  width: 6rem;
  height: 5.25rem;
  margin: 0;
  align-self: center;
  object-fit: contain;
  mix-blend-mode: screen;
}

.highlight h2 {
  grid-column: 2;
  align-self: end;
  margin: 0;
  color: var(--paper);
  font-family: "Bebas Neue", "Barlow Condensed", Impact, sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.highlight p {
  grid-column: 2;
  align-self: start;
  max-width: 22rem;
  margin: 0.22rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.55;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.35rem;
  padding: 0.9rem 0 0.25rem;
  border-top: 1px solid rgb(255 33 214 / 60%);
}

.footer-brand {
  display: block;
  width: clamp(5.5rem, 8vw, 7.5rem);
  line-height: 0;
}

.footer-brand img {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: screen;
}

.notify-form {
  display: flex;
  align-items: center;
  width: min(100%, 29rem);
  height: 3.35rem;
  margin-left: auto;
  padding: 0.2rem 0.25rem 0.2rem 1rem;
  border: 1px solid rgb(208 224 255 / 72%);
  border-radius: 999px;
  background: rgb(3 5 11 / 82%);
}

.notify-form > svg {
  flex: 0 0 auto;
  width: 1.25rem;
  fill: none;
  stroke: var(--paper);
  stroke-width: 1.5;
}

.notify-form input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--paper);
  font: 600 0.76rem Montserrat, Arial, sans-serif;
  padding: 0 0.75rem;
}

.notify-form input::placeholder { color: #aeb6c5; }

.notify-form button {
  height: 100%;
  min-width: 10rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(105deg, #ffcb08, #ff9d00);
  box-shadow: 0 0 13px rgb(255 179 0 / 45%);
  color: #0c0b09;
  cursor: pointer;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.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;
}

.site-footer p:not(.footer-kicker) {
  margin: 0.18rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.socials { display: flex; align-items: center; gap: 0.7rem; }

.social-link {
  position: relative;
  display: grid;
  width: 2.65rem;
  height: 2.65rem;
  border: 1px solid rgb(200 214 235 / 65%);
  border-radius: 50%;
  color: var(--paper);
  place-items: center;
  transition: color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.social-link svg { width: 1.15rem; height: 1.15rem; fill: currentColor; stroke: none; }
.social-link--instagram svg { fill: none; stroke: currentColor; stroke-width: 1.9; }
.social-link--instagram:hover { border-color: var(--pink); color: var(--pink); box-shadow: 0 0 12px rgb(255 33 214 / 35%); transform: translateY(-2px); }
.social-link--soon { cursor: default; opacity: 0.42; }
.social-link small { position: absolute; right: -0.45rem; bottom: -0.25rem; padding: 0.12rem 0.25rem; border-radius: 0.2rem; background: #202535; color: var(--muted); font-size: 0.42rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; }

@media (max-width: 780px) {
  .landing-page { padding: 0 1.25rem 1.5rem; }
  .site-header { top: 0; right: 0; left: 0; padding: 1rem 1.25rem; }
  .header-instagram span { display: none; }
  .header-contact { font-size: 0.9rem; }
  .hero { display: block; min-height: 42rem; padding: 6.25rem 0 4rem; }
  .hero__content { max-width: 23rem; }
  .hero__logo { display: block; width: min(100%, 12.5rem); margin: 0 0 0.8rem; mix-blend-mode: screen; }
  .hero__headline { width: min(100%, 20rem); }
  .hero__art { top: 0; right: -1.25rem; bottom: 0; left: -1.25rem; opacity: 0.86; }
  .hero__art::after { background: linear-gradient(90deg, rgb(5 5 10 / 94%) 0%, rgb(5 5 10 / 54%) 60%, transparent 100%), linear-gradient(0deg, var(--ink) 0%, transparent 30%); }
  .faves { margin-inline: -1.25rem; padding: 1.1rem 1.25rem 1.25rem; }
  .faves__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.4rem 0.75rem; }
  .highlights { grid-template-columns: 1fr; border-radius: 0.9rem; }
  .highlight { grid-template-columns: 4.3rem 1fr; column-gap: 0.9rem; min-height: 0; padding: 1.15rem; }
  .highlight__image { width: 4rem; height: 3.5rem; }
  .highlight h2 { align-self: end; font-size: 1.45rem; }
  .highlight p { align-self: start; font-size: 0.78rem; }
  .site-footer { flex-wrap: wrap; align-items: center; }
  .notify-form { order: 3; width: 100%; margin-left: 0; }
}

@media (min-width: 781px) {
  .highlights {
    position: absolute;
    z-index: 4;
    top: clamp(0.8rem, 1.35vw, 1.5rem);
    right: clamp(1.25rem, 3.5vw, 3.75rem);
    left: clamp(11rem, 17vw, 16rem);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-radius: 0.75rem;
    background: rgb(4 8 17 / 75%);
    backdrop-filter: blur(8px);
  }

  .highlight {
    grid-template-columns: 2.75rem minmax(0, 1fr);
    column-gap: 0.6rem;
    min-height: 4.25rem;
    padding: 0.55rem 0.75rem;
  }

  .highlight__image {
    width: 2.45rem;
    height: 2.45rem;
  }

  .highlight h2 { font-size: 1.05rem; }
  .highlight p { margin-top: 0.05rem; font-size: 0.59rem; line-height: 1.35; }
}

@media (max-width: 430px) {
  .landing-page {
    max-width: 430px;
    padding: 0 0.85rem 1rem;
    border-right: 1px solid rgb(216 226 238 / 74%);
    border-left: 1px solid rgb(216 226 238 / 74%);
    border-radius: 0 0 1.75rem 1.75rem;
    box-shadow: inset 0 0 0 1px rgb(255 255 255 / 8%);
  }
  .landing-page::before { box-shadow: 0 0 12px var(--blue); }
  .site-header { padding: 0.75rem 1rem; align-items: flex-start; }
  .brand { display: none; }
  .menu-toggle { display: block; margin-left: auto; }
  .header-contact { display: none; }
  .hero { min-height: 41.5rem; padding: 1.45rem 1rem 3rem; }
  .hero__content { max-width: 15.75rem; padding-top: 1.8rem; }
  .hero__logo { width: 12.2rem; margin: 0 0 0.55rem -0.15rem; }
  .hero__headline { width: 15.5rem; margin-bottom: 0.85rem; }
  .intro { max-width: 14.5rem; font-size: 0.72rem; line-height: 1.55; }
  .hero__art { right: -0.85rem; left: -0.85rem; opacity: 0.96; }
  .hero__art img { object-position: 57% 29%; }
  .hero__art::after { background: linear-gradient(90deg, rgb(5 5 10 / 93%) 0%, rgb(5 5 10 / 60%) 43%, transparent 92%), linear-gradient(0deg, var(--ink) 1%, transparent 34%); }
  .primary-cta { width: 14rem; margin-top: 1.1rem; padding: 0.7rem 0.95rem 0.65rem 1.1rem; font-size: 0.95rem; }
  .location { margin-top: 0.9rem; font-size: 0.78rem; }
  .faves { margin: -1.25rem -0.85rem 1rem; padding: 1.15rem 0.85rem 1.25rem; border-top: 1px solid rgb(0 217 255 / 28%); }
  .faves__title { grid-template-columns: minmax(1rem, 1fr) auto minmax(1rem, 1fr); gap: 0.65rem; margin-bottom: 0.95rem; font-size: 1.55rem; }
  .faves__title::before, .faves__title::after { display: block; }
  .faves__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.15rem 0.35rem; }
  .faves__grid img { width: 5.5rem; }
  .highlights { gap: 0.55rem; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
  .highlight { position: relative; display: grid; grid-template-columns: 4.25rem minmax(0, 1fr) 1.15rem; grid-template-rows: auto; column-gap: 0.75rem; min-height: 6.2rem; padding: 0.78rem 0.75rem; border: 1px solid rgb(114 147 191 / 47%); border-radius: 0.85rem; background: linear-gradient(105deg, rgb(13 18 33 / 95%), rgb(4 5 10 / 96%)); }
  .highlight__image { grid-row: auto; width: 3.8rem; height: 3.6rem; }
  .highlight__copy { align-self: center; }
  .highlight h2, .highlight p { grid-column: auto; }
  .highlight h2 { margin: 0; font-size: 1.28rem; line-height: 1; }
  .highlight p { margin-top: 0.28rem; font-size: 0.67rem; line-height: 1.4; }
  .highlight__arrow { display: block; align-self: center; color: var(--paper); font: 2rem/1 Arial, sans-serif; }
  .site-footer { display: block; margin-top: 1rem; padding-top: 1.3rem; border-top: 0; text-align: center; }
  .footer-brand { width: 10rem; margin: 0 auto 0.6rem; }
  .footer-kicker { color: var(--pink); font-size: 1.15rem; }
  .site-footer p:not(.footer-kicker) { font-size: 0.7rem; }
  .notify-form { height: 2.85rem; margin-top: 0.85rem; padding-left: 0.8rem; }
  .notify-form button { min-width: 7.2rem; font-size: 0.95rem; }
  .socials { justify-content: center; margin-top: 1rem; }
  .social-link { width: 2.35rem; height: 2.35rem; }
  .desktop-break { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}
