:root {
  --ink: #eef4ff;
  --muted: #a5b4cf;
  --teal: #40e0bd;
  --navy: #080d1b;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--navy);
}

body {
  margin: 0;
  background: var(--navy);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
}

a {
  color: inherit;
}

.page-shell {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  display: grid;
  place-content: center;
  gap: 24px;
  overflow: hidden;
  padding: 40px 20px 28px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    radial-gradient(circle at 50% 20%, #152542 0%, var(--navy) 55%);
  background-size: 48px 48px, 48px 48px, auto;
}

.ambient {
  position: absolute;
  z-index: -1;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  filter: blur(100px);
  opacity: 0.16;
}

.ambient-one {
  top: -100px;
  right: -80px;
  background: var(--teal);
}

.ambient-two {
  bottom: -150px;
  left: -100px;
  background: #506eff;
}

.profile-card {
  width: min(100%, 650px);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 30px;
  background: rgba(12, 20, 38, 0.82);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(20px);
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  color: #7f90af;
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status {
  display: flex;
  align-items: center;
  gap: 7px;
}

.status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 12px var(--teal);
}

.identity {
  text-align: center;
}

.monogram {
  width: 94px;
  height: 94px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  border: 1px solid rgba(64, 224, 189, 0.35);
  border-radius: 26px;
  background: linear-gradient(
    145deg,
    rgba(64, 224, 189, 0.2),
    rgba(80, 110, 255, 0.12)
  );
  color: var(--teal);
  font-size: 1.7rem;
  font-weight: 780;
  letter-spacing: -0.06em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 14px 40px rgba(0, 0, 0, 0.2);
}

.eyebrow {
  margin: 0 0 9px;
  color: #c8d4e8;
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3.2rem, 11vw, 5.8rem);
  font-weight: 780;
  letter-spacing: -0.075em;
  line-height: 0.95;
}

h1 span {
  color: var(--teal);
}

.subtitle {
  margin: 22px 0 5px;
  color: #dfe8fa;
  font-size: clamp(1rem, 2.5vw, 1.16rem);
  font-weight: 650;
}

.description {
  margin: 0 auto 26px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.contact-item {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.contact-item:hover,
.contact-item:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(64, 224, 189, 0.42);
  background: rgba(64, 224, 189, 0.07);
  outline: none;
}

.contact-icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(64, 224, 189, 0.1);
  color: var(--teal);
  font-size: 0.86rem;
  font-weight: 800;
}

.contact-copy {
  min-width: 0;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 2px;
}

.contact-copy small {
  color: #7889a7;
  font-size: 0.65rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-copy strong {
  overflow: hidden;
  color: #dce6f7;
  font-size: 0.78rem;
  font-weight: 560;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.arrow {
  color: #6f829f;
  font-size: 0.8rem;
}

.location {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 18px 0;
  color: #93a4bf;
  font-size: 0.78rem;
}

.location span {
  color: var(--teal);
}

.primary-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 52px;
  border-radius: 15px;
  background: var(--teal);
  color: #06120f;
  font-size: 0.9rem;
  font-weight: 760;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(64, 224, 189, 0.18);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.primary-button:hover,
.primary-button:focus-visible {
  transform: translateY(-2px);
  background: #61ebcb;
  box-shadow: 0 16px 38px rgba(64, 224, 189, 0.28);
  outline: 3px solid rgba(64, 224, 189, 0.22);
  outline-offset: 3px;
}

.copyright {
  margin: 0;
  color: #667692;
  font-size: 0.71rem;
  text-align: center;
}

.copyright span {
  padding: 0 5px;
  color: var(--teal);
}

@media (max-width: 600px) {
  .page-shell {
    display: block;
    padding: 16px;
  }

  .profile-card {
    padding: 19px;
    border-radius: 24px;
  }

  .card-topline {
    margin-bottom: 20px;
  }

  .contact-list {
    grid-template-columns: 1fr;
  }

  .copyright {
    margin-top: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
