:root {
  --bg: #0a0a0a;
  --ink: #f5f0e7;
  --muted: #bdb4a7;
  --line: rgba(245, 240, 231, 0.16);
  --panel: #141414;
  --gold: #d6af63;
  --green: #2fb36d;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

a,
button {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 22px;
}

.card {
  width: min(100%, 430px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

.hero {
  position: relative;
  min-height: 330px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.heroImage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.heroOverlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(10, 10, 10, 0.92), rgba(10, 10, 10, 0.18) 62%),
    linear-gradient(90deg, rgba(10, 10, 10, 0.62), rgba(10, 10, 10, 0));
}

.brand {
  position: relative;
  z-index: 1;
  padding: 26px;
}

.label {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: 48px;
  line-height: 0.92;
  letter-spacing: 0;
}

.summary {
  margin: 16px 0 0;
  color: rgba(245, 240, 231, 0.84);
  font-size: 15px;
}

.content {
  padding: 22px;
}

.identity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.name {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
}

.role {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.portfolioLink {
  flex: 0 0 auto;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(214, 175, 99, 0.72);
  border-radius: 6px;
  color: var(--gold);
  font-size: 13px;
}

.siteBlock {
  display: block;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.siteTitle {
  margin: 0;
  color: var(--gold);
  font-size: 20px;
  font-weight: 700;
}

.siteBlock p:last-child {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 22px 0;
}

.action {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.action.primary {
  border-color: transparent;
  background: var(--ink);
  color: #111;
  font-weight: 700;
}

.action.copied {
  border-color: rgba(47, 179, 109, 0.8);
  color: var(--green);
}

.details {
  display: grid;
  gap: 12px;
}

.details div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
}

.details span {
  color: var(--gold);
  font-size: 12px;
}

.details p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 430px) {
  .page {
    padding: 0;
    place-items: stretch;
  }

  .card {
    width: 100%;
    min-height: 100vh;
    border: 0;
    border-radius: 0;
  }

  .hero {
    min-height: 42vh;
  }

  h1 {
    font-size: 42px;
  }

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