@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,200;0,300;0,400;0,500;0,600;0,800;1,300;1,400&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #000;
  color: #f5f5f7;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

::-moz-selection {
  background: #c9a227;
  color: #000;
}

::selection {
  background: #c9a227;
  color: #000;
}

.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem clamp(1rem, 4vw, 2.5rem);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #a1a1a6;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
  backdrop-filter: blur(6px);
}
.topbar a:hover {
  color: #f5f5f7;
}
.topbar .topbar__mark {
  color: #f5f5f7;
  font-weight: 600;
}

.scene {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 7rem clamp(1.25rem, 6vw, 4rem);
}

.scene__inner {
  width: 100%;
  max-width: 60rem;
  margin: 0 auto;
}

@supports (min-height: 100svh) {
  .scene {
    min-height: 100svh;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal--d1 {
  transition-delay: 0.08s;
}

.reveal--d2 {
  transition-delay: 0.16s;
}

.reveal--d3 {
  transition-delay: 0.24s;
}

.reveal--d4 {
  transition-delay: 0.32s;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .scroll-cue {
    animation: none;
  }
}
.hero {
  background: radial-gradient(120% 90% at 50% 12%, rgba(201, 162, 39, 0.1), rgba(0, 0, 0, 0) 55%), #000;
}

.hero__over {
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #6e6e73;
  margin-bottom: clamp(1.5rem, 5vw, 3rem);
}

.hero__title {
  margin: 0;
  font-weight: 800;
  font-size: clamp(3.2rem, 15vw, 10rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
}

.hero__hook {
  margin: clamp(1.5rem, 5vw, 2.75rem) auto 0;
  max-width: 34ch;
  font-size: clamp(1.05rem, 2.4vw, 1.5rem);
  font-weight: 300;
  color: #a1a1a6;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 2.25rem;
  width: 26px;
  height: 26px;
  margin-left: -13px;
  border-right: 3px solid #f5f5f7;
  border-bottom: 3px solid #f5f5f7;
  filter: drop-shadow(0 0 6px rgba(201, 162, 39, 0.65));
  transform: rotate(45deg);
  animation: cue 2.4s ease-in-out infinite;
}

@keyframes cue {
  0%, 100% {
    transform: rotate(45deg) translate(0, 0);
    opacity: 0.7;
  }
  50% {
    transform: rotate(45deg) translate(6px, 6px);
    opacity: 1;
  }
}
.manifest {
  font-size: clamp(1.5rem, 4.2vw, 2.6rem);
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.manifest strong {
  font-weight: 600;
  color: #fff;
}

.manifest__note {
  margin-top: clamp(1.5rem, 4vw, 2.5rem);
  font-size: clamp(0.95rem, 1.8vw, 1.125rem);
  color: #a1a1a6;
  font-weight: 300;
}

.verse {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.72)), #000 center/cover no-repeat;
}

.verse--gold {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.82)), url("img/anatema/gold.jpg");
}

.verse--disc {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.86)), url("img/anatema/disc.jpg");
}

.verse p {
  margin: 0 auto;
  max-width: 24ch;
  font-size: clamp(1.4rem, 4.5vw, 2.75rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: #eae0c8;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #c9a227;
  margin-bottom: 1.5rem;
}

.scene h2 {
  margin: 0 0 clamp(1.75rem, 5vw, 3rem);
  font-weight: 600;
  font-size: clamp(1.9rem, 5.5vw, 3.25rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.spec {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  text-align: left;
}

.spec__item {
  background: #000;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.spec__k {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #6e6e73;
  margin-bottom: 0.5rem;
}

.spec__v {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #f5f5f7;
  font-weight: 400;
}

.sides {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 5vw, 3.5rem);
  text-align: left;
}

.side__label {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #c9a227;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 0.35rem;
}

.side__note {
  margin: 0.9rem 0 0;
  font-size: 0.85rem;
  color: #6e6e73;
  font-weight: 300;
}

.track {
  display: flex;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 300;
}

.track__no {
  color: #6e6e73;
  font-variant-numeric: tabular-nums;
  flex: none;
  width: 2.25rem;
}

.buy__price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 2.25rem;
}

.buy__amount {
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}

.buy__retail {
  font-size: 0.9rem;
  color: #6e6e73;
  font-weight: 300;
}

.stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 1.75rem;
}

.stepper button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: 0;
  color: #f5f5f7;
  font: inherit;
  font-size: 1.35rem;
  line-height: 1;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
  transition: background 0.2s;
}

.stepper button:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.08);
}

.stepper button:disabled {
  color: #6e6e73;
  cursor: not-allowed;
}

.stepper__val {
  min-width: 3rem;
  text-align: center;
  font-size: 1.15rem;
  font-variant-numeric: tabular-nums;
}

.buy__delivery {
  margin: 0 auto 1.75rem;
  max-width: 42ch;
  font-size: 0.9rem;
  color: #a1a1a6;
  font-weight: 300;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  justify-content: center;
  max-width: 40ch;
  margin: 0 auto 1.75rem;
  font-size: 0.9rem;
  color: #a1a1a6;
  text-align: left;
  font-weight: 300;
}

.consent input {
  margin-top: 0.2rem;
  width: 1.05rem;
  height: 1.05rem;
  accent-color: #c9a227;
  flex: none;
}

.consent a {
  color: #f5f5f7;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: inline-block;
  border: 0;
  border-radius: 999px;
  background: #f5f5f7;
  color: #000;
  font: inherit;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  padding: 1rem 2.75rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.btn:hover:not(:disabled) {
  transform: translateY(-1px);
  background: #fff;
}

.btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.btn--ghost {
  background: transparent;
  color: #f5f5f7;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 400;
}

.btn--ghost:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.06);
}

.buy__error {
  margin: 1.25rem auto 0;
  max-width: 40ch;
  font-size: 0.85rem;
  color: #ff6b6b;
  min-height: 1.2em;
}

.buy__fine {
  margin: 2.5rem auto 0;
  max-width: 46ch;
  font-size: 0.8rem;
  line-height: 1.6;
  color: #6e6e73;
  font-weight: 300;
}

.foot {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: clamp(3rem, 9vw, 6rem) clamp(1.25rem, 6vw, 4rem);
  text-align: center;
  color: #6e6e73;
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.8;
}

.foot__seller {
  color: #a1a1a6;
}

.foot a {
  color: #a1a1a6;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.foot a:hover {
  color: #f5f5f7;
}

.foot__links {
  margin-top: 1.5rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.foot__copy {
  margin-top: 1.5rem;
}

.legal {
  max-width: 44rem;
  margin: 0 auto;
  padding: 8rem clamp(1.25rem, 6vw, 2rem) 5rem;
  text-align: left;
  font-size: 0.98rem;
  color: #a1a1a6;
}

.legal h1 {
  color: #f5f5f7;
  font-weight: 600;
  font-size: clamp(1.6rem, 5vw, 2.25rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.35rem;
}

.legal h2 {
  color: #f5f5f7;
  font-weight: 600;
  font-size: 1.05rem;
  margin: 2.75rem 0 0.75rem;
}

.legal p,
.legal li {
  line-height: 1.75;
}

.legal ol,
.legal ul {
  padding-left: 1.4rem;
}

.legal li {
  margin-bottom: 0.5rem;
}

.legal a {
  color: #f5f5f7;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal__meta {
  color: #6e6e73;
  font-size: 0.85rem;
}

.legal__back {
  display: inline-block;
  margin-top: 3rem;
}

.thanks .hero__title {
  font-size: clamp(2.5rem, 9vw, 5rem);
}

.thanks .buy__fine {
  margin-top: 2rem;
}

.thanks__cta {
  margin-top: 2.5rem;
}

@media (max-width: 767.98px) {
  .spec,
  .sides {
    grid-template-columns: 1fr;
  }
  .topbar {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
  }
}
