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

:root {
  --bg-void: #060509;
  --bg-deep: #0a0810;
  --bg-base: #100e18;
  --gold: #d4af37;
  --gold-light: #f4d35e;
  --gold-bright: #ffd966;
  --gold-deep: #9a7c2a;
  --gold-glow: rgba(212, 175, 55, 0.35);
  --gold-soft: rgba(212, 175, 55, 0.12);
  --cream: #f5f1e8;
  --text: rgba(245, 241, 232, 0.92);
  --text-muted: rgba(245, 241, 232, 0.5);
  --text-faint: rgba(245, 241, 232, 0.28);
  --border-gold: rgba(212, 175, 55, 0.15);
  --border-gold-hover: rgba(212, 175, 55, 0.35);
  --glass: rgba(255, 255, 255, 0.025);
  --glass-strong: rgba(255, 255, 255, 0.05);
  --green: #4ade80;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-void);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (hover: none) {
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none !important; }
}

/* ========================================
   CUSTOM CURSOR
======================================== */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 6px; height: 6px;
  background: var(--gold-bright);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  box-shadow: 0 0 10px var(--gold);
}

.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s, background 0.3s;
}

.cursor-ring.hovering {
  width: 60px;
  height: 60px;
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.06);
}

/* ========================================
   BACKGROUND LAYERS
======================================== */
.bg-vignette {
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, transparent 0%, transparent 40%, rgba(0,0,0,0.7) 100%);
  pointer-events: none;
  z-index: 3;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.025) 1px, transparent 1px);
  background-size: 70px 70px;
  z-index: 1;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.bg-orbs {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.45;
}

.orb-gold {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.3), transparent 65%);
  top: -150px; left: -100px;
  animation: float-orb-1 25s ease-in-out infinite;
}

.orb-amber {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(180, 120, 40, 0.22), transparent 65%);
  bottom: -100px; right: -80px;
  animation: float-orb-2 30s ease-in-out infinite;
}

.orb-deep {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(80, 50, 120, 0.15), transparent 65%);
  top: 40%; left: 60%;
  animation: float-orb-3 35s ease-in-out infinite;
}

@keyframes float-orb-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(100px, 80px) scale(1.1); }
  66% { transform: translate(-50px, 120px) scale(0.95); }
}

@keyframes float-orb-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-120px, -80px) scale(1.15); }
}

@keyframes float-orb-3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-80px, 60px); }
}

/* Chess Pieces */
.bg-chess {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.chess-piece {
  position: absolute;
  font-size: 140px;
  color: rgba(212, 175, 55, 0.04);
  font-family: serif;
  user-select: none;
}

.piece-1 { top: 8%; left: 5%; animation: float-piece 18s ease-in-out infinite; }
.piece-2 { top: 15%; right: 8%; font-size: 100px; animation: float-piece 22s ease-in-out infinite 2s; }
.piece-3 { bottom: 12%; left: 10%; font-size: 110px; animation: float-piece 20s ease-in-out infinite 4s; }
.piece-4 { bottom: 20%; right: 6%; font-size: 90px; animation: float-piece 25s ease-in-out infinite 1s; }

@keyframes float-piece {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(8deg); }
}

/* Particles */
.bg-particles {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  bottom: -10px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: rise-particle linear infinite;
  box-shadow: 0 0 4px var(--gold);
}

@keyframes rise-particle {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-100vh) translateX(var(--drift, 30px)); opacity: 0; }
}

/* Grain Texture */
.bg-grain {
  position: fixed;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 6s steps(8) infinite;
}

@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-3%, -2%); }
  20% { transform: translate(2%, 3%); }
  30% { transform: translate(-1%, 2%); }
  40% { transform: translate(3%, -1%); }
  50% { transform: translate(-2%, 1%); }
  60% { transform: translate(1%, -3%); }
  70% { transform: translate(-3%, 2%); }
  80% { transform: translate(2%, -2%); }
  90% { transform: translate(-1%, 1%); }
}

/* ========================================
   MAIN STAGE
======================================== */
.stage {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 48px 48px;
  display: flex;
  flex-direction: column;
}

/* ========================================
   TOP BAR
======================================== */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  animation: fade-down 0.9s 0.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.monogram {
  display: flex;
  align-items: center;
  gap: 12px;
}

.monogram-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border-gold-hover);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4), 0 0 0 4px rgba(212, 175, 55, 0.04);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: none;
}

.monogram-img:hover {
  border-color: var(--gold);
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(0,0,0,0.5), 0 0 20px var(--gold-glow);
}

.status-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--glass);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.status-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--green);
  animation: pulse-green 2s ease-in-out infinite;
}

.status-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

@keyframes pulse-green {
  0%, 100% { opacity: 1; box-shadow: 0 0 10px var(--green); }
  50% { opacity: 0.6; box-shadow: 0 0 16px var(--green); }
}

/* ========================================
   HERO
======================================== */
.hero {
  text-align: center;
  margin-top: 70px;
  will-change: transform;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: fade-up 0.9s 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.eyebrow-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(90px, 16vw, 200px);
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
  display: flex;
  justify-content: center;
  gap: 0.02em;
}

.name .letter {
  display: inline-block;
  background: linear-gradient(170deg,
    #f4d35e 0%,
    #d4af37 35%,
    #ffd966 50%,
    #d4af37 65%,
    #9a7c2a 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  transform: translateY(50px) rotateX(40deg);
  transform-origin: bottom;
  animation: letter-reveal 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards,
             gold-flow 8s ease-in-out infinite;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: none;
}

.name .letter:hover {
  transform: translateY(-12px) scale(1.05);
  filter: drop-shadow(0 10px 20px var(--gold-glow));
}

@keyframes letter-reveal {
  to { opacity: 1; transform: translateY(0) rotateX(0); }
}

@keyframes gold-flow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.role-wrapper {
  overflow: hidden;
  margin-bottom: 36px;
}

.role-text {
  font-size: clamp(13px, 1.6vw, 17px);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 300;
  opacity: 0;
  transform: translateY(30px);
  animation: fade-up 1s 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.role-amp {
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.3em;
  font-weight: 400;
}

/* Divider */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 44px;
  width: 240px;
  opacity: 0;
  animation: fade-up 1s 1.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-deep), var(--gold), var(--gold-deep), transparent);
  position: relative;
  overflow: hidden;
}

.divider-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  animation: shimmer-line 4s ease-in-out infinite;
}

.divider-diamond {
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  box-shadow: 0 0 8px var(--gold-glow);
}

@keyframes shimmer-line {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

/* ========================================
   GLASS CARD
======================================== */
.glass-card {
  position: relative;
  max-width: 660px;
  margin: 0 auto;
  padding: 44px 44px 36px;
  background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  animation: fade-up 1.2s 1.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  transition: border-color 0.5s, box-shadow 0.5s;
  will-change: transform;
}

.glass-card:hover {
  border-color: var(--border-gold-hover);
  box-shadow: 0 30px 80px -30px rgba(212, 175, 55, 0.15),
              0 0 40px -10px rgba(212, 175, 55, 0.08);
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.6;
}

.card-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 200px;
  background: radial-gradient(ellipse, var(--gold-glow), transparent 65%);
  pointer-events: none;
  opacity: 0.3;
  filter: blur(30px);
}

.card-corner {
  position: absolute;
  width: 16px; height: 16px;
  border: 1px solid var(--gold);
  opacity: 0.4;
  transition: opacity 0.4s, width 0.4s, height 0.4s;
}

.glass-card:hover .card-corner {
  opacity: 0.8;
  width: 20px;
  height: 20px;
}

.card-corner-tl { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.card-corner-tr { top: -1px; right: -1px; border-left: none; border-bottom: none; }
.card-corner-bl { bottom: -1px; left: -1px; border-right: none; border-top: none; }
.card-corner-br { bottom: -1px; right: -1px; border-left: none; border-top: none; }

.construction-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
}

.badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-gold 1.5s ease-in-out infinite;
}

@keyframes pulse-gold {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px var(--gold); }
  50% { opacity: 0.4; box-shadow: 0 0 12px var(--gold); }
}

.bio {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--text);
  font-weight: 300;
  text-align: center;
  position: relative;
  z-index: 1;
  letter-spacing: 0.2px;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border-gold);
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}

.meta-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-faint);
}

.meta-value {
  font-size: 13px;
  color: var(--text);
  font-weight: 400;
  letter-spacing: 0.3px;
}

/* ========================================
   ACTION BUTTONS
======================================== */
.actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 44px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 1s 2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 26px;
  background: var(--glass);
  border: 1px solid var(--border-gold);
  border-radius: 2px;
  color: var(--text);
  text-decoration: none;
  cursor: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.4s, background 0.4s, box-shadow 0.4s, color 0.4s;
  overflow: hidden;
  will-change: transform;
  font-family: inherit;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.btn:hover::before {
  opacity: 1;
}

.btn:hover {
  border-color: var(--gold);
  box-shadow: 0 10px 40px -10px var(--gold-glow);
}

.btn-primary {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
  border-color: var(--gold);
}

.btn-primary:hover {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(212, 175, 55, 0.1));
  box-shadow: 0 10px 40px -8px var(--gold-glow);
}

.btn-icon {
  width: 20px; height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.4s;
}

.btn:hover .btn-icon {
  transform: scale(1.1) rotate(-3deg);
}

.btn-label {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.btn-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 0.5px;
  padding-left: 14px;
  border-left: 1px solid var(--border-gold);
  transition: color 0.4s;
}

.btn:hover .btn-sub {
  color: var(--text-muted);
}

.btn-arrow {
  width: 16px; height: 16px;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.4s, transform 0.4s;
}

.btn:hover .btn-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ========================================
   FOOTER
======================================== */
.footer {
  margin-top: auto;
  padding-top: 60px;
  text-align: center;
  opacity: 0;
  animation: fade-up 1s 2.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.interests {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 14px 32px;
  background: var(--glass);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.interest {
  display: flex;
  align-items: center;
  gap: 10px;
}

.interest-icon {
  width: 16px; height: 16px;
  color: var(--gold);
}

.interest-text {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
}

.interest-divider {
  width: 1px;
  height: 14px;
  background: var(--border-gold);
}

/* Equalizer */
.equalizer {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 14px;
}

.eq-bar {
  width: 2px;
  background: var(--gold);
  border-radius: 1px;
  animation: eq-bounce 1s ease-in-out infinite;
}

.eq-bar:nth-child(1) { height: 60%; animation-delay: 0s; }
.eq-bar:nth-child(2) { height: 100%; animation-delay: 0.15s; }
.eq-bar:nth-child(3) { height: 40%; animation-delay: 0.3s; }
.eq-bar:nth-child(4) { height: 80%; animation-delay: 0.1s; }
.eq-bar:nth-child(5) { height: 50%; animation-delay: 0.25s; }

@keyframes eq-bounce {
  0%, 100% { transform: scaleY(0.4); }
  50% { transform: scaleY(1); }
}

.footer-meta {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--text-faint);
}

.footer-dot {
  color: var(--gold-deep);
}

/* ========================================
   TOAST
======================================== */
.toast {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: rgba(15, 13, 20, 0.95);
  border: 1px solid var(--gold);
  border-radius: 4px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px -10px rgba(0,0,0,0.5),
              0 0 30px -5px var(--gold-glow);
  z-index: 10001;
  min-width: 320px;
}

.toast-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.toast-icon svg {
  width: 18px; height: 18px;
  color: var(--bg-void);
  stroke-width: 2.5;
}

.toast-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.toast-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.5px;
}

.toast-message {
  font-size: 12px;
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
}

.toast-enter-active, .toast-leave-active {
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.toast-enter-from {
  opacity: 0;
  transform: translateX(-50%) translateY(30px);
}

.toast-leave-to {
  opacity: 0;
  transform: translateX(-50%) translateY(20px);
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes fade-up {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-down {
  to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 768px) {
  .stage {
    padding: 24px 24px 32px;
  }

  .hero {
    margin-top: 50px;
  }

  .name {
    font-size: clamp(70px, 22vw, 120px);
  }

  .role-text {
    font-size: 12px;
    letter-spacing: 1.5px;
  }

  .glass-card {
    padding: 32px 24px 28px;
  }

  .bio {
    font-size: 15px;
  }

  .meta-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .meta-item {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .actions {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    justify-content: flex-start;
  }

  .btn-sub {
    margin-left: auto;
  }

  .interests {
    flex-direction: column;
    gap: 12px;
    padding: 16px 24px;
  }

  .interest-divider {
    width: 30px;
    height: 1px;
  }

  .footer-meta {
    gap: 8px;
    font-size: 9px;
  }

  .chess-piece {
    font-size: 80px;
  }

  .status-text {
    display: none;
  }

  .status-badge {
    padding: 8px;
  }
  
  .monogram-img {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 480px) {
  .name {
    font-size: clamp(56px, 20vw, 90px);
  }

  .glass-card {
    padding: 28px 20px 24px;
  }

  .toast {
    left: 20px;
    right: 20px;
    transform: none;
    min-width: 0;
  }

  .toast-enter-from, .toast-leave-to {
    transform: translateY(30px);
  }
}

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