* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #08080c;
  --panel: #111119;
  --border: #22222e;
  --text: #f4f4f8;
  --dim: #9a9ab0;
  --pink: #ff2d55;
  --gold: #ffd76e;
}
html { scrollbar-width: thin; scrollbar-color: #2a2a38 transparent; }
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #2a2a38; border-radius: 999px; border: 3px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: #3d3d50; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: "Figtree", "Segoe UI", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.hub { position: relative; min-height: 100vh; }
.hub-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 50% 22%, #000 0%, rgba(0, 0, 0, 0.5) 55%, transparent 90%);
  -webkit-mask-image: radial-gradient(circle at 50% 22%, #000 0%, rgba(0, 0, 0, 0.5) 55%, transparent 90%);
}
.hub-wrap { position: relative; z-index: 1; max-width: 1040px; margin: 0 auto; padding: 0 22px 70px; }

.hub-hero { text-align: center; padding: 84px 10px 40px; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.hub-badge {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--gold);
  border: 1px solid rgba(255, 184, 0, 0.4);
  background: rgba(255, 184, 0, 0.07);
  border-radius: 999px;
  padding: 6px 15px;
}
.hub-logo {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(64px, 13vw, 132px);
  font-weight: 900;
  letter-spacing: 6px;
  line-height: 0.9;
  background: linear-gradient(180deg, #fff 30%, #b9b9d0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  user-select: none;
  -webkit-user-select: none;
  cursor: pointer;
}
.hub-confetti { position: fixed; inset: 0; z-index: 300; pointer-events: none; overflow: hidden; }
.hub-confetti span {
  position: absolute;
  top: -24px;
  border-radius: 2px;
  animation-name: hub-confetti-fall;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}
@keyframes hub-confetti-fall {
  0% { transform: translateY(0) rotate(0deg); opacity: 1; }
  85% { opacity: 1; }
  100% { transform: translateY(110vh) rotate(680deg); opacity: 0; }
}
.hub-slogan { font-size: clamp(22px, 4vw, 34px); font-weight: 800; letter-spacing: -0.5px; }
.hub-grad {
  background: linear-gradient(90deg, var(--gold), var(--pink) 60%, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hub-lead { max-width: 560px; font-size: 16px; line-height: 1.65; color: var(--dim); }
.hub-lead strong { color: var(--text); }
.hub-cta-row { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 6px; }
.hub-cta {
  padding: 13px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease, border-color 0.15s ease;
}
.hub-cta-primary { color: #0a0a0a; background: linear-gradient(90deg, var(--gold), var(--pink) 60%, #8b5cf6); }
.hub-cta-primary:hover { transform: translateY(-2px); opacity: 0.95; }
.hub-cta-ghost { color: var(--text); background: transparent; border: 1px solid var(--border); }
.hub-cta-ghost:hover { border-color: var(--text); transform: translateY(-2px); }
.hub-cta-plus { color: #0a0a0a; background: linear-gradient(90deg, var(--gold), var(--pink) 60%, #8b5cf6); }
.hub-cta-plus:hover { transform: translateY(-2px); opacity: 0.95; }

.hub-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 40px 0 20px; }
.hub-stat {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 16px;
  text-align: center;
  transition: transform 0.18s ease, border-color 0.18s ease;
  transform-style: preserve-3d;
  will-change: transform;
  user-select: none;
  -webkit-user-select: none;
  cursor: default;
}
.hub-stat:hover { border-color: var(--a); }
.hub-stat-value { font-size: 34px; font-weight: 900; letter-spacing: -1px; color: var(--a); font-variant-numeric: tabular-nums; }
.hub-stat-label { font-size: 12.5px; color: var(--dim); margin-top: 6px; line-height: 1.4; }

.hub-section { padding: 46px 0 6px; }
.hub-h2 { font-size: clamp(24px, 4vw, 32px); font-weight: 800; letter-spacing: -0.5px; text-align: center; }
.hub-sub { text-align: center; font-size: 15px; color: var(--dim); margin-top: 8px; line-height: 1.5; max-width: 560px; margin-left: auto; margin-right: auto; }
.hub-sub strong { color: var(--text); }

.hub-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 26px; }
.hub-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  overflow: hidden;
  transition: transform 0.18s ease, border-color 0.18s ease;
  transform-style: preserve-3d;
  will-change: transform;
  user-select: none;
  -webkit-user-select: none;
}
.hub-card:hover { transform: translateY(-4px); border-color: var(--c); }
.hub-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.hub-card-icon { width: 48px; height: 48px; display: block; }
.hub-card-icon svg { width: 100%; height: 100%; display: block; }
.hub-card-tag {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--c);
}
.hub-card-name { font-size: 19px; font-weight: 800; margin-bottom: 8px; }
.hub-card-desc { font-size: 14px; color: var(--dim); line-height: 1.6; }

.hub-mission-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 26px; }
.hub-mission-item {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 22px;
  transition: transform 0.18s ease, border-color 0.18s ease;
  transform-style: preserve-3d;
  will-change: transform;
  user-select: none;
  -webkit-user-select: none;
}
.hub-mission-item:hover { border-color: var(--a); }
.hub-mi-k { display: inline-block; font-size: 15px; font-weight: 800; color: var(--a); margin-bottom: 6px; }
.hub-mission-item p { font-size: 13.5px; color: var(--dim); line-height: 1.6; }

.hub-support { margin-top: 20px; }
.hub-support-inner {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 44px 28px;
  text-align: center;
  transition: transform 0.18s ease, border-color 0.18s ease;
  transform-style: preserve-3d;
  will-change: transform;
  user-select: none;
  -webkit-user-select: none;
}
.hub-plus {
  background: linear-gradient(90deg, var(--gold), var(--pink) 60%, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}
.hub-support .hub-cta-row { margin-top: 20px; }

.hub-footer { text-align: center; margin-top: 60px; padding-top: 34px; border-top: 1px solid var(--border); }
.hub-foot-brand { font-family: "Orbitron", sans-serif; font-size: 26px; font-weight: 800; letter-spacing: 3px; color: var(--pink); }
.hub-foot-line { font-size: 13.5px; color: var(--dim); margin-top: 8px; }
.hub-foot-links { display: flex; gap: 10px; align-items: center; justify-content: center; margin-top: 16px; flex-wrap: wrap; }
.hub-foot-links a { font-size: 13.5px; color: var(--text); text-decoration: none; }
.hub-foot-links a:hover { color: var(--pink); }
.hub-foot-sep { color: var(--border); }
.hub-foot-copy { font-size: 12px; color: var(--dim); margin-top: 20px; }

@media (max-width: 720px) {
  .hub-stats { grid-template-columns: repeat(2, 1fr); }
  .hub-grid { grid-template-columns: 1fr; }
  .hub-mission-grid { grid-template-columns: 1fr; }
}
.hub-foot-btn {
  font-family: inherit;
  font-size: 13.5px;
  color: var(--text);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.hub-foot-btn:hover { color: var(--pink); }
.hub-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(6px);
  animation: hub-fade 0.2s ease both;
}
@keyframes hub-fade { from { opacity: 0; } to { opacity: 1; } }
.hub-modal {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 38px 30px 30px;
  text-align: center;
  animation: hub-pop 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes hub-pop { from { opacity: 0; transform: translateY(16px) scale(0.96); } to { opacity: 1; transform: none; } }
.hub-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--dim);
  border-radius: 9px;
  font-size: 14px;
  cursor: pointer;
}
.hub-modal-close:hover { color: var(--text); border-color: var(--text); }
.hub-modal-kicker {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.hub-modal-title { font-size: 22px; font-weight: 800; letter-spacing: -0.5px; }
.hub-modal-text { font-size: 14px; color: var(--dim); line-height: 1.55; margin-top: 8px; }
.hub-cd-row { display: flex; justify-content: center; gap: 10px; margin: 22px 0 24px; }
.hub-cd {
  min-width: 66px;
  background: #0c0c12;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hub-cd span {
  font-family: "Orbitron", sans-serif;
  font-size: 26px;
  font-weight: 800;
  background: linear-gradient(90deg, var(--gold), var(--pink) 60%, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.hub-cd small { font-size: 10.5px; color: var(--dim); text-transform: uppercase; letter-spacing: 0.5px; }
.hub-modal-cta { display: inline-block; }

.hub-preload {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.hub-preload-gone { opacity: 0; visibility: hidden; }
.hub-preload-logo {
  font-family: "Orbitron", sans-serif;
  font-size: 68px;
  font-weight: 900;
  letter-spacing: 8px;
  background: linear-gradient(90deg, var(--gold), var(--pink) 60%, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: hub-pulse 1.6s ease-in-out infinite;
}
@keyframes hub-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.55; } }
.hub-preload-tag { font-size: 13px; letter-spacing: 3px; text-transform: uppercase; color: var(--dim); }
.hub-preload-bar {
  width: min(320px, 70vw);
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  margin-top: 10px;
}
.hub-preload-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--pink) 60%, #8b5cf6);
  transition: width 0.14s ease;
}
.hub-preload-pct {
  font-family: "Orbitron", sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.hub-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.hub-reveal.in { opacity: 1; transform: none; }

.hub-soon {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--bg);
  animation: hub-fade 0.3s ease both;
  overflow: hidden;
}
.hub-soon-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 50% 45%, #000 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 50% 45%, #000 0%, transparent 80%);
}
.hub-soon-close {
  position: absolute;
  top: 20px;
  right: 22px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--dim);
  border-radius: 11px;
  font-size: 16px;
  cursor: pointer;
}
.hub-soon-close:hover { color: var(--text); border-color: var(--text); }
.hub-soon-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: hub-pop 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hub-soon-kicker { font-size: 13px; font-weight: 700; letter-spacing: 1px; color: var(--gold); }
.hub-soon-title { font-size: clamp(30px, 6vw, 56px); font-weight: 900; letter-spacing: -1px; line-height: 1.05; }
.hub-soon-text { font-size: 16px; color: var(--dim); line-height: 1.6; max-width: 460px; }
.hub-soon-cd { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin: 14px 0 20px; }
.hub-scd {
  min-width: 88px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.hub-scd span {
  font-family: "Orbitron", sans-serif;
  font-size: 38px;
  font-weight: 800;
  background: linear-gradient(90deg, var(--gold), var(--pink) 60%, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.hub-scd small { font-size: 11px; color: var(--dim); text-transform: uppercase; letter-spacing: 0.5px; }
@media (max-width: 520px) {
  .hub-scd { min-width: 68px; padding: 14px 8px; }
  .hub-scd span { font-size: 28px; }
}
.hub-dots { display: flex; gap: 13px; margin-bottom: 14px; }
.hub-dots span {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  animation: hub-bounce 1s ease-in-out infinite;
}
.hub-dots span:nth-child(1) { background: #ff2d55; animation-delay: 0s; }
.hub-dots span:nth-child(2) { background: #1db954; animation-delay: 0.15s; }
.hub-dots span:nth-child(3) { background: #8b5cf6; animation-delay: 0.3s; }
.hub-dots span:nth-child(4) { background: #00b8a9; animation-delay: 0.45s; }
@keyframes hub-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.55; }
  50% { transform: translateY(-18px); opacity: 1; }
}

.hub-soon-hl {
  display: inline-block;
  background: linear-gradient(90deg, var(--gold), var(--pink) 60%, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.np2-wrap { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; padding: 34px 22px 70px; }
.np2-back {
  display: inline-block;
  font-size: 13.5px;
  color: var(--dim);
  text-decoration: none;
  margin-bottom: 20px;
}
.np2-back:hover { color: var(--text); }
.np2-hero { text-align: center; padding: 28px 10px 34px; }
.np2-title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(44px, 9vw, 84px);
  font-weight: 900;
  letter-spacing: 3px;
  line-height: 1;
  color: var(--text);
}
.np2-plus {
  display: inline-block;
  background: linear-gradient(90deg, var(--gold), var(--pink) 60%, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.np2-tag { font-size: 16px; color: var(--dim); margin-top: 14px; }
.np2-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 34px; }
.np2-plan {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 20px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 0.18s ease, border-color 0.18s ease;
  transform-style: preserve-3d;
  will-change: transform;
}
.np2-plan-on { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }
.np2-pop {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #1a1420;
  background: linear-gradient(90deg, var(--gold), var(--pink) 60%, #8b5cf6);
  border-radius: 999px;
  padding: 3px 13px;
}
.np2-name { font-size: 16px; font-weight: 700; }
.np2-price { font-size: 30px; font-weight: 800; letter-spacing: -0.5px; }
.np2-per { font-size: 13px; font-weight: 500; color: var(--dim); }
.np2-note { font-size: 12px; color: var(--dim); margin-bottom: 12px; }
.np2-btn {
  margin-top: auto;
  padding: 11px 14px;
  border-radius: 11px;
  font-size: 14.5px;
  font-weight: 800;
  text-decoration: none;
  color: #1a1420;
  background: linear-gradient(90deg, var(--gold), var(--pink) 60%, #8b5cf6);
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.np2-btn:hover { transform: translateY(-2px); opacity: 0.94; }
.np2-perks {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 26px;
}
.np2-h2 { font-size: 20px; font-weight: 800; margin-bottom: 16px; text-align: center; }
.np2-perks ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.np2-perks li {
  position: relative;
  padding-left: 28px;
  font-size: 14px;
  color: var(--dim);
  line-height: 1.55;
}
.np2-perks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--pink) 60%, #8b5cf6);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6L9 17l-5-5'/></svg>") center / 12px no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6L9 17l-5-5'/></svg>") center / 12px no-repeat;
}
.np2-samesame { font-size: 13px; color: var(--dim); margin-top: 18px; text-align: center; line-height: 1.55; }
.np2-foot {
  text-align: center;
  font-size: 12.5px;
  color: var(--dim);
  line-height: 1.7;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.np2-foot a { color: var(--gold); text-decoration: none; }
.np2-foot a:hover { text-decoration: underline; }
@media (max-width: 640px) { .np2-plans { grid-template-columns: 1fr; } }
