:root {
  --bg: #08120d;
  --panel: #101b16;
  --panel-soft: #17231d;
  --ink: #f7f4ed;
  --muted: #bdc8bd;
  --green: #dfe9d8;
  --green-deep: #214631;
  --line: rgba(247, 244, 237, 0.16);
  --shadow: rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(42, 76, 57, 0.22), transparent 34%),
    radial-gradient(circle at 80% 0%, rgba(223, 233, 216, 0.12), transparent 30%),
    var(--bg);
  font-family: Inter, Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

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

button {
  border: 0;
  font: inherit;
}

.card-shell {
  display: grid;
  min-height: 100vh;
  padding: 24px;
  place-items: center;
}

.card {
  position: relative;
  overflow: hidden;
  width: min(100%, 460px);
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 24px 80px var(--shadow);
}

.card::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 32%, rgba(255, 255, 255, 0.035) 32% 33%, transparent 33% 100%);
  pointer-events: none;
  content: "";
}

.portrait {
  position: relative;
  overflow: hidden;
  width: 156px;
  height: 156px;
  margin-bottom: 22px;
  background: #b7b6b1;
  border: 1px solid rgba(247, 244, 237, 0.2);
  border-radius: 50%;
}

.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 18%;
}

.identity,
.actions,
.directions,
.proof,
footer {
  position: relative;
}

.eyebrow {
  margin: 0 0 10px;
  color: #a9cdb2;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 10px;
  font-size: clamp(38px, 11vw, 54px);
  line-height: 0.98;
  letter-spacing: 0;
}

.full-name {
  margin: 0 0 14px;
  color: #a9cdb2;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.05em;
  line-height: 1.25;
  text-transform: uppercase;
}

.role {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.28;
}

.lead {
  max-width: 380px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.48;
}

.actions {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.action {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.action:hover {
  transform: translateY(-1px);
}

.action.primary {
  color: #07110c;
  background: var(--green);
}

.action-note {
  margin: -4px 0 2px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.25;
  text-align: center;
}

.action.secondary {
  color: var(--ink);
  background: rgba(247, 244, 237, 0.075);
  border: 1px solid rgba(247, 244, 237, 0.18);
}

.action.secondary:hover {
  background: rgba(247, 244, 237, 0.12);
  border-color: rgba(247, 244, 237, 0.34);
}

.action.ghost {
  color: var(--green);
  background: transparent;
  border: 1px solid rgba(223, 233, 216, 0.2);
}

.directions {
  display: grid;
  gap: 8px;
  margin: 0 0 20px;
  padding: 16px;
  background: rgba(247, 244, 237, 0.055);
  border: 1px solid rgba(247, 244, 237, 0.1);
  border-radius: 16px;
}

.directions span {
  color: var(--ink);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.28;
}

.proof {
  margin-bottom: 22px;
  padding: 16px;
  color: #07110c;
  background: #dfe9d8;
  border-radius: 16px;
}

.proof strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.2;
}

.proof p {
  margin: 0;
  color: rgba(7, 17, 12, 0.72);
  font-size: 15px;
  line-height: 1.4;
}

footer {
  display: flex;
  justify-content: center;
  color: var(--muted);
  font-size: 15px;
  font-weight: 750;
}

@media (max-width: 460px) {
  .card-shell {
    min-height: auto;
    padding: 12px;
  }

  .card {
    min-height: calc(100vh - 24px);
    padding: 22px;
    border-radius: 20px;
  }

  .portrait {
    width: 136px;
    height: 136px;
  }

  .lead {
    font-size: 16px;
  }
}
