:root {
  --teal: #61c9b9;
  --teal-dark: #2fa392;
  --ink: #111417;
  --muted: #5c6670;
  --bg: #f6f8f8;
  --card: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: "Century Gothic", "Avenir Next", Futura, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}

.card {
  background: var(--card);
  border-radius: 20px;
  box-shadow: 0 6px 30px rgba(17, 20, 23, 0.08);
  max-width: 420px;
  width: 100%;
  overflow: hidden;
}

.card-band {
  height: 8px;
  background: var(--teal);
}

.card-body {
  padding: 36px 32px 32px;
  text-align: center;
}

.wordmark {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-bottom: 28px;
}
.wordmark .dot { color: var(--teal); }
.wordmark small {
  display: block;
  font-weight: 400;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

h1 {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.role {
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 6px;
  margin-bottom: 28px;
}

.save-btn {
  display: block;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 16px 24px;
  border-radius: 14px;
  margin-bottom: 24px;
  transition: background 0.15s ease;
}
.save-btn:active, .save-btn:hover { background: #000; }
.save-btn span { color: var(--teal); margin-right: 8px; }

.contact-list {
  list-style: none;
  text-align: left;
  border-top: 1px solid #edf0f1;
}
.contact-list li { border-bottom: 1px solid #edf0f1; }
.contact-list a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 6px;
  text-decoration: none;
  color: var(--ink);
  font-size: 0.95rem;
  word-break: break-all;
}
.contact-list a:hover { color: var(--teal-dark); }
.contact-list .icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(97, 201, 185, 0.14);
  color: var(--teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.foot {
  margin-top: 26px;
  font-size: 0.72rem;
  color: var(--muted);
}
.foot a { color: var(--muted); }
