:root {
  --void: #080807;
  --ink: #100f0d;
  --plate: #171613;
  --line: rgba(232, 201, 106, 0.22);
  --cream: #efe6d2;
  --mute: #b9ae96;
  --gold: #d4af37;
  --gold-hi: #f0d78a;
  --horn: #c8ff00;
  --horn-deep: #8fbf00;
  --gucci-g: #0b5a3a;
  --gucci-r: #c41e3a;
  --denim: #7d9ab5;
  --fashion: "Cinzel", "Times New Roman", serif;
  --piss: "Rubik Wet Paint", "Comic Sans MS", cursive;
  --stamp: "Bangers", "Impact", sans-serif;
  --body: "Outfit", "Segoe UI", sans-serif;
  --spot-x: 50%;
  --spot-y: 30%;
  --progress: 0%;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  background: var(--void);
  color: var(--cream);
  font-family: var(--body);
  min-height: 100%;
}

body {
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

@media (pointer: fine) {
  body,
  a,
  button {
    cursor: none;
  }
}

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

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

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

.wrap {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 40;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.spot {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(
    640px circle at var(--spot-x) var(--spot-y),
    rgba(200, 255, 0, 0.07),
    transparent 55%
  );
}

.spine {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 100%;
  z-index: 50;
  background: linear-gradient(
    var(--gucci-g) 0 33%,
    var(--gucci-r) 33% 66%,
    var(--gucci-g) 66% 100%
  );
}

.spine::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: var(--progress);
  background: var(--horn);
  box-shadow: 0 0 16px var(--horn);
}

.dust {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  margin: -11px 0 0 -11px;
  border: 1px solid var(--gold-hi);
  border-radius: 50%;
  pointer-events: none;
  z-index: 80;
  mix-blend-mode: difference;
  transition: width 0.2s, height 0.2s, margin 0.2s, background 0.2s;
}

.cursor i {
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: var(--horn);
}

.cursor.is-hover {
  width: 44px;
  height: 44px;
  margin: -22px 0 0 -22px;
  background: rgba(200, 255, 0, 0.08);
}

@media (pointer: coarse) {
  .cursor {
    display: none;
  }
}

.boot {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 14px;
  background: #050504;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.boot.is-done {
  opacity: 0;
  visibility: hidden;
}

.boot-horns {
  display: flex;
  gap: 18px;
}

.boot-horns span {
  width: 18px;
  height: 52px;
  background: linear-gradient(180deg, var(--horn), #4d6a00);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  filter: drop-shadow(0 0 12px var(--horn));
  animation: horn-grow 0.9s ease both;
}

.boot-horns span:last-child {
  animation-delay: 0.12s;
}

.boot-word {
  font-family: var(--fashion);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-hi);
}

.boot-sub {
  font-family: var(--piss);
  color: var(--horn);
  letter-spacing: 0.08em;
}

@keyframes horn-grow {
  from {
    transform: scaleY(0.2) translateY(16px);
    opacity: 0;
  }
  to {
    transform: scaleY(1) translateY(0);
    opacity: 1;
  }
}

.mast {
  position: fixed;
  top: 16px;
  left: 28px;
  right: 18px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 10px 14px 10px 12px;
  border: 1px solid var(--line);
  background: rgba(8, 8, 7, 0.72);
  backdrop-filter: blur(16px);
  transition: transform 0.35s ease, border-color 0.3s ease, background 0.3s ease;
}

.mast.is-scrolled {
  background: rgba(8, 8, 7, 0.92);
  border-color: rgba(200, 255, 0, 0.18);
}

.mast.is-hide {
  transform: translateY(-130%);
}

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

.mast-mark img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  background: #d8d6d2;
}

.mast-mark b {
  display: block;
  font-family: var(--fashion);
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-hi);
}

.mast-mark em {
  display: block;
  font-family: var(--piss);
  font-style: normal;
  color: var(--horn);
  line-height: 1;
}

.mast-links {
  display: flex;
  gap: 22px;
  margin-left: auto;
}

.mast-links a {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
}

.mast-links a:hover {
  color: var(--horn);
}

.mast-acts {
  display: flex;
  align-items: center;
  gap: 8px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.chip img {
  width: 16px;
  height: 16px;
}

.chip.x img {
  filter: invert(1);
}

.chip.buy {
  background: var(--horn);
  color: #111;
  border-color: var(--horn);
}

.burger {
  display: none;
  width: 40px;
  height: 40px;
  place-items: center;
  gap: 5px;
}

.burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--cream);
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 130px 24px 90px 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 46%);
  align-items: center;
  gap: 20px;
  overflow: hidden;
}

.runway,
.streaks {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.runway-floor {
  position: absolute;
  left: -20%;
  right: -20%;
  bottom: -8%;
  height: 48%;
  background:
    linear-gradient(90deg, transparent 0 46%, #0b5a3a 46% 48%, #c41e3a 48% 52%, #0b5a3a 52% 54%, transparent 54%),
    linear-gradient(#141311, #080807);
  transform: perspective(520px) rotateX(62deg);
  transform-origin: center bottom;
  opacity: 0.55;
}

.runway-lines {
  position: absolute;
  inset: auto 10% 0;
  height: 42%;
  background: repeating-linear-gradient(
    to top,
    rgba(240, 215, 138, 0.16) 0 2px,
    transparent 2px 46px
  );
  mask-image: linear-gradient(to top, #000 10%, transparent);
  animation: rush 4.8s linear infinite;
}

@keyframes rush {
  from {
    background-position: 0 80px;
  }
  to {
    background-position: 0 0;
  }
}

.streaks i {
  position: absolute;
  width: 140px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--horn), transparent);
  opacity: 0.28;
  animation: streak 3.4s linear infinite;
}

.streaks i:nth-child(1) { top: 18%; left: -10%; animation-duration: 2.8s; }
.streaks i:nth-child(2) { top: 36%; left: 20%; animation-duration: 3.6s; animation-delay: -1s; }
.streaks i:nth-child(3) { top: 52%; left: -4%; animation-duration: 3.1s; }
.streaks i:nth-child(4) { top: 68%; left: 30%; animation-duration: 4s; animation-delay: -1.6s; }
.streaks i:nth-child(5) { top: 24%; left: 55%; animation-duration: 2.5s; }

@keyframes streak {
  from { transform: translateX(-20%) rotate(-12deg); opacity: 0; }
  30% { opacity: 0.35; }
  to { transform: translateX(80vw) rotate(-12deg); opacity: 0; }
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

h1 {
  margin: 10px 0 18px;
}

.gold-word,
.piss-word {
  display: block;
}

.gold-word {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  font-family: var(--fashion);
  font-weight: 700;
  font-size: clamp(64px, 11vw, 132px);
  line-height: 0.82;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gold-fill {
  background: linear-gradient(180deg, #fff6d0 0%, #f0d78a 28%, #c9a227 62%, #8a6a12 86%, #ead48a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 18px rgba(212, 175, 55, 0.35));
}

.horn-mark {
  width: clamp(28px, 5vw, 52px);
  height: auto;
  fill: var(--horn);
  filter: drop-shadow(0 0 8px var(--horn));
  animation: horn-pulse 2.4s ease-in-out infinite;
}

.horn-mark.left {
  transform: rotate(-18deg);
}

.horn-mark.right {
  transform: rotate(18deg);
}

@keyframes horn-pulse {
  0%, 100% { filter: drop-shadow(0 0 6px var(--horn)); }
  50% { filter: drop-shadow(0 0 18px var(--horn)); }
}

.piss-word {
  font-family: var(--piss);
  font-size: clamp(72px, 13vw, 154px);
  line-height: 0.86;
  color: var(--horn);
  -webkit-text-stroke: 1px #5d7a00;
  text-shadow: 0 8px 0 #3d4f00, 0 14px 0 #1c2200, 0 0 28px rgba(200, 255, 0, 0.45);
  transform: rotate(-2deg);
  animation: drip 3.2s ease-in-out infinite;
}

@keyframes drip {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50% { transform: rotate(-1deg) translateY(6px); }
}

.manifesto {
  max-width: 520px;
  font-family: var(--fashion);
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.45;
  color: var(--cream);
}

.hero-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--line);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn img {
  width: 18px;
  height: 18px;
}

.btn.gold {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--gold-hi), var(--gold));
  color: #1a1406;
  border-color: var(--gold);
}

.btn.gold::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, 0.38), transparent 65%);
  transform: translateX(-130%);
  animation: shine 3.8s ease-in-out infinite;
}

@keyframes shine {
  0%, 55% { transform: translateX(-130%); }
  75%, 100% { transform: translateX(130%); }
}

.btn.gold:hover,
.chip.buy:hover,
.btn.ghost:hover,
.btn.ghost.light:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(200, 255, 0, 0.16);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.03);
}

.btn.ghost img[src*="x.svg"],
.btn.ghost.light img[src*="x.svg"],
.foot-links img[src*="x.svg"] {
  filter: invert(1);
}

.btn.ghost.light {
  background: rgba(8, 8, 7, 0.45);
  border-color: rgba(239, 230, 210, 0.28);
}

.ca-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px dashed var(--line);
  max-width: 100%;
}

.ca-pill span {
  font-family: var(--stamp);
  color: var(--horn);
  letter-spacing: 0.08em;
}

.ca-pill code {
  font-family: var(--body);
  font-size: 12px;
  color: var(--mute);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: min(420px, 70vw);
}

.hero-stage {
  position: relative;
  z-index: 3;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.halo {
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 255, 0, 0.22), transparent 68%);
  filter: blur(8px);
  animation: halo 4s ease-in-out infinite;
}

@keyframes halo {
  0%, 100% { transform: scale(0.92); opacity: 0.7; }
  50% { transform: scale(1.08); opacity: 1; }
}

.rings i {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(200, 255, 0, 0.16);
  border-radius: 50%;
  animation: ring 6s linear infinite;
}

.rings i:nth-child(2) {
  inset: 4%;
  animation-duration: 8s;
  animation-direction: reverse;
}

.rings i:nth-child(3) {
  inset: -6%;
  animation-duration: 10s;
}

@keyframes ring {
  to { transform: rotate(360deg); }
}

.bull-plate {
  position: relative;
  width: min(460px, 86%);
  background: #d5d3cf;
  padding: 10px;
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.4),
    0 30px 80px rgba(0, 0, 0, 0.45),
    0 0 60px rgba(200, 255, 0, 0.12);
  animation: plate-float 5.2s ease-in-out infinite;
}

.bull-plate img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

@keyframes plate-float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-14px) rotate(1deg); }
}

.reel {
  position: absolute;
  right: 0;
  bottom: 8%;
  width: 180px;
  border: 1px solid var(--line);
  background: #000;
  overflow: hidden;
}

.reel video {
  width: 100%;
  height: 110px;
  object-fit: cover;
  display: block;
}

.reel span {
  display: block;
  padding: 6px 8px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
}

.ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: rgba(8, 8, 7, 0.7);
}

.ticker-track {
  display: flex;
  gap: 42px;
  width: max-content;
  padding: 12px 0;
  animation: marquee 22s linear infinite;
}

.ticker span {
  font-family: var(--stamp);
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--horn);
  text-transform: uppercase;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.about,
.howto,
.chart {
  position: relative;
  z-index: 3;
  padding: 110px 0;
}

.about {
  background:
    radial-gradient(600px 280px at 80% 0%, rgba(200, 255, 0, 0.06), transparent),
    linear-gradient(#0c0b0a, var(--void));
}

.sec-head {
  margin-bottom: 42px;
}

.sec-head h2 {
  font-family: var(--fashion);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.95;
  text-transform: uppercase;
}

.sec-head em {
  display: block;
  font-family: var(--piss);
  font-style: normal;
  color: var(--horn);
  text-transform: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 36px;
  align-items: start;
}

.brief,
.dossier {
  opacity: 0;
  transform: translateY(16px);
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.brief .pull {
  font-family: var(--fashion);
  font-size: 28px;
  line-height: 1.35;
  color: var(--gold-hi);
  margin-bottom: 18px;
}

.brief p + p {
  margin-top: 14px;
  color: var(--mute);
  line-height: 1.7;
}

.dossier {
  display: grid;
  gap: 10px;
}

.tag {
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: rgba(23, 22, 19, 0.7);
}

.tag span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.tag strong {
  font-family: var(--fashion);
  font-size: 22px;
  font-weight: 600;
}

.tag img {
  height: 22px;
  width: auto;
}

.looks {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.looks li {
  padding: 22px 20px 26px;
  border-top: 3px solid transparent;
  background: var(--plate);
  border-image: linear-gradient(90deg, var(--gucci-g), var(--gucci-r), var(--gucci-g)) 1;
  transform: translateY(18px);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease, box-shadow 0.3s ease;
}

.looks li.is-in,
.path li.is-in,
.brief.is-in,
.dossier.is-in {
  transform: none;
  opacity: 1;
}

.looks li:hover {
  box-shadow: 0 0 0 1px rgba(200, 255, 0, 0.25), 0 16px 40px rgba(0, 0, 0, 0.3);
}

.looks b {
  font-family: var(--stamp);
  color: var(--horn);
  font-size: 28px;
}

.looks h3 {
  font-family: var(--fashion);
  margin: 10px 0 8px;
  font-size: 22px;
}

.looks p,
.path p {
  color: var(--mute);
  line-height: 1.6;
}

.howto {
  background: linear-gradient(180deg, var(--void), #0d0c0a 50%, var(--void));
}

.path {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  position: relative;
}

.path::before {
  content: "";
  position: absolute;
  top: 54px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--horn), var(--gold));
  opacity: 0.35;
}

.path li {
  position: relative;
  padding: 18px 16px 22px;
  background: rgba(16, 15, 13, 0.9);
  border: 1px solid var(--line);
  opacity: 0;
  transform: translateY(24px);
  transition: 0.55s ease;
}

.path-num {
  font-family: var(--stamp);
  font-size: 30px;
  color: var(--gold-hi);
}

.path-icon {
  width: 54px;
  height: 54px;
  margin: 12px 0 16px;
  display: grid;
  place-items: center;
  background: #111;
  border: 1px solid var(--line);
}

.path-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.path-icon.sol img {
  width: 42px;
  height: auto;
}

.path-icon img[src*="logo.png"] {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.path h3 {
  font-family: var(--fashion);
  font-size: 20px;
  margin-bottom: 8px;
}

.chart .screen {
  position: relative;
  height: min(720px, 80vh);
  border: 1px solid var(--gold);
  box-shadow: 0 0 0 8px #100f0d, 0 0 48px rgba(200, 255, 0, 0.08);
  overflow: hidden;
  background: #0b0b0b;
}

.chart .screen::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0 3px,
    rgba(255, 255, 255, 0.015) 3px 4px
  );
  z-index: 1;
}

.chart iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.join {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: end start;
  overflow: hidden;
}

.join-banner {
  position: absolute;
  inset: 0;
}

.join-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: ken 22s ease-in-out infinite alternate;
}

@keyframes ken {
  from { transform: scale(1) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-2%, -1%, 0); }
}

.join-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 7, 0.82) 0 42%, rgba(8, 8, 7, 0.18)),
    linear-gradient(to top, rgba(8, 8, 7, 0.7), transparent 45%);
}

.join-copy {
  position: relative;
  z-index: 2;
  padding: 80px 42px 70px;
  max-width: 720px;
}

.join-copy h2 {
  font-family: var(--fashion);
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.9;
  text-transform: uppercase;
  margin: 10px 0 16px;
}

.join-copy em {
  display: block;
  font-family: var(--piss);
  font-style: normal;
  color: var(--horn);
  text-transform: none;
}

.join-copy p:last-of-type {
  color: var(--cream);
  max-width: 460px;
  line-height: 1.7;
}

.join-acts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.foot {
  position: relative;
  z-index: 3;
  padding: 28px 0 36px;
  border-top: 8px solid transparent;
  border-image: linear-gradient(90deg, var(--gucci-g) 0 33%, var(--gucci-r) 33% 66%, var(--gucci-g) 66% 100%) 1;
  background: #070706;
}

.foot-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.foot-row p {
  color: var(--mute);
  text-align: center;
}

.foot-links {
  display: flex;
  gap: 10px;
}

.foot-links a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
}

.foot-links img {
  width: 16px;
  height: 16px;
}

.fine {
  margin-top: 18px;
  text-align: center;
  color: #6f6858;
  font-size: 12px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translate(-50%, 16px);
  padding: 10px 16px;
  background: var(--horn);
  color: #111;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  z-index: 70;
  transition: 0.3s ease;
}

.toast.is-on {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 110px;
  }

  .hero-stage {
    min-height: 420px;
    order: -1;
  }

  .about-grid,
  .looks,
  .path {
    grid-template-columns: 1fr;
  }

  .path::before {
    display: none;
  }

  .foot-row {
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .spine {
    width: 6px;
  }

  .mast-links {
    position: fixed;
    inset: 78px 12px auto 18px;
    display: none;
    flex-direction: column;
    padding: 18px;
    background: rgba(8, 8, 7, 0.96);
    border: 1px solid var(--line);
  }

  .mast-links.is-open {
    display: flex;
  }

  .burger {
    display: grid;
  }

  .chip span {
    display: none;
  }

  .gold-word {
    font-size: 58px;
  }

  .join-copy {
    padding: 48px 20px 48px 28px;
  }
}
