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

:root {
  --page-bg: #02080d;
  --header-bg: #03090f;
  --header-line: #0b3b4d;
  --text: #ecfbff;
  --muted: #9fc8d3;
  --ice: #d8fbff;
  --cyan: #16d9ff;
  --cyan-soft: #65efff;
  --teal: #0587a8;
  --deep-teal: #023445;
  --navy: #06141b;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 0, rgba(22, 217, 255, 0.16), transparent 34rem),
    var(--page-bg);
  color: var(--text);
  font-family: "Cinzel", "Times New Roman", Georgia, serif;
}

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

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

button {
  font: inherit;
}

.static-hero {
  position: relative;
  aspect-ratio: 2800 / 1080;
  min-height: 0;
  overflow: hidden;
  background: var(--page-bg) url("../assets/images/bg.png") center top / contain no-repeat;
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-particles i {
  position: absolute;
  bottom: -5%;
  width: var(--size);
  height: var(--size);
  border-radius: 999px;
  background: rgba(180, 250, 255, 0.95);
  box-shadow:
    0 0 8px rgba(216, 251, 255, 0.95),
    0 0 18px rgba(22, 217, 255, 0.8),
    0 0 34px rgba(22, 217, 255, 0.42);
  opacity: 0;
  animation: hero-particle-rise var(--duration) linear infinite;
  animation-delay: var(--delay);
}

@keyframes hero-particle-rise {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.7);
  }

  12% {
    opacity: var(--opacity);
  }

  82% {
    opacity: var(--opacity);
  }

  100% {
    opacity: 0;
    transform: translate3d(var(--drift), -112vh, 0) scale(1.2);
  }
}

.hero-particles i:nth-child(1) {
  --size: 3px;
  --duration: 9s;
  --delay: -1s;
  --drift: 34px;
  --opacity: 0.46;
  left: 7%;
}

.hero-particles i:nth-child(2) {
  --size: 5px;
  --duration: 13s;
  --delay: -6s;
  --drift: -42px;
  --opacity: 0.32;
  left: 14%;
}

.hero-particles i:nth-child(3) {
  --size: 2px;
  --duration: 8s;
  --delay: -4s;
  --drift: 24px;
  --opacity: 0.58;
  left: 21%;
}

.hero-particles i:nth-child(4) {
  --size: 4px;
  --duration: 15s;
  --delay: -9s;
  --drift: 52px;
  --opacity: 0.34;
  left: 29%;
}

.hero-particles i:nth-child(5) {
  --size: 3px;
  --duration: 11s;
  --delay: -3s;
  --drift: -28px;
  --opacity: 0.5;
  left: 36%;
}

.hero-particles i:nth-child(6) {
  --size: 6px;
  --duration: 17s;
  --delay: -12s;
  --drift: 38px;
  --opacity: 0.28;
  left: 43%;
}

.hero-particles i:nth-child(7) {
  --size: 2px;
  --duration: 7s;
  --delay: -2s;
  --drift: -18px;
  --opacity: 0.64;
  left: 50%;
}

.hero-particles i:nth-child(8) {
  --size: 4px;
  --duration: 12s;
  --delay: -8s;
  --drift: 46px;
  --opacity: 0.42;
  left: 57%;
}

.hero-particles i:nth-child(9) {
  --size: 3px;
  --duration: 10s;
  --delay: -5s;
  --drift: -35px;
  --opacity: 0.52;
  left: 63%;
}

.hero-particles i:nth-child(10) {
  --size: 5px;
  --duration: 16s;
  --delay: -10s;
  --drift: 58px;
  --opacity: 0.3;
  left: 69%;
}

.hero-particles i:nth-child(11) {
  --size: 2px;
  --duration: 8.5s;
  --delay: -6.5s;
  --drift: -22px;
  --opacity: 0.6;
  left: 75%;
}

.hero-particles i:nth-child(12) {
  --size: 4px;
  --duration: 14s;
  --delay: -1.5s;
  --drift: 32px;
  --opacity: 0.38;
  left: 81%;
}

.hero-particles i:nth-child(13) {
  --size: 3px;
  --duration: 9.5s;
  --delay: -7s;
  --drift: -44px;
  --opacity: 0.5;
  left: 87%;
}

.hero-particles i:nth-child(14) {
  --size: 6px;
  --duration: 18s;
  --delay: -14s;
  --drift: 30px;
  --opacity: 0.24;
  left: 92%;
}

.hero-particles i:nth-child(15) {
  --size: 2px;
  --duration: 7.5s;
  --delay: -3.5s;
  --drift: -18px;
  --opacity: 0.62;
  left: 96%;
}

.hero-particles i:nth-child(16) {
  --size: 4px;
  --duration: 13.5s;
  --delay: -11s;
  --drift: 40px;
  --opacity: 0.36;
  left: 4%;
}

.hero-particles i:nth-child(17) {
  --size: 3px;
  --duration: 8.8s;
  --delay: -2.2s;
  --drift: 26px;
  --opacity: 0.7;
  left: 11%;
}

.hero-particles i:nth-child(18) {
  --size: 7px;
  --duration: 19s;
  --delay: -13s;
  --drift: -54px;
  --opacity: 0.32;
  left: 18%;
}

.hero-particles i:nth-child(19) {
  --size: 4px;
  --duration: 10.5s;
  --delay: -5.8s;
  --drift: 36px;
  --opacity: 0.56;
  left: 24%;
}

.hero-particles i:nth-child(20) {
  --size: 2px;
  --duration: 6.8s;
  --delay: -1.4s;
  --drift: -16px;
  --opacity: 0.82;
  left: 31%;
}

.hero-particles i:nth-child(21) {
  --size: 5px;
  --duration: 14.8s;
  --delay: -9.4s;
  --drift: 48px;
  --opacity: 0.44;
  left: 39%;
}

.hero-particles i:nth-child(22) {
  --size: 3px;
  --duration: 9.2s;
  --delay: -6.2s;
  --drift: -30px;
  --opacity: 0.66;
  left: 46%;
}

.hero-particles i:nth-child(23) {
  --size: 6px;
  --duration: 16.2s;
  --delay: -3.6s;
  --drift: 62px;
  --opacity: 0.36;
  left: 53%;
}

.hero-particles i:nth-child(24) {
  --size: 3px;
  --duration: 7.8s;
  --delay: -4.8s;
  --drift: -20px;
  --opacity: 0.76;
  left: 59%;
}

.hero-particles i:nth-child(25) {
  --size: 4px;
  --duration: 11.4s;
  --delay: -8.6s;
  --drift: 28px;
  --opacity: 0.58;
  left: 66%;
}

.hero-particles i:nth-child(26) {
  --size: 8px;
  --duration: 21s;
  --delay: -16s;
  --drift: -66px;
  --opacity: 0.28;
  left: 72%;
}

.hero-particles i:nth-child(27) {
  --size: 2px;
  --duration: 7.2s;
  --delay: -2.8s;
  --drift: 18px;
  --opacity: 0.86;
  left: 78%;
}

.hero-particles i:nth-child(28) {
  --size: 5px;
  --duration: 13.2s;
  --delay: -10.8s;
  --drift: 42px;
  --opacity: 0.48;
  left: 84%;
}

.hero-particles i:nth-child(29) {
  --size: 3px;
  --duration: 9.8s;
  --delay: -7.3s;
  --drift: -34px;
  --opacity: 0.68;
  left: 89%;
}

.hero-particles i:nth-child(30) {
  --size: 4px;
  --duration: 12.6s;
  --delay: -1.8s;
  --drift: 52px;
  --opacity: 0.52;
  left: 94%;
}

.hero-particles i:nth-child(31) {
  --size: 6px;
  --duration: 18.5s;
  --delay: -12.5s;
  --drift: -38px;
  --opacity: 0.34;
  left: 97%;
}

.hero-particles i:nth-child(32) {
  --size: 3px;
  --duration: 8.4s;
  --delay: -5.1s;
  --drift: 22px;
  --opacity: 0.72;
  left: 2%;
}

.community-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(22, 217, 255, 0.22);
  border-bottom: 1px solid rgba(22, 217, 255, 0.18);
  background:
    radial-gradient(circle at 50% 0, rgba(22, 217, 255, 0.1), transparent 34rem),
    radial-gradient(circle at 18% 58%, rgba(5, 135, 168, 0.12), transparent 24rem),
    linear-gradient(180deg, #01070b, #040d12 58%, #010609);
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(5rem, 11vw, 8rem);
}

.community-section::before {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(101, 239, 255, 0.18) 1px, transparent 1px),
    linear-gradient(115deg, transparent 0 43%, rgba(101, 239, 255, 0.06) 44%, transparent 45% 100%);
  background-size: 90px 90px, 180px 180px;
  content: "";
  opacity: 0.16;
  pointer-events: none;
}

.community-section::after {
  position: absolute;
  left: 50%;
  bottom: -18rem;
  width: min(78rem, 90vw);
  height: 26rem;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(22, 217, 255, 0.13), transparent 68%);
  content: "";
  pointer-events: none;
}

.community-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, 1500px);
  margin-inline: auto;
}

.section-title {
  display: grid;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  grid-template-columns: minmax(2rem, 13rem) auto auto auto minmax(2rem, 13rem);
  margin-bottom: clamp(2.5rem, 5vw, 3.7rem);
}

.section-title h2 {
  margin: 0;
  color: var(--ice);
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.title-line {
  position: relative;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(101, 239, 255, 0.78));
}

.title-line:last-child {
  background: linear-gradient(90deg, rgba(101, 239, 255, 0.78), transparent);
}

.title-line::after {
  position: absolute;
  right: 0;
  top: 50%;
  width: 5px;
  height: 5px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: var(--cyan-soft);
  content: "";
}

.title-line:last-child::after {
  left: 0;
  right: auto;
}

.title-diamond {
  width: 13px;
  height: 13px;
  transform: rotate(45deg);
  border: 1px solid rgba(101, 239, 255, 0.72);
  background: rgba(5, 135, 168, 0.26);
  box-shadow: inset 0 0 0 3px rgba(22, 217, 255, 0.16);
}

.community-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.community-card {
  --card-overlay: linear-gradient(90deg, rgba(46, 8, 11, 0.92), rgba(12, 4, 6, 0.84));
  --card-heading: #f2c28a;
  --card-subtext: #fff5ea;
  position: relative;
  display: flex;
  min-height: 124px;
  overflow: hidden;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(0, 0, 0, 0.22) 52%, rgba(0, 0, 0, 0.38)),
    var(--card-overlay),
    url("../assets/images/Card.jpg") center center / cover no-repeat;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 28px rgba(0, 0, 0, 0.28);
  padding: 1.1rem 1.2rem;
  transition:
    filter 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.community-card::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 225, 180, 0.18) 0 1.2px, transparent 1.3px),
    radial-gradient(circle at 72% 38%, rgba(255, 210, 130, 0.12) 0 1.2px, transparent 1.3px),
    radial-gradient(circle at 62% 72%, rgba(255, 210, 130, 0.1) 0 1.1px, transparent 1.2px);
  background-size: 110px 110px, 140px 140px, 160px 160px;
  content: "";
  opacity: 0.95;
  pointer-events: none;
}

.community-card::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--card-line), transparent);
  content: "";
}

.community-card:hover,
.community-card:focus-visible {
  filter: brightness(1.06);
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 22px 34px rgba(0, 0, 0, 0.34);
}

.community-card-discord {
  --card-overlay: linear-gradient(90deg, rgba(13, 63, 73, 0.92), rgba(6, 24, 30, 0.84));
  --card-heading: #39ddf0;
  --card-line: #39ddf0;
}

.community-card-facebook {
  --card-overlay: linear-gradient(90deg, rgba(9, 44, 71, 0.92), rgba(4, 17, 30, 0.84));
  --card-heading: #4bb8ff;
  --card-line: #3096e1;
}

.community-card-instagram {
  --card-overlay: linear-gradient(90deg, rgba(88, 20, 51, 0.92), rgba(34, 8, 22, 0.84));
  --card-heading: #ef6ba6;
  --card-line: #d44f8b;
}

.community-card-youtube {
  --card-overlay: linear-gradient(90deg, rgba(68, 11, 16, 0.92), rgba(24, 6, 9, 0.84));
  --card-heading: #cf3d34;
  --card-line: #b73a31;
}

.community-card-tiktok {
  --card-overlay: linear-gradient(90deg, rgba(16, 73, 60, 0.92), rgba(7, 28, 24, 0.84));
  --card-heading: #58d5b1;
  --card-line: #41b792;
}

.community-icon {
  z-index: 1;
  display: flex;
  width: 3rem;
  height: 3rem;
  flex: 0 0 3rem;
  align-items: center;
  justify-content: center;
}

.community-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.28));
}

.community-copy {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 0;
  gap: 0.22rem;
}

.community-copy strong {
  color: var(--card-heading);
  font-size: clamp(0.76rem, 0.88vw, 1rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
  white-space: nowrap;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.45);
}

.community-copy span {
  color: var(--card-subtext);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(0.7rem, 0.76vw, 0.84rem);
  font-weight: 700;
  line-height: 1.15;
  white-space: nowrap;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
}

.site-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--header-line);
  border-bottom: 1px solid var(--header-line);
  background:
    linear-gradient(180deg, rgba(101, 239, 255, 0.04), transparent 42%),
    var(--header-bg);
  padding: 1rem 0;
}

.site-footer::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(115deg, transparent 0 44%, rgba(101, 239, 255, 0.018) 45%, transparent 46% 100%);
  background-size: 220px 220px;
  content: "";
  opacity: 0.28;
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: min(100% - 2rem, 1240px);
  margin-inline: auto;
  padding: 0;
}

.footer-signature {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0.8rem;
}

.footer-signature-logo {
  width: 2rem;
  height: 2rem;
  flex: 0 0 2rem;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(22, 217, 255, 0.18));
}

.footer-kicker {
  margin: 0;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-top: 1px solid var(--header-line);
  border-bottom: 1px solid var(--header-line);
  background:
    linear-gradient(180deg, rgba(101, 239, 255, 0.06), transparent 42%),
    var(--header-bg);
}

.header-shell {
  display: grid;
  width: min(100% - 32px, 1240px);
  min-height: 74px;
  margin-inline: auto;
  align-items: center;
  gap: 22px;
  grid-template-columns: 172px minmax(0, 1fr) auto;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand img {
  width: auto;
  height: 54px;
  filter:
    drop-shadow(0 0 8px rgba(22, 217, 255, 0.34))
    drop-shadow(0 3px 2px rgba(0, 0, 0, 0.9));
}

.primary-nav {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.primary-nav a {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  transition:
    color 160ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a.is-active {
  color: var(--cyan-soft);
}

.nav-divider {
  flex: 0 0 auto;
  color: var(--cyan);
  font-size: 0.72rem;
  line-height: 1;
  text-shadow: 0 0 10px rgba(22, 217, 255, 0.8);
}

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

.language-button {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  transition:
    filter 160ms ease,
    transform 160ms ease;
}

.language-button img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.language-button:hover,
.language-button:focus-visible {
  filter: brightness(1.18);
  transform: translateY(-1px);
}

.player-panel-button {
  --panel-round: 0.72rem;
  position: relative;
  display: inline-flex;
  min-width: 178px;
  min-height: 40px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--panel-round);
  background:
    radial-gradient(65% 85% at 50% 110%, rgba(101, 239, 255, 0.72) 0%, rgba(101, 239, 255, 0) 100%),
    linear-gradient(0deg, #05779b, #0a4059);
  color: var(--ice);
  padding: 9px 14px;
  cursor: pointer;
  outline: none;
  transition:
    filter 200ms ease,
    transform 200ms ease;
}

.player-panel-button::before,
.player-panel-button::after {
  position: absolute;
  border-radius: calc(var(--panel-round) - var(--space));
  content: "";
  inset: var(--space);
  transition: opacity 240ms ease;
}

.player-panel-button::before {
  --space: 1px;
  z-index: 0;
  background: linear-gradient(178deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0));
}

.player-panel-button::after {
  --space: 2px;
  z-index: 0;
  background:
    radial-gradient(70% 90% at 50% 112%, rgba(101, 239, 255, 0.62) 0%, rgba(101, 239, 255, 0) 100%),
    linear-gradient(0deg, #064d6d, #081f30);
}

.player-panel-button:active {
  transform: scale(0.96);
}

.panel-fold {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border-top-right-radius: var(--panel-round);
  border-bottom-left-radius: 0.5rem;
  background: radial-gradient(100% 75% at 55%, rgba(101, 239, 255, 0.72), rgba(101, 239, 255, 0));
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.9);
  transition:
    margin 260ms ease,
    opacity 260ms ease;
}

.panel-fold::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 150%;
  height: 150%;
  transform: rotate(45deg) translateX(0) translateY(-18px);
  background-color: #d8fbff;
  content: "";
  pointer-events: none;
}

.player-panel-button:hover .panel-fold,
.player-panel-button:focus-visible .panel-fold {
  margin-top: -1rem;
  margin-right: -1rem;
  opacity: 0.85;
}

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

.panel-points i {
  position: absolute;
  bottom: -10px;
  width: 2px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  opacity: 0;
  animation: panel-floating-points infinite ease-in-out;
  pointer-events: none;
}

@keyframes panel-floating-points {
  0% {
    opacity: 0;
    transform: translateY(0);
  }

  15% {
    opacity: 0.85;
  }

  85% {
    opacity: 0;
  }

  100% {
    opacity: 0;
    transform: translateY(-55px);
  }
}

.panel-points i:nth-child(1) {
  left: 10%;
  animation-duration: 2.35s;
  animation-delay: 0.2s;
}

.panel-points i:nth-child(2) {
  left: 30%;
  animation-duration: 2.5s;
  animation-delay: 0.5s;
}

.panel-points i:nth-child(3) {
  left: 25%;
  animation-duration: 2.2s;
  animation-delay: 0.1s;
}

.panel-points i:nth-child(4) {
  left: 44%;
  animation-duration: 2.05s;
}

.panel-points i:nth-child(5) {
  left: 50%;
  animation-duration: 1.9s;
}

.panel-points i:nth-child(6) {
  left: 75%;
  animation-duration: 1.5s;
  animation-delay: 1.5s;
}

.panel-points i:nth-child(7) {
  left: 88%;
  animation-duration: 2.2s;
  animation-delay: 0.2s;
}

.panel-points i:nth-child(8) {
  left: 58%;
  animation-duration: 2.25s;
  animation-delay: 0.2s;
}

.panel-points i:nth-child(9) {
  left: 94%;
  animation-duration: 2.6s;
  animation-delay: 0.1s;
}

.panel-points i:nth-child(10) {
  left: 65%;
  animation-duration: 2.5s;
  animation-delay: 0.2s;
}

.panel-inner {
  position: relative;
  z-index: 3;
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--ice);
  font-size: 0.62rem;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    color 180ms ease;
}

.panel-icon {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  stroke-width: 2.3;
  transition: fill 120ms linear;
}

.player-panel-button:hover .panel-icon,
.player-panel-button:focus-visible .panel-icon {
  animation:
    panel-dash 820ms linear forwards,
    panel-fill 120ms linear forwards 760ms;
}

@keyframes panel-dash {
  from {
    stroke-dasharray: 0 0 0 0;
  }

  to {
    stroke-dasharray: 68 68 0 0;
  }
}

@keyframes panel-fill {
  to {
    fill: currentColor;
  }
}

.player-panel-button:hover,
.player-panel-button:focus-visible {
  filter: brightness(1.12);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--deep-teal);
  background: rgba(3, 18, 25, 0.86);
  color: var(--cyan-soft);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only),
.menu-toggle span:not(.sr-only)::before,
.menu-toggle span:not(.sr-only)::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  content: "";
}

.menu-toggle span:not(.sr-only) {
  position: relative;
}

.menu-toggle span:not(.sr-only)::before,
.menu-toggle span:not(.sr-only)::after {
  position: absolute;
  left: 0;
}

.menu-toggle span:not(.sr-only)::before {
  top: -6px;
}

.menu-toggle span:not(.sr-only)::after {
  top: 6px;
}

@media (max-width: 980px) {
  .static-hero {
    background-position: center top;
  }

  .section-title {
    grid-template-columns: minmax(1rem, 1fr) auto minmax(1rem, 1fr);
  }

  .section-title h2 {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .title-line {
    grid-row: 2;
  }

  .title-diamond {
    grid-row: 2;
  }

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

  .community-card {
    min-height: 118px;
  }

  .footer-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .footer-signature {
    justify-content: center;
  }

  .header-shell {
    grid-template-columns: auto 1fr auto;
    gap: 16px;
  }

  .brand {
    justify-content: flex-start;
  }

  .brand img {
    height: 44px;
  }

  .menu-toggle {
    display: flex;
    justify-self: end;
  }

  .primary-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: grid;
    gap: 0;
    justify-content: stretch;
    border: 1px solid var(--deep-teal);
    background: rgba(3, 9, 15, 0.97);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }

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

  .primary-nav a {
    padding: 18px;
  }

  .nav-divider {
    display: none;
  }
}

@media (max-width: 560px) {
  .static-hero {
    background-position: center top;
  }

  .community-section {
    padding: 3rem 0 4rem;
  }

  .section-title {
    gap: 0.75rem;
    margin-bottom: 2rem;
  }

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

  .community-card {
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1.1rem;
  }

  .community-icon {
    width: 2.75rem;
    height: 2.75rem;
    flex-basis: 2.75rem;
  }

  .community-copy span {
    font-size: 0.84rem;
  }

  .site-footer {
    padding: 0.95rem 0;
  }

  .footer-inner {
    gap: 0.5rem;
  }

  .header-shell {
    width: min(100% - 20px, 1240px);
    min-height: 66px;
    grid-template-columns: 1fr auto;
  }

  .header-actions {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-particles i {
    animation: none;
    opacity: 0;
  }
}
