@font-face {
  font-family: "Aldrich";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/aldrich-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Geo";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/geo-italic-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Geo";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/geo-latin.woff2") format("woff2");
}

:root {
  --bg: #060409;
  --panel: #17111f;
  --panel-deep: #0d0913;
  --text: #ece7f3;
  --muted: #c9c2d6;
  --dim: #8b839b;
  --accent: #b295ea;
  --accent-line: color-mix(in srgb, var(--accent) 48%, transparent);
  --accent-soft: color-mix(in srgb, var(--accent) 18%, transparent);
  --panel-border: color-mix(in srgb, var(--accent) 30%, transparent);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Aldrich", system-ui, sans-serif;
}

body.modal-open {
  overflow: hidden;
}

body.motion-reduce .landing-shell {
  min-height: 100svh;
}

button,
input,
textarea {
  font: inherit;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: #f4f1fa;
}

::selection {
  background: color-mix(in srgb, var(--accent) 35%, transparent);
}

@keyframes leader-dot-pulse {
  0% {
    filter:
      drop-shadow(0 0 4px rgba(255, 255, 255, 0.84))
      drop-shadow(0 0 0 color-mix(in srgb, var(--accent) 65%, transparent));
  }
  70% {
    filter:
      drop-shadow(0 0 7px rgba(255, 255, 255, 0.92))
      drop-shadow(0 0 18px color-mix(in srgb, var(--accent) 60%, transparent));
  }
  100% {
    filter:
      drop-shadow(0 0 4px rgba(255, 255, 255, 0.84))
      drop-shadow(0 0 0 color-mix(in srgb, var(--accent) 0%, transparent));
  }
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

@keyframes backdrop-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes title-load-glow {
  0%,
  100% {
    color: #f4f1fa;
    filter: brightness(1);
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.7);
  }
  44% {
    color: #f0e7ff;
    filter: brightness(1.08);
    text-shadow:
      0 4px 40px rgba(0, 0, 0, 0.7),
      0 0 10px rgba(189, 139, 255, 0.88),
      0 0 24px rgba(151, 84, 255, 0.72),
      0 0 58px rgba(124, 50, 236, 0.56);
  }
}

@keyframes title-purple-pulse {
  0%,
  100% {
    color: #f4f1fa;
    filter: brightness(1);
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.7);
  }
  50% {
    color: #f0e7ff;
    filter: brightness(1.08);
    text-shadow:
      0 4px 40px rgba(0, 0, 0, 0.7),
      0 0 10px rgba(189, 139, 255, 0.88),
      0 0 24px rgba(151, 84, 255, 0.72),
      0 0 58px rgba(124, 50, 236, 0.56);
  }
}

@keyframes title-type-in {
  from {
    width: 0;
  }
  to {
    width: 10.4ch;
  }
}

@keyframes title-caret {
  0%,
  48% {
    border-color: rgba(178, 149, 234, 0.88);
  }
  49%,
  100% {
    border-color: transparent;
  }
}

@keyframes title-meta-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes scroll-cue-drift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

@keyframes scroll-cue-in {
  from {
    opacity: 0;
    filter: blur(4px);
  }
  to {
    opacity: 1;
    filter: none;
  }
}

.landing-shell {
  position: relative;
  display: block;
  width: 100%;
  min-height: 356svh;
  overflow: visible;
  background: var(--bg);
}

.haze,
.vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.haze {
  z-index: 0;
  background:
    radial-gradient(120% 85% at 50% 6%, color-mix(in srgb, var(--accent) 24%, transparent) 0%, transparent 46%),
    radial-gradient(120% 90% at 50% 118%, color-mix(in srgb, var(--accent) 18%, transparent) 0%, transparent 52%);
}

.vignette {
  z-index: 0;
  background: radial-gradient(130% 100% at 50% 45%, transparent 55%, rgba(0, 0, 0, 0.55) 100%);
}

.scroll-indicator {
  position: fixed;
  top: max(18px, env(safe-area-inset-top));
  left: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  width: 100%;
  margin: 0;
  color: rgba(236, 231, 243, 0.76);
  font-family: "Geo", monospace;
  font-size: clamp(1.8rem, 4.9vh, 3.2rem);
  letter-spacing: 3.2px;
  line-height: 1;
  pointer-events: none;
  text-align: center;
  text-transform: uppercase;
  text-shadow:
    0 2px 3px rgba(0, 0, 0, 0.98),
    0 7px 20px rgba(0, 0, 0, 0.88),
    0 0 12px rgba(255, 255, 255, 0.22),
    0 0 28px rgba(151, 84, 255, 0.5);
  opacity: 0;
  filter: blur(4px);
  transform: translateY(0);
  transition:
    opacity 0.34s ease,
    filter 0.34s ease;
  animation:
    scroll-cue-drift 2.8s ease-in-out infinite,
    scroll-cue-in 0.7s ease 4.55s 1 forwards;
}

.scroll-indicator::after {
  display: block;
  width: 0.42em;
  height: 0.42em;
  border-right: 0.14em solid rgba(203, 181, 246, 0.94);
  border-bottom: 0.14em solid rgba(203, 181, 246, 0.94);
  content: "";
  filter:
    drop-shadow(0 0 7px rgba(151, 84, 255, 0.84))
    drop-shadow(0 0 14px rgba(151, 84, 255, 0.46));
  transform: rotate(45deg);
}

body.has-scrolled .scroll-indicator {
  animation: none;
  opacity: 0;
  filter: blur(4px);
}

.cover-frame {
  position: sticky;
  top: 4svh;
  z-index: 1;
  aspect-ratio: 1214 / 1186;
  height: min(92svh, 91.8vw);
  margin: 0 auto;
  overflow: visible;
}

.cover-stage {
  position: absolute;
  inset: 0;
  animation: floaty 10s ease-in-out infinite;
  will-change: transform;
}

.cover-art,
.cover-fragment {
  position: absolute;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.cover-art {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
  filter: drop-shadow(0 26px 50px rgba(0, 0, 0, 0.6));
}

.cover-fragment {
  z-index: 2;
  left: var(--fragment-left);
  top: var(--fragment-top);
  width: var(--fragment-width);
  height: var(--fragment-height);
  object-fit: contain;
  transform-origin: var(--fragment-origin-x) var(--fragment-origin-y);
  --fragment-left: 0%;
  --fragment-top: 0%;
  --fragment-width: 100%;
  --fragment-height: 100%;
  --fragment-origin-x: 50%;
  --fragment-origin-y: 50%;
  --fragment-x: 0px;
  --fragment-y: 0px;
  --fragment-scale: 1;
  --fragment-rotate: 0deg;
  --fragment-opacity: 0;
  --fragment-blur: 8px;
  opacity: var(--fragment-opacity);
  transform:
    translate3d(var(--fragment-x), var(--fragment-y), 0)
    scale(var(--fragment-scale))
    rotate(var(--fragment-rotate));
  filter:
    blur(var(--fragment-blur))
    drop-shadow(0 18px 34px rgba(0, 0, 0, 0.4));
  will-change: transform, opacity, filter;
}

.cover-static-fragment {
  --fragment-opacity: 1;
  --fragment-blur: 0px;
  filter: none;
  will-change: auto;
}

.fragment-cup1-main {
  --fragment-left: 13.756178%;
  --fragment-top: 40.303541%;
  --fragment-width: 27.759473%;
  --fragment-height: 32.546374%;
  --fragment-origin-x: 40.504451%;
  --fragment-origin-y: 48.227979%;
}

.static-cup-handle {
  --fragment-left: 16.062603%;
  --fragment-top: 33.979764%;
  --fragment-width: 26.523888%;
  --fragment-height: 19.561551%;
  --fragment-origin-x: 26.15528%;
  --fragment-origin-y: 46.112069%;
}

.fragment-cup1-front-left-shard {
  --fragment-left: 4.448105%;
  --fragment-top: 66.779089%;
  --fragment-width: 8.237232%;
  --fragment-height: 7.082631%;
  --fragment-origin-x: 55.26%;
  --fragment-origin-y: 45.47619%;
}

.fragment-cup1-front-tall-shard {
  --fragment-left: 10.461285%;
  --fragment-top: 63.406408%;
  --fragment-width: 10.214168%;
  --fragment-height: 12.731872%;
  --fragment-origin-x: 34.645161%;
  --fragment-origin-y: 51.788079%;
}

.fragment-cup3-main {
  --fragment-left: 44.728171%;
  --fragment-top: 9.612142%;
  --fragment-width: 29.489292%;
  --fragment-height: 33.136594%;
  --fragment-origin-x: 58.569832%;
  --fragment-origin-y: 40.402036%;
}

.static-pink-shard {
  --fragment-left: 56.01318%;
  --fragment-top: 31.281619%;
  --fragment-width: 14.085667%;
  --fragment-height: 15.514334%;
  --fragment-origin-x: 28.304094%;
  --fragment-origin-y: 49.75%;
}

.fragment-cup3-foreground-strip {
  --fragment-left: 49.835255%;
  --fragment-top: 26.053963%;
  --fragment-width: 11.943987%;
  --fragment-height: 6.323777%;
  --fragment-origin-x: 68.358621%;
  --fragment-origin-y: -0.853333%;
}

.fragment-cup3-overlap-shard {
  --fragment-left: 57.578254%;
  --fragment-top: 22.681282%;
  --fragment-width: 7.907743%;
  --fragment-height: 10.623946%;
  --fragment-origin-x: 55.916667%;
  --fragment-origin-y: 50.063492%;
}

.fragment-piece-pattern-right-side {
  --fragment-left: 75.53542%;
  --fragment-top: 53.456998%;
  --fragment-width: 15.897858%;
  --fragment-height: 17.959528%;
  --fragment-origin-x: 84.694301%;
  --fragment-origin-y: 42%;
}

.hotspot {
  position: absolute;
  z-index: 4;
  display: block;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
  outline: none;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease;
}

.hotspot.is-fragment-ready {
  opacity: 1;
  pointer-events: auto;
}

.hotspot:disabled {
  cursor: default;
}

.hotspot-author {
  --leader-width: 214px;
  left: 51%;
  top: 88%;
  width: 150px;
  height: 130px;
}

.hotspot-influencer {
  --leader-width: 260px;
  left: 26%;
  top: 57%;
  width: 150px;
  height: 170px;
}

.hotspot-contact {
  --leader-width: 150px;
  left: 84%;
  top: 62.5%;
  width: 120px;
  height: 120px;
}

.hotspot-buy {
  --leader-width: 166px;
  left: 57%;
  top: 20%;
  width: 170px;
  height: 150px;
}

.hotspot:focus-visible {
  outline: 1px solid color-mix(in srgb, var(--accent) 70%, transparent);
  outline-offset: 8px;
}

.leader {
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--leader-width, 240px);
  height: 60px;
  pointer-events: none;
  opacity: 0;
  transform: translate(-2px, -52px);
  transition:
    opacity 0.45s,
    transform 0.45s;
}

.leader::before {
  position: absolute;
  left: -4px;
  top: 46px;
  z-index: 1;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  content: "";
  animation: leader-dot-pulse 2.8s ease-out infinite;
  transition:
    filter 0.3s ease,
    opacity 0.3s ease;
}

.leader svg {
  position: absolute;
  left: 0;
  top: 0;
  width: var(--leader-width, 240px);
  height: 60px;
  overflow: visible;
}

.leader polyline {
  stroke: rgba(255, 255, 255, 0.85);
  stroke-width: 1.4;
}

.leader circle {
  display: none;
}

.hotspot:hover .leader::before,
.hotspot:focus-visible .leader::before {
  opacity: 0.72;
  filter:
    drop-shadow(0 0 9px rgba(255, 255, 255, 0.96))
    drop-shadow(0 0 24px color-mix(in srgb, var(--accent) 72%, transparent));
}

.leader span {
  position: absolute;
  left: 34px;
  top: 2px;
  width: calc(var(--leader-width, 240px) - 38px);
  color: #fff;
  font-family: "Geo", monospace;
  font-size: 19px;
  letter-spacing: 2.5px;
  line-height: 26px;
  text-align: center;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.85);
  white-space: nowrap;
}

.hotspot.is-fragment-ready .leader {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-2px, -56px);
}

.hotspot-contact .leader {
  left: auto;
  right: 50%;
  transform: translate(2px, -52px) scaleX(-1);
}

.hotspot-contact .leader span {
  left: auto;
  right: 4px;
  transform: scaleX(-1);
}

.hotspot-contact.is-fragment-ready .leader {
  transform: translate(2px, -56px) scaleX(-1);
}

.title-block {
  position: absolute;
  left: 5%;
  bottom: 6.5%;
  z-index: 3;
  pointer-events: none;
}

.title-block p {
  margin: 0;
  color: var(--muted);
  font-family: "Geo", monospace;
  font-size: 14px;
  letter-spacing: 4px;
  opacity: 0;
  transform: translateY(8px);
  text-transform: uppercase;
  animation: title-meta-in 0.7s ease 2.1s 1 forwards;
}

.title-block p:first-child {
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 6px;
  animation-delay: 1.9s;
}

.title-block h1 {
  margin: 0 0 16px;
}

.title-trigger {
  display: flex;
  align-items: center;
  gap: 0.34em;
  padding: 0;
  border: 0;
  background: transparent;
  color: #f4f1fa;
  cursor: pointer;
  font-family: "Geo", monospace;
  font-size: clamp(2.6rem, 7vh, 4.6rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1;
  pointer-events: auto;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.7);
  transition:
    color 0.25s ease,
    text-shadow 0.25s ease,
    filter 0.25s ease;
  white-space: nowrap;
  animation: title-load-glow 1.65s ease 1.8s 1;
}

.title-trigger span {
  display: inline;
}

.title-trigger .title-prefix {
  display: inline-block;
  flex: 0 0 auto;
  width: 0.42em;
  height: 0.42em;
  border-right: 0.14em solid rgba(203, 181, 246, 0.94);
  border-bottom: 0.14em solid rgba(203, 181, 246, 0.94);
  filter:
    drop-shadow(0 0 7px rgba(151, 84, 255, 0.84))
    drop-shadow(0 0 14px rgba(151, 84, 255, 0.46));
  transform: rotate(-45deg);
}

.title-trigger .title-copy {
  display: inline-block;
  width: 0;
  overflow: hidden;
  border-right: 1px solid rgba(178, 149, 234, 0.88);
  white-space: nowrap;
  animation:
    title-type-in 1.25s steps(11, end) 0.35s 1 forwards,
    title-caret 0.72s step-end 0.35s 4 forwards;
}

.title-trigger:hover,
.title-trigger:focus-visible {
  color: #f0e7ff;
  filter: brightness(1.08);
  outline: none;
  text-shadow:
    0 4px 40px rgba(0, 0, 0, 0.7),
    0 0 10px rgba(189, 139, 255, 0.88),
    0 0 24px rgba(151, 84, 255, 0.72),
    0 0 58px rgba(124, 50, 236, 0.56);
}

.title-trigger:focus-visible {
  outline: 1px solid color-mix(in srgb, var(--accent) 70%, transparent);
  outline-offset: 8px;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(6, 4, 10, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: backdrop-in 0.28s ease both;
}

.modal-panel {
  position: relative;
  width: min(560px, 94vw);
  max-height: 86svh;
  overflow-y: auto;
  padding: clamp(26px, 5vw, 40px) clamp(22px, 5vw, 40px) clamp(26px, 5vw, 38px);
  border: 1px solid var(--panel-border);
  border-radius: 5px;
  background: linear-gradient(160deg, var(--panel) 0%, var(--panel-deep) 100%);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.7),
    0 0 70px var(--accent-soft);
  animation: panel-in 0.34s cubic-bezier(0.2, 0.8, 0.25, 1) both;
}

.scroll-description-backdrop {
  --description-opacity: 0;
  position: fixed;
  inset: 0;
  z-index: 5;
  background: rgba(6, 4, 10, 0.72);
  opacity: var(--description-opacity);
  pointer-events: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: opacity 0.12s linear;
  will-change: opacity;
}

.scroll-description-backdrop.is-visible {
  pointer-events: auto;
}

.scroll-description {
  --description-y: 112vh;
  --description-opacity: 0;
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 6;
  opacity: var(--description-opacity);
  pointer-events: none;
  transform: translate3d(-50%, calc(-50% + var(--description-y)), 0);
  transition: opacity 0.12s linear;
  animation: none;
  will-change: transform, opacity;
}

.scroll-description.is-visible {
  pointer-events: auto;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  color: #cfc8dc;
  cursor: pointer;
  font-family: "Geo", monospace;
  font-size: 16px;
  line-height: 1;
}

.modal-close:hover,
.modal-close:focus-visible {
  border-color: var(--accent);
  color: #fff;
  outline: none;
}

.modal-kicker {
  margin: 0 0 12px;
  color: var(--accent);
  font-family: "Geo", monospace;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.modal-content h2 {
  margin: 0;
  color: #f4f1fa;
  font-family: "Geo", monospace;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.modal-content p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.book-copy p {
  margin-bottom: 20px;
  color: #ded8e9;
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.78;
}

.book-copy p:last-child {
  margin-bottom: 0;
}

.rule {
  width: 52px;
  height: 1px;
  margin: 16px 0 22px;
  background: var(--accent-line);
}

.author-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.author-photo {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 132px;
  height: 164px;
  gap: 12px;
  border: 1px dashed var(--panel-border);
  border-radius: 5px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  text-align: center;
}

.author-photo > span:last-child {
  color: var(--dim);
  font-family: "Geo", monospace;
  font-size: 10px;
  letter-spacing: 2px;
  line-height: 1.6;
}

.author-icon {
  position: relative;
  display: block;
  width: 46px;
  height: 46px;
}

.author-icon::before,
.author-icon::after {
  position: absolute;
  left: 50%;
  content: "";
  transform: translateX(-50%);
}

.author-icon::before {
  top: 0;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--accent-line);
  border-radius: 50%;
}

.author-icon::after {
  bottom: 0;
  width: 34px;
  height: 20px;
  border: 1.5px solid var(--accent-line);
  border-bottom: none;
  border-radius: 18px 18px 0 0;
}

.author-layout > div:last-child {
  flex: 1;
  min-width: 220px;
}

.placeholder-note,
.modal-content .placeholder-note {
  margin: 22px 0 0;
  color: #7c748c;
  font-size: 12px;
  font-style: italic;
  line-height: 1.6;
}

blockquote {
  margin: 0 0 20px;
  padding: 18px 22px;
  border-left: 2px solid var(--accent-line);
  background: rgba(255, 255, 255, 0.03);
  color: #d6d0e2;
  font-size: 14.5px;
  font-style: italic;
  line-height: 1.8;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: #9089a0;
  font-family: "Geo", monospace;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-family: "Aldrich", sans-serif;
  font-size: 14px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent-line);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button,
.buy-action a {
  border-radius: 4px;
  cursor: pointer;
  font-family: "Geo", monospace;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.contact-form button {
  align-self: flex-start;
  margin-top: 4px;
  padding: 12px 26px;
  border: 0;
  background: var(--accent);
  color: #120c1c;
}

.contact-form button:hover,
.contact-form button:focus-visible,
.buy-action a:hover,
.buy-action a:focus-visible {
  filter: brightness(1.12);
  outline: none;
}

.social-links,
.retailer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
  font-family: "Geo", monospace;
  font-size: 12px;
  letter-spacing: 1.5px;
}

.social-links a,
.retailer-links a {
  color: #b7b0c6;
}

.buy-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.buy-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.02);
}

.buy-option h3,
.buy-option p {
  margin: 0;
}

.buy-option h3 {
  color: #efebf6;
  font-family: "Geo", monospace;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
}

.buy-option p {
  margin-top: 3px;
  color: var(--dim);
  font-size: 12px;
}

.buy-action {
  display: flex;
  align-items: center;
  gap: 14px;
}

.buy-action span {
  color: var(--muted);
  font-family: "Geo", monospace;
}

.buy-action a {
  padding: 9px 18px;
  border: 1px solid var(--panel-border);
  color: #efebf6;
}

.buy-action .primary-link {
  border: 0;
  background: var(--accent);
  color: #120c1c;
}

.small-copy,
.modal-content .small-copy {
  margin: 20px 0 0;
  color: var(--dim);
  font-size: 13px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .landing-shell {
    display: block;
  }

  .cover-frame {
    top: 0;
    width: 100%;
    height: 100svh;
    aspect-ratio: auto;
    overflow: hidden;
  }

  .cover-stage {
    inset: auto;
    left: -6vw;
    top: 13svh;
    width: 112vw;
    height: auto;
    aspect-ratio: 1214 / 1186;
  }

  .leader span {
    font-size: 15px;
    letter-spacing: 1.7px;
  }

  .scroll-indicator {
    top: auto;
    bottom: max(24px, env(safe-area-inset-bottom));
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .title-block {
    --title-edge-inset: max(34px, env(safe-area-inset-left));
    top: clamp(28px, 5svh, 48px);
    bottom: auto;
    left: var(--title-edge-inset);
    width: calc(100vw - var(--title-edge-inset) - 20px);
  }

  .title-block p {
    font-size: clamp(14px, 2vw, 17px);
    letter-spacing: 3.5px;
  }

  .title-block p:first-child {
    margin-bottom: 10px;
    font-size: clamp(12px, 1.7vw, 14px);
    letter-spacing: 5px;
  }

  .title-block h1 {
    margin-bottom: 13px;
  }

  .title-trigger {
    font-size: clamp(3.35rem, 8.8vw, 4.6rem);
    animation:
      title-load-glow 1.65s ease 1.8s 1,
      title-purple-pulse 3.4s ease-in-out 3.75s infinite;
  }

  .buy-option,
  .buy-action {
    align-items: flex-start;
  }

  .buy-option {
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  .cover-stage {
    left: -25vw;
    top: clamp(112px, 15.5svh, 138px);
    width: 151vw;
  }

  .hotspot-contact {
    left: 81%;
    top: 63%;
    width: 112px;
    height: 112px;
  }

  .hotspot-author {
    --leader-width: 190px;
  }

  .hotspot-author .leader,
  .hotspot-buy .leader {
    left: auto;
    right: 50%;
    transform: translate(2px, -52px) scaleX(-1);
  }

  .hotspot-author .leader span,
  .hotspot-buy .leader span {
    left: auto;
    right: 4px;
    transform: scaleX(-1);
  }

  .hotspot-author.is-fragment-ready .leader,
  .hotspot-buy.is-fragment-ready .leader {
    transform: translate(2px, -56px) scaleX(-1);
  }

  .scroll-indicator {
    bottom: max(22px, env(safe-area-inset-bottom));
    font-size: clamp(1.75rem, 8.4vw, 2.45rem);
  }

  .title-block {
    --title-edge-inset: max(32px, env(safe-area-inset-left));
    top: clamp(22px, 4svh, 34px);
  }

  .title-block p {
    font-size: clamp(13px, 3.6vw, 15px);
    letter-spacing: 3.2px;
  }

  .title-block p:first-child {
    margin-bottom: 9px;
    font-size: clamp(12px, 3.2vw, 13px);
    letter-spacing: 4.5px;
  }

  .title-block h1 {
    margin-bottom: 12px;
  }

  .title-trigger {
    font-size: clamp(2.35rem, 11vw, 2.95rem);
  }

}

@media (max-width: 360px) {
  .leader span {
    font-size: 14px;
    letter-spacing: 1.2px;
  }

  .hotspot-author {
    --leader-width: 168px;
  }

  .hotspot-influencer {
    --leader-width: 230px;
  }
}

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

  .cover-art,
  .cover-fragment {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .cover-art {
    filter: drop-shadow(0 26px 50px rgba(0, 0, 0, 0.6));
  }

  .title-block p {
    opacity: 1;
    transform: none;
  }

  .title-trigger {
    animation: none;
  }

  .title-trigger .title-copy {
    width: auto;
    border-right-color: transparent;
  }

  .scroll-indicator {
    opacity: 1;
    filter: none;
    animation: none;
  }

  body.has-scrolled .scroll-indicator {
    opacity: 0;
    filter: blur(4px);
  }
}
