:root {
  --bg: #191b1d;
  --paper: #f1f0eb;
  --ink: #17191a;
  --muted: #777b7d;
  --line: rgba(255, 255, 255, .12);
  --accent: #2f8aaa;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  color: var(--paper);
  background: radial-gradient(circle at 78% 20%, #25282a 0, var(--bg) 42%, #151719 100%);
  font-family: "Manrope", system-ui, sans-serif;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
}

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

.card {
  position: relative;
  width: min(900px, 100%);
  min-height: 560px;
  padding: 34px 42px 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: rgba(22, 24, 26, .68);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .28);
}

.card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #777b7d;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .2em;
}

.private-link {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 0;
  color: #a7aaab;
  letter-spacing: .08em;
  transition: color .2s ease;
}

.private-link:hover { color: white; }
.private-link svg { width: 14px; fill: none; stroke: currentColor; stroke-width: 1.5; }

.identity { margin: auto 0; }
.label { margin: 0 0 18px; color: var(--accent); font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
h1 { margin: 0; font-size: clamp(48px, 8vw, 86px); font-weight: 300; line-height: .95; letter-spacing: -.065em; }
h1 strong { font-weight: 600; }

address { display: flex; gap: 26px; margin-top: 34px; color: #94989a; font-size: 13px; font-style: normal; }
address a { border-bottom: 1px solid transparent; transition: color .2s ease, border-color .2s ease; }
address a:hover { color: white; border-color: #5e6264; }
.email { color: var(--paper); }

.actions { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.actions a {
  min-width: 0;
  padding: 17px 19px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 500;
  transition: transform .25s ease, background .25s ease;
}
.actions a:hover { transform: translateY(-2px); }
.primary-action { color: white; background: var(--accent); }
.primary-action:hover { background: #3794b5; }
.secondary-action { color: #b1b4b5; border: 1px solid var(--line); }
.secondary-action:hover { background: rgba(255,255,255,.05); }

footer { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); color: #5d6163; font-size: 8px; letter-spacing: .12em; text-transform: uppercase; }

@media (max-width: 620px) {
  body { padding: 14px; }
  .card { min-height: calc(100vh - 28px); padding: 25px 22px 22px; }
  .identity { margin: auto 0 70px; }
  h1 { font-size: clamp(44px, 16vw, 68px); }
  address { flex-direction: column; gap: 10px; margin-top: 28px; }
  .actions { grid-template-columns: 1fr; }
  .actions a { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
