:root {
  --bg: #0f1419;
  --surface: #1a2332;
  --surface-hover: #243044;
  --text: #eef2f7;
  --muted: #8b9bb4;
  --accent: #4f8cff;
  --accent-soft: rgba(79, 140, 255, 0.15);
  --border: rgba(255, 255, 255, 0.08);
  --radius: 16px;
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.bg-shape {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.bg-shape--1 {
  width: 420px;
  height: 420px;
  top: -120px;
  right: -80px;
  background: rgba(79, 140, 255, 0.25);
}

.bg-shape--2 {
  width: 360px;
  height: 360px;
  bottom: -100px;
  left: -60px;
  background: rgba(99, 179, 237, 0.12);
}

.card {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(145deg, var(--surface) 0%, #151c28 100%);
  box-shadow: var(--shadow);
}

.card__header {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.avatar {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent), #63b3ed);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(1.6rem, 4vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.tagline {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.card__section {
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.card__section + .card__section {
  margin-top: 24px;
}

h2 {
  margin: 0 0 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.card__section p {
  margin: 0;
  color: var(--text);
  font-size: 0.95rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.chips li {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #b8d0ff;
  font-size: 0.875rem;
  font-weight: 500;
}

.contacts {
  display: grid;
  gap: 10px;
}

.contact {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  color: inherit;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.contact:hover {
  background: var(--surface-hover);
  border-color: rgba(79, 140, 255, 0.35);
}

.contact__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact__value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}

.card__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.card__footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
}

.button:hover {
  background: #3d7aef;
  transform: translateY(-1px);
}

@media (max-width: 480px) {
  .card {
    padding: 24px 20px;
  }

  .card__header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .card__footer {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .button {
    width: 100%;
  }
}
