@font-face {
  font-family: 'SuperMeatball';
  src: url('SuperMeatball-Yq1Gy.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   Base & Reset
============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img {
  -webkit-user-drag: none;
  user-select: none;
  draggable: false;
}

:root {
  /* ── Backgrounds ── */
  --bg:              #09090f;
  --bg-alt:          #0d0d16;
  --surface:         #13131f;
  --surface-raised:  #1a1a2e;
  --nav-bg:          rgba(9, 9, 15, 0.82);

  /* ── Borders ── */
  --border:          rgba(255, 255, 255, 0.07);
  --border-medium:   rgba(255, 255, 255, 0.11);
  --border-heavy:    rgba(255, 255, 255, 0.16);

  /* ── Shadows ── */
  --shadow-sm:       0 2px 8px rgba(0,0,0,0.45);
  --shadow:          0 4px 24px rgba(0,0,0,0.55), 0 8px 48px rgba(0,0,0,0.35);
  --shadow-hover:    0 10px 40px rgba(0,0,0,0.65), 0 20px 64px rgba(0,0,0,0.4);
  --glow-purple:     0 0 40px rgba(167, 139, 250, 0.14);
  --glow-purple-lg:  0 0 80px rgba(167, 139, 250, 0.22);

  /* ── Text ── */
  --text:            #f0f0f8;
  --text-muted:      #8888a8;
  --text-subtle:     #44445c;

  /* ── Accent palette ── */
  --accent:          #a78bfa;
  --accent-cyan:     #67e8f9;
  --accent-soft:     rgba(167, 139, 250, 0.1);
  --accent-border:   rgba(167, 139, 250, 0.3);
  --accent-gradient: linear-gradient(135deg, #a78bfa 0%, #67e8f9 100%);

  /* ── Green (verified) ── */
  --green:           #34d399;
  --green-soft:      rgba(52, 211, 153, 0.1);
  --green-border:    rgba(52, 211, 153, 0.25);

  /* ── Platform tints ── */
  --tiktok:          #fe2c55;
  --youtube:         #ff4040;
  --instagram:       #e1306c;
  --discord:         #7289da;

  /* ── Shape ── */
  --radius:          16px;
  --radius-sm:       12px;
  --radius-lg:       24px;
  --nav-h:           70px;

  /* ── Type ── */
  --font:            'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* ── Layout ── */
  --max-w:           960px;
  --max-w-wide:      1200px;

  /* ── Motion ── */
  --ease-out:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring:     cubic-bezier(0.34, 1.48, 0.64, 1);
  --transition:      0.25s var(--ease-out);
  --transition-slow: 0.4s var(--ease-out);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================================
   Navbar
============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  padding: 0 40px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
}

.nav-brand {
  font-family: 'SuperMeatball', sans-serif;
  font-size: 32px;
  font-weight: normal;
  letter-spacing: 0.02em;
  user-select: none;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
  margin-right: auto;
  transition: color var(--transition);
}

.nav-brand:hover {
  color: var(--accent);
}

.nav-tabs {
  display: flex;
  align-items: center;
  gap: 2px;
  overflow-x: auto;
  scrollbar-width: none;
}

.nav-tabs::-webkit-scrollbar {
  display: none;
}

.nav-tab {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 9px;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
}

.nav-tab:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.nav-tab.active {
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
}

.nav-socials {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  padding-left: 14px;
  border-left: 1px solid var(--border);
}

.nav-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  text-decoration: none;
  transition: background var(--transition), transform 0.2s var(--ease-spring);
}

.nav-social:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: scale(1.12);
}

.nav-social img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  border-radius: 6px;
  display: block;
}

/* ============================================================
   Layout
============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

.container--wide {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 96px 0;
  border-top: 1px solid var(--border);
  scroll-margin-top: var(--nav-h);
}

.section--alt {
  background: var(--bg-alt);
}

/* ============================================================
   Section Labels
============================================================ */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0.85;
}

.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(167, 139, 250, 0.4), transparent);
}

.section-sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-top: -28px;
  margin-bottom: 36px;
  opacity: 0.8;
}

/* ============================================================
   Hero
============================================================ */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  padding: 80px 40px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  scroll-margin-top: var(--nav-h);
}

/* Gradient glow layer */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% -5%,  rgba(167, 139, 250, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 45% at 85% 95%,  rgba(103, 232, 249, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 10% 85%,  rgba(167, 139, 250, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* Dot grid texture */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.hero-body {
  position: absolute;
  left: 0;
  bottom: -30px;
  height: min(88%, 600px);
  width: auto;
  pointer-events: none;
  z-index: 2;
  transform: translateX(-42%) rotate(15deg);
  transform-origin: bottom center;
  animation: peekInLeft 1.1s var(--ease-spring) 0.4s both;
  filter:
    drop-shadow(0 0 24px rgba(167, 139, 250, 0.7))
    drop-shadow(0 0 60px rgba(167, 139, 250, 0.4))
    drop-shadow(0 0 100px rgba(103, 232, 249, 0.25));
}

@keyframes peekInLeft {
  from { transform: translateX(-110%) rotate(15deg); opacity: 0; }
  to   { transform: translateX(-42%)  rotate(15deg); opacity: 1; }
}

.hero-bubble {
  position: absolute;
  left: clamp(90px, 14%, 230px);
  top: clamp(50px, 11%, 130px);
  width: clamp(150px, 19vw, 250px);
  height: auto;
  pointer-events: none;
  z-index: 3;
  animation: bubbleIn 0.6s var(--ease-spring) 1.3s both, bubbleFloat 3.6s ease-in-out 2s infinite;
}

@keyframes bubbleIn {
  from { transform: rotate(12deg) scale(0.6) translateY(10px); opacity: 0; }
  to   { transform: rotate(12deg) scale(1)   translateY(0);    opacity: 1; }
}

@keyframes bubbleFloat {
  0%, 100% { transform: rotate(12deg) translateY(0); }
  50%       { transform: rotate(12deg) translateY(-6px); }
}

@media (max-width: 768px) {
  .hero-body   { display: none; }
  .hero-bubble { display: none; }
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-content {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.hero-profile-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-profile-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-divider {
  height: 1px;
  background: var(--border-medium);
}

.hero-bio-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ── Avatar ── */
.hero-avatar-wrap {
  width: 140px;
  height: 140px;
  flex-shrink: 0;
}

.hero-avatar {
  width: 140px;
  height: 140px;
  user-select: none;
  -webkit-user-drag: none;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  box-shadow:
    0 0 0 3px var(--bg),
    0 0 0 5px rgba(167, 139, 250, 0.45),
    0 0 48px rgba(167, 139, 250, 0.22),
    var(--shadow);
  transition: box-shadow var(--transition-slow);
}

.hero-avatar:hover {
  box-shadow:
    0 0 0 3px var(--bg),
    0 0 0 5px rgba(167, 139, 250, 0.65),
    0 0 72px rgba(167, 139, 250, 0.35),
    var(--shadow-hover);
}

.hero-avatar-fallback {
  display: none;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--surface-raised);
  border: 1px solid var(--border-medium);
  align-items: center;
  justify-content: center;
  font-size: 44px;
  font-weight: 600;
  color: var(--text-muted);
  box-shadow: var(--glow-purple), var(--shadow);
}

.hero h1 {
  font-family: 'SuperMeatball', sans-serif;
  font-size: clamp(52px, 8vw, 80px);
  user-select: none;
  font-weight: normal;
  letter-spacing: 0.02em;
  line-height: 1;
  background: linear-gradient(175deg, #ffffff 30%, rgba(200, 190, 255, 0.75) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(14px, 2vw, 17px);
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.hero-niche {
  font-size: 13px;
  color: var(--text-subtle);
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}

.hero-former {
  font-size: 12px;
  color: var(--text-subtle);
}

.hero-former span {
  color: var(--text-muted);
  font-style: italic;
}

.hero-bio {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--text-muted);
}

.hero-bio strong {
  color: var(--text);
  font-weight: 600;
}

.hero-bio-link {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(167, 139, 250, 0.35);
  transition: color var(--transition), border-color var(--transition);
}

.hero-bio-link:hover {
  color: #c4b5fd;
  border-bottom-color: rgba(196, 181, 253, 0.7);
}

/* ============================================================
   About
============================================================ */
.about-bio {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.about-p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-muted);
}

.about-p strong {
  color: var(--text);
  font-weight: 600;
}

.about-link {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(167, 139, 250, 0.35);
  transition: color var(--transition), border-color var(--transition);
}

.about-link:hover {
  color: #c4b5fd;
  border-bottom-color: rgba(196, 181, 253, 0.7);
}

.about-meta {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 560px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.meta-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 14px 22px;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.meta-row:last-child {
  border-bottom: none;
}

.meta-row:hover {
  background: rgba(255, 255, 255, 0.025);
}

.meta-row dt {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  min-width: 76px;
  flex-shrink: 0;
  opacity: 0.75;
}

.meta-row dd {
  font-size: 14px;
  color: var(--text-muted);
}

/* ============================================================
   Social Cards
============================================================ */
.socials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius);
  text-decoration: none;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.28s var(--ease-spring),
    box-shadow var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.social-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-hover);
}

/* Platform-tinted hover glow */
.social-card[href*="youtube"]:hover {
  border-color: rgba(255, 64, 64, 0.35);
  box-shadow: 0 0 32px rgba(255, 64, 64, 0.1), var(--shadow);
}

.social-card[href*="tiktok"]:hover {
  border-color: rgba(0, 210, 255, 0.45);
  box-shadow: 0 0 32px rgba(0, 210, 255, 0.12), var(--shadow);
}

.social-card[href*="instagram"]:hover {
  border-color: rgba(200, 100, 255, 0.45);
  box-shadow: 0 0 32px rgba(200, 100, 255, 0.14), var(--shadow);
}

.social-card[href*="discord"]:hover {
  border-color: rgba(114, 137, 218, 0.4);
  box-shadow: 0 0 32px rgba(114, 137, 218, 0.12), var(--shadow);
}

.social-card[href*="cameo"]:hover {
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 0 32px rgba(255, 255, 255, 0.08), var(--shadow);
}

.social-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 13px;
}

.social-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.social-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.social-stat {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.social-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

.social-arrow {
  flex-shrink: 0;
  color: var(--text-subtle);
  transition: transform var(--transition), color var(--transition);
}

.social-card:hover .social-arrow {
  transform: translateX(4px);
  color: var(--text-muted);
}

/* ============================================================
   Latest Videos
============================================================ */
.videos-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
  cursor: grab;
  user-select: none;
}

.videos-scroll:active {
  cursor: grabbing;
}

.videos-scroll::-webkit-scrollbar {
  height: 4px;
}

.videos-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.videos-scroll::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 9px;
}

.video-card {
  flex: 0 0 252px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.video-card:hover {
  transform: translateY(-4px);
  border-color: rgba(167, 139, 250, 0.35);
  box-shadow: 0 12px 36px rgba(167, 139, 250, 0.13);
}

.video-thumb-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg);
  position: relative;
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.video-card:hover .video-thumb {
  transform: scale(1.05);
}

.video-play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  background: rgba(0, 0, 0, 0.35);
}

.video-card:hover .video-play-icon {
  opacity: 1;
}

.video-play-icon svg {
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.video-info {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.video-title {
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-date {
  font-size: 12px;
  color: var(--text-subtle);
  margin-top: auto;
}

.video-skeleton {
  flex: 0 0 252px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.video-skeleton-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(90deg, var(--bg-alt) 25%, var(--surface) 50%, var(--bg-alt) 75%);
  background-size: 200% 100%;
  animation: videoShimmer 1.6s ease-in-out infinite;
}

.video-skeleton-info {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.video-skeleton-line {
  height: 12px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--bg-alt) 25%, var(--surface) 50%, var(--bg-alt) 75%);
  background-size: 200% 100%;
  animation: videoShimmer 1.6s ease-in-out infinite;
}

.video-skeleton-line:nth-child(2) { width: 75%; animation-delay: 0.1s; }
.video-skeleton-line:nth-child(3) { width: 45%; animation-delay: 0.2s; }

@keyframes videoShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.videos-error {
  color: var(--text-muted);
  font-size: 14px;
  padding: 24px 0;
}

.videos-error a {
  color: var(--accent);
  text-decoration: none;
}

.videos-error a:hover {
  text-decoration: underline;
}

/* ============================================================
   Reviews Carousel
============================================================ */
.carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 14px;
}

.carousel {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 40px 0;
  -ms-overflow-style: none;
  cursor: grab;
  flex: 1;
  -webkit-overflow-scrolling: touch;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.carousel-item {
  flex-shrink: 0;
  width: calc((100% - 28px) / 3);
  scroll-snap-align: start;
  transition: transform 0.28s var(--ease-spring), filter 0.28s ease;
}

.carousel-item:hover {
  transform: scale(1.02);
  filter: drop-shadow(0 0 10px rgba(167,139,250,0.7)) drop-shadow(0 0 24px rgba(167,139,250,0.3));
}

.carousel-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  display: block;
  pointer-events: none;
  user-select: none;
}

.carousel-btn {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-medium);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition:
    background var(--transition),
    box-shadow var(--transition),
    color var(--transition),
    border-color var(--transition),
    transform 0.2s var(--ease-spring);
}

.carousel-btn:hover {
  background: var(--accent-soft);
  border-color: var(--accent-border);
  color: var(--accent);
  transform: scale(1.1);
  box-shadow: var(--glow-purple);
}

/* ============================================================
   Contact
============================================================ */
.contact-tagline {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.contact-email {
  display: inline-block;
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-bottom: 2px solid var(--border-medium);
  padding-bottom: 4px;
  transition: color var(--transition), border-color var(--transition), text-shadow var(--transition);
}

.contact-email:hover {
  color: var(--accent);
  border-color: var(--accent);
  text-shadow: 0 0 24px rgba(167, 139, 250, 0.35);
}

/* ============================================================
   Footer
============================================================ */
.footer {
  padding: 32px 0;
  border-top: 1px solid var(--border-heavy);
  background: var(--bg);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-copy,
.footer-note {
  font-size: 13px;
  color: var(--text-subtle);
}

.footer-note {
  font-style: italic;
}

/* ============================================================
   Responsive — tablet  ≤ 768px
============================================================ */
@media (max-width: 768px) {
  .hero {
    padding: 60px 20px;
  }

  .hero-content {
    width: 100%;
  }

  .hero-profile-row {
    justify-content: center;
  }

  .hero-placeholder-gone {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid var(--border-medium);
    padding-top: 40px;
  }

  .nav-inner {
    flex-wrap: wrap;
    height: auto;
    padding: 0;
    gap: 0;
  }

  .nav-brand {
    padding: 0 20px;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    flex: 1;
  }

  .nav-socials {
    padding: 0 20px;
    height: var(--nav-h);
    border-left: none;
  }

  .nav-tabs {
    order: 3;
    flex: 0 0 100%;
    padding: 0 20px;
    height: 48px;
    border-top: 1px solid var(--border);
  }

  .section {
    padding: 72px 0;
  }

  .container,
  .container--wide {
    padding: 0 20px;
  }

  .socials-grid {
    grid-template-columns: 1fr;
  }

  .carousel-item {
    width: calc((100% - 14px) / 2);
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
}

/* ============================================================
   Responsive — mobile  ≤ 520px
============================================================ */
@media (max-width: 520px) {
  .hero-avatar-wrap,
  .hero-avatar,
  .hero-avatar-fallback {
    width: 96px;
    height: 96px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .stat-card {
    padding: 28px 16px;
  }

  .social-card {
    padding: 18px 20px;
  }

  .carousel-item {
    width: calc((100% - 14px) / 2);
  }
}

@media (max-width: 360px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Animations & Motion
============================================================ */

/* ── Keyframes ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.82); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(44px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-11px); }
}

@keyframes rotateBorder {
  to { transform: rotate(360deg); }
}

@keyframes gradientDrift {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.55; }
}

/* ── Spinning gradient ring around avatar ── */
.hero-avatar-wrap {
  position: relative;
  animation:
    scaleIn 0.75s var(--ease-spring) 0.05s both,
    float   5.5s  ease-in-out        1.3s  infinite;
}

.hero-avatar-wrap::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    var(--accent)      0%,
    var(--accent-cyan) 42%,
    transparent        65%,
    var(--accent)      100%
  );
  animation: rotateBorder 3.5s linear infinite;
  z-index: 0;
}

.hero-avatar,
.hero-avatar-fallback {
  position: relative;
  z-index: 1;
}

/* Simplified box-shadow — ring is now the ::before */
.hero-avatar {
  box-shadow:
    0 0 0 4px var(--bg),
    0 0 52px rgba(167, 139, 250, 0.2),
    var(--shadow);
}

.hero-avatar:hover {
  box-shadow:
    0 0 0 4px var(--bg),
    0 0 76px rgba(167, 139, 250, 0.38),
    var(--shadow-hover);
}

/* ── Hero entrance sequence ── */
.hero h1       { animation: fadeUp 0.75s var(--ease-out) 0.2s  both; }
.hero-subtitle { animation: fadeUp 0.65s var(--ease-out) 0.32s both; }
.hero-niche    { animation: fadeUp 0.65s var(--ease-out) 0.4s  both; }
.hero-former   { animation: fadeUp 0.6s  var(--ease-out) 0.47s both; }
.hero-bio-block { animation: slideInRight 0.85s var(--ease-out) 0.28s both; }

/* ── Hero glow breathes ── */
.hero::before {
  animation: gradientDrift 9s ease-in-out infinite;
}

/* ── Section label line draws in on scroll ── */
.section-label::after {
  transform-origin: left center;
  transform: scaleX(0);
  opacity: 0;
  transition:
    transform 0.85s var(--ease-out) 0.18s,
    opacity   0.4s  var(--ease-out) 0.18s;
}

.section-label.is-visible::after {
  transform: scaleX(1);
  opacity: 1;
}

/* ── Scroll-triggered fade-up ── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity   0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
}

.fade-up.is-visible {
  opacity: 1;
  transform: none;
}

/* ── Social card sheen on hover ── */
.social-card {
  position: relative;
  overflow: hidden;
}

.social-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -110%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.045),
    transparent
  );
  transition: left 0.55s var(--ease-out);
  pointer-events: none;
}

.social-card:hover::after {
  left: 150%;
}

/* ── Reduced motion: disable everything ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration:       0.01ms !important;
    animation-iteration-count: 1     !important;
    transition-duration:      0.01ms !important;
  }
}
