:root {
  --bg: #070812;
  --bg2: #090b1a;
  --bg-rgb: 7, 8, 18;
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.64);
  --line: rgba(255, 255, 255, 0.10);
  --glass: rgba(255, 255, 255, 0.06);
  --glass2: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  --radius: 18px;
  --radius2: 26px;
  --max: 1120px;

  --c1: #7c3aed;
  --c2: #06b6d4;
  --c3: #22c55e;
  --c4: #f97316;
  --c1-rgb: 124, 58, 237;
  --c2-rgb: 6, 182, 212;
  --c3-rgb: 34, 197, 94;
  --c4-rgb: 249, 115, 22;
  --c-mix: #60a5fa;

  --grad: linear-gradient(135deg, var(--c1), var(--c2) 55%, var(--c-mix));
}

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

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", "Noto Sans SC",
    "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: radial-gradient(1200px 700px at 20% -10%, rgba(var(--c1-rgb), 0.28), transparent 60%),
    radial-gradient(900px 550px at 100% 0%, rgba(var(--c2-rgb), 0.24), transparent 60%),
    radial-gradient(900px 600px at 60% 110%, rgba(var(--c3-rgb), 0.16), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  overflow-x: hidden;
}

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

button {
  font: inherit;
  color: inherit;
}

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

.skip {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transform: translateY(-200%);
  transition: transform 160ms ease;
  z-index: 9999;
}
.skip:focus {
  transform: translateY(0);
  outline: none;
}

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

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

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;
}

.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(var(--bg-rgb), 0.55);
  border-bottom: 1px solid transparent;
}
.header.isElevated {
  border-bottom-color: rgba(255, 255, 255, 0.10);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  user-select: none;
}
.brand__mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.30), transparent 45%),
    linear-gradient(135deg, rgba(var(--c1-rgb), 0.95), rgba(var(--c2-rgb), 0.95));
  box-shadow: 0 12px 28px rgba(var(--c1-rgb), 0.28), 0 18px 34px rgba(var(--c2-rgb), 0.16);
  position: relative;
}
.brand__mark::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.brand__text {
  font-weight: 760;
  letter-spacing: 0.4px;
}

.nav {
  display: flex;
  align-items: center;
  position: relative;
}
.nav__toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
}
.nav__toggle:focus-visible {
  outline: 2px solid rgba(var(--c2-rgb), 0.7);
  outline-offset: 2px;
}
.nav__toggleLines {
  width: 18px;
  height: 12px;
  display: inline-block;
  background: linear-gradient(var(--text), var(--text)) 0 0 / 100% 2px no-repeat,
    linear-gradient(var(--text), var(--text)) 0 50% / 100% 2px no-repeat,
    linear-gradient(var(--text), var(--text)) 0 100% / 70% 2px no-repeat;
  opacity: 0.9;
}

.nav__menu {
  display: flex;
  gap: 18px;
  align-items: center;
}
.nav__link {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 560;
  font-size: 14px;
  padding: 10px 10px;
  border-radius: 12px;
  transition: background 160ms ease, color 160ms ease;
}
.nav__link:hover {
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.06);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 14px;
  font-weight: 680;
  letter-spacing: 0.2px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease,
    box-shadow 160ms ease;
  user-select: none;
}
.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
}
.btn:active {
  transform: translateY(0);
}
.btn--primary {
  border-color: rgba(var(--c2-rgb), 0.22);
  background: linear-gradient(135deg, rgba(var(--c1-rgb), 0.85), rgba(var(--c2-rgb), 0.85));
  box-shadow: 0 18px 38px rgba(var(--c1-rgb), 0.18), 0 22px 46px rgba(var(--c2-rgb), 0.10);
}
.btn--primary:hover {
  box-shadow: 0 18px 46px rgba(var(--c1-rgb), 0.24), 0 22px 54px rgba(var(--c2-rgb), 0.14);
  border-color: rgba(255, 255, 255, 0.22);
}
.btn--secondary {
  border-color: rgba(var(--c1-rgb), 0.22);
}
.btn--ghost {
  background: rgba(var(--bg-rgb), 0.15);
}

/* Hero */
.hero {
  position: relative;
  padding: 84px 0 54px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.glow {
  position: absolute;
  width: 780px;
  height: 780px;
  filter: blur(36px);
  opacity: 0.72;
}
.glow--a {
  left: -260px;
  top: -320px;
  background: radial-gradient(circle at 30% 35%, rgba(var(--c1-rgb), 0.75), transparent 60%);
}
.glow--b {
  right: -260px;
  top: -260px;
  background: radial-gradient(circle at 40% 40%, rgba(var(--c2-rgb), 0.65), transparent 60%);
}
.grid {
  position: absolute;
  inset: -10% -10%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 52px 52px;
  transform: perspective(900px) rotateX(62deg) translateY(-20%);
  opacity: 0.18;
  mask-image: radial-gradient(circle at 40% 20%, black 0%, transparent 62%);
  -webkit-mask-image: radial-gradient(circle at 40% 20%, black 0%, transparent 62%);
}
.noise {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  mix-blend-mode: overlay;
  background-image: repeating-radial-gradient(
      circle at 10% 20%,
      rgba(255, 255, 255, 0.06) 0,
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px,
      transparent 3px
    ),
    repeating-radial-gradient(
      circle at 70% 60%,
      rgba(0, 0, 0, 0.22) 0,
      rgba(0, 0, 0, 0.22) 1px,
      transparent 1px,
      transparent 4px
    );
}
.hero__inner {
  display: grid;
  gap: 34px;
  grid-template-columns: 1.18fr 0.82fr;
  align-items: center;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
}
.kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  box-shadow: 0 0 0 6px rgba(var(--c2-rgb), 0.14);
}
.hero__title {
  margin: 14px 0 0;
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.9px;
  display: grid;
  gap: 8px;
}
.hero__titleTop {
  display: inline-block;
  font-weight: 860;
}
.hero__titleBottom {
  display: inline-block;
  font-size: clamp(14px, 1.45vw, 18px);
  line-height: 1.35;
  letter-spacing: 0.2px;
  color: rgba(255, 255, 255, 0.78);
}
.hero__desc {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
  font-size: 15.5px;
  max-width: 54ch;
}
.hero__cta {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero__meta {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.stat {
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 12px 12px;
}
.stat__num {
  font-weight: 820;
  letter-spacing: 0.2px;
  font-size: 18px;
}
.stat__label {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12.8px;
}

.hero__cardWrap {
  position: relative;
  width: min(420px, 100%);
  justify-self: end;
}
.heroCard {
  border-radius: var(--radius2);
  background: radial-gradient(circle at 20% 0%, rgba(var(--c1-rgb), 0.26), transparent 55%),
    radial-gradient(circle at 120% 20%, rgba(var(--c2-rgb), 0.18), transparent 55%),
    rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: translateZ(0);
}
.heroCard__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 16px;
}
.pill {
  font-weight: 780;
  font-size: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(var(--c2-rgb), 0.12);
  border: 1px solid rgba(var(--c2-rgb), 0.22);
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 1px;
}
.chip {
  width: 48px;
  height: 36px;
  border-radius: 12px;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.22), transparent 40%),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.heroCard__mid {
  padding: 22px 16px 12px;
  text-align: left;
}
.heroCard__logo {
  display: inline-flex;
  gap: 6px;
  margin-bottom: 12px;
}
.heroCard__logo span {
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(var(--c1-rgb), 0.95), rgba(var(--c2-rgb), 0.95));
  opacity: 0.95;
}
.heroCard__logo span:nth-child(2) {
  background: linear-gradient(135deg, rgba(var(--c2-rgb), 0.95), rgba(var(--c3-rgb), 0.9));
}
.heroCard__logo span:nth-child(3) {
  background: linear-gradient(135deg, rgba(var(--c3-rgb), 0.92), rgba(var(--c4-rgb), 0.88));
}
.heroCard__name {
  font-size: 18px;
  font-weight: 820;
}
.heroCard__tag {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}
.heroCard__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding: 14px 16px;
  background: rgba(var(--bg-rgb), 0.22);
}
.heroCard__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  font-size: 13px;
}
.heroCard__row .muted {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.heroCard__row .mono {
  white-space: nowrap;
  flex: 0 0 auto;
}
.heroCard__row + .heroCard__row {
  border-top: 1px dashed rgba(255, 255, 255, 0.10);
}

.floatTags {
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.floatTags .tag {
  position: absolute;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.84);
  font-weight: 650;
  font-size: 12.5px;
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.35);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
  white-space: nowrap;
  -webkit-font-smoothing: antialiased;
}
.tag--1 {
  left: -56px;
  top: 56px;
  transform: rotate(-2deg);
}
.tag--2 {
  left: -18px;
  bottom: 42px;
  transform: rotate(1deg);
}
.tag--3 {
  right: -64px;
  top: 126px;
  transform: rotate(2deg);
}

.hero__fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 80px;
  background: linear-gradient(180deg, transparent, rgba(var(--bg-rgb), 0.85), var(--bg));
}

/* Sections */
.section {
  padding: 72px 0;
  position: relative;
}
.section--alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.sectionHead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}
.sectionHead__title {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.4px;
}
.sectionHead__desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  max-width: 52ch;
  line-height: 1.6;
  font-size: 14.5px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.card {
  grid-column: span 3;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  padding: 18px 16px;
  min-height: 152px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}
.card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
}
.card__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.14), transparent 45%),
    rgba(255, 255, 255, 0.05);
  display: grid;
  place-items: center;
}
.i {
  width: 18px;
  height: 18px;
  border-radius: 7px;
  background: var(--grad);
  display: inline-block;
  box-shadow: 0 12px 28px rgba(var(--c1-rgb), 0.18), 0 16px 32px rgba(var(--c2-rgb), 0.12);
  position: relative;
}
.i--bolt::after {
  content: "";
  position: absolute;
  inset: 3px 6px 3px 6px;
  background: rgba(var(--bg-rgb), 0.7);
  clip-path: polygon(45% 0%, 65% 0%, 52% 44%, 75% 44%, 40% 100%, 52% 56%, 30% 56%);
}
.i--shield::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: rgba(var(--bg-rgb), 0.7);
  clip-path: polygon(50% 0%, 88% 18%, 88% 56%, 50% 100%, 12% 56%, 12% 18%);
}
.i--spark::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: rgba(var(--bg-rgb), 0.7);
  clip-path: polygon(50% 0%, 61% 28%, 92% 34%, 69% 55%, 76% 86%, 50% 70%, 24% 86%, 31% 55%, 8% 34%, 39% 28%);
}
.i--device::after {
  content: "";
  position: absolute;
  inset: 4px;
  background: rgba(var(--bg-rgb), 0.7);
  clip-path: polygon(14% 14%, 86% 14%, 86% 62%, 14% 62%, 14% 14%, 36% 78%, 64% 78%, 64% 86%, 36% 86%);
}

.card__title {
  margin: 14px 0 0;
  font-size: 16px;
  font-weight: 780;
}
.card__desc {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.6;
  font-size: 13.5px;
}
.card--wide {
  grid-column: span 12;
  padding: 0;
  overflow: hidden;
}
.card__wide {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 0;
}
.card__wideCopy {
  padding: 22px 18px;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.chipPill {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.78);
  font-weight: 650;
  font-size: 12.5px;
}

.card__wideCopy .card__title {
  margin-top: 0;
}

.clubLead {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.65;
  font-size: 13.5px;
}

.clubGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
  margin-top: 18px;
}

.clubItem {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 180ms ease, background 180ms ease;
}

.clubItem:hover {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.045);
}

.clubItem__mark {
  width: 8px;
  height: 8px;
  margin-top: 5px;
  border-radius: 3px;
  background: var(--grad);
  flex-shrink: 0;
}

.clubItem__body {
  min-width: 0;
}

.clubItem__t {
  font-weight: 760;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
}

.clubItem__d {
  margin: 6px 0 0;
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.58);
}

.card__wideCopy .chips {
  margin-top: 18px;
}

.clubVisualStack {
  width: 100%;
  max-width: 340px;
  display: grid;
  gap: 12px;
}

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

.clubStat {
  text-align: center;
  padding: 12px 8px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(var(--bg-rgb), 0.22);
}

.clubStat__v {
  font-weight: 820;
  font-size: 16px;
  letter-spacing: 0.2px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.clubStat__k {
  margin-top: 4px;
  font-size: 11px;
  font-weight: 650;
  color: rgba(255, 255, 255, 0.55);
}

.miniPanel--club .miniPanel__bar {
  border-top: 0;
}

.miniPanel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 12px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.miniPanel__clubName {
  font-weight: 780;
  font-size: 13px;
  letter-spacing: 0.2px;
}

.miniPanel__badge {
  font-size: 11px;
  font-weight: 700;
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid rgba(var(--c3-rgb), 0.28);
  background: rgba(var(--c3-rgb), 0.10);
  color: rgba(255, 255, 255, 0.88);
}

.miniAvatars {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed rgba(255, 255, 255, 0.10);
}

.miniAvatars > span:not(.miniAvatars__more) {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 2px solid rgba(var(--bg-rgb), 0.85);
  margin-left: -6px;
  background: linear-gradient(135deg, rgba(var(--c1-rgb), 0.85), rgba(var(--c2-rgb), 0.85));
}

.miniAvatars > span:not(.miniAvatars__more):first-child {
  margin-left: 0;
}

.miniAvatars > span:nth-child(2) {
  background: linear-gradient(135deg, rgba(var(--c2-rgb), 0.85), rgba(var(--c3-rgb), 0.75));
}

.miniAvatars > span:nth-child(3) {
  background: linear-gradient(135deg, rgba(var(--c3-rgb), 0.8), rgba(var(--c4-rgb), 0.7));
}

.miniAvatars > span:nth-child(4) {
  background: linear-gradient(135deg, rgba(var(--c4-rgb), 0.75), rgba(var(--c1-rgb), 0.75));
}

.miniAvatars__more {
  margin-left: 8px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
}

.card__wideVisual {
  padding: 18px;
  background: radial-gradient(circle at 30% 10%, rgba(var(--c2-rgb), 0.16), transparent 55%),
    radial-gradient(circle at 90% 60%, rgba(var(--c1-rgb), 0.18), transparent 55%),
    rgba(255, 255, 255, 0.03);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
}
.miniPanel {
  width: min(340px, 100%);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(var(--bg-rgb), 0.28);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.38);
  overflow: hidden;
}
.miniPanel__bar {
  display: flex;
  gap: 8px;
  padding: 12px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.miniPanel__bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}
.miniPanel__body {
  padding: 14px 12px 12px;
}
.miniRow {
  display: grid;
  grid-template-columns: 14px 1fr 1fr;
  gap: 10px;
  align-items: center;
  padding: 8px 0;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(var(--c1-rgb), 0.9), rgba(var(--c2-rgb), 0.9));
}
.line {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.w60 {
  width: 60%;
}
.w30 {
  width: 30%;
}
.w40 {
  width: 40%;
}
.w50 {
  width: 50%;
}
.w70 {
  width: 70%;
}
.w20 {
  width: 20%;
}
.miniChart {
  margin-top: 12px;
  height: 62px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: linear-gradient(
      90deg,
      rgba(var(--c1-rgb), 0.38),
      rgba(var(--c2-rgb), 0.34),
      rgba(var(--c3-rgb), 0.22)
    ),
    rgba(255, 255, 255, 0.04);
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}

/* Table */
.table {
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}
.table__row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.9fr 0.7fr;
  gap: 10px;
  padding: 14px 16px;
  align-items: center;
}
.table__row + .table__row {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.table__row--head {
  background: rgba(var(--bg-rgb), 0.20);
  color: rgba(255, 255, 255, 0.70);
  font-weight: 700;
  font-size: 13px;
}
.table__name {
  font-weight: 780;
}
.table__meta {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}
.table__pool {
  font-weight: 760;
  letter-spacing: 0.2px;
}
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border-radius: 999px;
  font-weight: 780;
  font-size: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}
.badge--live {
  border-color: rgba(var(--c3-rgb), 0.30);
  background: rgba(var(--c3-rgb), 0.12);
}
.badge--soon {
  border-color: rgba(var(--c2-rgb), 0.28);
  background: rgba(var(--c2-rgb), 0.10);
}
.badge--open {
  border-color: rgba(var(--c1-rgb), 0.28);
  background: rgba(var(--c1-rgb), 0.10);
}

.note {
  margin-top: 16px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: radial-gradient(circle at 10% 10%, rgba(var(--c4-rgb), 0.14), transparent 50%),
    rgba(255, 255, 255, 0.04);
  padding: 16px 16px;
  display: grid;
  gap: 6px;
}
.note__title {
  font-weight: 820;
}
.note__desc {
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.6;
  font-size: 13.5px;
}

/* Events showcase */
.actShowcase {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

.actCard {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 0;
  border-radius: var(--radius2);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.actCard:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
}

.actCard__fig {
  margin: 0;
  position: relative;
  flex: 1 1 auto;
  min-height: 220px;
}

.actCard--hero .actCard__fig {
  min-height: 280px;
}

.actCard__fig::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(var(--bg-rgb), 0.82));
  pointer-events: none;
}

.actCard__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.actCard__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 20px 18px;
  display: grid;
  gap: 8px;
  z-index: 1;
}

.actCard__cap--sm {
  padding: 14px 14px 12px;
  gap: 4px;
}

.actCard__tag {
  justify-self: start;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(var(--c4-rgb), 0.35);
  background: rgba(var(--c4-rgb), 0.14);
  color: rgba(255, 255, 255, 0.92);
}

.actCard__title {
  font-weight: 820;
  font-size: clamp(16px, 2vw, 22px);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.25;
}

.actCard--hero .actCard__title {
  font-size: clamp(20px, 2.4vw, 28px);
}

.actCard__cap--sm .actCard__title {
  font-size: 15px;
}

.actCard__sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.4;
}

.actCard__cap--sm .actCard__sub {
  font-size: 12px;
}

@media (min-width: 900px) {
  .actShowcase {
    grid-template-columns: 1.45fr 1fr;
    grid-template-rows: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    min-height: 460px;
  }

  .actCard--hero {
    grid-column: 1;
    grid-row: 1 / -1;
  }

  .actCard:not(.actCard--hero) {
    grid-column: 2;
    min-height: 0;
  }

  .actCard:not(.actCard--hero) .actCard__fig {
    min-height: 0;
    aspect-ratio: 16 / 10;
    flex: 0 0 auto;
  }

  .actCard--hero .actCard__fig {
    min-height: 0;
    flex: 1 1 auto;
  }
}

/* About GGPoker */
.aboutGG {
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: radial-gradient(circle at 0% 40%, rgba(var(--c1-rgb), 0.14), transparent 50%),
    radial-gradient(circle at 100% 20%, rgba(var(--c2-rgb), 0.12), transparent 48%),
    rgba(255, 255, 255, 0.03);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  padding: 22px 22px 20px;
  overflow: hidden;
}
.aboutGG__kicker {
  margin: 0 0 10px;
}
.aboutGG__title {
  margin: 0;
  font-size: clamp(22px, 3.2vw, 30px);
  letter-spacing: -0.35px;
  line-height: 1.2;
  font-weight: 820;
}
.aboutGG__lead {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  font-size: 15px;
}
.aboutGG__text {
  margin: 12px 0 0;
  line-height: 1.65;
  font-size: 13.5px;
}
.aboutGG__bullets {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.aboutGG__bullets li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.55;
}
.aboutGG__bullets strong {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 760;
}
.aboutGG__bulletMark {
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 999px;
  background: var(--grad);
  box-shadow: 0 0 0 4px rgba(var(--c1-rgb), 0.15);
}
.aboutGG__cta {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.aboutGG__panel {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(var(--bg-rgb), 0.35);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: start;
}
.aboutGG__panelTop {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.aboutGG__panelTag {
  font-weight: 820;
  font-size: 17px;
  letter-spacing: 0.02em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.aboutGG__panelSub {
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}
.aboutGG__stats {
  display: grid;
  gap: 12px;
}
.aboutGG__stat {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  padding: 12px 14px;
}
.aboutGG__statVal {
  font-weight: 800;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 4px;
}
.aboutGG__statKey {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.45;
}
.aboutGG__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 2px;
}

/* Download */
.download {
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: radial-gradient(circle at 20% 0%, rgba(var(--c2-rgb), 0.16), transparent 55%),
    radial-gradient(circle at 100% 60%, rgba(var(--c1-rgb), 0.18), transparent 55%),
    rgba(255, 255, 255, 0.04);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
  padding: 18px;
  overflow: hidden;
}
.download__title {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.4px;
}
.download__desc {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.7;
  font-size: 14.5px;
}
.download__cta {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.download__hint {
  margin: 12px 0 0;
  font-size: 12.8px;
}
.download__panel {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(var(--bg-rgb), 0.22);
  padding: 16px;
  display: grid;
  align-content: start;
  gap: 14px;
}
.qr__code {
  width: 140px;
  height: 140px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: conic-gradient(from 180deg, rgba(var(--c1-rgb), 0.55), rgba(var(--c2-rgb), 0.55), rgba(var(--c3-rgb), 0.4), rgba(var(--c1-rgb), 0.55)),
    rgba(255, 255, 255, 0.03);
  position: relative;
  overflow: hidden;
}
.qr__code::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(var(--bg-rgb), 0.26), rgba(var(--bg-rgb), 0.60));
}
.qr__text {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  font-size: 13px;
}
.osList {
  display: grid;
  gap: 10px;
}
.osItem {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.70);
  font-weight: 650;
  font-size: 13px;
}
.osDot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 0 0 6px rgba(var(--c1-rgb), 0.12);
}

/* FAQ */
.faq {
  display: grid;
  gap: 12px;
}
.faqItem {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}
.faqItem summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 16px;
  font-weight: 740;
}
.faqItem summary::-webkit-details-marker {
  display: none;
}
.faqItem__body {
  padding: 0 16px 16px;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.6;
}
.faqItem[open] {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.14);
}

/* Footer */
.footer {
  padding: 36px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(var(--bg-rgb), 0.40);
}
.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}
.footer__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  max-width: min(520px, 100%);
}
.footer__brand {
  display: inline-flex;
  gap: 10px;
  align-items: flex-start;
}
.footer__brandText {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer__nameRow {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 10px;
}
.footer__name {
  font-weight: 820;
  letter-spacing: 0.2px;
}
.footer__slug {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.48);
}
.footer__intro {
  margin: 0;
  line-height: 1.65;
  font-size: 13.5px;
}
.footer__introLead {
  font-weight: 780;
  color: rgba(255, 255, 255, 0.84);
}
.footer__right {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer__link {
  color: rgba(255, 255, 255, 0.70);
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
}
.footer__link:hover {
  border-color: rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.9);
}
.footer__bottom {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.sep {
  opacity: 0.7;
}

/* Reveal animation */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(10px);
  filter: blur(8px);
  transition: opacity 700ms cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.js [data-reveal].isIn {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Responsive */
@media (max-width: 980px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__cardWrap {
    justify-self: center;
  }
  .hero {
    padding-top: 66px;
  }
  .hero__meta {
    grid-template-columns: 1fr;
  }
  .card {
    grid-column: span 6;
  }
  .card__wide {
    grid-template-columns: 1fr;
  }
  .card__wideVisual {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .download,
  .aboutGG {
    grid-template-columns: 1fr;
  }
  .sectionHead {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .clubGrid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 740px) {
  .nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .nav__menu {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 12px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(var(--bg-rgb), 0.78);
    backdrop-filter: blur(14px);
    min-width: 220px;
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.55);
    display: none;
  }
  .nav__menu.isOpen {
    display: flex;
  }
  .nav__link {
    width: 100%;
  }
  .card {
    grid-column: span 12;
  }
  .floatTags {
    display: none;
  }
  .table__row {
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
  }
  .table__row > :nth-child(4) {
    display: none;
  }
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer__right {
    justify-content: flex-start;
  }
}

@supports not (mask-image: radial-gradient(circle, black, transparent)) {
  .grid {
    opacity: 0.08;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
  .js [data-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
