:root {
  --ink: #14181f;
  --muted: #5b6573;
  --line: #e6e9ee;
  --bg: #f6f7f9;
  --card: #ffffff;
  --accent: #0096d6; /* ACE blue */
  --accent-ink: #007bb1;
  --navy: #0a2240; /* ACE navy */
  --radius: 16px;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: radial-gradient(1200px 600px at 50% -10%, #ffffff, var(--bg));
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 64px 20px 48px;
}

/* ───────── Hero ───────── */
.hero { text-align: center; margin-bottom: 28px; }

.photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0 auto 24px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(10, 34, 64, 0.22);
  border: 1px solid var(--line);
}
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
  display: block;
}

.hero h1 {
  margin: 0;
  font-size: clamp(30px, 6vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.role {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 500;
}
.role strong { color: var(--ink); }
.role .dot { margin: 0 8px; color: var(--accent); }

.cta-row {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 150, 214, 0.30);
}
.btn.primary:hover { background: var(--accent-ink); }
.btn.ghost {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn.ghost:hover { border-color: #cfd5dd; }

/* ───────── Cards ───────── */
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 26px;
  margin-top: 18px;
  box-shadow: 0 10px 30px rgba(20, 24, 31, 0.05);
}
.card h2 {
  margin: 0 0 12px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 700;
}
.card p { margin: 0 0 14px; color: #2a313b; }
.card p:last-child { margin-bottom: 0; }

/* ───────── Contact ───────── */
.contact { list-style: none; margin: 0; padding: 0; }
.contact li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.contact li:last-child { border-bottom: 0; }
.contact .label {
  flex: 0 0 84px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 600;
}
.contact a { color: var(--ink); text-decoration: none; font-weight: 500; }
.contact a:hover { color: var(--accent); }

/* ───────── Footer ───────── */
.footer {
  margin-top: 28px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}
