:root {
  --ink: #0c0e12;
  --ink-soft: #13171f;
  --accent: #c4a574;
  --accent-strong: #a68b5b;
  --accent-wine: #6e3840;
  --accent-wine-deep: #52282f;
  --text: #eceae6;
  --text-muted: rgba(236, 234, 230, 0.68);
  --glass: rgba(12, 14, 18, 0.62);
  --border: rgba(236, 234, 230, 0.12);
  --focus-ring: rgba(196, 165, 116, 0.35);
  --font-display: "Oswald", system-ui, sans-serif;
  --font-body: "Work Sans", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: clamp(1.5rem, 4vw, 3rem);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  filter: saturate(0.98) contrast(1.03);
  animation: kenBurns 28s ease-in-out infinite alternate;
  transform-origin: center center;
}

@keyframes kenBurns {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.1) translate(-1%, -1%);
  }
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      100deg,
      rgba(12, 14, 18, 0.92) 0%,
      rgba(12, 14, 18, 0.58) 32%,
      rgba(12, 14, 18, 0.14) 58%,
      transparent 78%
    ),
    linear-gradient(to top, rgba(12, 14, 18, 0.9) 0%, transparent 42%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  padding-bottom: clamp(1rem, 3vh, 2rem);
}

.hero__badge {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.hero__brand {
  margin: 0 0 0.75rem;
  font-size: clamp(2.75rem, 11vw, 4.75rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--text) 0%, #d9c9a8 42%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

.hero__headline {
  margin: 0 0 0.65rem;
  font-size: clamp(1.05rem, 2.6vw, 1.5rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text);
  max-width: 36ch;
}

.hero__sub {
  margin: 0 0 1.75rem;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  font-weight: 300;
  color: var(--text-muted);
  max-width: 42ch;
}

/* Waitlist */
.waitlist {
  margin-bottom: 1.25rem;
}

.waitlist__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.waitlist__input {
  flex: 1 1 12rem;
  min-width: 0;
  padding: 0.85rem 1.1rem;
  font: inherit;
  font-size: 1rem;
  color: var(--text);
  background: rgba(12, 14, 18, 0.72);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  outline: none;
  transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}

.waitlist__input::placeholder {
  color: rgba(236, 234, 230, 0.42);
}

.waitlist__input:focus {
  border-color: rgba(196, 165, 116, 0.55);
  box-shadow: 0 0 0 3px var(--focus-ring);
}

.waitlist__submit {
  flex: 0 0 auto;
  padding: 0.85rem 1.5rem;
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  background: linear-gradient(180deg, var(--accent-wine) 0%, var(--accent-wine-deep) 100%);
  border: 1px solid rgba(236, 234, 230, 0.08);
  border-radius: 0.5rem;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out),
    opacity 0.2s;
}

.waitlist__submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.waitlist__submit:disabled {
  opacity: 0.65;
  cursor: wait;
}

.waitlist__message {
  min-height: 1.4em;
  margin: 0.65rem 0 0;
  font-size: 0.9rem;
}

.waitlist__message--success {
  color: #9bc4a8;
}

.waitlist__message--error {
  color: #c9929a;
}

/* Telegram */
.telegram {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s, transform 0.2s var(--ease-out);
}

.telegram:hover {
  color: var(--text);
  transform: translateX(4px);
}

.telegram__icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #6fa8c4;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  animation: revealUp 0.9s var(--ease-out) forwards;
}

.reveal--1 {
  animation-delay: 0.1s;
}
.reveal--2 {
  animation-delay: 0.2s;
}
.reveal--3 {
  animation-delay: 0.32s;
}
.reveal--4 {
  animation-delay: 0.44s;
}
.reveal--5 {
  animation-delay: 0.56s;
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Strip */
.strip {
  padding: clamp(3rem, 8vw, 5rem) clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-soft) 100%);
  border-top: 1px solid var(--border);
}

.strip__title {
  margin: 0 0 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.artists {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.artists__item {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, var(--text), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.strip__tagline {
  margin: 0 auto;
  max-width: 32ch;
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* Launch */
.launch {
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 4vw, 3rem) clamp(3rem, 8vw, 5rem);
  text-align: center;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(196, 165, 116, 0.12), transparent),
    var(--ink-soft);
}

.launch__label {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.launch__month {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 13vw, 5.5rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text);
  animation: augustPulse 4s ease-in-out infinite;
}

.launch__year {
  display: inline-block;
  color: var(--accent);
}

@keyframes augustPulse {
  0%,
  100% {
    text-shadow: 0 0 0 transparent;
  }
  50% {
    text-shadow: 0 0 40px rgba(196, 165, 116, 0.22);
  }
}

.launch__note {
  margin: 0;
  font-size: 1rem;
  color: var(--text-muted);
}

/* Footer */
.footer {
  margin-top: auto;
  padding: 1.5rem clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  border-top: 1px solid var(--border);
  background: var(--ink);
}

.footer__age {
  margin: 0 0 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent-strong);
}

.footer__copy {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(236, 234, 230, 0.42);
}

@media (min-width: 900px) {
  .hero {
    align-items: center;
  }

  .hero__inner {
    padding-bottom: 0;
  }

  .hero__banner {
    object-position: 65% center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__banner,
  .reveal,
  .launch__month {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
