:root {
  --bg: #050405;
  --surface: #0d0a0e;
  --surface-2: #121014;
  --text: #fbf9fc;
  --muted: #aba5af;
  --purple: #8b2cf5;
  --purple-light: #c56cff;
  --purple-dark: #571397;
  --line: rgba(169, 84, 224, 0.12);
  --container: 820px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.page-shell {
  min-height: 100%;
  overflow: clip;
  background:
    radial-gradient(950px 620px at 80% 18%, rgba(93, 42, 162, 0.085), transparent 62%),
    radial-gradient(760px 520px at 50% 78%, rgba(70, 28, 115, 0.085), transparent 70%),
    linear-gradient(rgba(128, 109, 177, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(128, 109, 177, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, #07070f 0%, #090815 52%, #100a20 100%);
  background-size: auto, auto, 48px 48px, 48px 48px, auto;
  background-position: center, center, center top, center top, center;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 7px;
  left: 50%;
  width: min(calc(100% - 40px), var(--container));
  height: 31px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-top: 1px solid rgba(163, 34, 154, 0.19);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.brand-mark {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 31px;
}
.desktop-nav a {
  position: relative;
  padding: 10px 0;
  color: #8f8994;
  font-size: 8px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .19em;
  transition: color .2s ease;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 5px;
  width: 0; height: 1px;
  transform: translateX(-50%);
  background: var(--purple-light);
  transition: width .2s ease;
}
.desktop-nav a:hover { color: #eee9f1; }
.desktop-nav a:hover::after { width: 100%; }

.login-button {
  justify-self: end;
  display: inline-grid;
  place-items: center;
  min-width: 74px;
  height: 27px;
  padding: 0 12px;
  border: 1px solid rgba(204, 109, 255, .14);
  border-radius: 5px;
  background: linear-gradient(180deg, #9a34f4 0%, #7618d0 100%);
  box-shadow: 0 8px 26px rgba(113, 25, 190, .18), inset 0 1px 0 rgba(255,255,255,.09);
  font-size: 9px;
  font-weight: 750;
  transition: transform .2s ease, filter .2s ease;
}
.login-button:hover { transform: translateY(-1px); filter: brightness(1.08); }

.menu-toggle, .mobile-nav { display: none; }

.hero {
  position: relative;
  min-height: 772px;
  height: 100svh;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(650px 390px at 50% 53%, rgba(94, 37, 126, 0.055), transparent 72%),
    linear-gradient(180deg, rgba(0,0,0,.02), rgba(18, 8, 28, .06));
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(255,255,255,.035) .45px, transparent .45px);
  background-size: 4px 4px;
  opacity: .16;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 24%, #000 82%, transparent 100%);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  width: 680px;
  height: 390px;
  transform: translate(-50%, -38%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94, 30, 115, .055), rgba(79, 11, 76, .018) 50%, transparent 72%);
  filter: blur(10px);
}

.hero-content {
  width: min(calc(100% - 34px), 720px);
  margin-top: 3px;
  text-align: center;
}

.hero-mark {
  display: block;
  width: 62px;
  height: 62px;
  margin: 0 auto 16px;
  object-fit: contain;
}

h1 {
  margin: 0;
  font-size: clamp(42px, 3vw, 46px);
  line-height: 1.03;
  font-weight: 840;
  letter-spacing: -0.048em;
}

.lead {
  margin: 17px 0 0;
  color: #aaa4ac;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 520;
  letter-spacing: -0.01em;
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
}

.primary-button,
.secondary-button {
  height: 34px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 720;
  transition: transform .2s ease, filter .2s ease, border-color .2s ease;
}
.primary-button:hover,
.secondary-button:hover { transform: translateY(-1px); filter: brightness(1.08); }

.primary-button {
  min-width: 112px;
  gap: 8px;
  padding: 0 12px;
  background: linear-gradient(180deg, #a337f4 0%, #7d1bd4 100%);
  border: 1px solid rgba(222, 150, 255, .16);
  box-shadow: 0 10px 30px rgba(99, 19, 165, .18), inset 0 1px 0 rgba(255,255,255,.08);
}
.primary-button svg { width: 14px; height: 14px; }
.primary-button .arrow { margin-left: 1px; font-size: 14px; font-weight: 450; opacity: .8; }

.secondary-button {
  min-width: 136px;
  gap: 8px;
  padding: 0 12px;
  color: #e9e4eb;
  background: linear-gradient(180deg, rgba(20,16,21,.92), rgba(12,10,13,.94));
  border: 1px solid rgba(151, 115, 161, .20);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
}
.secondary-button svg { width: 14px; height: 14px; color: #8b5cf6; }
.secondary-button:hover { border-color: rgba(180, 113, 233, .42); }

.status-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
  color: #8d8791;
  font-size: 8px;
  font-weight: 560;
}
.status-row i {
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,.12);
}
.status-item { display: inline-flex; align-items: center; gap: 5px; white-space: nowrap; }
.status-item svg { width: 13px; height: 13px; color: #8e2ae0; }
.status-item strong { color: #b7b1ba; font-weight: 680; }

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 22px;
  width: 17px;
  height: 28px;
  transform: translateX(-50%);
  border: 1px solid rgba(197, 186, 201, .26);
  border-radius: 9px;
}
.scroll-indicator span {
  position: absolute;
  top: 5px;
  left: 50%;
  width: 2px;
  height: 6px;
  margin-left: -1px;
  border-radius: 2px;
  background: #8c28e8;
  box-shadow: 0 0 8px rgba(160, 56, 242, .55);
  animation: scroll 1.7s ease-in-out infinite;
}
@keyframes scroll {
  0% { opacity: 0; transform: translateY(0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translateY(9px); }
}

.site-footer {
  position: relative;
  border-top: 1px solid rgba(151, 80, 214, .14);
  background:
    radial-gradient(700px 260px at 22% 0%, rgba(104, 37, 168, .08), transparent 70%),
    linear-gradient(180deg, rgba(9, 7, 16, .98), rgba(6, 5, 12, 1));
}

.footer-inner {
  width: min(calc(100% - 48px), 1120px);
  margin: 0 auto;
  padding: 76px 0 38px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(300px, 1.55fr) repeat(3, minmax(120px, .7fr));
  gap: 64px;
  align-items: start;
}

.footer-about { max-width: 390px; }

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: #f5f2f7;
  font-size: 20px;
  font-weight: 850;
  letter-spacing: -.035em;
}

.footer-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.footer-brand strong {
  color: var(--purple-light);
  font-weight: inherit;
}

.footer-about p {
  max-width: 380px;
  margin: 27px 0 0;
  color: #78727f;
  font-size: 13px;
  line-height: 1.8;
  font-weight: 600;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.footer-socials a {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(176, 126, 213, .13);
  border-radius: 13px;
  color: #f3edf7;
  background: rgba(255, 255, 255, .035);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.footer-socials a:hover {
  transform: translateY(-2px);
  border-color: rgba(187, 99, 245, .42);
  background: rgba(139, 44, 245, .10);
}

.footer-socials svg { width: 20px; height: 20px; }

.footer-column {
  display: grid;
  justify-items: start;
  gap: 18px;
}

.footer-column h3 {
  margin: 0 0 10px;
  color: #5f5968;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .28em;
}

.footer-column a {
  position: relative;
  color: #8d8695;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  transition: color .2s ease, transform .2s ease;
}

.footer-column a:hover {
  color: #d6b5ef;
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 74px;
  padding-top: 34px;
  border-top: 1px solid rgba(255,255,255,.055);
  color: #4d4756;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
}

@media (max-height: 720px) and (min-width: 701px) {
  .hero { min-height: 640px; }
  .hero-content { transform: scale(.92); }
  .scroll-indicator { bottom: 15px; }
}

@media (max-width: 700px) {
  .site-header {
    top: 10px;
    width: calc(100% - 28px);
    height: 44px;
    grid-template-columns: 1fr auto;
  }
  .brand { font-size: 13px; }
  .brand-mark { width: 24px; height: 24px; object-fit: contain; }
  .desktop-nav, .login-button { display: none; }
  .menu-toggle {
    display: grid;
    gap: 5px;
    width: 36px;
    height: 36px;
    place-content: center;
    border: 1px solid rgba(170, 104, 204, .2);
    border-radius: 6px;
    background: rgba(13, 9, 14, .72);
  }
  .menu-toggle span { display: block; width: 16px; height: 1px; background: #eee8f0; transition: transform .2s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }
  .mobile-nav {
    position: absolute;
    top: 52px;
    right: 0;
    display: grid;
    width: 190px;
    padding: 8px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    border: 1px solid rgba(165, 83, 203, .22);
    border-radius: 8px;
    background: rgba(9, 6, 10, .96);
    box-shadow: 0 18px 50px rgba(0,0,0,.42);
    transition: opacity .2s ease, transform .2s ease;
  }
  .mobile-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .mobile-nav a { padding: 12px; color: #c0bac3; font-size: 12px; font-weight: 700; }
  .mobile-nav a:hover { color: white; background: rgba(138,44,245,.08); border-radius: 5px; }
  .hero { min-height: 700px; }
  .hero-content { margin-top: 20px; }
  .hero-mark { width: 70px; height: 70px; margin-bottom: 22px; }
  h1 { font-size: clamp(38px, 11vw, 50px); }
  .lead { font-size: 13px; max-width: 350px; margin-inline: auto; }
  .desktop-break { display: none; }
  .hero-actions { flex-direction: column; align-items: stretch; max-width: 260px; margin-inline: auto; margin-top: 28px; }
  .primary-button, .secondary-button { width: 100%; height: 42px; font-size: 11px; }
  .status-row { margin-top: 24px; }

  .footer-inner {
    width: min(calc(100% - 36px), 520px);
    padding: 56px 0 28px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 46px 28px;
  }

  .footer-about {
    grid-column: 1 / -1;
    max-width: none;
  }

  .footer-about p { max-width: 440px; }
  .footer-column:last-child { grid-column: 1 / -1; }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-top: 52px;
    line-height: 1.6;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}


@media (max-width: 430px) {
  .footer-main { grid-template-columns: 1fr; }
  .footer-about,
  .footer-column:last-child { grid-column: auto; }
  .footer-column { gap: 15px; }
}


/* Discord CTA + footer */
.discord-section {
  position: relative;
  padding: 118px 24px 128px;
  background:
    radial-gradient(720px 340px at 50% 34%, rgba(105, 43, 187, .075), transparent 68%),
    linear-gradient(180deg, rgba(5, 4, 8, .96), rgba(7, 5, 10, 1));
}

.discord-card {
  position: relative;
  width: min(100%, 1040px);
  min-height: 318px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr .82fr;
  overflow: hidden;
  border: 1px solid rgba(177, 112, 247, .15);
  border-radius: 9px;
  background:
    radial-gradient(450px 260px at 73% 22%, rgba(114, 74, 221, .28), transparent 66%),
    radial-gradient(420px 280px at 23% 78%, rgba(74, 42, 155, .22), transparent 72%),
    linear-gradient(120deg, #16102d 0%, #281a50 53%, #151332 100%);
  box-shadow: 0 30px 80px rgba(0,0,0,.26), inset 0 1px 0 rgba(255,255,255,.035);
}

.discord-card::before,
.discord-card::after {
  content: "";
  position: absolute;
  border-radius: 48%;
  background: rgba(6, 7, 27, .62);
  filter: blur(.2px);
}

.discord-card::before {
  width: 420px;
  height: 240px;
  left: -170px;
  bottom: -108px;
  transform: rotate(-14deg);
}

.discord-card::after {
  width: 430px;
  height: 300px;
  right: -155px;
  bottom: -126px;
  transform: rotate(18deg);
}

.discord-card-copy {
  position: relative;
  z-index: 3;
  align-self: center;
  padding: 58px 40px 56px 80px;
}

.discord-kicker {
  display: block;
  margin-bottom: 12px;
  color: rgba(196, 165, 255, .65);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .24em;
}

.discord-card h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(29px, 2.4vw, 38px);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.discord-card p {
  max-width: 420px;
  margin: 16px 0 0;
  color: #a49daa;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 550;
}

.discord-card-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 25px;
}

.discord-card-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 40px;
  padding: 0 15px;
  border: 1px solid rgba(232, 220, 255, .16);
  border-radius: 5px;
  color: white;
  background: linear-gradient(180deg, #9d5cff 0%, #7240dd 100%);
  box-shadow: 0 12px 30px rgba(86, 40, 175, .26), inset 0 1px 0 rgba(255,255,255,.16);
  font-size: 12px;
  font-weight: 800;
  transition: transform .2s ease, filter .2s ease;
}

.discord-card-button:hover { transform: translateY(-2px); filter: brightness(1.08); }
.discord-card-button svg { width: 16px; height: 16px; }
.discord-arrow { margin-left: 4px; font-size: 16px; opacity: .8; }
.discord-count { color: #a39ca8; font-size: 12px; font-weight: 650; }
.discord-count strong { color: #c33bff; font-size: 15px; }

.discord-visual {
  position: relative;
  z-index: 2;
  min-height: 318px;
}

.visual-orbit {
  position: absolute;
  border: 12px solid rgba(170, 140, 255, .18);
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
}
.orbit-one { width: 180px; height: 180px; right: 54px; bottom: -84px; transform: rotate(18deg); }
.orbit-two { width: 90px; height: 90px; left: 35px; top: 132px; transform: rotate(-27deg); border-width: 8px; }

.visual-star {
  position: absolute;
  color: rgba(198, 115, 255, .55);
  text-shadow: 0 0 18px rgba(178, 71, 255, .5);
}
.star-one { top: 58px; left: 44px; font-size: 22px; }
.star-two { top: 138px; right: 48px; font-size: 13px; }
.star-three { bottom: 42px; left: 86px; font-size: 16px; }

.discord-cube {
  position: absolute;
  right: 72px;
  bottom: 33px;
  width: 170px;
  height: 205px;
  transform: rotate(6deg);
  filter: drop-shadow(0 24px 28px rgba(4, 3, 18, .5));
}

.cube-face {
  position: absolute;
  top: 0;
  left: 18px;
  width: 138px;
  height: 126px;
  display: grid;
  place-items: center;
  border: 8px solid rgba(219, 224, 255, .24);
  border-radius: 22px 22px 30px 30px;
  color: #eef0ff;
  background:
    linear-gradient(135deg, rgba(255,255,255,.34), transparent 34%),
    linear-gradient(145deg, #9aaaff 0%, #7684e8 52%, #5f4bc4 100%);
  box-shadow: inset -13px -15px 0 rgba(53, 37, 138, .2), inset 12px 10px 0 rgba(255,255,255,.12);
  transform: rotate(10deg);
}

.cube-face::before,
.cube-face::after {
  content: "";
  position: absolute;
  top: 28px;
  width: 23px;
  height: 23px;
  border-radius: 6px;
  background: rgba(243, 245, 255, .78);
  box-shadow: inset 0 -7px 0 rgba(103, 91, 192, .16);
}
.cube-face::before { left: -20px; transform: rotate(-16deg); }
.cube-face::after { right: -20px; transform: rotate(16deg); }
.cube-face svg { width: 72px; height: 72px; opacity: .86; }

.cube-arm,
.cube-leg {
  position: absolute;
  display: block;
  border: 6px solid rgba(218, 223, 255, .2);
  background: linear-gradient(145deg, #8799f2, #6554cd);
  box-shadow: inset -8px -8px 0 rgba(48, 32, 127, .14);
}
.cube-arm { top: 108px; width: 36px; height: 72px; border-radius: 15px; }
.arm-left { left: 18px; transform: rotate(17deg); }
.arm-right { right: 13px; transform: rotate(-22deg); }
.cube-leg { bottom: 0; width: 42px; height: 83px; border-radius: 16px; }
.leg-left { left: 44px; transform: rotate(6deg); }
.leg-right { right: 29px; transform: rotate(-7deg); }

.cube-sprout {
  position: absolute;
  top: -21px;
  left: 92px;
  width: 44px;
  height: 19px;
  border-radius: 100% 0 100% 0;
  background: linear-gradient(135deg, #c5ff72, #62b84d);
  transform: rotate(20deg);
  box-shadow: 22px 6px 0 -4px #8edc57;
}

.site-footer {
  position: relative;
  border-top: 1px solid rgba(166, 72, 199, .16);
  background:
    linear-gradient(rgba(111, 69, 134, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 69, 134, .025) 1px, transparent 1px),
    radial-gradient(750px 260px at 18% 0%, rgba(92, 29, 113, .08), transparent 70%),
    #09070a;
  background-size: 48px 48px, 48px 48px, auto, auto;
}

.footer-inner {
  width: min(calc(100% - 48px), 1120px);
  margin: 0 auto;
  padding: 66px 0 34px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(330px, 1.55fr) repeat(3, minmax(120px, .65fr));
  gap: 72px;
  align-items: start;
}

.footer-about { max-width: 420px; }
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #f7f3f8;
  font-size: 18px;
  font-weight: 850;
  letter-spacing: -.035em;
}
.footer-brand img { width: 38px; height: 38px; object-fit: contain; }
.footer-about p {
  max-width: 410px;
  margin: 20px 0 0;
  color: #8a838e;
  font-size: 13px;
  line-height: 1.75;
  font-weight: 550;
}
.footer-socials { display: flex; gap: 10px; margin-top: 24px; }
.footer-socials a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(193, 128, 224, .12);
  border-radius: 8px;
  color: #eee7f2;
  background: rgba(255,255,255,.045);
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.footer-socials a:first-child { color: #c83dff; }
.footer-socials a:hover { transform: translateY(-2px); background: rgba(153, 55, 200, .12); }
.footer-socials svg { width: 18px; height: 18px; }

.footer-column { display: grid; justify-items: start; gap: 16px; }
.footer-column h3 {
  margin: 0 0 6px;
  color: #777079;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .02em;
}
.footer-column a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #9a939e;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  transition: color .2s ease, transform .2s ease;
}
.footer-column a:hover { color: #d8b7e9; transform: translateX(3px); }
.footer-link-icon { width: 13px; color: #a823d0; text-align: center; font-size: 13px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 48px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.065);
  color: #5b545e;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .1em;
}

@media (max-width: 900px) {
  .discord-section { padding: 86px 22px 96px; }
  .discord-card { grid-template-columns: 1fr .68fr; }
  .discord-card-copy { padding-left: 52px; }
  .discord-cube { right: 26px; transform: scale(.9) rotate(6deg); transform-origin: bottom right; }
  .footer-main { grid-template-columns: 1.4fr 1fr 1fr; gap: 48px 30px; }
  .footer-about { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .discord-section { padding: 68px 18px 78px; }
  .discord-card { min-height: 480px; grid-template-columns: 1fr; }
  .discord-card-copy { padding: 48px 28px 250px; text-align: center; }
  .discord-card p { margin-inline: auto; }
  .discord-card-actions { justify-content: center; flex-wrap: wrap; }
  .discord-visual { position: absolute; inset: auto 0 0; height: 250px; min-height: 0; }
  .discord-cube { right: 50%; bottom: 14px; transform: translateX(50%) scale(.82) rotate(4deg); transform-origin: center bottom; }
  .star-one { left: 20%; top: 42px; }
  .star-two { right: 18%; top: 86px; }
  .orbit-one { right: -22px; }
  .orbit-two { left: 18px; top: 110px; }

  .footer-inner { width: min(calc(100% - 36px), 520px); padding: 54px 0 28px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 42px 26px; }
  .footer-about { grid-column: 1 / -1; }
  .footer-column:last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; margin-top: 42px; line-height: 1.55; }
}

@media (max-width: 430px) {
  .discord-card-copy { padding-inline: 21px; }
  .discord-card-actions { flex-direction: column; gap: 12px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-about,
  .footer-column:last-child { grid-column: auto; }
}