*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0a0a0f;
  --accent: #7c6af7;
  --accent-soft: rgba(124, 106, 247, 0.15);
  --text: #e8e8f0;
  --muted: #6b6b80;
}

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Ambient background orbs */
.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.25;
  pointer-events: none;
  animation: drift 12s ease-in-out infinite alternate;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: #5b4fcf;
  top: -150px;
  left: -150px;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: #9b4fcf;
  bottom: -120px;
  right: -120px;
  animation-delay: -6s;
}

/* Center container */
.container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Breathing ring */
.breathe-ring {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  opacity: 0.5;
  animation: breathe 4s ease-in-out infinite;
  box-shadow:
    0 0 40px rgba(124, 106, 247, 0.3),
    inset 0 0 40px rgba(124, 106, 247, 0.08);
}

.breathe-ring::before,
.breathe-ring::after {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px solid rgba(124, 106, 247, 0.2);
  animation: breathe 4s ease-in-out infinite;
}

.breathe-ring::after {
  inset: -42px;
  border-color: rgba(124, 106, 247, 0.1);
  animation-delay: 0.3s;
}

/* Content */
.content {
  text-align: center;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  animation: fadeUp 1s ease both;
}

.label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
}

.headline {
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--text);
  line-height: 1.1;
}

.sub {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
  letter-spacing: 0.02em;
}

.divider {
  width: 40px;
  height: 1px;
  background: var(--accent);
  opacity: 0.4;
  margin: 4px 0;
}

.name {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text);
}

.bio {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.9;
  max-width: 420px;
  letter-spacing: 0.01em;
}

/* Keyframes */
@keyframes breathe {
  0%, 100% { transform: scale(1);   opacity: 0.5; }
  50%       { transform: scale(1.1); opacity: 0.15; }
}

@keyframes drift {
  from { transform: translate(0, 0); }
  to   { transform: translate(40px, 30px); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
