.page-home .hero-card {
  padding: 2rem 2.5rem 2.5rem;
  margin-top: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 3.6rem);
  font-weight: 600;
  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: 0;
  justify-content: center;
  align-items: center;
  text-align: center;
}

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

.profile-video-wrap--center::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  background: var(--surface);
  box-shadow: var(--neo-shadow-raised-lg);
  z-index: 0;
}

.profile-video--lg {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 6px solid var(--surface);
  box-shadow: var(--neo-shadow-inset);
  transition: all 0.3s ease;
  z-index: 1;
}

.profile-video--lg:hover,
.profile-video--lg:focus-visible {
  transform: scale(1.03);
  box-shadow: 
    var(--neo-shadow-inset),
    0 0 30px rgba(124, 58, 237, 0.2);
}

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

/* neumorphism buttons - inherit from base2.css */
.neo-btn {
  display: inline-block;
  background: var(--surface);
  color: var(--text);
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  box-shadow: var(--neo-shadow-raised);
  border: none;
  transition: all 0.2s ease;
  position: relative;
  overflow: visible;
  font-weight: 500;
}

.neo-btn:hover,
.neo-btn:focus {
  transform: translateY(-3px);
  box-shadow: var(--neo-shadow-raised-lg);
  color: var(--accent);
}

.neo-btn:active {
  transform: translateY(0);
  box-shadow: var(--neo-shadow-inset);
}

/* Landing Page Image */
.landing-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin-bottom: -1rem;
  position: relative;
  z-index: 10;
}

.profile-image {
  display: block;
  max-width: 100%;
  max-height: 50vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  background: transparent;

}

.main-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

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