.page-home .hero-card {
  padding: 1.4rem 1.4rem 1.6rem;
  margin-top: 1.2rem;
}

.hero-title {
  font-size: clamp(2.3rem, 5vw, 3.2rem);
  margin-bottom: 0.3rem;
}

.hero-tagline {
  opacity: 0.6;
  max-width: 36rem;
  margin-bottom: 1rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.page-home--solo {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.profile-video-wrap--center {
  position: relative;
  width: 180px;
  height: 180px;
  margin-bottom: 0.3rem;
}

.profile-video-wrap--center::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.18), rgba(17,21,27,0.85));
  box-shadow:
    0 22px 40px rgba(0,0,0,0.55),
    inset 0 6px 12px rgba(255,255,255,0.12),
    inset 0 -10px 20px rgba(0,0,0,0.5);
  filter: blur(0.2px);
  z-index: 0;
}

.profile-video--lg {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: none;
  box-shadow:
    0 14px 28px rgba(0,0,0,0.45),
    inset 0 2px 4px rgba(255,255,255,0.15),
    inset 0 -4px 10px rgba(0,0,0,0.5);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  z-index: 1;
}

.profile-video--lg:hover,
.profile-video--lg:focus-visible {
  transform: scale(1.05);
  box-shadow:
    0 18px 36px rgba(0,0,0,0.5),
    inset 0 3px 6px rgba(255,255,255,0.18),
    inset 0 -5px 14px rgba(0,0,0,0.55);
}

.hero-card--center {
  max-width: 1200px;
}

/* push neumorphism harder */
.neo-btn {
  display: inline-block;
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.05), rgba(34,37,43,1));
  color: var(--text);
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 1.2rem;
  box-shadow:
    14px 14px 28px rgba(0,0,0,0.55),
    -14px -14px 28px rgba(60,60,65,0.04);
  border: 1px solid rgba(255,255,255,0.015);
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out;
  position: relative;
  overflow: visible;
  backdrop-filter: blur(3px);
}

.neo-btn:hover,
.neo-btn:focus {
  transform: translateY(-2px);
  box-shadow:
    6px 6px 18px rgba(0,0,0,0.4),
    -6px -6px 18px rgba(60,60,65,0.06);
}

/* particle canvas sits on top but doesn't block clicks */
#particle-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 60;
}
