:root {
  --bg0: #0a0a0f;
  --bg1: #12121a;
  --accent: #7c3aed;
  --accent2: #06b6d4;
  --text: #f4f4f5;
  --muted: #a1a1aa;
  --glass: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.1);
  --radius: 16px;
  --font: "Outfit", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg0);
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(124, 58, 237, 0.35), transparent),
    radial-gradient(ellipse 80% 50% at 100% 50%, rgba(6, 182, 212, 0.12), transparent),
    radial-gradient(ellipse 60% 40% at 0% 80%, rgba(124, 58, 237, 0.15), transparent);
  line-height: 1.6;
}

a {
  color: var(--accent2);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: 2rem 1.25rem;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  background: var(--glass);
}

.hero h1 {
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  font-weight: 700;
  margin: 0 0 0.75rem;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fff 0%, #c4b5fd 45%, #67e8f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  max-width: 36ch;
  margin: 0 auto 2rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  color: #fff;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  background: linear-gradient(135deg, var(--accent) 0%, #5b21b6 50%, var(--accent2) 140%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 12px 40px rgba(124, 58, 237, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.15) inset,
    0 16px 48px rgba(124, 58, 237, 0.45);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: inherit;
  color: var(--muted);
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.btn-ghost:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
}

.card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  backdrop-filter: blur(12px);
}

.nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.nav-top .logo {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  text-decoration: none;
}

.nav-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.profile-header img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--border);
}

.profile-header h1 {
  margin: 0;
  font-size: 1.5rem;
}

.profile-header .sub {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 0.25rem;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.stat {
  padding: 1rem;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
}

.stat .num {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent2);
}

.stat .lbl {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.roles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.role-pill {
  font-size: 0.8rem;
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  background: rgba(124, 58, 237, 0.2);
  border: 1px solid rgba(124, 58, 237, 0.35);
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.form-group textarea {
  width: 100%;
  min-height: 120px;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  border-radius: 12px;
  resize: vertical;
}

.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.alert {
  padding: 0.75rem 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.alert.ok {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #86efac;
}

.alert.warn {
  background: rgba(251, 191, 36, 0.12);
  border-color: rgba(251, 191, 36, 0.35);
  color: #fde68a;
}

.alert.err {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #fca5a5;
}

.muted {
  color: var(--muted);
  font-size: 0.9rem;
}

footer.site {
  text-align: center;
  padding: 2rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.page-home a.btn-primary,
.page-home a.btn-primary:hover {
  text-decoration: none;
}

.home-photo-slideshow {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.home-photo-slideshow__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.home-bg-swap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.1s ease-in-out;
  will-change: opacity;
  z-index: 0;
  pointer-events: none;
}

.home-bg-swap--on {
  opacity: 1;
  z-index: 1;
}

.home-photo-slideshow__veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(6, 4, 12, 0.35) 0%, rgba(12, 8, 22, 0.5) 45%, rgba(8, 6, 18, 0.55) 100%),
    radial-gradient(ellipse 90% 70% at 50% 0%, rgba(124, 58, 237, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(251, 113, 133, 0.08), transparent 45%);
}

.page-home {
  --home-font-display: "Syne", var(--font);
  --home-sakura: #fb7185;
  --home-sakura-dim: rgba(251, 113, 133, 0.15);
  --home-ink: #0c0a12;
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
  background:
    radial-gradient(ellipse 100% 80% at 50% -30%, rgba(124, 58, 237, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 45% at 100% 20%, rgba(251, 113, 133, 0.1), transparent 50%),
    radial-gradient(ellipse 50% 40% at 0% 70%, rgba(6, 182, 212, 0.08), transparent 45%),
    var(--bg0);
}

.page-home--photos {
  background: var(--bg0);
}

.page-home,
.page-home * {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

.page-home input,
.page-home textarea,
.page-home select,
.page-home option,
.page-home [contenteditable="true"] {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
  -webkit-touch-callout: default;
}

.page-profile {
  --home-font-display: "Syne", var(--font);
  --home-sakura: #fb7185;
  --home-sakura-dim: rgba(251, 113, 133, 0.15);
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
  background:
    radial-gradient(ellipse 100% 80% at 50% -30%, rgba(124, 58, 237, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 45% at 100% 20%, rgba(251, 113, 133, 0.1), transparent 50%),
    radial-gradient(ellipse 50% 40% at 0% 70%, rgba(6, 182, 212, 0.08), transparent 45%),
    var(--bg0);
}

.page-profile .home-header,
.page-profile .home-shell,
.page-profile .site--home {
  position: relative;
  z-index: 5;
}

.profile-panel--identity {
  padding: 1.35rem 1.35rem 1.45rem;
}

.profile-identity {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.profile-identity__avatar {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 0 0 1px rgba(251, 113, 133, 0.2),
    0 12px 40px rgba(0, 0, 0, 0.35);
  flex-shrink: 0;
}

.profile-identity__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--muted);
}

.profile-identity__name {
  font-family: var(--home-font-display);
  font-size: clamp(1.65rem, 4vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.35rem;
  color: #fafafa;
  background: linear-gradient(105deg, #fff 0%, #fbcfe8 40%, #c4b5fd 70%, #67e8f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.profile-identity__meta {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(228, 228, 231, 0.75);
}

.profile-stats-dock {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (max-width: 520px) {
  .profile-stats-dock {
    grid-template-columns: 1fr;
  }
}

.profile-muted {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
}

.profile-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.profile-role-pill {
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  color: rgba(244, 244, 245, 0.9);
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(167, 139, 250, 0.28);
}

.profile-form {
  margin-top: 0.25rem;
}

.page-profile .profile-form .form-group textarea {
  background: rgba(0, 0, 0, 0.28);
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  min-height: 130px;
}

.page-profile .profile-form .form-group textarea:focus {
  border-color: rgba(251, 113, 133, 0.45);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
}

.profile-apps-title {
  margin: 1.5rem 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--home-font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(161, 161, 170, 0.95);
}

.profile-apps-list {
  margin: 0;
  padding-left: 1.15rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(228, 228, 231, 0.82);
}

.page-profile a.btn-ghost {
  text-decoration: none;
}

.page-profile a.btn-ghost:hover {
  text-decoration: none;
}

.team-intro__title {
  font-size: clamp(1.5rem, 4vw, 1.85rem);
}

.team-intro .home-panel__sub {
  max-width: none;
}

.team-code {
  font-size: 0.82em;
  padding: 0.12rem 0.4rem;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #c4b5fd;
}

.team-alert {
  padding: 1.1rem 1.2rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(228, 228, 231, 0.88);
}

.team-alert p {
  margin: 0;
}

.team-alert--err {
  border-color: rgba(239, 68, 68, 0.35);
  background: linear-gradient(165deg, rgba(239, 68, 68, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.team-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.team-tiers {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.team-tier__title {
  font-family: var(--home-font-display);
  font-size: clamp(1.02rem, 2.4vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(196, 181, 253, 0.95);
  margin: 0 0 1rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.team-tier__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.team-tier .team-card {
  width: 100%;
}

.team-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.15rem 1.15rem 1.2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(160deg, rgba(30, 27, 40, 0.85) 0%, rgba(12, 10, 20, 0.92) 100%);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.team-card:hover {
  border-color: rgba(167, 139, 250, 0.35);
  transform: translateY(-2px);
}

.team-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.team-card__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.team-card__name {
  font-family: var(--home-font-display);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fafafa;
  line-height: 1.25;
}

.team-card__handle {
  font-size: 0.8rem;
  color: var(--muted);
}

.team-card__roles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.35rem;
}

.team-card__pill {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  color: rgba(244, 244, 245, 0.9);
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(167, 139, 250, 0.3);
}

.home-ambient {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.home-ambient__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: home-float 18s ease-in-out infinite;
}

.home-ambient__orb--1 {
  width: min(420px, 90vw);
  height: min(420px, 90vw);
  top: -12%;
  right: -8%;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.5) 0%, transparent 70%);
}

.home-ambient__orb--2 {
  width: min(360px, 80vw);
  height: min(360px, 80vw);
  bottom: 10%;
  left: -10%;
  background: radial-gradient(circle, rgba(251, 113, 133, 0.35) 0%, transparent 70%);
  animation-delay: -6s;
}

.home-ambient__orb--3 {
  width: min(280px, 70vw);
  height: min(280px, 70vw);
  top: 42%;
  left: 38%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.25) 0%, transparent 70%);
  animation-delay: -12s;
}

@keyframes home-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(2%, 3%) scale(1.03);
  }
  66% {
    transform: translate(-2%, 1%) scale(0.98);
  }
}

.home-bg-grid {
  pointer-events: none;
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 25%, #000 15%, transparent 68%);
  opacity: 0.35;
  z-index: 2;
}

.home-header {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(10, 10, 15, 0.72);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
}

.home-header__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.home-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
  filter: drop-shadow(0 0 12px rgba(251, 113, 133, 0.25));
  transition: filter 0.25s ease, transform 0.2s ease;
}

.home-logo:hover {
  text-decoration: none;
  filter: drop-shadow(0 0 20px rgba(251, 113, 133, 0.45));
  transform: scale(1.02);
}

.home-logo__img {
  height: 44px;
  width: auto;
  max-width: min(200px, 46vw);
  object-fit: contain;
  display: block;
}

.home-nav {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn-ghost--dim {
  opacity: 0.85;
}

.home-shell {
  position: relative;
  z-index: 5;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.25rem 1.35rem 3rem;
}

.home-shell.profile-shell {
  display: flex;
  flex-direction: column;
  gap: clamp(1.35rem, 3.5vw, 2.25rem);
  padding: 2rem 1.35rem 3.5rem;
}

.home-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
  margin-bottom: 2.75rem;
}

@media (max-width: 900px) {
  .home-hero {
    grid-template-columns: 1fr;
  }

  .home-showcase {
    order: -1;
    max-width: 420px;
    margin: 0 auto;
  }
}

.home-hero__copy {
  animation: home-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.home-showcase {
  animation: home-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.stats-dock {
  animation: home-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

@keyframes home-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.home-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--muted);
}

.home-eyebrow__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--home-sakura);
  box-shadow: 0 0 12px rgba(251, 113, 133, 0.7);
}

.home-title {
  font-family: var(--home-font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 6.5vw, 3.65rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0 0 1.1rem;
  color: #fafafa;
}

.home-title__line {
  display: block;
}

.home-title__line--accent {
  background: linear-gradient(105deg, #fff 0%, #fbcfe8 35%, #c4b5fd 55%, #67e8f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.home-lead {
  margin: 0 0 1.75rem;
  max-width: 34rem;
  font-size: 1.08rem;
  line-height: 1.65;
  color: rgba(228, 228, 231, 0.82);
}

.home-cta {
  margin-bottom: 1.5rem;
}

.btn-primary--home {
  padding: 1rem 1.6rem;
  font-size: 1.02rem;
  border-radius: 14px;
  gap: 0.65rem;
  text-decoration: none;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1) inset,
    0 4px 24px rgba(251, 113, 133, 0.15),
    0 20px 50px rgba(124, 58, 237, 0.35);
}

.btn-primary--home:hover {
  text-decoration: none;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.14) inset,
    0 6px 28px rgba(251, 113, 133, 0.2),
    0 24px 60px rgba(124, 58, 237, 0.42);
}

.btn-primary__arrow {
  flex-shrink: 0;
  opacity: 0.9;
  transition: transform 0.2s ease;
}

.btn-primary--home:hover .btn-primary__arrow {
  transform: translateX(3px);
}

.home-welcome {
  margin: 1rem 0 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.home-welcome strong {
  color: #e4e4e7;
  font-weight: 600;
}

.home-pills {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.home-pill {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  color: rgba(244, 244, 245, 0.85);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.home-showcase__frame {
  position: relative;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(160deg, rgba(30, 27, 40, 0.95) 0%, rgba(15, 12, 22, 0.98) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 32px 80px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.home-showcase__shine {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  opacity: 0.7;
}

.home-showcase__head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.2);
}

.home-showcase__dots {
  display: flex;
  gap: 5px;
}

.home-showcase__dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.home-showcase__dots i:first-child {
  background: #fb7185;
}

.home-showcase__dots i:nth-child(2) {
  background: #fbbf24;
}

.home-showcase__dots i:nth-child(3) {
  background: #34d399;
}

.home-showcase__title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.home-showcase__body {
  padding: 1.15rem 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.home-mini-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(167, 139, 250, 0.2);
}

.home-mini-stat--pink {
  background: var(--home-sakura-dim);
  border-color: rgba(251, 113, 133, 0.25);
}

.home-mini-stat--cyan {
  background: rgba(34, 211, 238, 0.08);
  border-color: rgba(34, 211, 238, 0.22);
}

.home-mini-stat__label {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}

.home-mini-stat__val {
  font-family: var(--home-font-display);
  font-size: 1.15rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: #fff;
}

.home-showcase__bar {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  margin-top: 0.25rem;
}

.home-showcase__bar-fill {
  display: block;
  height: 100%;
  width: 72%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--home-sakura), var(--accent), var(--accent2));
  animation: home-bar 2.8s ease-in-out infinite alternate;
}

@keyframes home-bar {
  from {
    width: 58%;
    opacity: 0.85;
  }
  to {
    width: 88%;
    opacity: 1;
  }
}

.home-showcase__foot {
  margin: 0.35rem 0 0;
  font-size: 0.68rem;
  color: rgba(161, 161, 170, 0.85);
  text-align: center;
}

.stats-dock {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1.15rem 1.2rem 1.25rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.stats-dock__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding: 0 0.15rem;
}

.stats-dock__title {
  font-family: var(--home-font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(244, 244, 245, 0.9);
}

.stats-dock__live {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #86efac;
}

.stats-dock__pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45);
  animation: stat-pulse 2.2s ease-out infinite;
}

@keyframes stat-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.stats-dock__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
}

@media (max-width: 960px) {
  .stats-dock__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .stats-dock__grid {
    grid-template-columns: 1fr;
  }
}

.dock-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.22);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.dock-card:hover {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.dock-card--wl {
  --dock: #c4b5fd;
  --dock-bg: rgba(167, 139, 250, 0.12);
}

.dock-card--staff {
  --dock: #f9a8d4;
  --dock-bg: rgba(251, 113, 133, 0.12);
}

.dock-card--team {
  --dock: #67e8f9;
  --dock-bg: rgba(34, 211, 238, 0.1);
}

.dock-card--online {
  --dock: #86efac;
  --dock-bg: rgba(134, 239, 172, 0.1);
}

.btn-ghost--nav {
  padding: 0.55rem 0.85rem;
  font-size: 0.82rem;
}

@media (max-width: 640px) {
  .btn-ghost--nav {
    display: none;
  }
}

.home-extra {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-bottom: 1rem;
}

.home-panel {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.055) 0%, rgba(255, 255, 255, 0.02) 100%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 1.5rem 1.35rem 1.6rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.home-panel[id] {
  scroll-margin-top: 5.5rem;
}

.home-panel--tight {
  padding: 1.35rem 1.2rem 1.45rem;
}

.home-panel__head {
  margin-bottom: 1.25rem;
}

.home-panel__title {
  font-family: var(--home-font-display);
  font-size: clamp(1.35rem, 3.5vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.35rem;
  color: #fafafa;
}

.home-panel__sub {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
  max-width: 42rem;
}

.home-server-card {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.28);
  padding: 1.35rem 1.25rem 1.4rem;
}

.home-server-card__brand {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 1.1rem;
  flex-wrap: wrap;
}

.home-server-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  flex-shrink: 0;
}

.home-server-card__name {
  font-family: var(--home-font-display);
  font-size: 1.45rem;
  font-weight: 800;
  margin: 0 0 0.25rem;
  letter-spacing: -0.02em;
}

.home-server-card__tagline {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(196, 181, 253, 0.95);
  font-weight: 500;
  line-height: 1.4;
}

.home-server-card__about {
  margin: 0 0 1.15rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(228, 228, 231, 0.88);
}

.home-server-card__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
  margin: 0 0 1rem;
}

@media (max-width: 720px) {
  .home-server-card__stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

.home-server-card__stat {
  text-align: center;
  padding: 0.65rem 0.5rem;
  border-radius: 12px;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(167, 139, 250, 0.18);
}

.home-server-card__stat dt {
  margin: 0 0 0.2rem;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.home-server-card__stat dd {
  margin: 0;
  font-family: var(--home-font-display);
  font-size: 1.2rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: #fff;
}

.home-server-card__actions {
  margin-top: 0.25rem;
}

.btn-primary--wide {
  width: 100%;
  max-width: 280px;
  justify-content: center;
}

.home-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.home-steps__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.05rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.22);
}

.home-steps__num {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-family: var(--home-font-display);
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(135deg, rgba(251, 113, 133, 0.35), rgba(124, 58, 237, 0.45));
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.home-steps__title {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.35rem;
  color: #f4f4f5;
}

.home-steps__text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

.home-feature-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

@media (max-width: 900px) {
  .home-feature-grid {
    grid-template-columns: 1fr;
  }
}

.home-feature-card {
  padding: 1.1rem 1rem 1.15rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.22);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.home-feature-card:hover {
  border-color: rgba(251, 113, 133, 0.25);
  transform: translateY(-2px);
}

.home-feature-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 0.45rem;
  color: #e4e4e7;
}

.home-feature-card__text {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--muted);
}

.home-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: start;
}

@media (max-width: 900px) {
  .home-two-col {
    grid-template-columns: 1fr;
  }
}

.home-rules-list {
  margin: 0;
  padding-left: 1.2rem;
  color: rgba(228, 228, 231, 0.88);
  font-size: 0.9rem;
  line-height: 1.65;
}

.home-rules-list li {
  margin-bottom: 0.5rem;
}

.home-rules-list li:last-child {
  margin-bottom: 0;
}

.home-faq {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.home-faq__item {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.22);
  padding: 0;
  overflow: hidden;
}

.home-faq__item summary {
  cursor: pointer;
  padding: 0.75rem 0.95rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #e4e4e7;
  list-style: none;
}

.home-faq__item summary::-webkit-details-marker {
  display: none;
}

.home-faq__item summary::after {
  content: "+";
  float: right;
  color: var(--accent2);
  font-weight: 700;
}

.home-faq__item[open] summary::after {
  content: "–";
}

.home-faq__item p {
  margin: 0;
  padding: 0 0.95rem 0.85rem;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--muted);
}

.dock-card__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  color: var(--dock);
  background: var(--dock-bg);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.dock-card__text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.dock-card__value {
  font-family: var(--home-font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.dock-card__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #e4e4e7;
  margin-top: 0.15rem;
}

.dock-card__hint {
  font-size: 0.7rem;
  color: var(--muted);
  line-height: 1.35;
}

.site--home {
  position: relative;
  z-index: 5;
  padding-top: 1rem;
  letter-spacing: 0.02em;
}

.logo--img {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  filter: drop-shadow(0 0 10px rgba(124, 58, 237, 0.2));
}

.logo--img img {
  height: 38px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

.logo--img:hover {
  filter: drop-shadow(0 0 14px rgba(251, 113, 133, 0.35));
}
