:root {
  --bg: #060b14;
  --bg-deep: #04080f;
  --bg-panel: rgba(12, 22, 28, 0.88);
  --ink: #f3ead4;
  --muted: #b8c4be;
  --cyan: #5dcc4a;
  --cyan-hot: #8be86a;
  --accent: #5dcc4a;
  --accent-hot: #8be86a;
  --cream: #f3ead4;
  --navy: #0a1630;
  --crimson: #b91c2c;
  --online: #5dcc4a;
  --idle: #e8c14a;
  --dnd: #c41e3a;
  --offline: #6b7280;
  --line: rgba(243, 234, 212, 0.12);
  --shadow: 0 22px 48px rgba(0, 0, 0, 0.5);
  --lift: inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.35);
  --font: "Outfit", "Open Sans", "Roboto", sans-serif;
  --radius: 18px;
  --radius-ctrl: 10px;
  --space: clamp(1.1rem, 3vw, 2.25rem);
  --content: 1080px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(26, 74, 40, 0.35), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(10, 22, 48, 0.7), transparent 50%),
    var(--bg-deep);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--cyan);
  text-underline-offset: 0.15em;
}

a:hover {
  color: var(--cyan-hot);
}

.wrap {
  width: min(var(--content), calc(100% - 2 * var(--space)));
  margin-inline: auto;
}

.narrow {
  max-width: none;
  width: min(var(--content), calc(100% - 2 * var(--space)));
}

/* Hero */
.hero {
  position: relative;
  min-height: 0;
  display: grid;
  align-items: center;
  padding: 1.5rem 0 0.35rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 8, 15, 0.55) 0%, rgba(4, 8, 15, 0.78) 55%, var(--bg-deep) 100%),
    radial-gradient(ellipse 70% 50% at 50% 20%, rgba(93, 204, 74, 0.12), transparent 60%),
    url("../img/avatar.png") center 30% / cover no-repeat,
    var(--bg-deep);
  filter: saturate(0.85);
  transform: scale(1.04);
  animation: drift 22s ease-in-out infinite alternate;
  z-index: 0;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 15, 0.28);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 1.85rem 1.5rem 1.7rem;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(16, 28, 26, 0.92), rgba(8, 14, 20, 0.94));
  border: 1px solid var(--line);
  box-shadow: var(--shadow), var(--lift);
  animation: rise 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.profile {
  margin-bottom: 1.25rem;
}

.avatar-ring {
  width: 128px;
  height: 128px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  padding: 4px;
  background: radial-gradient(circle at 30% 30%, #8be86a, #2d7a38 55%, #1a4a28 100%);
  box-shadow:
    0 16px 32px rgba(0, 0, 0, 0.45),
    0 0 0 3px rgba(93, 204, 74, 0.28),
    var(--lift);
}

.avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #111;
}

.brand {
  margin: 0;
  font-size: clamp(2.4rem, 7vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.handle {
  margin: 0.35rem 0 0.55rem;
  color: var(--cyan);
  font-size: 1.15rem;
  font-weight: 600;
}

.live-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0.15rem 0 0;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-ctrl);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.28));
  box-shadow: var(--lift);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--offline);
  box-shadow: 0 0 0 3px rgba(107, 114, 128, 0.25);
}

.live-dot[data-status="online"] {
  background: var(--online);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
}

.live-dot[data-status="idle"] {
  background: var(--idle);
}

.live-dot[data-status="dnd"] {
  background: var(--dnd);
}

.hero-line {
  margin: 0 auto 1.35rem;
  max-width: 40rem;
  color: var(--muted);
}

.cta-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(7.2rem, 1fr));
  gap: 0.65rem;
  width: 100%;
}

.cta-row .btn {
  width: 100%;
  min-height: 2.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-ctrl);
  padding: 0.7rem 0.7rem;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.15rem;
  gap: 0.75rem;
}

.social-row a,
.social-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.28));
  border: 1px solid var(--line);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35), var(--lift);
  opacity: 1;
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.social-row a:hover,
.social-icon:hover {
  transform: translateY(-3px);
  border-color: rgba(93, 204, 74, 0.45);
}

.social-row img,
.social-icon img {
  width: 22px;
  height: 22px;
  border-radius: 0;
  object-fit: contain;
  filter: brightness(0) invert(0.93) sepia(0.25) saturate(0.4);
}

/* Site chrome */
.site-top {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 0.55rem 0;
  border-bottom: 0;
  background: linear-gradient(180deg, rgba(4, 8, 15, 0.94), rgba(4, 8, 15, 0.72));
  backdrop-filter: blur(14px);
  box-shadow: none;
}

.site-top-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem 0.75rem;
  padding: 0.5rem 0.7rem;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(16, 28, 26, 0.96), rgba(8, 14, 20, 0.98));
  border: 1px solid var(--line);
  box-shadow: var(--shadow), var(--lift);
}

.site-top-brand {
  display: inline-flex;
  align-items: center;
  min-height: 2.15rem;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-ctrl);
  border: 1px solid transparent;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.site-top-brand:hover {
  color: var(--cyan-hot);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.site-nav a,
.account-link a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.15rem;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-ctrl);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(0, 0, 0, 0.24));
  box-shadow: var(--lift);
  color: var(--muted);
  text-decoration: none;
}

.site-nav a:hover,
.account-link a:hover {
  color: var(--cream);
  border-color: rgba(93, 204, 74, 0.42);
}

.site-nav a.is-active {
  background: linear-gradient(180deg, #7ae05a, #3d9a32);
  border-color: rgba(139, 232, 106, 0.45);
  color: #08120a;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3), var(--lift);
}

.account-link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.lang-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin: 0;
}

.lang-toggle {
  position: relative;
  list-style: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.15rem;
  padding: 0.3rem 1.55rem 0.3rem 0.7rem;
  border-radius: var(--radius-ctrl);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(16, 28, 26, 0.98), rgba(8, 14, 20, 0.98));
  box-shadow: var(--lift);
  color: var(--cream);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
}

.lang-toggle::-webkit-details-marker {
  display: none;
}

.lang-toggle::after {
  content: "";
  position: absolute;
  right: 0.5rem;
  width: 0.45rem;
  height: 0.45rem;
  border-right: 1.6px solid var(--muted);
  border-bottom: 1.6px solid var(--muted);
  transform: rotate(45deg) translateY(-1px);
}

.lang-toggle:hover,
.lang-switch[open] .lang-toggle {
  color: var(--cream);
  border-color: rgba(93, 204, 74, 0.42);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 0.35rem);
  right: 0;
  z-index: 50;
  min-width: 10.5rem;
  padding: 0.35rem;
  display: grid;
  gap: 0.25rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(16, 28, 26, 0.98), rgba(6, 11, 18, 0.98));
  box-shadow: var(--shadow), var(--lift);
}

.lang-option {
  display: block;
  padding: 0.45rem 0.7rem;
  border-radius: var(--radius-ctrl);
  color: var(--cream);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
}

.lang-option:hover {
  background: rgba(93, 204, 74, 0.14);
  color: var(--cyan-hot);
}

.lang-option.is-active {
  background: linear-gradient(180deg, #7ae05a, #3d9a32);
  color: #08120a;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.public-page .page-hero {
  padding: 1.5rem 0 0.35rem;
  border-bottom: 0;
  background: transparent;
}

.public-page .page-hero .wrap {
  padding: 1.6rem 1.45rem 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(16, 28, 26, 0.94), rgba(8, 14, 20, 0.96));
  border: 1px solid var(--line);
  box-shadow: var(--shadow), var(--lift);
}

.public-page .page-hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}

.public-page .page-hero p {
  margin: 0;
  color: var(--muted);
  max-width: 40rem;
}

.public-page .page-image {
  margin: 0 0 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}

.public-page .page-image img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
}

.public-page .page-copy p {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.rules-box {
  margin: 1.5rem 0;
  padding: 1.2rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(20, 36, 32, 0.95), rgba(8, 14, 20, 0.96));
  box-shadow: var(--shadow), var(--lift);
}

.rules-box h2 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
}

.rules-box ol {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.rules-box li {
  margin-bottom: 0.45rem;
}

.vc-placeholder {
  margin-top: 1.25rem;
  padding: 1.1rem 1.2rem;
  border: 1px dashed rgba(93, 204, 74, 0.35);
  border-radius: var(--radius);
  background: rgba(93, 204, 74, 0.06);
  box-shadow: var(--lift);
}

.vc-placeholder h2 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
}

.vc-placeholder p {
  margin: 0;
  color: var(--muted);
}

.tool-grid,
.public-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.tool-card,
.public-card {
  display: grid;
  gap: 0.65rem;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(20, 36, 32, 0.95), rgba(8, 14, 20, 0.96));
  box-shadow: var(--shadow), var(--lift);
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.tool-card:hover,
.public-card:hover {
  border-color: rgba(94, 231, 255, 0.45);
  color: var(--ink);
  transform: translateY(-2px);
}

.tool-card img,
.public-card img,
.tool-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 12px;
}

.public-card img {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--lift);
}

.tool-card img,
.tool-logo {
  object-fit: cover;
  object-position: center;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
}

.tool-card img.tool-logo--on-light,
img.tool-logo.tool-logo--on-light {
  background: var(--cream);
  background-color: #f3ead4;
  box-sizing: border-box;
}

.tool-logo[src*="logo-alight"] {
  background: #172339;
}

.tool-badge {
  display: inline-flex;
  width: fit-content;
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-ctrl);
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(94, 231, 255, 0.12);
  color: var(--cyan);
}

.tool-badge.is-paid {
  background: rgba(240, 180, 41, 0.15);
  color: var(--idle);
}

.spotify-band {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(20, 36, 32, 0.95), rgba(8, 14, 20, 0.96));
  box-shadow: var(--shadow), var(--lift);
}

.spotify-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.spotify-now-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 1rem 1.15rem;
  align-items: center;
}

.spotify-art {
  width: 96px;
  height: 96px;
  border-radius: var(--radius-ctrl);
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: var(--shadow), var(--lift);
  background: #111;
}

.spotify-now-meta {
  display: grid;
  gap: 0.25rem;
  justify-items: start;
}

.spotify-now-label {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cyan);
}

.spotify-now-meta strong {
  font-size: 1.2rem;
}

.spotify-now-meta span {
  color: var(--muted);
}

.spotify-idle {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 520px) {
  .spotify-now-card {
    grid-template-columns: 1fr;
  }
}

.tiktok-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.subsection-title {
  margin: 1.75rem 0 0.75rem;
  font-size: 1.2rem;
}

.site-footer-rich .footer-social {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.site-footer-rich .footer-social a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.28));
  border: 1px solid var(--line);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35), var(--lift);
}

.site-footer-rich .footer-social img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(0.93) sepia(0.25) saturate(0.4);
}

.footer-invite {
  margin: 0 0 0.5rem;
}

.footer-meta {
  margin: 0;
}

.footer-sep {
  margin: 0 0.35rem;
  opacity: 0.5;
}

@media (max-width: 720px) {
  .site-top-inner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .site-nav {
    order: 3;
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.2rem;
    -webkit-overflow-scrolling: touch;
  }

  .account-link {
    margin-left: auto;
  }
}


.btn {
  appearance: none;
  border: 1px solid rgba(243, 234, 212, 0.16);
  border-radius: var(--radius-ctrl);
  padding: 0.72rem 1.2rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(180deg, #7ae05a, #3d9a32);
  border-color: rgba(139, 232, 106, 0.45);
  color: #08120a;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35), var(--lift);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #8be86a, #449f38);
  color: #08120a;
}

.btn-ghost {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.22));
  border-color: var(--line);
  color: var(--ink);
  box-shadow: var(--lift);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--ink);
}

/* Sections */
.section {
  position: relative;
  z-index: 1;
  padding: calc(var(--space) * 1.35) 0;
  border-top: 0;
  background: transparent;
}

.section > .wrap {
  padding: 1.6rem 1.45rem 1.75rem;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(16, 28, 26, 0.94), rgba(8, 14, 20, 0.96));
  border: 1px solid var(--line);
  box-shadow: var(--shadow), var(--lift);
}

.section-head {
  margin-bottom: 1.25rem;
}

.section-head h2 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.7rem, 3.4vw, 2.25rem);
  letter-spacing: -0.03em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.about-split {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.25rem 1.5rem;
  align-items: start;
}

.about-photo {
  width: 140px;
  height: 140px;
  border-radius: 22px;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: var(--shadow), var(--lift);
}

.about-copy p {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .about-split {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

.page-kicker {
  margin: 0 0 0.35rem;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lush-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.25rem 0;
}

.lush-facts div {
  padding: 0.95rem 1.05rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(20, 36, 32, 0.95), rgba(8, 14, 20, 0.96));
  box-shadow: var(--lift);
}

.lush-facts dt {
  margin: 0 0 0.3rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lush-facts dd {
  margin: 0;
}

.server-ip {
  display: inline-block;
  padding: 0.1rem 0.15rem;
  color: var(--cyan);
  font-family: inherit;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  user-select: all;
}

.lush-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.15rem 0 0;
}

.lush-steps {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.lush-steps li {
  margin-bottom: 0.45rem;
}

.lush-aside {
  margin: 1.5rem 0 0;
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(20, 36, 32, 0.95), rgba(8, 14, 20, 0.96));
  box-shadow: var(--shadow), var(--lift);
}

.lush-aside h2 {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
}

.lush-aside p {
  margin: 0;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

.faq-list details {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-ctrl);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(16, 28, 26, 0.96), rgba(8, 14, 20, 0.98));
  box-shadow: var(--lift);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-list details p {
  margin: 0.65rem 0 0;
  color: var(--muted);
}

/* Videos */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.video-card {
  margin: 0;
  padding: 0.65rem;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(18, 30, 28, 0.96), rgba(8, 12, 18, 0.98));
  border: 1px solid var(--line);
  box-shadow: var(--shadow), var(--lift);
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #111;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card figcaption {
  margin-top: 0.55rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.video-card figcaption a {
  color: var(--ink);
  text-decoration: none;
}

.video-card figcaption a:hover {
  color: var(--cyan);
}

.more-videos {
  margin: 1.4rem 0 0;
  text-align: center;
}

/* Discord status */
.status-panel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.15rem;
  align-items: center;
  padding: 1.2rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(20, 36, 32, 0.95), rgba(8, 14, 20, 0.96));
  box-shadow: var(--shadow), var(--lift);
  backdrop-filter: blur(8px);
}

.status-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid rgba(93, 204, 74, 0.45);
  object-fit: cover;
}

.status-dot-wrap {
  position: relative;
  width: 72px;
  height: 72px;
}

.status-dot {
  position: absolute;
  right: 2px;
  bottom: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 3px solid #0c0e12;
  background: var(--offline);
}

.status-dot[data-status="online"] {
  background: var(--online);
}

.status-dot[data-status="idle"] {
  background: var(--idle);
}

.status-dot[data-status="dnd"] {
  background: var(--dnd);
}

.status-meta strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 0.15rem;
}

.status-label {
  color: var(--muted);
}

.status-activity {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 0.4rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
  min-height: 1.3em;
}

.contact-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

.contact-facts {
  margin: 0 0 0.75rem;
  padding-left: 1.1rem;
  color: var(--muted);
}

.contact-facts li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.65rem;
  margin-bottom: 0.55rem;
}

.contact-label {
  font-weight: 600;
  color: var(--ink);
}

.contact-secret {
  font-family: ui-monospace, monospace;
  letter-spacing: 0.08em;
}

.reveal-btn {
  appearance: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-ctrl);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  cursor: pointer;
}

.reveal-btn:hover {
  border-color: rgba(94, 231, 255, 0.45);
  color: var(--cyan-hot);
}

.contact-hint {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-hint-inline {
  margin: 0;
  flex: 1 1 12rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

/* Contact modal */
body.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: var(--space);
}

.modal[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  border: 0;
  padding: 0;
  cursor: pointer;
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(480px, 100%);
  max-height: min(90vh, 720px);
  overflow: auto;
  padding: 1.35rem 1.4rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #0c0e12;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.modal-header h2 {
  margin: 0;
  font-size: 1.45rem;
}

.modal-close {
  appearance: none;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}

.modal-close:hover {
  border-color: rgba(94, 231, 255, 0.45);
  color: var(--cyan-hot);
}

.modal-intro {
  margin: 0 0 1rem;
  color: var(--muted);
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field label {
  font-weight: 600;
  font-size: 0.92rem;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  font: inherit;
  padding: 0.8rem 0.95rem;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(93, 204, 74, 0.55);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.flash {
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-weight: 600;
}

.flash-ok {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
}

.flash-error {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
}

.site-footer {
  padding: 1.4rem 0 2.2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.to-top {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 30;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(28, 48, 40, 0.96), rgba(8, 14, 20, 0.98));
  color: var(--cream);
  box-shadow: var(--shadow), var(--lift);
  cursor: pointer;
  font: inherit;
  font-size: 1.15rem;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.to-top:hover {
  border-color: rgba(93, 204, 74, 0.5);
  color: var(--cyan-hot);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift {
  from {
    transform: scale(1.03) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.07) translate3d(-1%, -1%, 0);
  }
}

@media (max-width: 720px) {
  .cta-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 0.5rem;
  }
}

/* Scroll reveal — only while JS is available (html.js-reveal from <head>) */
html.js-reveal .hero-content {
  animation: none;
}

html.js-reveal .hero-content:not(.is-inview),
html.js-reveal .page-hero > .wrap:not(.is-inview),
html.js-reveal .section > .wrap:not(.is-inview),
html.js-reveal .tool-card:not(.is-inview),
html.js-reveal .public-card:not(.is-inview),
html.js-reveal .video-card:not(.is-inview),
html.js-reveal .lush-facts > div:not(.is-inview),
html.js-reveal .faq-list details:not(.is-inview),
html.js-reveal .spotify-band:not(.is-inview),
html.js-reveal .status-panel:not(.is-inview),
html.js-reveal .rules-box:not(.is-inview),
html.js-reveal .lush-aside:not(.is-inview),
html.js-reveal .vc-placeholder:not(.is-inview) {
  opacity: 0;
  transform: translateY(18px);
}

html.js-reveal .hero-content,
html.js-reveal .page-hero > .wrap,
html.js-reveal .section > .wrap,
html.js-reveal .tool-card,
html.js-reveal .public-card,
html.js-reveal .video-card,
html.js-reveal .lush-facts > div,
html.js-reveal .faq-list details,
html.js-reveal .spotify-band,
html.js-reveal .status-panel,
html.js-reveal .rules-box,
html.js-reveal .lush-aside,
html.js-reveal .vc-placeholder {
  transition: opacity 0.55s ease, transform 0.55s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

html.js-reveal .tool-card.is-inview,
html.js-reveal .public-card.is-inview {
  transition: opacity 0.55s ease, transform 0.15s ease, border-color 0.15s ease;
  transition-delay: 0ms;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-bg,
  .hero-content {
    animation: none;
  }

  html.js-reveal .hero-content:not(.is-inview),
  html.js-reveal .page-hero > .wrap:not(.is-inview),
  html.js-reveal .section > .wrap:not(.is-inview),
  html.js-reveal .tool-card:not(.is-inview),
  html.js-reveal .public-card:not(.is-inview),
  html.js-reveal .video-card:not(.is-inview),
  html.js-reveal .lush-facts > div:not(.is-inview),
  html.js-reveal .faq-list details:not(.is-inview),
  html.js-reveal .spotify-band:not(.is-inview),
  html.js-reveal .status-panel:not(.is-inview),
  html.js-reveal .rules-box:not(.is-inview),
  html.js-reveal .lush-aside:not(.is-inview),
  html.js-reveal .vc-placeholder:not(.is-inview) {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
