:root {
  --navy: #10243d;
  --blue: #1f5f95;
  --gold: #c8a24a;
  --gold-light: #d4b86a;
  --cream: #f7f3eb;
  --white: #ffffff;
  --ink: #172033;
  --muted: #8a94a6;
  --line: rgba(16,36,61,.12);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #ffffff 0%, var(--cream) 48%, #e8eef5 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
}
.card-shell {
  width: min(430px, 100%);
  background: var(--white);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 26px 80px rgba(16,36,61,.22), 0 0 0 1px rgba(255,255,255,.9);
}

/* ── Hero Section ── */
.hero {
  position: relative;
  padding: 38px 28px 30px;
  text-align: center;
  color: white;
  background: linear-gradient(155deg, var(--navy) 0%, var(--blue) 100%);
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 45%, rgba(200,162,74,.25) 45% 52%, transparent 52% 100%);
  pointer-events: none;
}
.hero:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  pointer-events: none;
}
.hero > * { position: relative; }

.avatar {
  width: 140px;
  height: 140px;
  border-radius: 999px;
  object-fit: cover;
  border: 4px solid rgba(255,255,255,.9);
  box-shadow: 0 10px 30px rgba(0,0,0,.3);
  background: white;
}

h1 {
  margin: 16px 0 4px;
  font-size: 34px;
  letter-spacing: -0.5px;
  font-weight: 700;
}

.subtitle {
  font-size: 18px;
  opacity: .97;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin: 0;
}

.brokerage {
  display: inline-block;
  margin-top: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.22);
  font-size: 13px;
  letter-spacing: 0.3px;
  font-weight: 500;
}

.tagline {
  margin-top: 12px;
  font-size: 12px;
  opacity: .8;
  line-height: 1.5;
  letter-spacing: 0.2px;
}

/* ── Content Section ── */
.content {
  padding: 24px 24px 28px;
}

.primary {
  display: block;
  text-align: center;
  text-decoration: none;
  color: var(--navy);
  font-weight: 800;
  font-size: 16px;
  background: linear-gradient(135deg, #f6df9d 0%, var(--gold) 100%);
  padding: 17px 20px;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(200,162,74,.30);
  margin-bottom: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(200,162,74,.40);
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.btn {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 16px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
  transition: all 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(16,36,61,.10);
  border-color: rgba(200,162,74,.35);
}

.btn-icon {
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
}

@media print {
  body { background: white; padding: 0; }
  .card-shell { box-shadow: none; border: 1px solid #ddd; }
}