:root {
  color-scheme: dark;
  --ink: #050309;
  --ink-soft: #0a0610;
  --panel: rgba(12, 7, 20, 0.78);
  --panel-strong: rgba(13, 8, 23, 0.92);
  --text: #f8f7fb;
  --muted: #c5bdcc;
  --muted-dark: #8f879a;
  --pink: #ff1593;
  --magenta: #ed0b69;
  --red: #ff163c;
  --violet: #8a32ff;
  --cyan: #45d7ff;
  --blurple: #5865f2;
  --line: rgba(255, 25, 143, 0.28);
  --focus: #8fe9ff;
  --radius: 15px;
  --font-body: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Black", sans-serif;
}

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

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scrollbar-color: var(--pink) #08050d;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  background:
    radial-gradient(circle at 77% 21%, rgba(108, 27, 184, 0.16), transparent 25rem),
    radial-gradient(circle at 45% 82%, rgba(208, 0, 107, 0.11), transparent 32rem),
    linear-gradient(180deg, #020207 0%, #07030b 55%, #030208 100%);
}

body::before {
  position: fixed;
  z-index: -2;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.34;
  background-image:
    radial-gradient(circle at 10% 16%, rgba(255, 29, 125, 0.75) 0 1px, transparent 1.5px),
    radial-gradient(circle at 73% 12%, rgba(145, 65, 255, 0.7) 0 1px, transparent 1.5px),
    radial-gradient(circle at 41% 72%, rgba(255, 31, 105, 0.65) 0 1px, transparent 1.5px);
  background-size: 118px 123px, 163px 149px, 211px 191px;
}

body::after {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(255, 255, 255, 0.018) 50%, transparent 50.2%),
    linear-gradient(0deg, transparent 49.8%, rgba(255, 255, 255, 0.015) 50%, transparent 50.2%);
  background-size: 90px 90px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}

img,
svg {
  display: block;
}

[hidden] {
  display: none !important;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  color: #050309;
  font-weight: 800;
  text-decoration: none;
  background: #fff;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(calc(100% - 64px), 1540px);
  margin-inline: auto;
}

.site-frame {
  min-height: 100vh;
  overflow: hidden;
  border: 1px solid rgba(178, 146, 206, 0.13);
  background:
    linear-gradient(180deg, rgba(4, 3, 9, 0.14), rgba(4, 2, 9, 0.54)),
    radial-gradient(circle at 75% 33%, rgba(244, 0, 121, 0.08), transparent 31rem);
}

/* Header */

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(255, 40, 145, 0.13);
  background: rgba(2, 2, 8, 0.78);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  backdrop-filter: blur(18px) saturate(135%);
}

.site-header::after {
  position: absolute;
  right: 8%;
  bottom: -1px;
  left: 8%;
  height: 1px;
  content: "";
  opacity: 0.62;
  background: linear-gradient(90deg, transparent, var(--pink) 30%, var(--violet) 68%, transparent);
  filter: blur(0.3px);
}

.header-inner {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand-link {
  flex: 0 1 auto;
  border-radius: 9px;
}

.brand-logo {
  width: clamp(210px, 17vw, 282px);
  aspect-ratio: 4 / 1;
  object-fit: contain;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.button {
  position: relative;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 11px 18px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 11px;
  color: #fff;
  font-weight: 750;
  letter-spacing: 0.045em;
  text-decoration: none;
  isolation: isolate;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: 0;
  transform: translateX(-40%);
  background: linear-gradient(100deg, transparent 20%, rgba(255, 255, 255, 0.18), transparent 78%);
  transition: opacity 180ms ease, transform 500ms ease;
}

.button:hover::before,
.button:focus-visible::before,
.button:target::before {
  opacity: 1;
  transform: translateX(40%);
}

.button:active {
  transform: translateY(1px) scale(0.99);
}

.button-icon,
.button-arrow {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.button-arrow {
  width: 17px;
  height: 17px;
  opacity: 0.85;
}

.button:hover .button-arrow:not(.button-arrow-back),
.button:focus-visible .button-arrow:not(.button-arrow-back),
.button:target .button-arrow:not(.button-arrow-back) {
  transform: translateX(3px);
}

.button:hover .button-arrow-back,
.button:focus-visible .button-arrow-back,
.button:target .button-arrow-back {
  transform: translateX(-3px);
}

.button-home {
  border-color: transparent;
  color: #f4eefa;
  background:
    radial-gradient(circle at 15% 50%, rgba(255, 28, 145, 0.1), transparent 36%) padding-box,
    linear-gradient(110deg, rgba(10, 6, 17, 0.96), rgba(6, 4, 12, 0.92)) padding-box,
    linear-gradient(100deg, rgba(255, 33, 139, 0.94), rgba(116, 57, 255, 0.88), rgba(255, 33, 139, 0.52)) border-box;
  box-shadow:
    inset 0 0 22px rgba(190, 48, 255, 0.08),
    inset 0 1px rgba(255, 255, 255, 0.06),
    0 9px 28px rgba(0, 0, 0, 0.24);
}

.button-home:hover,
.button-home:focus-visible,
.button-home:target {
  border-color: transparent;
  background:
    radial-gradient(circle at 18% 50%, rgba(255, 31, 143, 0.18), transparent 42%) padding-box,
    linear-gradient(rgba(27, 9, 32, 0.98), rgba(11, 5, 17, 0.98)) padding-box,
    linear-gradient(100deg, #ff258e, #8a43ff, #ff258e) border-box;
  box-shadow:
    inset 0 0 28px rgba(245, 28, 153, 0.15),
    inset 0 1px rgba(255, 255, 255, 0.1),
    0 11px 30px rgba(0, 0, 0, 0.28),
    0 0 25px rgba(220, 22, 142, 0.18);
  transform: translateY(-2px);
}

.button-home .home-icon {
  color: #ff2a91;
  filter: drop-shadow(0 0 6px rgba(255, 28, 139, 0.62));
}

.button-discord {
  border-color: #737dfb;
  background:
    linear-gradient(105deg, rgba(91, 56, 211, 0.98), rgba(60, 60, 190, 0.98) 58%, rgba(55, 65, 224, 0.98)),
    var(--blurple);
  box-shadow:
    inset 0 0 16px rgba(255, 255, 255, 0.08),
    0 8px 22px rgba(70, 73, 225, 0.22),
    0 0 18px rgba(89, 80, 255, 0.18);
}

.button-discord:hover,
.button-discord:focus-visible {
  border-color: #a9afff;
  box-shadow:
    inset 0 0 22px rgba(255, 255, 255, 0.13),
    0 12px 30px rgba(78, 79, 239, 0.34),
    0 0 27px rgba(89, 80, 255, 0.32);
  transform: translateY(-2px);
}

.discord-mark {
  width: 31px;
  height: auto;
  flex: 0 0 auto;
}

.button-discord-header {
  min-width: 220px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.discord-label-compact {
  display: none;
}

/* Hero */

.hero {
  position: relative;
  min-height: 555px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 22px;
  margin-bottom: 20px;
  padding: 30px 36px 26px;
  border: 1px solid rgba(255, 30, 133, 0.17);
  border-radius: 18px;
  isolation: isolate;
  background: #030209;
  box-shadow: inset 0 0 50px rgba(8, 2, 18, 0.45), 0 22px 60px rgba(0, 0, 0, 0.25);
}

.hero::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3, 2, 9, 0.99) 0%, rgba(3, 2, 9, 0.92) 34%, rgba(3, 2, 9, 0.42) 48%, transparent 61%),
    linear-gradient(180deg, rgba(3, 2, 9, 0.16), transparent 38%, rgba(3, 2, 9, 0.16));
}

.hero-artwork {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-artwork img {
  position: absolute;
  top: 50%;
  right: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: right center;
  transform: translateY(-50%) scale(1.08);
  transform-origin: right center;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(48%, 650px);
  min-width: 0;
  padding-block: 18px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 15px;
  color: #ff2084;
  font-size: clamp(0.76rem, 1vw, 0.94rem);
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 7px rgba(255, 20, 134, 0.68));
}

h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.7rem, 5.15vw, 6rem);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: 0.012em;
  line-height: 0.96;
  text-transform: uppercase;
}

h1 > span {
  display: block;
  white-space: nowrap;
}

.title-light {
  color: #f8f7f6;
  text-shadow: 0 2px 0 #a8a3a8, 0 7px 20px rgba(255, 255, 255, 0.14);
}

.title-accent {
  color: #ff134f;
  background: linear-gradient(180deg, #ff255f 0%, #ed0754 43%, #ca0639 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 13px rgba(255, 6, 85, 0.2));
}

.hero-intro {
  max-width: 570px;
  margin: 18px 0 22px;
  color: #d2ccd7;
  font-size: clamp(0.98rem, 1.12vw, 1.1rem);
  line-height: 1.55;
}

.button-discord-main {
  min-height: 62px;
  min-width: min(100%, 440px);
  justify-content: flex-start;
  padding: 12px 20px 12px 13px;
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.button-discord-main .button-arrow {
  margin-left: auto;
}

.discord-icon-wrap {
  width: 44px;
  height: 42px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 16px rgba(255, 255, 255, 0.1);
}

.discord-icon-wrap .discord-mark {
  width: 29px;
}

.trust-list {
  max-width: 655px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px clamp(18px, 2vw, 32px);
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  color: #dad4df;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-list svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--pink);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 5px rgba(255, 17, 138, 0.48));
}


.benefits {
  position: relative;
  z-index: 12;
  padding-top: 2px;
  padding-bottom: 12px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  margin-bottom: 17px;
}

.section-heading > span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 28, 139, 0.72));
  box-shadow: 0 0 7px rgba(255, 19, 129, 0.28);
}

.section-heading > span:last-child {
  background: linear-gradient(90deg, rgba(255, 28, 139, 0.72), transparent);
}

.section-heading h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.31em;
  text-transform: uppercase;
}

.section-heading h2 svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--pink);
  stroke-width: 1.8;
  stroke-linecap: round;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.benefit-card {
  position: relative;
  min-height: 119px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 17px;
  padding: 17px 18px;
  overflow: hidden;
  border: 1px solid rgba(238, 47, 150, 0.22);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(19, 10, 28, 0.9), rgba(8, 6, 15, 0.82)),
    rgba(9, 6, 15, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025), 0 12px 35px rgba(0, 0, 0, 0.16);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.benefit-card::after {
  position: absolute;
  top: -50%;
  right: -15%;
  width: 110px;
  height: 180%;
  content: "";
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 29, 145, 0.055), transparent);
  transform: rotate(20deg);
  transition: opacity 180ms ease, right 360ms ease;
}

.benefit-card:hover {
  border-color: rgba(255, 43, 151, 0.46);
  box-shadow: inset 0 0 24px rgba(238, 25, 135, 0.06), 0 16px 38px rgba(0, 0, 0, 0.25), 0 0 22px rgba(232, 25, 138, 0.06);
  transform: translateY(-3px);
}

.benefit-card:hover::after {
  right: 65%;
  opacity: 1;
}

.benefit-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
}

.benefit-icon svg {
  width: 50px;
  height: 50px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 7px currentColor);
}

.icon-pink { color: #ff1a9b; }
.icon-violet { color: #8d43ff; }
.icon-blue { color: #536dff; }
.icon-magenta { color: #fd15c3; }

.benefit-card h3 {
  margin: 0 0 5px;
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.benefit-card p {
  margin: 0;
  color: #bdb6c5;
  font-size: 0.82rem;
  line-height: 1.45;
}

/* Banner and final CTA */

.brand-moment {
  margin-top: 2px;
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 24, 137, 0.72);
  border-radius: 12px;
  background: #07030d;
  box-shadow: inset 0 0 20px rgba(255, 15, 142, 0.06), 0 0 18px rgba(255, 17, 137, 0.09);
}

.brand-moment img {
  width: 100%;
  height: auto;
}

.closing-cta {
  position: relative;
  min-height: 105px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  margin-bottom: 9px;
  padding: 18px clamp(24px, 4vw, 70px);
  overflow: hidden;
  border: 1px solid rgba(255, 19, 136, 0.6);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(23, 5, 22, 0.97), rgba(7, 4, 14, 0.7) 48%, rgba(23, 5, 24, 0.89)),
    url("/assets/images/festival-crowd.webp") center 58% / cover no-repeat;
  box-shadow: inset 0 0 35px rgba(233, 13, 132, 0.09);
}

.closing-cta::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.35;
  background: radial-gradient(circle at 17% 95%, rgba(255, 18, 145, 0.5), transparent 22%), radial-gradient(circle at 70% 100%, rgba(112, 40, 255, 0.42), transparent 25%);
}

.closing-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 22px;
}

.closing-icon {
  width: 55px;
  height: 55px;
  flex: 0 0 auto;
  fill: none;
  stroke: #ff1aa8;
  stroke-width: 2.1;
  stroke-linecap: round;
  filter: drop-shadow(0 0 8px rgba(255, 21, 162, 0.65));
}

.closing-content h2 {
  margin: 0 0 4px;
  color: #ff2a9a;
  font-size: 0.98rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.closing-content p {
  margin: 0;
  color: #d3cbd7;
  font-size: 0.86rem;
}

.button-discord-closing {
  z-index: 1;
  min-width: 410px;
  min-height: 58px;
  padding-inline: 22px;
  font-size: 0.96rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.button-discord-closing .button-arrow {
  margin-left: auto;
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(255, 25, 139, 0.14);
  background: rgba(2, 2, 7, 0.78);
}

.footer-main {
  min-height: 104px;
  display: grid;
  grid-template-columns: 1.05fr 0.85fr 0.75fr 1fr 1.12fr;
  align-items: center;
  gap: 24px;
}

.footer-project,
.footer-powered {
  display: flex;
  align-items: center;
  gap: 13px;
}

.tb-mark {
  width: 44px;
  height: 44px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 2px solid #efedf3;
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: -0.08em;
}

.footer-main p {
  margin: 0;
}

.footer-main small,
.footer-main strong {
  display: block;
}

.footer-main small {
  margin-bottom: 3px;
  color: #7f7886;
  font-size: 0.72rem;
  font-weight: 500;
}

.footer-main strong {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.footer-logo-link {
  border-radius: 7px;
}

.footer-logo-link img {
  width: 220px;
}

.mini-eq {
  height: 37px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #7958ff;
}

.mini-eq i {
  width: 2px;
  height: 25%;
  display: block;
  background: currentColor;
  box-shadow: 0 0 6px currentColor;
}

.mini-eq i:nth-child(2) { height: 70%; color: #436dff; }
.mini-eq i:nth-child(3) { height: 100%; color: #ff2e9d; }
.mini-eq i:nth-child(4) { height: 58%; color: #7057ff; }
.mini-eq i:nth-child(5) { height: 35%; color: #436dff; }

.footer-contact,
.footer-home {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 7px;
  color: #9b94a1;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: color 160ms ease, text-shadow 160ms ease;
}

.footer-contact:hover,
.footer-home:hover {
  color: #fff;
  text-shadow: 0 0 8px rgba(255, 34, 148, 0.42);
}

.footer-contact svg,
.footer-home svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-legal {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
  color: #706978;
  font-size: 0.67rem;
}

.footer-legal p {
  max-width: 800px;
  margin: 0;
}

.footer-legal nav {
  display: flex;
  flex: 0 0 auto;
  gap: 18px;
}

.footer-legal a,
.footer-legal span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  border-radius: 4px;
  color: #8f8798;
}

.footer-legal a {
  text-decoration-color: rgba(255, 255, 255, 0.3);
  text-underline-offset: 3px;
}

.footer-legal span[aria-disabled="true"] {
  opacity: 0.62;
  cursor: not-allowed;
}

/* Motion */


@media (max-width: 1320px) {
  .shell {
    width: min(calc(100% - 48px), 1240px);
  }

  .header-inner {
    min-height: 88px;
  }

  .button-home {
    padding-inline: 15px;
  }

  .home-label {
    font-size: 0.85rem;
  }

  .button-discord-header {
    min-width: 200px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: 510px;
    padding-inline: 30px;
  }

  .hero-copy {
    width: min(49%, 590px);
  }

  h1 {
    font-size: clamp(3.45rem, 5.4vw, 5.15rem);
  }

  .benefit-card {
    grid-template-columns: 49px minmax(0, 1fr);
    gap: 12px;
    padding-inline: 14px;
  }

  .benefit-icon,
  .benefit-icon svg {
    width: 46px;
    height: 46px;
  }

  .button-discord-closing {
    min-width: 355px;
  }

  .footer-main {
    grid-template-columns: 1.1fr 0.85fr 0.75fr 1fr;
  }

  .footer-home {
    grid-column: 4;
  }

  .footer-contact {
    grid-column: 4;
    grid-row: 1;
    transform: translateY(-17px);
  }

  .footer-home {
    transform: translateY(17px);
  }
}

@media (max-width: 1080px) {
  .home-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }

  .button-home {
    width: 52px;
    padding: 0;
  }

  .button-home .button-arrow {
    display: none;
  }

  .hero {
    min-height: 490px;
    padding-inline: 26px;
  }

  .hero-copy {
    width: min(50%, 500px);
  }

  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefit-card {
    min-height: 110px;
  }

  .closing-cta {
    padding-inline: 27px;
  }

  .button-discord-closing {
    min-width: 330px;
  }
}

@media (max-width: 900px) {
  .shell {
    width: min(calc(100% - 36px), 780px);
  }

  .hero {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 18px;
    margin-bottom: 24px;
    padding: 28px 28px 0;
  }

  .hero-copy {
    z-index: 3;
    grid-row: 1;
    width: 100%;
    padding: 0;
  }

  .hero-intro {
    max-width: 660px;
  }

  .hero::before {
    height: 58%;
    background: linear-gradient(180deg, rgba(3, 2, 9, 0.3), transparent 62%);
  }

  .hero-artwork {
    position: relative;
    z-index: 1;
    inset: auto;
    grid-row: 2;
    width: calc(100% + 56px);
    aspect-ratio: 960 / 725;
    margin: 24px -28px 0;
    border-top: 1px solid rgba(255, 30, 133, 0.22);
    background: #030209;
  }

  .hero-artwork img {
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: none;
  }

  .section-heading {
    margin-top: 10px;
  }

  .closing-cta {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-block: 23px;
  }

  .button-discord-closing {
    width: 100%;
  }

  .footer-main {
    min-height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 32px;
    padding-block: 26px;
  }

  .footer-contact,
  .footer-home {
    grid-column: auto;
    grid-row: auto;
    transform: none;
  }

  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }
}

@media (max-width: 680px) {
  .header-inner {
    min-height: 82px;
    gap: 12px;
  }

  .brand-logo {
    width: 190px;
  }

  .header-actions {
    gap: 8px;
  }

  .button-discord-header {
    min-width: 0;
    padding-inline: 13px;
  }

  .button-discord-header .button-arrow {
    display: none;
  }

  .discord-label-wide {
    display: none;
  }

  .discord-label-compact {
    display: inline;
  }

  .eyebrow {
    letter-spacing: 0.17em;
  }

  h1 {
    font-size: clamp(2.85rem, 12.4vw, 4.9rem);
  }

  .button-discord-main {
    width: 100%;
    min-width: 0;
  }

  .section-heading {
    gap: 14px;
  }

  .section-heading h2 {
    font-size: 0.88rem;
    letter-spacing: 0.22em;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: 105px;
  }

  .closing-content {
    align-items: flex-start;
  }

  .closing-content h2 {
    letter-spacing: 0.19em;
    line-height: 1.35;
  }

  .button-discord-closing {
    min-width: 0;
    padding-inline: 16px;
    font-size: 0.84rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-logo-link img {
    width: 240px;
  }
}

@media (max-width: 480px) {
  .shell {
    width: calc(100% - 26px);
  }

  .site-header {
    position: relative;
  }

  .header-inner {
    min-height: 126px;
    flex-wrap: wrap;
    align-content: center;
    padding-block: 12px;
  }

  .brand-logo {
    width: 198px;
  }

  .header-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .button-home,
  .button-discord-header {
    min-height: 48px;
  }

  .button-discord-header {
    width: 100%;
  }

  .hero {
    padding: 24px 16px 0;
  }

  .hero-copy {
    padding-top: 12px;
  }

  .eyebrow {
    gap: 9px;
    margin-bottom: 12px;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

  .eyebrow svg {
    width: 20px;
    height: 20px;
  }

  h1 {
    font-size: clamp(2.1rem, 10.6vw, 2.75rem);
    line-height: 0.99;
  }

  .hero-intro {
    margin-block: 16px 19px;
    font-size: 0.93rem;
  }

  .button-discord-main {
    min-height: 58px;
    gap: 9px;
    font-size: 0.78rem;
    letter-spacing: 0.045em;
  }

  .button-discord-main .button-arrow {
    display: none;
  }

  .trust-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 8px;
    font-size: 0.62rem;
  }

  .trust-list li {
    align-items: flex-start;
  }

  .hero-artwork {
    width: calc(100% + 32px);
    margin: 22px -16px 0;
  }

  .section-heading {
    grid-template-columns: 32px auto 1fr;
  }

  .section-heading h2 {
    white-space: nowrap;
  }

  .benefit-card {
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 16px 14px;
  }

  .benefit-card h3 {
    font-size: 0.8rem;
  }

  .benefit-card p {
    font-size: 0.79rem;
  }

  .brand-moment {
    border-radius: 10px;
  }

  .closing-cta {
    padding: 20px 17px;
  }

  .closing-icon {
    width: 42px;
    height: 42px;
  }

  .closing-content {
    gap: 13px;
  }

  .closing-content h2 {
    font-size: 0.85rem;
  }

  .closing-content p {
    font-size: 0.8rem;
  }

  .button-discord-closing {
    justify-content: flex-start;
  }

  .button-discord-closing .button-arrow {
    margin-left: auto;
  }

  .footer-legal nav {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 350px) {
  .brand-logo {
    width: 180px;
  }

  .button-discord-header {
    font-size: 0.74rem;
  }

  .button-discord-main .discord-icon-wrap {
    width: 36px;
    height: 36px;
  }

  .button-discord-main {
    gap: 7px;
    padding-inline: 9px;
    font-size: 0.7rem;
  }

  .benefit-card {
    grid-template-columns: 43px minmax(0, 1fr);
    gap: 10px;
    padding-inline: 12px;
  }

  .benefit-icon,
  .benefit-icon svg {
    width: 41px;
    height: 41px;
  }

  .closing-icon {
    display: none;
  }

  .button-discord-closing {
    font-size: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

}

@media print {
  .site-header {
    position: static;
  }

  .hero,
  .brand-moment,
  .closing-cta {
    break-inside: avoid;
  }
}
