:root {
  --bg: #070b16;
  --bg-2: #10142a;
  --panel: rgba(12, 17, 36, 0.82);
  --text: #f4f7ff;
  --muted: #b8c8e6;
  --line: rgba(255, 255, 255, 0.1);
  --cyan: #58e5ff;
  --red: #ff5a4f;
  --yellow: #ffd84a;
  --gold: #ffbf47;
  --violet: #ad5fff;
  --indigo: #6e5cff;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.4);
  --width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background:
    linear-gradient(135deg, #11224d 0%, #1a2b63 20%, #2b236c 46%, #46277b 70%, #1b285b 100%),
    radial-gradient(circle at 12% 16%, rgba(88, 229, 255, 0.34), transparent 22%),
    radial-gradient(circle at 84% 18%, rgba(173, 95, 255, 0.4), transparent 26%),
    radial-gradient(circle at 70% 72%, rgba(88, 229, 255, 0.22), transparent 20%),
    radial-gradient(circle at 24% 84%, rgba(110, 92, 255, 0.24), transparent 24%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.8;
  background:
    linear-gradient(90deg, rgba(88, 229, 255, 0.1), transparent 24%, transparent 76%, rgba(173, 95, 255, 0.12)),
    linear-gradient(180deg, rgba(88, 229, 255, 0.06), transparent 22%, transparent 78%, rgba(173, 95, 255, 0.08)),
    radial-gradient(circle at center, transparent 50%, rgba(0, 0, 0, 0.18) 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background-image:
    radial-gradient(circle at 14% 18%, rgba(88, 229, 255, 0.34) 0, rgba(88, 229, 255, 0.12) 10%, transparent 18%),
    radial-gradient(circle at 30% 34%, rgba(110, 92, 255, 0.3) 0, rgba(110, 92, 255, 0.1) 10%, transparent 18%),
    radial-gradient(circle at 48% 22%, rgba(88, 229, 255, 0.26) 0, rgba(88, 229, 255, 0.09) 10%, transparent 18%),
    radial-gradient(circle at 66% 30%, rgba(173, 95, 255, 0.28) 0, rgba(173, 95, 255, 0.1) 10%, transparent 18%),
    radial-gradient(circle at 82% 50%, rgba(110, 92, 255, 0.3) 0, rgba(110, 92, 255, 0.1) 10%, transparent 18%),
    radial-gradient(circle at 20% 70%, rgba(88, 229, 255, 0.22) 0, rgba(88, 229, 255, 0.08) 10%, transparent 18%),
    radial-gradient(circle at 42% 82%, rgba(173, 95, 255, 0.24) 0, rgba(173, 95, 255, 0.08) 10%, transparent 18%),
    radial-gradient(circle at 72% 76%, rgba(88, 229, 255, 0.22) 0, rgba(88, 229, 255, 0.08) 10%, transparent 18%);
  filter: blur(4px);
}

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

.hero,
.panel {
  width: min(calc(100% - 40px), var(--width));
  margin: 0 auto;
}

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

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 16px 22px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(8, 12, 28, 0.74);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 16px;
  z-index: 10;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--text);
}

.brand-mark {
  width: 88px;
  border-radius: 16px;
  box-shadow: 0 0 32px rgba(88, 229, 255, 0.24);
}

.brand-name {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.navlinks {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.navlinks a,
.button,
.contact-panel a {
  text-decoration: none;
  color: inherit;
}

.navlinks a {
  color: var(--muted);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.84fr) minmax(0, 1.16fr);
  align-items: center;
  gap: 34px;
  padding: 42px 0 8px;
}

.hero-copy {
  max-width: 100%;
  padding: 30px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(10, 14, 32, 0.58);
  box-shadow: var(--shadow);
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--yellow);
  font-size: 0.82rem;
}

h1,
h2,
h3 {
  margin: 0 0 18px;
  line-height: 1.02;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  max-width: 10ch;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: 1.28rem;
}

p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.lede {
  max-width: 56ch;
}

.lede + .lede {
  margin-top: 12px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.button {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  font-weight: 600;
}

.button.primary {
  padding: 16px 30px;
  background: linear-gradient(135deg, var(--red), var(--yellow));
  color: #151822;
  border-color: transparent;
  box-shadow: 0 14px 34px rgba(255, 90, 79, 0.24);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.04);
}

.hero-art {
  position: relative;
  margin: 0;
  width: 100%;
  min-height: 580px;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 9, 19, 0.04) 0%, rgba(6, 9, 19, 0.12) 45%, rgba(6, 9, 19, 0.3) 100%),
    radial-gradient(circle at center, transparent 52%, rgba(6, 9, 19, 0.16) 100%);
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.panel {
  margin-bottom: 24px;
  padding: 36px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(12, 17, 36, 0.76);
  box-shadow: var(--shadow);
}

.intro-panel,
.about-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}

.features-panel {
  display: grid;
  gap: 24px;
}

.panel-heading {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 380px);
  gap: 20px;
  align-items: end;
}

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

.project-card {
  padding: 26px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(9, 12, 28, 0.64);
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(16, 21, 45, 0.8);
  color: var(--text);
  font-size: 1.75rem;
  line-height: 1;
}

.project-card:nth-child(1) {
  box-shadow: inset 0 3px 0 var(--red);
}

.project-card:nth-child(2) {
  box-shadow: inset 0 3px 0 var(--yellow);
}

.project-card:nth-child(3) {
  box-shadow: inset 0 3px 0 var(--cyan);
}

.contact-panel {
  margin-bottom: 64px;
}

.community-hero {
  padding-bottom: 28px;
}

.community-hero-grid {
  align-items: stretch;
}

.community-copy-card h1 {
  max-width: 9ch;
}

.community-points {
  margin-top: 28px;
}

.community-art {
  min-height: 560px;
  background: radial-gradient(circle at 50% 32%, rgba(88, 229, 255, 0.12), transparent 42%), rgba(6, 9, 20, 0.9);
}

.community-art img {
  object-fit: contain;
  object-position: center center;
}

.community-art::before {
  content: "";
  position: absolute;
  inset: auto 22px 22px 22px;
  height: 120px;
  border-radius: 24px;
  background: linear-gradient(180deg, transparent, rgba(5, 8, 18, 0.9));
  z-index: 1;
}

.art-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 10, 22, 0.76);
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

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

.pillar,
.stat-card,
.forum-board,
.discussion-card {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(9, 12, 28, 0.64);
  box-shadow: var(--shadow);
}

.pillar {
  padding: 24px;
}

.stat-card {
  padding: 24px;
  display: grid;
  gap: 8px;
}

.stat-number {
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1;
}

.stat-label,
.meta,
.thread-meta {
  color: var(--muted);
  font-size: 0.95rem;
}

.forum-board-panel,
.discussions-panel,
.join-panel {
  display: grid;
  gap: 24px;
}

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

.forum-board {
  padding: 24px;
  display: grid;
  gap: 14px;
}

.community-thread-panel .discussion-list {
  display: grid;
  gap: 16px;
}

.discussion-card {
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.community-final-panel {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.red-accent {
  box-shadow: inset 0 3px 0 var(--red), var(--shadow);
}

.yellow-accent {
  box-shadow: inset 0 3px 0 var(--yellow), var(--shadow);
}

.cyan-accent {
  box-shadow: inset 0 3px 0 var(--cyan), var(--shadow);
}

@media (max-width: 1100px) {
  .hero-grid,
  .community-pillars,
  .forum-grid,
  .community-final-panel {
    grid-template-columns: 1fr;
  }

  .hero-art,
  .community-art {
    min-height: 420px;
  }
}

@media (max-width: 980px) {
  .intro-panel,
  .about-panel,
  .panel-heading,
  .project-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-mark {
    width: 72px;
  }

  h1 {
    font-size: clamp(2.2rem, 11vw, 3.6rem);
    max-width: 11ch;
  }

  .hero,
  .panel {
    width: min(calc(100% - 24px), var(--width));
  }

  .hero-copy,
  .panel {
    padding: 24px;
  }

  .hero-art,
  .community-art {
    min-height: 320px;
  }

  .discussion-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .art-badge {
    left: 16px;
    right: 16px;
    bottom: 16px;
    border-radius: 18px;
  }
}


.project-card:nth-child(1) .feature-icon {
  box-shadow: inset 0 3px 0 var(--red), 0 12px 26px rgba(255, 90, 79, 0.16);
}

.project-card:nth-child(2) .feature-icon {
  box-shadow: inset 0 3px 0 var(--yellow), 0 12px 26px rgba(255, 216, 74, 0.14);
}

.project-card:nth-child(3) .feature-icon {
  box-shadow: inset 0 3px 0 var(--cyan), 0 12px 26px rgba(88, 229, 255, 0.16);
}




.card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.card-link:hover,
.card-link:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(11, 15, 34, 0.82);
}

.card-link:focus-visible {
  outline: 2px solid rgba(255, 216, 74, 0.75);
  outline-offset: 3px;
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(16, 21, 45, 0.86);
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
}

.feature-icon span {
  transform: translateY(1px);
}

.red-icon {
  box-shadow: inset 0 3px 0 var(--red), 0 12px 26px rgba(255, 90, 79, 0.16);
}

.yellow-icon {
  box-shadow: inset 0 3px 0 var(--yellow), 0 12px 26px rgba(255, 216, 74, 0.14);
}

.cyan-icon {
  box-shadow: inset 0 3px 0 var(--cyan), 0 12px 26px rgba(88, 229, 255, 0.16);
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--text);
  font-weight: 700;
}

.card-cta::after {
  content: ">";
  color: var(--yellow);
}

.detail-hero {
  padding-bottom: 26px;
}

.detail-grid {
  grid-template-columns: minmax(340px, 0.88fr) minmax(0, 1.12fr);
  align-items: stretch;
}

.detail-copy {
  display: grid;
  align-content: start;
}

.detail-copy h1 {
  max-width: 11ch;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-weight: 600;
}

.detail-art {
  min-height: 540px;
}

.detail-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-section {
  display: grid;
  gap: 24px;
}

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

.detail-block {
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(9, 12, 28, 0.64);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.back-link::before {
  content: "<";
  color: var(--yellow);
}

@media (max-width: 980px) {
  .detail-grid,
  .detail-columns {
    grid-template-columns: 1fr;
  }
}


.site-footer {
  width: min(calc(100% - 40px), var(--width));
  margin: 0 auto 36px;
  padding: 24px 30px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(8, 12, 28, 0.72);
  backdrop-filter: blur(10px);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
}

.footer-grid strong {
  display: inline-block;
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover,
.navlinks a:hover,
.contact-panel a:hover {
  color: var(--text);
}

.policy-page {
  padding: 24px 0 56px;
}

.policy-shell {
  width: min(calc(100% - 40px), 960px);
  margin: 0 auto;
}

.policy-card {
  margin-top: 28px;
  padding: 34px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(12, 17, 36, 0.82);
  box-shadow: var(--shadow);
}

.policy-card h1 {
  max-width: none;
  margin-bottom: 14px;
}

.policy-card h2 {
  font-size: 1.55rem;
  margin-top: 28px;
  margin-bottom: 14px;
}

.policy-card ul {
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.75;
}

.policy-card li + li {
  margin-top: 8px;
}

.policy-meta {
  margin-bottom: 24px;
  color: var(--yellow);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.policy-card a {
  color: var(--cyan);
}

@media (max-width: 820px) {
  .footer-grid {
    flex-direction: column;
  }

  .channel-panel {
    grid-template-columns: 1fr;
  }
}


.channel-panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: start;
}

.channel-copy {
  display: grid;
  gap: 18px;
}

.channel-video-shell {
  display: grid;
  gap: 12px;
}

.channel-video-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(6, 9, 19, 0.72);
  box-shadow: var(--shadow);
}

.channel-video-frame::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.channel-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.channel-note {
  font-size: 0.92rem;
  color: var(--muted);
}


.icon-svg {
  font-size: 1.9rem;
  line-height: 1;
}

.pillar-icon,
.board-icon,
.discussion-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.red-accent .pillar-icon,
.red-accent .board-icon,
.thread-meta:nth-of-type(1) {
  box-shadow: 0 12px 28px rgba(255, 90, 79, 0.18);
}

.yellow-accent .pillar-icon,
.yellow-accent .board-icon {
  box-shadow: 0 12px 28px rgba(255, 216, 74, 0.16);
}

.cyan-accent .pillar-icon,
.cyan-accent .board-icon {
  box-shadow: 0 12px 28px rgba(88, 229, 255, 0.16);
}

.forum-board h3,
.pillar h3 {
  margin-top: 0;
}

.discussion-card {
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.discussion-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 0;
  font-size: 1.35rem;
}


.merch-grid {
  align-items: stretch;
}

.merch-preview-panel {
  display: grid;
  align-content: start;
  gap: 18px;
}

.merch-checklist {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.merch-mini-card,
.merch-card {
  min-height: 100%;
}

.merch-mini-card {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 14, 32, 0.62);
}

.merch-meta {
  margin-bottom: 8px;
}

.merch-catalog-panel .project-grid {
  align-items: stretch;
}

@media (max-width: 920px) {
  .merch-checklist {
    grid-template-columns: 1fr;
  }
}
