:root {
  --ink: #05070a;
  --ink-soft: #0a0f16;
  --panel: #0d141e;
  --panel-light: #111b28;
  --blue: #2f5b89;
  --blue-bright: #4f82b7;
  --ivory: #c9c6bc;
  --paper: #f4f2eb;
  --muted: #98a2ad;
  --line: rgba(244, 242, 235, 0.14);
  --line-strong: rgba(244, 242, 235, 0.28);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  --radius: 1.25rem;
  --container: 1180px;
  --header-height: 76px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1.5rem);
}

body {
  margin: 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 16% 5%, rgba(47, 91, 137, 0.15), transparent 31rem),
    radial-gradient(circle at 91% 22%, rgba(47, 91, 137, 0.08), transparent 28rem),
    var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  opacity: 0.35;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.24) 0.7px, transparent 0.9px),
    radial-gradient(circle, rgba(79,130,183,0.22) 0.7px, transparent 0.9px);
  background-size: 67px 67px, 113px 113px;
  background-position: 0 0, 34px 17px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

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

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

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

button {
  font: inherit;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 880px;
  margin-bottom: 1.5rem;
  font-size: clamp(3.4rem, 8vw, 7.7rem);
}

h1 span {
  color: var(--ivory);
  font-style: italic;
}

h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(2.5rem, 5.4vw, 5rem);
}

h3 {
  line-height: 1.17;
}

p {
  color: var(--muted);
}

.container {
  width: min(calc(100% - 2.5rem), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(5.5rem, 10vw, 9rem) 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 999;
  padding: 0.75rem 1rem;
  color: var(--ink);
  background: var(--paper);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.eyebrow {
  margin-bottom: 1rem;
  color: var(--blue-bright);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  min-height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 7, 10, 0.78);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  letter-spacing: 0.13em;
}

.brand img {
  border: 1px solid rgba(79, 130, 183, 0.45);
  border-radius: 0.65rem;
}

.brand span {
  display: grid;
  line-height: 1.05;
}

.brand strong {
  font-size: 0.72rem;
}

.brand small {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.58rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.8rem);
}

.site-nav > a:not(.button) {
  position: relative;
  color: #c4cbd2;
  font-size: 0.82rem;
  font-weight: 650;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 1px;
  content: "";
  background: var(--blue-bright);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:not(.button):hover::after,
.site-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  background: transparent;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 1px;
  margin: 5px auto;
  background: var(--paper);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.78rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 0.35rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: white;
  background: var(--blue);
  border-color: var(--blue-bright);
  box-shadow: 0 16px 34px rgba(47, 91, 137, 0.25);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--blue-bright);
}

.button-ghost,
.button-outline {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.025);
  border-color: var(--line-strong);
}

.button-ghost:hover,
.button-ghost:focus-visible,
.button-outline:hover,
.button-outline:focus-visible {
  border-color: var(--ivory);
  background: rgba(255, 255, 255, 0.06);
}

.button-small {
  min-height: 38px;
  padding: 0.55rem 0.9rem;
  font-size: 0.68rem;
}

.button-light {
  color: var(--ink);
  background: var(--paper);
}

.button-light:hover,
.button-light:focus-visible {
  background: white;
}

.button.is-disabled,
.text-link.is-disabled,
.update-card a.is-disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 100svh;
  padding: calc(var(--header-height) + 4rem) 0 5rem;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  top: 15%;
  right: -16rem;
  width: 45rem;
  height: 45rem;
  content: "";
  border: 1px solid rgba(79, 130, 183, 0.14);
  border-radius: 50%;
  box-shadow:
    0 0 0 6rem rgba(79, 130, 183, 0.025),
    0 0 0 12rem rgba(79, 130, 183, 0.018);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(350px, 0.88fr);
  align-items: center;
  gap: clamp(2rem, 8vw, 7rem);
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 2rem;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-stats {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3.8rem);
  margin: 3.4rem 0 0;
}

.hero-stats div {
  display: grid;
  gap: 0.2rem;
}

.hero-stats dt {
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.hero-stats dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-emblem {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
}

.hero-emblem::before,
.hero-emblem::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.hero-emblem::before {
  inset: 8%;
  border: 1px solid rgba(201, 198, 188, 0.15);
}

.hero-emblem::after {
  inset: 18%;
  border: 1px dashed rgba(79, 130, 183, 0.25);
  animation: rotate 48s linear infinite reverse;
}

.emblem-orbit {
  position: absolute;
  inset: 2%;
  border: 1px solid rgba(79, 130, 183, 0.22);
  border-radius: 50%;
  animation: rotate 70s linear infinite;
}

.emblem-orbit::after {
  position: absolute;
  top: 15%;
  right: 6%;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 18px var(--blue-bright);
}

.hero-emblem img {
  position: relative;
  z-index: 2;
  width: min(87%, 610px);
  border-radius: 50%;
  filter: drop-shadow(0 28px 55px rgba(0, 0, 0, 0.48));
}

.hero-scroll {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  display: grid;
  justify-items: center;
  gap: 0.5rem;
  color: #626c76;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero-scroll i {
  display: block;
  width: 1px;
  height: 35px;
  background: linear-gradient(var(--blue-bright), transparent);
}

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

.intro {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(13, 20, 30, 0.2), transparent);
}

.section-heading {
  max-width: 800px;
  margin-bottom: 3.5rem;
}

.section-heading > p:last-child {
  max-width: 670px;
  font-size: 1.05rem;
}

.section-heading.compact {
  max-width: 900px;
}

.section-heading.split {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  max-width: none;
  gap: 3rem;
}

.section-heading.split > p:last-child {
  margin-bottom: 0.6rem;
}

.division-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.division-card {
  position: relative;
  display: flex;
  min-height: 500px;
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.025), transparent 50%),
    var(--panel);
  overflow: hidden;
  transition:
    transform 250ms ease,
    border-color 250ms ease;
}

.division-card:hover {
  z-index: 2;
  border-color: rgba(79, 130, 183, 0.55);
  transform: translateY(-7px);
}

.division-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 80% 10%, rgba(47, 91, 137, 0.2), transparent 42%);
  opacity: 0;
  transition: opacity 250ms ease;
}

.division-card:hover::before {
  opacity: 1;
}

.division-card-game {
  background:
    linear-gradient(180deg, rgba(47, 91, 137, 0.16), transparent 55%),
    var(--panel);
}

.card-code {
  position: absolute;
  top: 1.2rem;
  left: 1.3rem;
  color: #687585;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.62rem;
  letter-spacing: 0.11em;
}

.card-mark {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  color: rgba(244, 242, 235, 0.045);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 9rem;
  line-height: 1;
}

.card-content {
  position: relative;
  z-index: 1;
  align-self: end;
  width: 100%;
}

.card-label {
  margin-bottom: 0.75rem;
  color: var(--blue-bright);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.card-content h3 {
  margin-bottom: 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
}

.card-content p:not(.card-label) {
  min-height: 5.1rem;
}

.text-link,
.update-card a {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  color: var(--ivory);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.text-link span,
.update-card a span {
  color: var(--blue-bright);
  transition: transform 170ms ease;
}

.text-link:hover span,
.text-link:focus-visible span,
.update-card a:hover span,
.update-card a:focus-visible span {
  transform: translateX(4px);
}

.community-section {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(47, 91, 137, 0.08), transparent 47%),
    var(--ink-soft);
}

.community-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: clamp(3rem, 9vw, 8rem);
}

.colour-logo-panel {
  position: relative;
  max-width: 500px;
  padding: 9%;
  border: 1px solid rgba(201, 198, 188, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(244, 242, 235, 0.98) 0 64%, rgba(201, 198, 188, 0.92) 65% 72%, transparent 73%);
  box-shadow: var(--shadow);
}

.colour-logo-panel::after {
  position: absolute;
  inset: -4%;
  content: "";
  border: 1px dashed rgba(79, 130, 183, 0.32);
  border-radius: 50%;
}

.community-copy > p:not(.eyebrow) {
  max-width: 660px;
  font-size: 1.05rem;
}

.community-points {
  display: grid;
  gap: 1.05rem;
  margin: 2rem 0 2.2rem;
}

.community-points div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.community-points strong {
  color: var(--ivory);
  font-size: 0.88rem;
}

.community-points span {
  color: var(--muted);
  font-size: 0.88rem;
}

.config-note {
  margin: 1rem 0 0;
  font-size: 0.75rem !important;
}

code {
  padding: 0.12rem 0.35rem;
  border: 1px solid var(--line);
  border-radius: 0.25rem;
  color: var(--ivory);
  background: rgba(255,255,255,0.04);
}

.principles {
  background: var(--ink);
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-block: 1px solid var(--line);
}

.principle-grid article {
  padding: 2.3rem clamp(1rem, 3vw, 2.4rem);
  border-right: 1px solid var(--line);
}

.principle-grid article:last-child {
  border-right: 0;
}

.principle-grid span {
  display: block;
  margin-bottom: 2.5rem;
  color: var(--blue-bright);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.7rem;
}

.principle-grid h3 {
  margin-bottom: 0.75rem;
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.principle-grid p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.updates-section {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 100%, rgba(47, 91, 137, 0.13), transparent 45rem),
    var(--ink-soft);
}

.updates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.update-card {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.024);
}

.update-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 3rem;
  color: #697581;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.update-meta span {
  color: var(--blue-bright);
}

.update-card h3 {
  margin-bottom: 1rem;
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 500;
}

.update-card p {
  min-height: 6rem;
  font-size: 0.9rem;
}

.cta-section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background: var(--blue);
}

.cta-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.cta-inner .eyebrow {
  color: rgba(255,255,255,0.62);
}

.cta-inner h2 {
  max-width: 760px;
  margin-bottom: 0;
  color: white;
}

.site-footer {
  padding: 2.2rem 0;
  border-top: 1px solid var(--line);
  background: #030406;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.footer-brand img {
  border-radius: 0.7rem;
}

.footer-brand div {
  display: grid;
}

.footer-brand strong {
  color: var(--ivory);
  font-size: 0.9rem;
}

.footer-brand span {
  color: #65707b;
  font-size: 0.75rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  color: #8d97a1;
  font-size: 0.75rem;
  font-weight: 700;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--paper);
}

.footer-legal {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  font-size: 0.67rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(var(--header-height) - 1px);
    right: 1.25rem;
    left: 1.25rem;
    display: grid;
    gap: 0;
    padding: 0.8rem;
    border: 1px solid var(--line);
    border-radius: 0 0 1rem 1rem;
    background: rgba(5, 7, 10, 0.97);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav > a:not(.button) {
    padding: 0.9rem 0.7rem;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .button {
    margin-top: 0.75rem;
  }

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

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

  .hero-emblem {
    position: absolute;
    right: -8rem;
    bottom: -2rem;
    width: min(70vw, 620px);
    opacity: 0.22;
  }

  .division-grid,
  .updates-grid {
    grid-template-columns: 1fr;
  }

  .division-card {
    min-height: 410px;
  }

  .community-grid {
    grid-template-columns: 0.75fr 1.25fr;
    gap: 3rem;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(calc(100% - 1.5rem), var(--container));
  }

  .hero {
    min-height: 920px;
    padding-top: calc(var(--header-height) + 3rem);
  }

  h1 {
    font-size: clamp(3.25rem, 18vw, 5.3rem);
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
  }

  .hero-stats dt {
    font-size: 1.55rem;
  }

  .hero-stats dd {
    font-size: 0.56rem;
  }

  .hero-emblem {
    right: -7rem;
    bottom: 3rem;
    width: 125vw;
  }

  .hero-scroll {
    display: none;
  }

  .section-heading.split,
  .community-grid {
    grid-template-columns: 1fr;
  }

  .community-logo {
    max-width: 380px;
    margin-inline: auto;
  }

  .community-points div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

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

  .principle-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .principle-grid article:last-child {
    border-bottom: 0;
  }

  .cta-inner {
    align-items: stretch;
    flex-direction: column;
  }

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

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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


/* =========================================================
   V2 — less corporate, more gaming collective
   ========================================================= */

body {
  background:
    radial-gradient(circle at 12% 8%, rgba(63, 107, 154, 0.22), transparent 28rem),
    radial-gradient(circle at 88% 20%, rgba(119, 61, 132, 0.11), transparent 30rem),
    radial-gradient(circle at 50% 88%, rgba(22, 84, 100, 0.11), transparent 36rem),
    var(--ink);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: 9999;
  content: "";
  pointer-events: none;
  opacity: 0.055;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 3px,
    rgba(255, 255, 255, 0.12) 4px
  );
  mix-blend-mode: soft-light;
}

.signal-strip {
  position: fixed;
  top: var(--header-height);
  right: 0;
  left: 0;
  z-index: 90;
  height: 28px;
  overflow: hidden;
  border-bottom: 1px solid rgba(79,130,183,0.25);
  background: rgba(7, 11, 17, 0.86);
  backdrop-filter: blur(12px);
}

.signal-track {
  display: flex;
  align-items: center;
  width: max-content;
  min-height: 28px;
  animation: signal-marquee 28s linear infinite;
  color: #75889b;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.signal-track span { padding-inline: 1.6rem; }
.signal-track i { color: var(--blue-bright); font-style: normal; }

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

.hero {
  padding-top: calc(var(--header-height) + 6rem);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(rgba(79,130,183,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,130,183,0.07) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
  transform: perspective(700px) rotateX(64deg) scale(1.35) translateY(18%);
  transform-origin: center bottom;
  opacity: 0.36;
}

.hero-copy { max-width: 760px; }
.hero-lead { color: #b0bac4; }

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: -0.7rem 0 2rem;
}

.hero-tags span {
  padding: 0.44rem 0.72rem;
  border: 1px solid rgba(79,130,183,0.35);
  border-radius: 999px;
  color: #92a9bf;
  background: rgba(47,91,137,0.08);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.signal-card {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 0.12rem;
  min-width: 128px;
  padding: 0.68rem 0.8rem;
  border: 1px solid rgba(79,130,183,0.35);
  border-radius: 0.35rem;
  background: rgba(5,7,10,0.72);
  box-shadow: 0 14px 34px rgba(0,0,0,0.22);
  backdrop-filter: blur(12px);
}

.signal-card span {
  color: #667788;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.52rem;
  letter-spacing: 0.16em;
}

.signal-card strong {
  color: #bcd7ef;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.73rem;
  letter-spacing: 0.1em;
}

.signal-card-top { top: 17%; left: -2%; transform: rotate(-4deg); }
.signal-card-bottom { right: -2%; bottom: 18%; transform: rotate(3deg); }

.division-card { isolation: isolate; }

.division-card::after {
  position: absolute;
  inset: auto -16% -18% auto;
  width: 230px;
  height: 230px;
  content: "";
  border: 1px solid rgba(79,130,183,0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 28px rgba(79,130,183,0.02),
    0 0 0 56px rgba(79,130,183,0.015);
  transition: transform 320ms ease;
}

.division-card:hover::after { transform: scale(1.08) rotate(10deg); }
.division-card:nth-child(2) { transform: rotate(-0.4deg); }
.division-card:nth-child(3) { transform: rotate(0.35deg); }
.division-card:nth-child(2):hover,
.division-card:nth-child(3):hover { transform: translateY(-7px) rotate(0); }

.now-playing {
  padding: 1.05rem 0;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(47,91,137,0.16), transparent 28%, transparent 72%, rgba(47,91,137,0.10)),
    #070b10;
}

.now-playing-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 2rem;
}

.now-playing-label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #8aa4bd;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #77d69b;
  box-shadow: 0 0 0 0 rgba(119,214,155,0.55);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  70% { box-shadow: 0 0 0 9px rgba(119,214,155,0); }
  100% { box-shadow: 0 0 0 0 rgba(119,214,155,0); }
}

.now-playing-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.25rem;
  justify-content: flex-end;
}

.now-playing-items span { color: #7e8994; font-size: 0.73rem; }

.now-playing-items span::before {
  margin-right: 0.55rem;
  color: var(--blue-bright);
  content: "//";
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.principle-grid article,
.update-card {
  position: relative;
  overflow: hidden;
}

.principle-grid article::after,
.update-card::after {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 90px;
  height: 90px;
  content: "";
  border: 1px solid rgba(79,130,183,0.14);
  border-radius: 50%;
}

.update-card:nth-child(2) { transform: translateY(14px); }
.update-card:nth-child(3) { transform: translateY(28px); }

.update-card:hover {
  border-color: rgba(79,130,183,0.45);
  background: rgba(255,255,255,0.04);
}

.cta-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 40%, rgba(255,255,255,0.12), transparent 18rem),
    linear-gradient(135deg, #2f5b89, #203f60);
}

.cta-section::after {
  position: absolute;
  top: 50%;
  right: 8%;
  width: 290px;
  height: 290px;
  content: "MV";
  color: rgba(255,255,255,0.055);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13rem;
  line-height: 1;
  transform: translateY(-50%);
}

@media (max-width: 980px) {
  .hero { padding-top: calc(var(--header-height) + 5rem); }
  .signal-card { display: none; }
  .update-card:nth-child(2),
  .update-card:nth-child(3) { transform: none; }
}

@media (max-width: 720px) {
  .signal-strip { height: 24px; }
  .signal-track { min-height: 24px; }
  .hero { padding-top: calc(var(--header-height) + 4.2rem); }

  .now-playing-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .now-playing-items { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .signal-track,
  .pulse-dot { animation: none !important; }
}


/* =========================================================
   V7 — navigation, live Discord status and network news feed
   ========================================================= */
.site-nav > a[aria-current="page"] { color: var(--paper); }
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: inline-flex; align-items: center; gap: .38rem; padding: 0; border: 0; color: #c4cbd2; background: transparent; cursor: pointer; font-size: .82rem; font-weight: 650; }
.nav-dropdown-toggle span { color: var(--blue-bright); font-size: .8rem; transition: transform .18s ease; }
.nav-dropdown-menu { position: absolute; top: calc(100% + 1rem); left: 50%; z-index: 120; display: grid; width: 245px; padding: .55rem; border: 1px solid var(--line); border-radius: .7rem; background: rgba(5,7,10,.97); box-shadow: var(--shadow); opacity: 0; transform: translate(-50%, -8px); pointer-events: none; transition: opacity .18s ease, transform .18s ease; }
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu, .nav-dropdown.is-open .nav-dropdown-menu { opacity: 1; transform: translate(-50%, 0); pointer-events: auto; }
.nav-dropdown:hover .nav-dropdown-toggle span, .nav-dropdown.is-open .nav-dropdown-toggle span { transform: rotate(180deg); }
.nav-dropdown-menu a { display: grid; gap: .1rem; padding: .75rem .8rem; border-radius: .4rem; }
.nav-dropdown-menu a:hover, .nav-dropdown-menu a:focus-visible, .nav-dropdown-menu a[aria-current="page"] { background: rgba(79,130,183,.13); }
.nav-dropdown-menu strong { color: var(--paper); font-size: .78rem; }
.nav-dropdown-menu span { color: #687584; font-size: .62rem; }

.signal-strip { width: 100vw; }
.signal-track { display: flex; width: max-content; min-width: max-content; transform: translate3d(0,0,0); animation: signal-marquee-v7 34s linear infinite; }
.signal-group { display: flex; flex: 0 0 auto; align-items: center; min-width: max-content; }
.signal-group span { padding-inline: 1.6rem; }
.signal-group i { color: var(--blue-bright); font-style: normal; }
@keyframes signal-marquee-v7 { to { transform: translate3d(-50%,0,0); } }

.discord-live-row { display: flex; flex-wrap: wrap; align-items: center; gap: .65rem; margin: 1.6rem 0 0; padding: .85rem 1rem; border: 1px solid rgba(79,130,183,.25); border-radius: .5rem; background: rgba(47,91,137,.07); }
.discord-live-row strong { color: var(--ivory); font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: .76rem; letter-spacing: .1em; }
.discord-live-row small { color: #71808e; font-size: .68rem; }

.news-console { display: grid; grid-template-columns: minmax(310px,.78fr) minmax(0,1.22fr); min-height: 465px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.018); overflow: hidden; }
.news-list { display: grid; align-content: start; border-right: 1px solid var(--line); background: rgba(0,0,0,.12); }
.news-item { position: relative; display: grid; gap: .48rem; width: 100%; padding: 1.4rem 1.5rem; border: 0; border-bottom: 1px solid var(--line); color: inherit; background: transparent; cursor: pointer; text-align: left; transition: background .18s ease; }
.news-item::before { position: absolute; top: 0; bottom: 0; left: 0; width: 3px; content: ""; background: var(--blue-bright); transform: scaleY(0); transition: transform .18s ease; }
.news-item:hover, .news-item:focus-visible, .news-item.is-active { background: rgba(79,130,183,.1); }
.news-item.is-active::before { transform: scaleY(1); }
.news-item > span { display: flex; justify-content: space-between; gap: 1rem; color: #697581; font-size: .58rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.news-item b { color: var(--blue-bright); }
.news-item strong { color: var(--ivory); font-family: Georgia, "Times New Roman", serif; font-size: 1.25rem; font-weight: 500; }
.news-item small { color: #7c8792; font-size: .72rem; }
.news-stage { position: relative; display: grid; align-items: center; padding: clamp(2rem,5vw,4.5rem); background: radial-gradient(circle at 100% 0, rgba(47,91,137,.13), transparent 24rem); }
.news-stage::after { position: absolute; right: -3rem; bottom: -4rem; content: "MV"; color: rgba(244,242,235,.025); font-family: Georgia, "Times New Roman", serif; font-size: 15rem; line-height: 1; }
.news-detail { position: relative; z-index: 1; max-width: 690px; animation: news-enter .28s ease; }
.news-detail[hidden] { display: none; }
.news-detail .news-category { margin-bottom: .4rem; color: var(--blue-bright); font-size: .62rem; font-weight: 850; letter-spacing: .14em; }
.news-detail time { color: #687584; font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: .6rem; letter-spacing: .11em; }
.news-detail h3 { margin: 1.2rem 0 1rem; color: var(--ivory); font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.2rem,5vw,4.6rem); font-weight: 500; line-height: 1.02; }
.news-detail p:not(.news-category) { max-width: 650px; font-size: 1rem; }
.news-detail a { display: inline-flex; gap: .5rem; margin-top: .7rem; color: var(--ivory); font-size: .72rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.news-detail a span { color: var(--blue-bright); }
@keyframes news-enter { from { opacity: 0; transform: translateX(12px); } }

@media (max-width:980px) {
  .nav-dropdown { display: grid; }
  .nav-dropdown-toggle { width: 100%; justify-content: space-between; padding: .9rem .7rem; border-bottom: 1px solid var(--line); }
  .nav-dropdown-menu { position: static; width: auto; padding: 0 .45rem; border: 0; border-radius: 0; box-shadow: none; background: rgba(79,130,183,.05); opacity: 1; transform: none; pointer-events: auto; display: none; }
  .nav-dropdown.is-open .nav-dropdown-menu { display: grid; transform: none; }
  .nav-dropdown-menu a { padding: .7rem .75rem; border-bottom: 1px solid rgba(244,242,235,.07); }
  .news-console { grid-template-columns: 1fr; }
  .news-list { border-right: 0; border-bottom: 1px solid var(--line); }
}

@media (max-width:720px) {
  .news-console { min-height: 0; }
  .news-stage { min-height: 390px; padding: 2rem 1.25rem; }
  .news-item { padding: 1.1rem 1rem; }
  .news-detail h3 { font-size: 2.5rem; }
  .signal-group span { padding-inline: 1.15rem; }
}
