﻿@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Sora:wght@500;600;700;800&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Bangers&display=swap");

:root {
  --bg: #07080c;
  --surface: rgba(17, 18, 24, 0.78);
  --surface-strong: rgba(26, 27, 34, 0.94);
  --text: #f6f7fb;
  --muted: #aeb4c0;
  --faint: #757b87;
  --line: rgba(140, 116, 255, 0.28);
  --line-soft: rgba(255, 255, 255, 0.09);
  --neon: #8b6cff;
  --neon-hot: #a985ff;
  --neon-cyan: #72d7ff;
  --neon-deep: #30245f;
  --discord: #5865f2;
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.62);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(139, 108, 255, 0.12), transparent 34rem),
    linear-gradient(225deg, rgba(114, 215, 255, 0.08), transparent 30rem),
    linear-gradient(180deg, #101116 0%, #07080c 46%, #050508 100%);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.88), transparent 84%);
}

body::after {
  background:
    linear-gradient(90deg, transparent, rgba(139, 108, 255, 0.08), transparent) 50% 41% / 52rem 1px no-repeat,
    linear-gradient(90deg, transparent, rgba(114, 215, 255, 0.05), transparent) 50% 43% / 38rem 1px no-repeat;
}

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

.hub-header,
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 84px;
  padding: 20px clamp(18px, 3vw, 44px);
}

.landing-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  min-height: 82px;
  padding: 18px clamp(18px, 4vw, 64px);
  background: rgba(4, 2, 8, 0.78);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(18px);
}

.landing-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.landing-nav a {
  padding: 10px 13px;
  border-radius: 8px;
  color: var(--muted);
  font-family: "Sora", "Inter", sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
}

.landing-nav a:hover,
.landing-nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(189, 92, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(189, 92, 255, 0.3);
}

.site-header {
  position: sticky;
  background: rgba(4, 2, 8, 0.76);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Sora", "Inter", sans-serif;
  font-weight: 800;
  letter-spacing: 0;
}

.ghost-brand {
  opacity: 0.4;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--neon-hot), var(--neon-deep));
  box-shadow:
    0 0 18px rgba(189, 92, 255, 0.72),
    0 0 44px rgba(240, 77, 255, 0.24);
}

.brand-mark.small {
  width: 34px;
  height: 34px;
  font-size: 0.76rem;
}

.login-button,
.nav-cta,
.button,
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 11px 17px;
  border: 1px solid rgba(189, 92, 255, 0.26);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.login-button {
  min-width: 96px;
  background: rgba(24, 12, 38, 0.82);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.035),
    0 0 26px rgba(189, 92, 255, 0.1);
}

.login-button:hover,
.button:hover,
.icon-button:hover,
.nav a:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 77, 255, 0.78);
  box-shadow:
    0 0 20px rgba(189, 92, 255, 0.22),
    0 0 52px rgba(88, 231, 255, 0.08);
}

.hub-main {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 118px 20px 56px;
}

.landing-page main {
  position: relative;
  z-index: 1;
}

.landing-hero {
  width: min(1220px, calc(100% - 36px));
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
  margin: 0 auto;
  padding: clamp(52px, 8vw, 96px) 0 54px;
}

.hero-copy-block {
  max-width: 620px;
}

.hero-copy-block h1 {
  margin-bottom: 18px;
  color: var(--text);
  font-size: clamp(3.25rem, 8vw, 6.8rem);
  line-height: 0.88;
  letter-spacing: 0;
  text-shadow:
    0 0 18px rgba(189, 92, 255, 0.72),
    0 0 56px rgba(240, 77, 255, 0.26);
}

.hero-copy-block p:not(.eyebrow) {
  color: #d8cde4;
  font-size: clamp(1.12rem, 2vw, 1.34rem);
  line-height: 1.65;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button.subtle {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.055);
}

.hero-showcase {
  position: relative;
  min-height: 430px;
}

.showcase-city {
  display: block;
  width: 100%;
  min-height: 390px;
  object-fit: cover;
  border: 1px solid rgba(189, 92, 255, 0.42);
  border-radius: 8px;
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.68),
    0 0 70px rgba(189, 92, 255, 0.16);
}

.showcase-card {
  position: absolute;
  width: min(270px, 56%);
  padding: 16px;
  border: 1px solid rgba(189, 92, 255, 0.38);
  border-radius: 8px;
  background: rgba(9, 4, 15, 0.82);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(14px);
}

.showcase-card.live {
  left: -18px;
  bottom: 44px;
}

.showcase-card.status {
  right: -14px;
  top: 42px;
}

.showcase-card span,
.quick-card span,
.feature-list span,
.media-card span {
  display: block;
  color: var(--neon-cyan);
  font-family: "Sora", "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.showcase-card strong {
  display: block;
  margin-top: 7px;
  color: var(--text);
  font-size: 1.08rem;
}

.landing-section,
.quick-grid,
.media-strip {
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto;
}

.landing-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
  padding: 70px 0 26px;
}

.landing-section h2 {
  margin-bottom: 0;
  font-size: clamp(2.25rem, 5vw, 4.3rem);
  line-height: 0.96;
}

.landing-section > p {
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.75;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 36px 0 62px;
}

.quick-card,
.feature-list article,
.media-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.024)),
    var(--surface);
  box-shadow: var(--shadow);
}

.quick-card {
  min-height: 168px;
  padding: 22px;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.quick-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 77, 255, 0.8);
  box-shadow:
    0 24px 78px rgba(0, 0, 0, 0.62),
    0 0 42px rgba(189, 92, 255, 0.17);
}

.quick-card h2 {
  margin: 16px 0 8px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.quick-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.quick-card.highlight {
  background:
    linear-gradient(135deg, rgba(88, 101, 242, 0.78), rgba(127, 61, 255, 0.82)),
    var(--surface);
}

.quick-card.store {
  background:
    radial-gradient(circle at 100% 0%, rgba(240, 77, 255, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(116, 26, 255, 0.22), rgba(255, 255, 255, 0.026)),
    var(--surface);
}

.feature-section {
  padding-top: 32px;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list article {
  padding: 20px;
}

.feature-list h3 {
  margin: 12px 0 8px;
  font-size: 1.35rem;
}

.feature-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.media-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  grid-auto-rows: 180px;
  gap: 14px;
  padding: 42px 0 86px;
}

.media-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(189, 92, 255, 0.2), rgba(88, 231, 255, 0.08)),
    url("assets/fairside-hero.svg") center / cover no-repeat;
}

.media-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.76)),
    radial-gradient(circle at 20% 20%, rgba(240, 77, 255, 0.16), transparent 38%);
}

.media-card span {
  position: relative;
  z-index: 1;
  color: #fff;
}

.media-card.large {
  grid-row: span 2;
}

.media-card.wide {
  grid-column: span 2;
}

.premium-home {
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 28%, rgba(255, 47, 205, 0.14), transparent 30rem),
    radial-gradient(circle at 86% 14%, rgba(143, 52, 255, 0.16), transparent 34rem),
    linear-gradient(180deg, #0b040f 0%, #050207 48%, #010102 100%);
}

.premium-home::before {
  opacity: 0;
}

.premium-home::after {
  background:
    linear-gradient(116deg, transparent 0 38%, rgba(255, 57, 218, 0.14) 39%, transparent 43%),
    linear-gradient(63deg, transparent 0 57%, rgba(120, 62, 255, 0.12) 58%, transparent 61%);
}

.premium-header {
  background: linear-gradient(180deg, rgba(9, 10, 15, 0.9), rgba(9, 10, 15, 0.58));
  border-bottom-color: rgba(139, 108, 255, 0.16);
}

.graffiti-hero {
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 49, 210, 0.24), transparent 31rem),
    radial-gradient(circle at 79% 32%, rgba(119, 61, 255, 0.18), transparent 32rem),
    linear-gradient(180deg, #100317 0%, #050207 58%, #010102 100%);
}

.graffiti-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(118deg, transparent 0 34%, rgba(255, 52, 214, 0.18) 35%, transparent 39%),
    linear-gradient(63deg, transparent 0 62%, rgba(128, 64, 255, 0.16) 63%, transparent 67%),
    radial-gradient(circle at 64% 18%, rgba(255, 255, 255, 0.08), transparent 18rem);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.88), transparent 92%);
}

.graffiti-hero .neon-scene {
  opacity: 0.92;
  background:
    linear-gradient(180deg, rgba(19, 7, 31, 0.42), rgba(5, 3, 8, 0.8)),
    #050309;
}

.graffiti-hero .hero-vignette {
  background:
    linear-gradient(90deg, rgba(6, 3, 11, 0.94) 0%, rgba(8, 4, 14, 0.74) 46%, rgba(8, 3, 13, 0.46) 100%),
    linear-gradient(180deg, transparent 0%, rgba(5, 3, 8, 0.94) 100%);
}

.glass-shard-layer {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  perspective: 1200px;
}

.glass-shard {
  position: absolute;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.2), rgba(255, 71, 219, 0.08) 34%, rgba(106, 236, 255, 0.08) 64%, rgba(255, 255, 255, 0.04)),
    linear-gradient(28deg, rgba(255, 62, 216, 0.12), rgba(111, 66, 255, 0.06));
  clip-path: polygon(7% 3%, 83% 0, 100% 34%, 86% 100%, 24% 88%, 0 42%);
  box-shadow:
    inset 0 0 42px rgba(255, 255, 255, 0.08),
    inset 18px 0 28px rgba(255, 62, 216, 0.09),
    inset -18px 0 36px rgba(95, 232, 255, 0.08),
    0 0 52px rgba(255, 62, 216, 0.14),
    0 34px 90px rgba(0, 0, 0, 0.58);
  opacity: 0.86;
  backdrop-filter: blur(8px) saturate(1.7);
  transform-style: preserve-3d;
  animation: shardDrift 8.5s ease-in-out infinite;
}

.glass-shard::before,
.glass-shard::after {
  content: "";
  position: absolute;
  inset: 10%;
  background:
    linear-gradient(105deg, transparent 0 37%, rgba(255, 255, 255, 0.46) 38%, transparent 42%),
    linear-gradient(18deg, transparent 0 62%, rgba(255, 75, 222, 0.36) 63%, transparent 66%);
  clip-path: inherit;
}

.glass-shard::after {
  inset: 0;
  border: 1px solid rgba(255, 74, 224, 0.18);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.22), transparent 30%, rgba(255, 70, 220, 0.14) 72%, transparent);
}

.shard-one {
  width: min(40vw, 620px);
  height: min(78vh, 620px);
  top: 7%;
  left: -7%;
  transform: rotate(-12deg) rotateY(18deg) translate3d(calc(var(--cursor-x, 0) * -18px), calc(var(--cursor-y, 0) * -14px), 0);
}

.shard-two {
  width: min(38vw, 570px);
  height: min(62vh, 480px);
  top: -8%;
  left: 31%;
  clip-path: polygon(24% 0, 100% 8%, 91% 52%, 68% 100%, 0 84%, 14% 28%);
  transform: rotate(18deg) rotateY(-22deg) translate3d(calc(var(--cursor-x, 0) * 24px), calc(var(--cursor-y, 0) * -20px), 0);
  animation-delay: -2.3s;
}

.shard-three {
  width: min(38vw, 590px);
  height: min(76vh, 600px);
  right: -6%;
  top: 12%;
  clip-path: polygon(0 13%, 72% 0, 100% 28%, 92% 100%, 17% 88%, 8% 48%);
  transform: rotate(11deg) rotateY(-18deg) translate3d(calc(var(--cursor-x, 0) * 18px), calc(var(--cursor-y, 0) * 16px), 0);
  animation-delay: -4.4s;
}

.shard-four {
  width: min(36vw, 540px);
  height: min(55vh, 430px);
  left: 21%;
  bottom: -12%;
  clip-path: polygon(0 18%, 62% 0, 100% 32%, 84% 100%, 16% 86%);
  transform: rotate(-26deg) rotateY(20deg) translate3d(calc(var(--cursor-x, 0) * -20px), calc(var(--cursor-y, 0) * 20px), 0);
  animation-delay: -1.5s;
}

.shard-five {
  width: min(33vw, 500px);
  height: min(52vh, 390px);
  right: 20%;
  bottom: -15%;
  clip-path: polygon(18% 0, 100% 24%, 86% 78%, 54% 100%, 0 72%, 7% 26%);
  transform: rotate(29deg) rotateY(-12deg) translate3d(calc(var(--cursor-x, 0) * 22px), calc(var(--cursor-y, 0) * 14px), 0);
  animation-delay: -6.2s;
}

@keyframes shardDrift {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -18px;
  }
}

.graffiti-inner {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

.graffiti-copy {
  max-width: 1120px;
  padding-top: clamp(12px, 5vh, 56px);
}

.graffiti-copy .eyebrow {
  color: #ff69ec;
  font-family: "Sora", "Inter", sans-serif;
  letter-spacing: 0.08em;
  text-shadow: 0 0 20px rgba(255, 61, 214, 0.42);
}

.graffiti-title {
  margin-bottom: 18px;
  transform-origin: left center;
}

.graffiti-word,
.graffiti-sub {
  display: block;
  width: max-content;
  max-width: 100%;
  position: relative;
  font-family: "Bangers", "Impact", "Arial Black", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  paint-order: stroke fill;
}

.graffiti-word::before,
.graffiti-sub::before,
.graffiti-word::after,
.graffiti-sub::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.graffiti-word::before,
.graffiti-sub::before {
  z-index: -1;
  color: #19001f;
  -webkit-text-fill-color: #19001f;
  -webkit-text-stroke: clamp(2px, 0.28vw, 5px) rgba(255, 70, 220, 0.26);
  transform: translate3d(12px, 14px, 0);
  filter: blur(0.2px);
}

.graffiti-word::after,
.graffiti-sub::after {
  z-index: 1;
  color: transparent;
  background:
    linear-gradient(180deg, transparent 0 13%, rgba(255, 255, 255, 0.92) 14%, transparent 18%),
    linear-gradient(180deg, transparent 0 48%, rgba(255, 255, 255, 0.86) 49%, transparent 54%),
    linear-gradient(90deg, transparent 0 14%, rgba(255, 255, 255, 0.42) 18%, transparent 28% 60%, rgba(255, 255, 255, 0.36) 66%, transparent 76%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.82;
  mix-blend-mode: screen;
}

.graffiti-word {
  color: transparent;
  background:
    linear-gradient(180deg, #ffffff 0%, #ffe9ff 10%, #d7b6d9 18%, #ff5bdf 31%, #9e31bd 43%, #fdf7ff 53%, #ff7bed 64%, #bd42d8 78%, #3a0345 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(7.7rem, 16.8vw, 14.5rem);
  line-height: 0.78;
  -webkit-text-stroke: clamp(1px, 0.26vw, 4px) rgba(255, 246, 255, 0.98);
  text-shadow:
    0 -1px 0 rgba(255, 255, 255, 0.9),
    0 0 24px rgba(255, 49, 210, 0.95),
    0 0 78px rgba(255, 49, 210, 0.42);
  filter:
    drop-shadow(6px 8px 0 #63068d)
    drop-shadow(12px 15px 0 rgba(10, 0, 14, 0.96))
    brightness(1.24)
    contrast(1.22)
    saturate(1.3);
  transform: skewX(-7deg) rotate(-1deg);
}

.graffiti-sub {
  margin-top: 8px;
  margin-left: clamp(18px, 4vw, 62px);
  color: transparent;
  background:
    linear-gradient(180deg, #ffffff 0%, #ffe4ff 12%, #ff73e8 29%, #9b30bd 42%, #ffffff 55%, #ff70ea 72%, #4b075e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(4.65rem, 9.6vw, 8.5rem);
  line-height: 0.8;
  -webkit-text-stroke: clamp(1px, 0.16vw, 3px) rgba(255, 242, 255, 0.94);
  text-shadow:
    0 -1px 0 rgba(255, 255, 255, 0.76),
    0 0 34px rgba(255, 49, 210, 0.76);
  filter:
    drop-shadow(4px 6px 0 #41025f)
    drop-shadow(8px 10px 0 rgba(10, 0, 14, 0.9));
  transform: skewX(-5deg) rotate(0.5deg);
}

.cinematic-hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(54px, 7vw, 92px) 0;
}

.neon-scene {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  display: block;
  background:
    linear-gradient(180deg, rgba(16, 17, 22, 0.2), rgba(5, 5, 8, 0.76)),
    #07080c;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 8, 12, 0.96) 0%, rgba(7, 8, 12, 0.74) 45%, rgba(7, 8, 12, 0.44) 100%),
    linear-gradient(180deg, transparent 0%, rgba(5, 5, 8, 0.9) 100%);
}

.floating-lines {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  transform: translate3d(calc(var(--cursor-x, 0) * -18px), calc(var(--cursor-y, 0) * -10px), 0);
}

.floating-lines span {
  position: absolute;
  left: 8%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(88, 231, 255, 0.28), rgba(240, 77, 255, 0.36), transparent);
  background: linear-gradient(90deg, transparent, rgba(114, 215, 255, 0.18), rgba(139, 108, 255, 0.2), transparent);
  animation: lineDrift 5.8s ease-in-out infinite;
}

.floating-lines span:nth-child(1) {
  top: 31%;
}

.floating-lines span:nth-child(2) {
  top: 56%;
  animation-delay: -1.9s;
}

.floating-lines span:nth-child(3) {
  top: 72%;
  animation-delay: -3.2s;
}

@keyframes lineDrift {
  0%,
  100% {
    opacity: 0.18;
    transform: translateX(-18px) scaleX(0.88);
  }
  50% {
    opacity: 0.72;
    transform: translateX(20px) scaleX(1);
  }
}

.cinematic-inner {
  width: min(1240px, calc(100% - 36px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  margin: 0 auto;
}

.cinematic-inner > * {
  min-width: 0;
}

.premium-copy {
  position: relative;
  max-width: 760px;
  min-width: 0;
  transform-style: preserve-3d;
}

.premium-copy .eyebrow {
  color: var(--neon-cyan);
  text-shadow: none;
}

.kinetic-title {
  margin: 0 0 22px;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 80ms linear;
}

.title-line {
  display: block;
  width: max-content;
  max-width: 100%;
  color: #f7f7fb;
  background: none;
  -webkit-text-stroke: 0;
  font-family: "Sora", "Inter", sans-serif;
  font-size: clamp(4rem, 10vw, 8.6rem);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: 0;
  text-shadow:
    0 2px 0 rgba(139, 108, 255, 0.45),
    0 18px 42px rgba(0, 0, 0, 0.5),
    0 0 34px rgba(139, 108, 255, 0.28);
}

.title-line-sub {
  margin-top: 8px;
  color: #d8d9e2;
  font-size: clamp(3rem, 8vw, 6.7rem);
}

.hero-lead {
  max-width: 650px;
  color: #ddd2eb;
  font-size: clamp(1.16rem, 2vw, 1.42rem);
  line-height: 1.62;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.pulse-button {
  position: relative;
  overflow: hidden;
}

.pulse-button::after {
  content: "";
  position: absolute;
  inset: -120% -60%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.36), transparent);
  transform: translateX(-80%) rotate(18deg);
  animation: shineSweep 3.4s ease-in-out infinite;
}

@keyframes shineSweep {
  0%,
  45% {
    transform: translateX(-88%) rotate(18deg);
  }
  72%,
  100% {
    transform: translateX(88%) rotate(18deg);
  }
}

.holo-panel {
  position: relative;
  justify-self: end;
  width: min(390px, 100%);
  padding: 22px;
  border: 1px solid rgba(139, 108, 255, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
    rgba(15, 16, 22, 0.62);
  box-shadow:
    0 28px 92px rgba(0, 0, 0, 0.56),
    0 0 64px rgba(139, 108, 255, 0.1);
  backdrop-filter: blur(18px);
  transform: translate3d(calc(var(--cursor-x, 0) * -20px), calc(var(--cursor-y, 0) * -12px), 0);
}

.holo-panel::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(88, 231, 255, 0.12);
  border-radius: 6px;
  pointer-events: none;
}

.holo-panel-top span,
.holo-stat-grid span {
  display: block;
  color: var(--neon-cyan);
  font-family: "Sora", "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.holo-panel-top strong {
  display: block;
  margin-top: 10px;
  font-family: "Sora", "Inter", sans-serif;
  font-size: 1.55rem;
}

.holo-stat-grid {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.holo-stat-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 58px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.holo-stat-grid a:hover {
  border-color: rgba(240, 77, 255, 0.72);
  background: rgba(189, 92, 255, 0.11);
}

.holo-stat-grid strong {
  font-family: "Sora", "Inter", sans-serif;
  font-size: 1rem;
}

.glass-band,
.story-section,
.motion-grid {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
}

.glass-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: -34px;
}

.glass-link,
.motion-grid article {
  border: 1px solid rgba(139, 108, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.078), rgba(255, 255, 255, 0.026)),
    rgba(15, 16, 22, 0.74);
  box-shadow: 0 22px 72px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(14px);
}

.glass-link {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 18px;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.glass-link:hover,
.motion-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(88, 231, 255, 0.42);
  background:
    linear-gradient(180deg, rgba(189, 92, 255, 0.13), rgba(255, 255, 255, 0.032)),
    rgba(13, 5, 23, 0.78);
}

.glass-link span {
  font-family: "Sora", "Inter", sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
}

.glass-link small {
  color: var(--muted);
  font-size: 0.98rem;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
  padding: 94px 0 42px;
}

.story-section h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  line-height: 0.92;
}

.story-section > p {
  color: var(--muted);
  font-size: 1.22rem;
  line-height: 1.72;
}

.motion-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 20px 0 92px;
}

.motion-grid article {
  min-height: 210px;
  padding: 24px;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.motion-grid span {
  display: block;
  color: var(--neon-cyan);
  font-family: "Sora", "Inter", sans-serif;
  font-size: 0.76rem;
  font-weight: 900;
}

.motion-grid h3 {
  margin: 46px 0 10px;
  font-size: 1.5rem;
}

.motion-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.hub-hero {
  width: min(790px, 100%);
  text-align: center;
}

.hub-logo {
  display: block;
  width: clamp(96px, 13vw, 128px);
  aspect-ratio: 1;
  margin: 0 auto 22px;
  border-radius: 18px;
  background: rgba(13, 6, 22, 0.82);
  box-shadow:
    0 0 0 1px rgba(189, 92, 255, 0.55),
    0 0 30px rgba(189, 92, 255, 0.82),
    0 0 86px rgba(240, 77, 255, 0.34);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
.section-pill,
.nav a {
  font-family: "Sora", "Inter", sans-serif;
}

.hub-hero h1 {
  margin-bottom: 11px;
  color: var(--neon);
  font-size: clamp(2.75rem, 6vw, 4.75rem);
  line-height: 0.96;
  letter-spacing: 0;
  text-shadow:
    0 0 12px rgba(189, 92, 255, 0.7),
    0 0 34px rgba(240, 77, 255, 0.33);
}

.hub-hero > p {
  max-width: 610px;
  margin: 0 auto 28px;
  color: #d8cde4;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.55;
}

.section-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 8px 14px;
  border: 1px solid rgba(189, 92, 255, 0.48);
  border-radius: 999px;
  color: #f6ddff;
  background: rgba(189, 92, 255, 0.11);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(189, 92, 255, 0.12);
}

.hub-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.hub-card,
.rule-block,
.content-card,
.redirect-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.022)),
    radial-gradient(circle at 18% 0%, rgba(189, 92, 255, 0.11), transparent 36%),
    var(--surface);
  box-shadow: var(--shadow);
}

.hub-card {
  min-height: 108px;
  padding: 20px;
  text-align: left;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.hub-card:hover {
  transform: translateY(-3px);
  border-color: rgba(240, 77, 255, 0.82);
  background:
    linear-gradient(180deg, rgba(189, 92, 255, 0.17), rgba(255, 255, 255, 0.03)),
    var(--surface-strong);
  box-shadow:
    0 26px 90px rgba(0, 0, 0, 0.66),
    0 0 42px rgba(189, 92, 255, 0.18);
}

.hub-card h2 {
  margin-bottom: 7px;
  font-size: clamp(1.02rem, 1.7vw, 1.22rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.hub-card p {
  margin-bottom: 0;
  color: #b9aec5;
  font-size: 0.98rem;
  line-height: 1.45;
}

.hub-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.icon-button.store,
.button.primary {
  border-color: rgba(240, 77, 255, 0.62);
  background: linear-gradient(135deg, #d34dff, #741aff 58%, #381057);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 22px rgba(189, 92, 255, 0.18);
}

.icon-button.discord,
.button.secondary {
  border-color: rgba(139, 108, 255, 0.58);
  background: linear-gradient(135deg, rgba(88, 101, 242, 0.88), rgba(127, 61, 255, 0.88));
}

.discord-mark {
  width: 24px;
  height: 19px;
  display: inline-block;
  flex: 0 0 auto;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M20.317 4.37A19.79 19.79 0 0 0 15.432 2.855a.074.074 0 0 0-.079.037c-.21.375-.444.864-.608 1.249a18.27 18.27 0 0 0-5.487 0 12.64 12.64 0 0 0-.617-1.249.077.077 0 0 0-.079-.037A19.736 19.736 0 0 0 3.677 4.37a.07.07 0 0 0-.032.027C.533 9.046-.32 13.58.099 18.057a.082.082 0 0 0 .031.057 19.9 19.9 0 0 0 5.993 3.03.078.078 0 0 0 .084-.028 14.09 14.09 0 0 0 1.226-1.994.076.076 0 0 0-.041-.106 13.107 13.107 0 0 1-1.872-.892.077.077 0 0 1-.008-.128c.126-.094.252-.194.372-.292a.074.074 0 0 1 .077-.01c3.928 1.793 8.18 1.793 12.062 0a.074.074 0 0 1 .078.01c.12.098.246.198.373.292a.077.077 0 0 1-.006.127 12.299 12.299 0 0 1-1.873.892.077.077 0 0 0-.041.107c.36.698.772 1.362 1.225 1.993a.076.076 0 0 0 .084.028 19.839 19.839 0 0 0 6.002-3.03.077.077 0 0 0 .032-.054c.5-5.177-.838-9.674-3.549-13.66a.061.061 0 0 0-.031-.03ZM8.02 15.33c-1.183 0-2.157-1.085-2.157-2.419 0-1.333.956-2.419 2.157-2.419 1.21 0 2.176 1.096 2.157 2.42 0 1.333-.956 2.418-2.157 2.418Zm7.974 0c-1.183 0-2.157-1.085-2.157-2.419 0-1.333.955-2.419 2.157-2.419 1.21 0 2.176 1.096 2.157 2.42 0 1.333-.946 2.418-2.157 2.418Z'/%3E%3C/svg%3E") center / contain no-repeat;
  filter: drop-shadow(0 0 7px rgba(255, 255, 255, 0.34));
}

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

.nav a {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.78rem;
}

.nav a[aria-current="page"] {
  color: var(--text);
  border: 1px solid rgba(189, 92, 255, 0.48);
  background: rgba(189, 92, 255, 0.11);
}

.page-hero {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 88px 0 34px;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--neon-hot);
  font-family: "Sora", "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.page-hero h1,
.redirect-panel h1 {
  margin-bottom: 14px;
  color: var(--neon);
  font-size: clamp(2.55rem, 7vw, 5.75rem);
  line-height: 0.94;
  letter-spacing: 0;
  text-shadow:
    0 0 12px rgba(189, 92, 255, 0.64),
    0 0 34px rgba(240, 77, 255, 0.24);
}

.page-hero p,
.rule-block p,
.rule-block li,
.content-card p,
.redirect-panel p {
  color: var(--muted);
  line-height: 1.65;
}

.rules-layout,
.content-layout {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 16px 0 72px;
}

.rules-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 18px;
}

.rules-index {
  position: sticky;
  top: 104px;
  align-self: start;
  display: grid;
  gap: 8px;
}

.rules-index a {
  padding: 12px 14px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
}

.rules-index a:hover {
  color: var(--text);
  border-color: rgba(240, 77, 255, 0.72);
}

.rules-list,
.content-layout {
  display: grid;
  gap: 14px;
}

.rule-block,
.content-card {
  scroll-margin-top: 108px;
  padding: 26px;
}

.rule-section {
  display: grid;
  gap: 14px;
}

.rule-heading {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 2px;
}

.rule-heading h2 {
  margin: 0;
}

.rule-entry {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
}

.rule-entry strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-family: "Sora", "Inter", sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.35;
  text-shadow: 0 0 18px rgba(189, 92, 255, 0.24);
}

.rule-entry p {
  margin: 0;
}

.rule-note {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(88, 231, 255, 0.18);
  border-radius: 8px;
  background: rgba(88, 231, 255, 0.055);
}

.rule-block span,
.content-card span {
  display: inline-block;
  margin-bottom: 18px;
  color: #e9bdff;
  font-family: "Sora", "Inter", sans-serif;
  font-weight: 800;
}

.rule-heading span {
  min-width: 58px;
  margin-bottom: 0;
  color: var(--neon-cyan);
}

.rule-block h2,
.content-card h2 {
  margin-bottom: 12px;
  font-size: clamp(1.4rem, 3vw, 2.15rem);
}

.rule-block ul {
  margin: 0;
  padding-left: 20px;
}

.button.compact {
  margin-top: 10px;
}

.redirect-page {
  min-height: 100vh;
}

.redirect-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.redirect-brand {
  position: fixed;
  top: 24px;
  left: 28px;
}

.redirect-panel {
  width: min(620px, 100%);
  padding: clamp(30px, 6vw, 54px);
  text-align: center;
}

.redirect-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.redirect-note {
  margin: 22px 0 0;
  font-size: 0.95rem;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  padding: 28px;
  color: var(--muted);
  border-top: 1px solid var(--line-soft);
}

.footer a:hover {
  color: var(--text);
}

@media (max-width: 840px) {
  .cinematic-hero {
    min-height: auto;
    padding: 74px 0 76px;
  }

  .cinematic-inner {
    grid-template-columns: 1fr;
  }

  .graffiti-inner {
    grid-template-columns: 1fr;
  }

  .holo-panel {
    justify-self: stretch;
    width: 100%;
  }

  .glass-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: -28px;
  }

  .story-section,
  .motion-grid {
    grid-template-columns: 1fr;
  }

  .landing-header {
    grid-template-columns: 1fr auto;
  }

  .landing-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    flex-wrap: wrap;
    overflow: visible;
    padding-bottom: 2px;
  }

  .landing-hero,
  .landing-section {
    grid-template-columns: 1fr;
  }

  .landing-hero {
    min-height: auto;
    padding-top: 42px;
  }

  .hero-copy-block {
    max-width: none;
  }

  .hero-showcase {
    min-height: 340px;
  }

  .showcase-city {
    min-height: 320px;
  }

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

  .media-strip {
    grid-template-columns: 1fr 1fr;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hub-main {
    align-items: start;
    padding-top: 130px;
  }

  .hub-cards,
  .rules-layout {
    grid-template-columns: 1fr;
  }

  .rules-index {
    position: static;
  }
}

@media (max-width: 540px) {
  .graffiti-hero {
    padding-top: 58px;
  }

  .graffiti-title {
    margin-bottom: 32px;
  }

  .graffiti-word {
    font-size: clamp(4.25rem, 22.8vw, 6.9rem);
    filter:
      drop-shadow(5px 7px 0 #400052)
      drop-shadow(10px 12px 0 rgba(4, 0, 6, 0.96))
      brightness(1.24)
      contrast(1.16)
      saturate(1.14);
  }

  .graffiti-sub {
    margin-top: 16px;
    margin-left: 12px;
    font-size: clamp(2.38rem, 12.6vw, 4rem);
    line-height: 0.9;
  }

  .glass-shard {
    opacity: 0.64;
  }

  .title-line {
    width: 100%;
    font-size: clamp(2.85rem, 15vw, 4.1rem);
  }

  .title-line-sub {
    font-size: clamp(2.45rem, 13vw, 3.55rem);
  }

  .hero-lead {
    font-size: 1.1rem;
    max-width: 330px;
  }

  .glass-band,
  .motion-grid {
    grid-template-columns: 1fr;
  }

  .holo-panel {
    padding: 18px;
  }

  .holo-stat-grid a {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    min-height: 64px;
  }

  .holo-stat-grid strong {
    font-size: 0.95rem;
  }

  .landing-header {
    align-items: start;
  }

  .landing-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    width: 100%;
  }

  .landing-nav a {
    padding: 9px 10px;
    font-size: 0.72rem;
    text-align: center;
  }

  .landing-header .brand span:last-child {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero-cta-row .button {
    width: 100%;
  }

  .showcase-card {
    position: static;
    width: 100%;
    margin-top: 10px;
  }

  .hero-showcase {
    min-height: auto;
  }

  .quick-grid,
  .media-strip {
    grid-template-columns: 1fr;
  }

  .media-card.large,
  .media-card.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .ghost-brand span:last-child {
    display: none;
  }

  .login-button {
    min-width: 82px;
  }

  .hub-card {
    min-height: 96px;
  }

  .icon-button,
  .button,
  .hub-actions {
    width: 100%;
  }
}

