:root {
  --bg: #080808;
  --surface: #0f0f0f;
  --card: #141414;
  --border: rgba(255, 255, 255, 0.08);
  --accent: #e8ff47;
  --accent2: #47ffe8;
  --text: #f0f0f0;
  --muted: #8c8c8c;
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Outfit", sans-serif;
  --font-mono: "Space Mono", monospace;
}

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

html,
body {
  min-height: 100%;
}

body {
  font-family: var(--font-body);
  background:
    radial-gradient(
      circle at 12% 15%,
      rgba(232, 255, 71, 0.08),
      transparent 42%
    ),
    radial-gradient(
      circle at 90% 85%,
      rgba(71, 255, 232, 0.08),
      transparent 42%
    ),
    var(--bg);
  color: var(--text);
  display: grid;
  place-items: center;
  padding: 1.5rem;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
}

.vcard-wrap {
  width: min(980px, 100%);
  position: relative;
}

.vcard-wrap::before,
.vcard-wrap::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(45px);
  z-index: -1;
  animation: floatBlob 9s ease-in-out infinite;
}

.vcard-wrap::before {
  width: 200px;
  height: 200px;
  background: rgba(232, 255, 71, 0.18);
  top: -70px;
  right: -30px;
}

.vcard-wrap::after {
  width: 170px;
  height: 170px;
  background: rgba(71, 255, 232, 0.16);
  left: -30px;
  bottom: -60px;
  animation-delay: -3s;
}

.vcard {
  border: 1px solid var(--border);
  background: linear-gradient(
    145deg,
    rgba(20, 20, 20, 0.94),
    rgba(15, 15, 15, 0.95)
  );
  backdrop-filter: blur(10px);
  display: grid;
  grid-template-columns: 340px 1fr;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
  animation: liftIn 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.vcard-left {
  position: relative;
  border-right: 1px solid var(--border);
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.vcard-left::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  pointer-events: none;
}

.avatar-wrap {
  width: 220px;
  height: 220px;
  margin: 0 auto 1.25rem;
  border-radius: 999px;
  padding: 5px;
  background: linear-gradient(
    135deg,
    rgba(232, 255, 71, 0.8),
    rgba(71, 255, 232, 0.7)
  );
  animation: pulseRing 3.5s ease-in-out infinite;
}

.avatar {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: cover;
  border: 4px solid var(--card);
}

.status {
  margin: 0 auto;
  width: fit-content;
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.64rem;
  color: var(--accent);
  border: 1px solid rgba(232, 255, 71, 0.45);
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(232, 255, 71, 0.5);
  animation: ping 1.9s ease-in-out infinite;
}

.side-links {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.side-link {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.015);
  border-radius: 12px;
  color: var(--text);
  padding: 0.78rem 0.9rem;
  font-size: 0.86rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
  text-decoration: none;
}

.side-link:hover {
  transform: translateX(5px);
  border-color: rgba(232, 255, 71, 0.45);
}

.side-link small {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vcard-right {
  padding: 2.2rem;
  display: grid;
  gap: 1.5rem;
}

.name {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  font-size: clamp(2.6rem, 7vw, 4.5rem);
  line-height: 0.9;
}

.title-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.designation {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
}

.company {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent2);
  border: 1px solid rgba(71, 255, 232, 0.4);
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
}

.bio {
  color: #b9b9b9;
  line-height: 1.75;
  max-width: 57ch;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.info-box {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.018);
}

.info-box .label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.info-box .value {
  font-size: 0.92rem;
}

.social-row,
.portfolio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.chip-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  padding: 0.6rem 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
  text-decoration: none;
}

.chip-link svg {
  width: 15px;
  height: 15px;
  stroke: #f2f2f2;
  stroke-width: 1.7;
  fill: none;
  opacity: 0.95;
}

.chip-link:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  color: var(--accent);
}

.section-head {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

@keyframes liftIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

@keyframes pulseRing {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(232, 255, 71, 0.2);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(232, 255, 71, 0.03);
  }
}

@keyframes ping {
  0% {
    box-shadow: 0 0 0 0 rgba(232, 255, 71, 0.5);
  }
  100% {
    box-shadow: 0 0 0 8px rgba(232, 255, 71, 0);
  }
}

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

  .vcard-left {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 1.6rem;
  }

  .avatar-wrap {
    width: 180px;
    height: 180px;
  }

  .vcard-right {
    padding: 1.6rem;
  }
}

@media (max-width: 560px) {
  body {
    padding: 0.9rem;
  }

  .name {
    font-size: 2.35rem;
  }

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