@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root{
  --purple:#42176c;
  --purple2:#6b35a0;
  --light:#faf8fd;
  --ink:#241b2d;
  --muted:#756b7d;
  --line:#eadff2;
  --white:#ffffff;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  min-height:100vh;
  background:
    radial-gradient(circle at 10% 10%, #eadcf5 0, transparent 30%),
    radial-gradient(circle at 90% 90%, #eee1f7 0, transparent 28%),
    #f5f1f8;
  color:var(--ink);
  font-family:'DM Sans',sans-serif;
}

.card{
  width:min(100%, 520px);
  min-height:100vh;
  margin:auto;
  padding:30px 22px 24px;
  position:relative;
  overflow:hidden;
  background:linear-gradient(180deg,#fff 0%,#fcf9fe 100%);
}

.glow{
  position:absolute;
  width:220px;height:220px;
  border-radius:50%;
  filter:blur(45px);
  opacity:.16;
  pointer-events:none;
}
.glow-one{background:#7e43b1;top:-80px;right:-70px}
.glow-two{background:#b28ad1;bottom:130px;left:-100px}

.hero{text-align:center;position:relative;z-index:1}
.logo-wrap{
  width:142px;height:142px;
  margin:0 auto 17px;
  padding:5px;
  border-radius:50%;
  background:#fff;
  box-shadow:0 14px 38px rgba(66,23,108,.16);
}
.logo{
  width:100%;height:100%;
  object-fit:cover;
  border-radius:50%;
}

.eyebrow{
  margin:0 0 7px;
  font-size:10px;
  font-weight:700;
  letter-spacing:3px;
  color:var(--purple2);
}
h1{
  margin:0;
  font-family:'Playfair Display',serif;
  font-size:34px;
  line-height:1.1;
  color:var(--purple);
}
.role{
  margin:9px 0 0;
  font-size:14px;
  font-weight:600;
  color:#5e5265;
}
.tagline{
  margin:12px 0 22px;
  font-size:13px;
  color:var(--muted);
  font-style:italic;
}

.quick-actions{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
}
.action{
  min-height:68px;
  text-decoration:none;
  color:var(--purple);
  border:1px solid var(--line);
  background:#fff;
  border-radius:18px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:5px;
  box-shadow:0 7px 22px rgba(66,23,108,.06);
  transition:.2s ease;
}
.action:hover{transform:translateY(-2px)}
.action span{font-size:22px;line-height:1}
.action b{font-size:11px}
.action.primary{
  color:#fff;
  background:linear-gradient(135deg,var(--purple),var(--purple2));
  border-color:transparent;
}

.about,.connect{
  position:relative;
  z-index:1;
  margin-top:27px;
}
h2{
  font-size:15px;
  margin:0 0 13px;
  color:var(--purple);
  letter-spacing:.2px;
}
.services{
  display:grid;
  grid-template-columns:1fr;
  gap:9px;
}
.service{
  display:flex;
  align-items:center;
  gap:11px;
  padding:13px 15px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:15px;
}
.service span{font-size:20px}
.service strong{font-size:13px}

.link-row{
  width:100%;
  min-height:66px;
  margin-bottom:9px;
  padding:10px 13px;
  display:flex;
  align-items:center;
  gap:12px;
  border:1px solid var(--line);
  border-radius:16px;
  background:#fff;
  color:var(--ink);
  text-decoration:none;
  box-shadow:0 6px 18px rgba(66,23,108,.045);
}
.link-row:hover{border-color:#ccb8da}
.link-row.static{cursor:default}
.icon{
  width:40px;height:40px;
  flex:0 0 40px;
  display:grid;
  place-items:center;
  border-radius:12px;
  background:#f0e7f7;
  color:var(--purple);
  font-weight:800;
  font-size:18px;
}
.link-row small{
  display:block;
  color:var(--muted);
  font-size:10px;
  margin-bottom:2px;
}
.link-row strong{
  display:block;
  font-size:13px;
  font-weight:600;
}
.arrow{
  margin-left:auto;
  color:#a18aa9;
  font-size:25px;
}

.save-btn{
  position:relative;
  z-index:1;
  width:100%;
  margin-top:17px;
  padding:16px;
  border:0;
  border-radius:17px;
  background:linear-gradient(135deg,var(--purple),var(--purple2));
  color:#fff;
  font-family:inherit;
  font-size:14px;
  font-weight:700;
  cursor:pointer;
  box-shadow:0 13px 26px rgba(66,23,108,.22);
}
.save-btn span{font-size:19px;margin-right:5px}

footer{
  position:relative;
  z-index:1;
  text-align:center;
  padding-top:25px;
  color:#9b8fa2;
}
footer p{
  margin:0 0 5px;
  color:var(--purple);
  font-size:11px;
  font-weight:700;
  letter-spacing:2px;
}
footer span{font-size:9px}

@media(min-width:521px){
  .card{
    min-height:auto;
    margin:28px auto;
    border-radius:30px;
    box-shadow:0 25px 80px rgba(55,28,70,.13);
  }
}
