:root{
  --bg: #f5f6f7;
  --card: #ffffff;
  --text: #111111;
  --muted: #5b5f66;
  --border: rgba(17,17,17,.08);
  --shadow: 0 10px 30px rgba(0,0,0,.10);

  --c-video: #639c80;
  --c-content: #e1af54;
  --c-strategy: #6e7bba;

  --radius: 18px;
}

*{ box-sizing: border-box; }

body{
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  padding: 18px;
}

.wrap{ width: 100%; max-width: 460px; }

.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.header{ text-align: center; }

/* HERO now just holds a round avatar */
.hero{
  padding: 28px 0 10px;
  display: grid;
  place-items: center;
  background: var(--card);
}

.avatar{
  width: 250px;
  height: 250px;
  border-radius: 999px;
  overflow: hidden;
  border: 5px solid #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,.10);
}

.avatar-mini{
  width: 125px;
  height: 125px;
  border-radius: 999px;
  overflow: hidden;
  border: 5px solid #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,.10);
}

.avatar-mini img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.content{ padding: 14px 18px 18px; }

.name{
  margin: 6px 0 2px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: .2px;
}

.role{
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}


.brandline{
  margin: 22px 0 6px;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: .2px;
}

.subbrandline{
  margin: 12px 0 6px;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: .2px;
}

.brandline .video{ color: var(--c-video); }
.brandline .contentw{ color: var(--c-content); }
.brandline .strategy{ color: var(--c-strategy); }

.brandline .mobile-break{ display: none; }
@media (max-width: 420px){
  .brandline .mobile-break{ display: inline; }
}

.tagline{
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}
.tagline hr{
  border: none;
  height: 1px;
  background: var(--border);
  margin: 10px 0;
}

/* Quick actions */
.actions{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 12px 0 8px;
}

.action{
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px 8px;
  text-decoration: none;
  color: var(--text);
  background: #fff;
  display: grid;
  place-items: center;
  gap: 6px;
  transition: transform .06s ease, box-shadow .12s ease, border-color .12s ease;
  user-select: none;
}
.action:active{ transform: translateY(1px); }
.action:hover{
  border-color: rgba(17,17,17,.18);
  box-shadow: 0 8px 18px rgba(0,0,0,.08);
}
.action svg{ width: 20px; height: 20px; opacity: .9; }
.action small{ font-size: 11px; color: var(--muted); line-height: 1; }

/* Details list */
.details{
  margin-top: 12px;
  border-top: 1px solid var(--border);
  padding-top: 12px;
  display: grid;
  gap: 10px;
}

.row{
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: start;
  text-decoration: none;
  color: inherit;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 14px;
  transition: background .12s ease, border-color .12s ease;
}
.row:hover{
  background: rgba(0,0,0,.02);
  border-color: var(--border);
}

.icon{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(17,17,17,.04);
}
.icon svg{ width: 18px; height: 18px; opacity: .85; }

.label{ font-size: 12px; color: var(--muted); margin-bottom: 2px; }
.value{ font-size: 14px; line-height: 1.25; word-break: break-word; }

/* Primary CTA */
.cta{ margin-top: 14px; display: grid; }
button.primary{
  width: 100%;
  border: 0;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 700;
  background: var(--c-video);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 18px rgba(99,156,128,.25);
  transition: transform .06s ease, filter .12s ease;
}
button.primary:hover{ filter: brightness(.98); }
button.primary:active{ transform: translateY(1px); }