/* ==========================================================================
   NEXTGENSOL x YOUTH SPEAKERS CLUB (YSC) - DESIGN SYSTEM
   Bespoke, High-End Agency Aesthetic (Crafted, NOT generic AI template)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&family=Caveat:wght@600;700&family=Alex+Brush&display=swap');

:root {
  --bg-deep: #050608;
  --bg-surface: #0b0d13;
  --bg-card: rgba(16, 20, 30, 0.75);
  --bg-card-hover: rgba(22, 28, 44, 0.85);
  
  /* Brand Dual Accents */
  --nextgen-blue: #0037ff;
  --nextgen-blue-bright: #2d62ff;
  --nextgen-blue-glow: rgba(0, 55, 255, 0.28);
  --nextgen-blue-subtle: rgba(0, 55, 255, 0.12);
  
  --ysc-red: #ff2a4d;
  --ysc-red-bright: #ff4767;
  --ysc-red-glow: rgba(255, 42, 77, 0.28);
  --ysc-red-subtle: rgba(255, 42, 77, 0.12);

  /* Neutrals */
  --text-primary: #ffffff;
  --text-secondary: #9aa2b4;
  --text-muted: #5e6678;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-active: rgba(255, 255, 255, 0.2);
  --border-blue: rgba(0, 55, 255, 0.4);
  --border-red: rgba(255, 42, 77, 0.4);

  /* Fonts */
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
  --font-script: 'Caveat', cursive;
  --font-signature: 'Alex Brush', cursive;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  position: relative;
  background-color: var(--bg-deep);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Premium Ambient Lighting Canvas (Dual Color Fusion) */
.ambient-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient-glow-blue {
  position: absolute;
  width: 650px;
  height: 650px;
  top: -150px;
  right: -150px;
  background: radial-gradient(circle, rgba(0, 55, 255, 0.18) 0%, rgba(0, 55, 255, 0) 70%);
  filter: blur(80px);
  border-radius: 50%;
  animation: pulseSlow 12s ease-in-out infinite alternate;
}

.ambient-glow-red {
  position: absolute;
  width: 600px;
  height: 600px;
  bottom: -150px;
  left: -150px;
  background: radial-gradient(circle, rgba(255, 42, 77, 0.14) 0%, rgba(255, 42, 77, 0) 70%);
  filter: blur(80px);
  border-radius: 50%;
  animation: pulseSlow 14s ease-in-out infinite alternate-reverse;
}

.ambient-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
  opacity: 0.7;
}

@keyframes pulseSlow {
  0% { transform: scale(1) translate(0, 0); opacity: 0.8; }
  50% { transform: scale(1.1) translate(20px, 15px); opacity: 1; }
  100% { transform: scale(0.95) translate(-15px, -20px); opacity: 0.75; }
}

/* Main Container Layout */
.app-shell {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.mobile-card-shell {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0 auto;
  padding: 1.5rem 1rem 3rem 1rem;
}

/* Navigation & Brand Bar */
.brand-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 2rem;
}

.brand-nav-compact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.brand-logo-lockup {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--text-primary);
}

.emblem-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 55, 255, 0.35));
  transition: transform var(--transition-fast);
}

.brand-logo-lockup:hover .emblem-img {
  transform: rotate(8deg) scale(1.06);
}

.brand-names {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.brand-collab-cross {
  color: var(--ysc-red);
  font-size: 0.8rem;
  font-weight: 800;
}

.brand-tagline {
  font-size: 0.72rem;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Badges & Chips */
.badge-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.badge-blue {
  background: var(--nextgen-blue-subtle);
  border: 1px solid var(--border-blue);
  color: #7ba3ff;
}

.badge-red {
  background: var(--ysc-red-subtle);
  border: 1px solid var(--border-red);
  color: #ff8598;
}

.badge-dual {
  background: linear-gradient(135deg, rgba(0, 55, 255, 0.15), rgba(255, 42, 77, 0.15));
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.badge-live-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00e676;
  box-shadow: 0 0 8px #00e676;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

/* ==========================================================================
   PHYSICAL ID BADGE REPLICA CARD (The Hero Element)
   ========================================================================== */
.id-badge-replica {
  position: relative;
  background: linear-gradient(170deg, #090c15 0%, #030407 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 
    0 24px 60px -12px rgba(0, 0, 0, 0.8),
    0 0 40px -10px var(--nextgen-blue-glow);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.id-badge-replica:hover {
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 
    0 30px 70px -10px rgba(0, 0, 0, 0.9),
    0 0 50px -5px var(--nextgen-blue-glow);
}

/* Top Accent Bar: Chevron and ID Watermark */
.badge-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem 0.5rem;
}

.badge-id-code {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.badge-id-code span {
  color: var(--nextgen-blue-bright);
}

/* The Portrait Cutout Canvas */
.portrait-stage {
  position: relative;
  width: 100%;
  height: 380px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  margin-top: -0.5rem;
}

/* Dynamic Monogram Initials behind subject (Like NY on the physical card) */
.monogram-bg {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14rem;
  line-height: 0.8;
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.05);
  background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.portrait-halo-blue {
  position: absolute;
  top: 15%;
  right: 10%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(0, 55, 255, 0.45) 0%, rgba(0, 55, 255, 0) 70%);
  filter: blur(45px);
  border-radius: 50%;
  z-index: 1;
}

.portrait-halo-red {
  position: absolute;
  bottom: 25%;
  left: 10%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 42, 77, 0.25) 0%, rgba(255, 42, 77, 0) 70%);
  filter: blur(40px);
  border-radius: 50%;
  z-index: 1;
}

.portrait-img {
  position: relative;
  z-index: 2;
  height: 100%;
  max-height: 380px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.9));
  transform: translateY(10px);
  transition: transform var(--transition-smooth);
}

.id-badge-replica:hover .portrait-img {
  transform: translateY(0) scale(1.02);
}

/* Portrait Fade-out gradient at bottom of image */
.portrait-stage::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 90px;
  background: linear-gradient(to top, #06080d 15%, transparent 100%);
  z-index: 3;
  pointer-events: none;
}

/* Member Bio & Title Bar on Card */
.card-identity-footer {
  position: relative;
  z-index: 4;
  padding: 0 1.5rem 1.75rem;
  text-align: center;
}

/* Handwritten Signature Style Name */
.signature-name {
  font-family: var(--font-script);
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ffffff;
  line-height: 1.1;
  text-shadow: 0 4px 18px rgba(0,0,0,0.8);
  margin-bottom: 0.4rem;
}

/* Exact ID Card Role Box (Blue Highlight Bar) */
.role-highlight-pill {
  display: inline-block;
  background: var(--nextgen-blue);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.32rem 1.1rem;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0, 55, 255, 0.4);
  margin-bottom: 0.5rem;
}

.role-highlight-pill.red-pill {
  background: var(--ysc-red);
  box-shadow: 0 4px 16px rgba(255, 42, 77, 0.4);
}

.role-highlight-pill.dual-pill {
  background: linear-gradient(90deg, #0037ff, #ff2a4d);
  box-shadow: 0 4px 16px rgba(0, 55, 255, 0.3);
}

.sub-role-caption {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: capitalize;
}

/* ==========================================================================
   INTERACTIVE ACTION BUTTONS (VCard, WhatsApp, Call, Share)
   ========================================================================== */
.quick-actions-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 1.25rem 0 1.5rem;
}

.btn-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition-fast);
}

.btn-primary-glow {
  background: linear-gradient(135deg, var(--nextgen-blue) 0%, #154eff 100%);
  color: #ffffff;
  box-shadow: 0 8px 25px -4px rgba(0, 55, 255, 0.5);
}

.btn-primary-glow:hover {
  background: linear-gradient(135deg, #154eff 0%, #3064ff 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -4px rgba(0, 55, 255, 0.65);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border-color: var(--border-subtle);
  backdrop-filter: blur(10px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-active);
  transform: translateY(-2px);
}

.btn-full {
  grid-column: 1 / -1;
}

.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ==========================================================================
   CONTENT MODULES & ACCORDIONS (Skills, Projects, About)
   ========================================================================== */
.info-section {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(14px);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.section-label-bar {
  width: 14px;
  height: 2px;
  background: var(--nextgen-blue);
  border-radius: 2px;
}

.section-label-bar.red {
  background: var(--ysc-red);
}

.bio-paragraph {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Specialty Tags Grid */
.tags-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-tag {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: all var(--transition-fast);
}

.tech-tag:hover {
  color: #ffffff;
  border-color: var(--border-blue);
  background: var(--nextgen-blue-subtle);
}

/* Key Stats / Metrics Row */
.metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}

.metric-box {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.85rem 0.5rem;
  text-align: center;
}

.metric-val {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}

.metric-lbl {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
}

/* Social & Contact List */
.links-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.contact-row-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.contact-row-link:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--border-active);
  transform: translateX(3px);
}

.link-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.link-platform {
  color: var(--text-secondary);
  font-size: 0.75rem;
}

/* QR Code Section on Page */
.qr-card-preview {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: linear-gradient(135deg, rgba(0, 55, 255, 0.08) 0%, rgba(255, 42, 77, 0.08) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}

.qr-box {
  width: 80px;
  height: 80px;
  background: #ffffff;
  padding: 6px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-box canvas, .qr-box img {
  width: 100%;
  height: 100%;
}

.qr-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.qr-info p {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.qr-scan-btn {
  background: none;
  border: none;
  color: var(--nextgen-blue-bright);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}

/* Team Navigation Bottom Carousel/Grid */
.team-strip {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.team-strip-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 1rem;
  text-align: center;
}

.team-pill-list {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}

.team-pill-list::-webkit-scrollbar {
  display: none;
}

.team-mini-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem 0.4rem 0.4rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.team-mini-chip.active {
  border-color: var(--border-blue);
  background: var(--nextgen-blue-subtle);
  color: #ffffff;
}

.team-mini-chip:hover {
  border-color: var(--border-active);
  color: #ffffff;
}

.team-chip-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  background: #111;
}

/* Footer */
.app-footer {
  text-align: center;
  padding: 2.5rem 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.76rem;
}

.app-footer a {
  color: var(--text-secondary);
  text-decoration: none;
}

.app-footer a:hover {
  color: #ffffff;
}

/* Toast Notification */
.toast-notice {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #121722;
  color: #ffffff;
  border: 1px solid var(--border-blue);
  box-shadow: 0 10px 30px rgba(0,0,0,0.8), 0 0 20px var(--nextgen-blue-glow);
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  z-index: 1000;
  pointer-events: none;
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.toast-notice.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* Modal for QR Code zoom */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: #0d1017;
  border: 1px solid var(--border-active);
  border-radius: 20px;
  padding: 2rem;
  max-width: 360px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.9), 0 0 40px var(--nextgen-blue-glow);
  transform: scale(0.95);
  transition: transform 0.25s ease;
}

.modal-overlay.open .modal-card {
  transform: scale(1);
}

.modal-qr-img {
  width: 200px;
  height: 200px;
  margin: 1rem auto;
  background: #fff;
  padding: 10px;
  border-radius: 12px;
}

.modal-close-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-subtle);
  color: #fff;
  border-radius: var(--radius-full);
  padding: 0.5rem 1.5rem;
  font-size: 0.85rem;
  cursor: pointer;
  margin-top: 1rem;
  transition: background var(--transition-fast);
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.16);
}

/* ==========================================================================
   TEAM HUB PAGE SPECIFIC (Index Landing)
   ========================================================================== */
.hub-hero {
  text-align: center;
  padding: 3rem 0 2rem;
}

.hub-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, rgba(0, 55, 255, 0.15), rgba(255, 42, 77, 0.15));
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.hub-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.2rem;
}

.text-gradient-dual {
  background: linear-gradient(135deg, #ffffff 30%, #a5bdfc 65%, #ff8598 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hub-hero-desc {
  max-width: 640px;
  margin: 0 auto 2.5rem;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.team-card-hub {
  position: relative;
  background: linear-gradient(175deg, #0d1017 0%, #06070a 100%);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.team-card-hub:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 20px 40px -10px rgba(0, 55, 255, 0.25);
}

.hub-card-stage {
  position: relative;
  height: 270px;
  background: radial-gradient(circle at 50% 60%, rgba(0, 55, 255, 0.15) 0%, transparent 70%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.hub-card-img {
  height: 95%;
  max-height: 260px;
  object-fit: contain;
  transition: transform var(--transition-smooth);
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.8));
}

.team-card-hub:hover .hub-card-img {
  transform: scale(1.05) translateY(-4px);
}

.hub-card-info {
  padding: 1.25rem 1.25rem 1.5rem;
  border-top: 1px solid var(--border-subtle);
  background: rgba(10, 13, 19, 0.9);
}

.hub-card-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.hub-card-role {
  font-size: 0.8rem;
  color: var(--nextgen-blue-bright);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.hub-card-arrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.team-card-hub:hover .hub-card-arrow {
  color: #ffffff;
}

@media (max-width: 600px) {
  .signature-name {
    font-size: 2.3rem;
  }
  .portrait-stage {
    height: 330px;
  }
  .portrait-img {
    max-height: 330px;
  }
  .quick-actions-bar {
    grid-template-columns: 1fr;
  }
  .metrics-row {
    grid-template-columns: 1fr 1fr;
  }
}
