:root {
  --bg: #141517;
  --panel: #1d2024;
  --panel-soft: #252a30;
  --text: #e7e9ec;
  --muted: #a8afb7;
  --line: #343b44;
  --accent: #80c2ff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 15%, #2a2d32 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, #23272c 0%, transparent 40%),
    var(--bg);
  display: grid;
  place-items: center;
  padding: 24px;
}

.card {
  width: min(880px, 100%);
  background: linear-gradient(180deg, #20242a 0%, #1b1e23 100%);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 28px;
}

h1 {
  margin: 0;
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  letter-spacing: 0.02em;
}

.business {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.98rem;
}

.role {
  margin-top: 18px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
  max-width: 56ch;
}

.contacts {
  margin-top: 24px;
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

a {
  color: var(--text);
  text-decoration: none;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 10px 16px;
  border: 1px solid #4b5663;
  border-radius: 8px;
  background: #2b3138;
  color: #e4e7eb;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.contact-btn:hover {
  background: #323a43;
  border-color: #6f8499;
  color: var(--accent);
}

.visual {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px;
  min-height: 260px;
  display: grid;
  place-items: center;
}

.visual img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 10px;
  height: auto;
  display: block;
}

@media (max-width: 760px) {
  .contacts {
    justify-content: flex-start;
  }
}
