/* =========================================================================
   SHAMON.WS — core: tokens, base, topbar, hero
   ========================================================================= */

/* Friz Quadrata carries no Cyrillic — scope it to Latin so the fallback
   serif is used consistently instead of per-glyph guessing. */
@font-face {
  font-family: 'Friz Quadrata';
  src: url('../fonts/FrizQuadrataTT.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-024F, U+2000-206F, U+2190-21FF, U+2212, U+2215;
}

/* ------------------------------- tokens ---------------------------------- */
:root {
  --c-void: #050706;
  --c-bg: #080b09;
  --c-bg-2: #0b0f0c;
  --c-panel: #0d120e;
  --c-panel-2: #121a12;

  --c-line: rgba(163, 230, 53, .12);
  --c-line-2: rgba(163, 230, 53, .30);

  --c-txt: #e6ece2;
  --c-txt-2: #a9b5a2;
  --c-txt-3: #6f7c69;

  --c-acid: #a3e635;
  --c-acid-2: #c7f24a;
  --c-emerald: #3fbf5f;

  --ff-display: 'Friz Quadrata', 'Palatino Linotype', 'Book Antiqua', Palatino, Georgia, serif;
  --ff-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  --container: 1320px;
  --gutter: clamp(18px, 4vw, 48px);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;

  --ease: cubic-bezier(.22, .61, .36, 1);
  --h-top: 76px;
}

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

* { margin: 0; padding: 0; }

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

body {
  min-height: 100%;
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--c-txt);
  background: var(--c-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background: url('../images2/body.jpg') center top / cover no-repeat;
  opacity: .55;
  pointer-events: none;
}

body.is-locked { overflow: hidden; }

/* doubled attribute selector so `hidden` outranks component `display` rules */
[hidden][hidden] { display: none; }

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

img { height: auto; border: 0; }

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 400;
  letter-spacing: -.01em;
  text-wrap: balance;
}

::selection {
  color: #10180c;
  background: var(--c-acid);
}

:focus-visible {
  outline: 2px solid var(--c-acid);
  outline-offset: 2px;
}

.sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* scrollbar */
* { scrollbar-color: rgba(163, 230, 53, .28) var(--c-void); scrollbar-width: thin; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--c-void); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(163, 230, 53, .38), rgba(63, 191, 95, .28));
  border: 2px solid var(--c-void);
  border-radius: 99px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(163, 230, 53, .6); }

/* ------------------------------ primitives ------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 900;
  opacity: .045;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

.pulse {
  position: relative;
  flex: none;
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-acid);
  box-shadow: 0 0 10px rgba(163, 230, 53, .9);
}

.pulse::after {
  content: '';
  position: absolute;
  inset: -3px;
  border: 1px solid var(--c-acid);
  border-radius: 50%;
  animation: pulseRing 2.4s var(--ease) infinite;
}

@keyframes pulseRing {
  0% { transform: scale(.6); opacity: .9; }
  70%, 100% { transform: scale(2.1); opacity: 0; }
}

/* --------------------------------- reveal -------------------------------- */
.has-js [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity .8s var(--ease) calc(var(--i, 0) * 80ms),
    transform .8s var(--ease) calc(var(--i, 0) * 80ms);
}

.has-js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* --------------------------------- buttons ------------------------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-size: 14px;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .3s var(--ease), color .3s var(--ease),
              background-color .3s var(--ease), border-color .3s var(--ease),
              box-shadow .4s var(--ease);
}

.btn__label { position: relative; z-index: 2; }

.btn__icon {
  position: relative;
  z-index: 2;
  width: 17px;
  height: 17px;
}

.btn:active { transform: translateY(1px); }

/* L2 plate button — art from images2/2.png (idle) + images2/1.png (hover) */
.btn--plate {
  border-style: solid;
  border-width: 14px 42px;
  border-image: url('../images2/2.png') 18 55 fill stretch;
  /* padding keeps the label clear of the plate's diamond ornaments */
  padding: 0 16px;
  min-height: 0;
  color: #16220d;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, .55));
}

.btn--plate::after {
  content: '';
  position: absolute;
  inset: -14px -42px;
  z-index: 1;
  border-style: solid;
  border-width: 14px 42px;
  border-image: url('../images2/1.png') 18 55 fill stretch;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s var(--ease);
}

.btn--plate .btn__label,
.btn--plate .btn__icon { color: #14200c; }

.btn--plate:hover::after,
.btn--plate:focus-visible::after { opacity: 1; }

.btn--plate:hover {
  filter: drop-shadow(0 8px 26px rgba(163, 230, 53, .32));
}

.btn--plate.btn--lg {
  border-width: 19px 52px;
  padding: 0 22px;
  font-size: 15.5px;
}

.btn--plate.btn--lg::after {
  inset: -19px -52px;
  border-width: 19px 52px;
}

/* ghost button — chamfered hairline */
.btn--ghost {
  padding: 15px 26px;
  color: var(--c-txt);
  background: rgba(11, 15, 12, .5);
  border: 1px solid var(--c-line-2);
  clip-path: polygon(11px 0, 100% 0, 100% calc(100% - 11px), calc(100% - 11px) 100%, 0 100%, 0 11px);
  backdrop-filter: blur(8px);
}

.btn--ghost .btn__icon { color: var(--c-acid); }

.btn--ghost:hover {
  color: #fff;
  background: rgba(163, 230, 53, .1);
  border-color: var(--c-acid);
  box-shadow: inset 0 0 30px rgba(163, 230, 53, .12);
}

.btn--ghost.btn--lg {
  padding: 18px 32px;
  font-size: 15px;
}

.btn--block { display: flex; width: 100%; }

/* --------------------------------- iconbtn ------------------------------- */
.iconbtn {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--c-txt-2);
  border: 1px solid var(--c-line);
  border-radius: 50%;
  transition: color .3s var(--ease), border-color .3s var(--ease),
              background-color .3s var(--ease), transform .3s var(--ease);
}

.iconbtn svg { width: 19px; height: 19px; }

.iconbtn:hover {
  color: var(--c-acid);
  background: rgba(163, 230, 53, .08);
  border-color: var(--c-line-2);
  transform: translateY(-2px);
}

.iconbtn[data-tip]::before {
  content: attr(data-tip);
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  padding: 5px 9px;
  font-family: var(--ff-body);
  font-size: 11px;
  letter-spacing: .06em;
  color: var(--c-txt-2);
  white-space: nowrap;
  background: rgba(5, 7, 6, .94);
  border: 1px solid var(--c-line);
  border-radius: var(--r-sm);
  opacity: 0;
  transform: translate(-50%, -4px);
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}

.iconbtn[data-tip]:hover::before {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* ------------------------------- preloader ------------------------------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: var(--c-void);
  transition: opacity .8s var(--ease), visibility .8s var(--ease);
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-inline: 24px;
}

.preloader__logo {
  width: clamp(220px, 34vw, 380px);
  mix-blend-mode: screen;
  animation: breathe 3.4s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { opacity: .82; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.02); }
}

.preloader__bar {
  width: min(240px, 60vw);
  height: 2px;
  margin-top: 30px;
  overflow: hidden;
  background: rgba(163, 230, 53, .12);
}

.preloader__fill {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--c-emerald), var(--c-acid-2));
  box-shadow: 0 0 14px rgba(163, 230, 53, .7);
  transition: width .4s var(--ease);
}

.preloader__hint {
  margin-top: 16px;
  font-family: var(--ff-display);
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--c-txt-3);
}

/* --------------------------------- topbar -------------------------------- */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 800;
  transition: transform .45s var(--ease), background-color .45s var(--ease),
              border-color .45s var(--ease), backdrop-filter .45s var(--ease);
  border-bottom: 1px solid transparent;
}

.topbar__inner {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 44px);
  width: 100%;
  max-width: var(--container);
  height: var(--h-top);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.topbar.is-stuck {
  background: rgba(6, 9, 7, .82);
  border-bottom-color: var(--c-line);
  backdrop-filter: blur(16px) saturate(1.2);
}

.topbar.is-hidden { transform: translateY(-102%); }

.topbar__brand {
  flex: none;
  transition: opacity .3s var(--ease);
}

.topbar__brand img {
  width: 128px;
  height: auto;
  /* the logo PNG ships a baked-in white halo — screen drops it on dark */
  mix-blend-mode: screen;
}

.topbar__brand:hover { opacity: .78; }

.topbar__nav {
  display: flex;
  align-items: center;
  gap: clamp(6px, 1.6vw, 22px);
  margin-right: auto;
}

.topbar__link {
  position: relative;
  padding: 9px 2px;
  font-size: 13.5px;
  letter-spacing: .04em;
  color: var(--c-txt-2);
  transition: color .3s var(--ease);
}

.topbar__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--c-acid), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}

.topbar__link:hover,
.topbar__link.is-active { color: var(--c-txt); }

.topbar__link:hover::after,
.topbar__link.is-active::after { transform: scaleX(1); }

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar__cta {
  margin-left: 22px;
  gap: 7px;
  padding: 8px 16px 8px 18px;
  font-size: 12.5px;
  letter-spacing: .14em;
  color: #13200c;
  background: linear-gradient(180deg, #d4f56a 0%, var(--c-acid) 100%);
  border: 1px solid #e8ff9a;
  clip-path: polygon(7px 0, 100% 0, 100% calc(100% - 7px), calc(100% - 7px) 100%, 0 100%, 0 7px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .35),
    0 4px 14px rgba(163, 230, 53, .28);
}

.topbar__cta .btn__icon {
  width: 13px;
  height: 13px;
  color: #13200c;
  transition: transform .3s var(--ease);
}

.topbar__cta:hover,
.topbar__cta:focus-visible {
  color: #0d1609;
  background: linear-gradient(180deg, #e8ff86 0%, var(--c-acid-2) 100%);
  border-color: #f3ffc2;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .45),
    0 6px 18px rgba(163, 230, 53, .4);
}

.topbar__cta:hover .btn__icon,
.topbar__cta:focus-visible .btn__icon {
  transform: translateX(3px);
}

.burger {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--c-txt);
  border: 1px solid var(--c-line);
  border-radius: var(--r-sm);
}

.burger svg { width: 22px; height: 22px; }

.burger__close { display: none; }
.burger.is-open .burger__open { display: none; }
.burger.is-open .burger__close { display: block; }

@media (max-width: 1024px) {
  .topbar__nav,
  .topbar__actions { display: none; }
  .burger { display: grid; }
  .topbar__brand { margin-right: auto; }
}

/* ------------------------------ mobile menu ------------------------------ */
.mmenu {
  position: fixed;
  inset: 0;
  z-index: 790;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: calc(var(--h-top) + clamp(24px, 7vh, 64px)) var(--gutter) clamp(28px, 6vh, 52px);
  background: rgba(5, 7, 6, .97);
  backdrop-filter: blur(20px);
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}

.mmenu.is-open {
  opacity: 1;
  transform: none;
}

.mmenu__nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mmenu__nav a {
  padding: 14px 0;
  font-family: var(--ff-display);
  font-size: clamp(28px, 8vw, 44px);
  line-height: 1.05;
  color: var(--c-txt);
  border-bottom: 1px solid var(--c-line);
  transition: color .3s var(--ease), padding-left .3s var(--ease);
}

.mmenu__nav a:hover {
  color: var(--c-acid);
  padding-left: 10px;
}

.mmenu__foot {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: auto;
}

.mmenu__socials {
  display: flex;
  gap: 10px;
}

/* ================================== hero ================================= */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: max(700px, 100svh);
  padding-top: calc(var(--h-top) + 40px);
  padding-bottom: clamp(70px, 9vh, 130px);
  overflow: hidden;
  isolation: isolate;
}

.hero__stage {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero__layer {
  position: absolute;
  inset: -5% -4%;
  background-repeat: no-repeat;
  transform: translate3d(var(--px, 0px), calc(var(--py, 0px) + var(--sy, 0px)), 0);
  will-change: transform;
}

/* top-anchored so the demon's face clears the topbar; scroll parallax only
   translates downward, so the exposed edge stays behind the header scrim */
.hero__layer--back {
  inset: 0 -8%;
  background-image: url('../images2/main.jpg');
  background-position: 50% top;
  background-size: 128% auto;
  filter: brightness(1.42) contrast(1.04) saturate(1.12);
}

/* characters.png / monsters.png are full-canvas plates drawn for a much taller
   header — clipped to bottom bands they read as foreground ground and glow
   instead of covering the demon. */
.hero__layer--monsters {
  top: auto;
  height: 44%;
  background-image: url('../images2/monsters.png');
  background-position: 50% 100%;
  background-size: 104% auto;
  opacity: .85;
}

.hero__layer--chars {
  top: auto;
  height: 34%;
  background-image: url('../images2/characters.png');
  background-position: 50% 100%;
  background-size: 110% auto;
}

.hero__layer--fx {
  background-image: url('../images2/effect.png');
  background-position: 50% 92%;
  background-size: 110% auto;
  mix-blend-mode: screen;
  opacity: .7;
  animation: fxDrift 26s ease-in-out infinite alternate;
}

@keyframes fxDrift {
  from { transform: translate3d(-14px, 8px, 0) scale(1); }
  to { transform: translate3d(14px, -12px, 0) scale(1.05); }
}

.hero__fog {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(58% 42% at 50% 34%, rgba(163, 230, 53, .16), transparent 70%),
    radial-gradient(42% 30% at 78% 72%, rgba(63, 191, 95, .14), transparent 72%);
  mix-blend-mode: screen;
  animation: fogPulse 12s ease-in-out infinite alternate;
}

@keyframes fogPulse {
  from { opacity: .55; }
  to { opacity: 1; }
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 7, 6, .6) 0%, rgba(5, 7, 6, .1) 14%, transparent 28%),
    linear-gradient(0deg, var(--c-bg) 1%, rgba(6, 9, 7, .8) 17%, rgba(6, 9, 7, .34) 40%, transparent 62%),
    linear-gradient(90deg, rgba(5, 7, 6, .78) 0%, rgba(5, 7, 6, .4) 26%, transparent 52%),
    radial-gradient(125% 95% at 50% 46%, transparent 52%, rgba(5, 7, 6, .58) 100%);
}

@media (max-width: 900px) {
  .hero__scrim {
    background:
      linear-gradient(180deg, rgba(5, 7, 6, .62) 0%, rgba(5, 7, 6, .1) 13%, transparent 26%),
      linear-gradient(0deg, var(--c-bg) 6%, rgba(6, 9, 7, .93) 28%, rgba(6, 9, 7, .66) 44%, rgba(6, 9, 7, .24) 62%, transparent 76%);
  }
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(30px, 5vw, 70px);
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.hero__copy { min-width: 0; }

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 8px 15px;
  margin-bottom: 22px;
  font-size: 11.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-txt-2);
  background: rgba(8, 11, 9, .55);
  border: 1px solid var(--c-line);
  border-radius: 99px;
  backdrop-filter: blur(8px);
}

.hero__title {
  font-size: clamp(30px, 6.4vw, 92px);
  line-height: .9;
  text-transform: uppercase;
  letter-spacing: -.02em;
}

.hero__title-line {
  display: block;
  width: fit-content;
  color: var(--c-txt);
  text-shadow: 0 6px 40px rgba(0, 0, 0, .7);
}

.hero__title-line--accent {
  background: linear-gradient(180deg, var(--c-acid-2) 8%, var(--c-emerald) 92%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 34px rgba(163, 230, 53, .35));
}

.hero__lead {
  max-width: 46ch;
  margin-top: clamp(18px, 2vw, 26px);
  font-size: clamp(15px, 1.2vw, 17.5px);
  line-height: 1.65;
  color: var(--c-txt-2);
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: clamp(28px, 3.4vw, 44px);
  flex-wrap: wrap;
}

/* ------------------------------ launch panel ----------------------------- */
.launch {
  width: min(370px, 100%);
  padding: clamp(20px, 2vw, 28px);
  background: linear-gradient(180deg, rgba(18, 26, 18, .72), rgba(8, 11, 9, .82));
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  backdrop-filter: blur(18px) saturate(1.15);
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, .9), inset 0 1px 0 rgba(255, 255, 255, .05);
}

.launch__head {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--c-line);
}

.launch__label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-acid);
}

.launch__date {
  margin-top: 9px;
  font-family: var(--ff-display);
  font-size: clamp(21px, 2vw, 27px);
  color: var(--c-txt);
}

.launch__date span {
  font-family: var(--ff-body);
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--c-txt-3);
  vertical-align: 3px;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 20px 0 4px;
}

.countdown.is-done { display: none; }

.countdown__cell {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.countdown__cell + .countdown__cell::before {
  content: '';
  position: absolute;
  top: 12%;
  left: 0;
  height: 40%;
  border-left: 1px solid var(--c-line);
}

.countdown__num {
  font-family: var(--ff-display);
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(180deg, #eaffc4, var(--c-acid));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: transform .35s var(--ease), filter .35s var(--ease);
}

.countdown__num.is-tick {
  transform: translateY(-3px);
  filter: drop-shadow(0 0 14px rgba(163, 230, 53, .65));
}

.countdown__lbl {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-txt-3);
}

.launch__live {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 0 6px;
  font-size: 13.5px;
  color: var(--c-acid);
}

.launch__go {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 18px;
  padding-top: 18px;
  font-size: 13.5px;
  color: var(--c-txt-2);
  border-top: 1px solid var(--c-line);
  transition: color .3s var(--ease);
}

.launch__go svg { width: 18px; height: 18px; }

.launch__go-arrow {
  margin-left: auto;
  transition: transform .3s var(--ease);
}

.launch__go:hover { color: var(--c-acid); }
.launch__go:hover .launch__go-arrow { transform: translateX(5px); }

/* ------------------------------ scroll cue ------------------------------- */
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--c-txt-3);
  transform: translateX(-50%);
  transition: color .3s var(--ease);
}

.hero__scroll-line {
  width: 1px;
  height: 46px;
  background: linear-gradient(180deg, transparent, var(--c-line-2));
}

.hero__scroll svg {
  width: 18px;
  height: 18px;
  animation: cueBob 2.2s var(--ease) infinite;
}

@keyframes cueBob {
  0%, 100% { transform: translateY(-2px); opacity: .5; }
  50% { transform: translateY(3px); opacity: 1; }
}

.hero__scroll:hover { color: var(--c-acid); }

/* ------------------------------ hero responsive -------------------------- */
@media (max-width: 1100px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }

  .launch { width: min(420px, 100%); }
}

@media (max-width: 900px) {
  .hero__layer--chars { display: none; }
  .hero__layer--monsters { height: 30%; opacity: .6; }

  /* fit by height so the head stays in frame instead of cropping to torso */
  .hero__layer--back {
    background-position: 50% top;
    background-size: auto 68%;
  }
  .hero__scroll { display: none; }
}

@media (max-width: 620px) {
  .hero {
    padding-bottom: 56px;
    min-height: max(620px, 100svh);
  }

  .hero__title { font-size: clamp(32px, 10vw, 46px); }
  .hero__cta .btn { flex: 1 1 auto; }
  .countdown__num { font-size: 25px; }
  .launch { padding: 18px; }
}

/* =============================== section head ============================ */
.sect-head {
  max-width: 780px;
  margin-bottom: clamp(24px, 3vw, 40px);
}

.sect-head__kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 11.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-acid);
}

.sect-head__kicker span {
  padding: 4px 9px;
  font-family: var(--ff-display);
  letter-spacing: .06em;
  color: var(--c-txt-3);
  border: 1px solid var(--c-line);
  border-radius: 4px;
}

.sect-head__kicker::after {
  content: '';
  flex: 1;
  height: 1px;
  max-width: 120px;
  background: linear-gradient(90deg, var(--c-line-2), transparent);
}

.sect-head__title {
  font-size: clamp(32px, 4.6vw, 62px);
  line-height: 1.02;
  color: var(--c-txt);
}

.sect-head__lead {
  margin-top: 18px;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.68;
  color: var(--c-txt-2);
  max-width: 62ch;
}

/* ============================= reduced motion ============================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .has-js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
