:root{
  --ink:#17232b;
  --muted:#66757d;
  --line:#dce5e8;
  --bg:#f7faf9;
  --card:#fff;
  --accent:#287d72;
  --accent-dark:#1f625a;
  --soft:#e8f3f0;
  --warm:#f5efe5;
  --danger:#a33a3a;
  --shadow:0 18px 55px rgba(23,35,43,.09);
  --radius:22px
}

*{
  box-sizing:border-box
}

html{
  scroll-behavior:smooth
}

body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:Arial,sans-serif;
  line-height:1.55
}

a{
  text-decoration:none;
  color:inherit
}

.container{
  width:min(1120px,calc(100% - 36px));
  margin:auto
}

.nav{
  height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between
}

.logo{
  font-size:25px;
  font-weight:800;
  letter-spacing:-1px
}

.logo span{
  color:var(--accent)
}

.navlinks{
  display:flex;
  align-items:center;
  gap:20px;
  color:var(--muted);
  font-size:14px
}

.navlinks a:hover{
  color:var(--accent)
}

.btn{
  border:0;
  border-radius:12px;
  padding:13px 18px;
  font:inherit;
  font-weight:700;
  cursor:pointer;
  display:inline-flex;
  justify-content:center;
  align-items:center
}

.primary{
  background:var(--accent);
  color:white
}

.primary:hover{
  background:var(--accent-dark)
}

.secondary{
  background:#fff;
  border:1px solid var(--line)
}

.hero{
  padding:70px 0 90px;
  display:grid;
  grid-template-columns:1fr .85fr;
  gap:65px;
  align-items:center
}

.eyebrow{
  display:inline-block;
  padding:7px 12px;
  border-radius:999px;
  background:var(--soft);
  color:var(--accent-dark);
  font-size:12px;
  font-weight:800;
  margin-bottom:16px
}

h1,h2,h3{
  line-height:1.08;
  letter-spacing:-1.2px
}

h1{
  font-size:clamp(42px,6vw,70px);
  margin:0;
  max-width:720px
}

h1 em{
  color:var(--accent);
  font-style:normal
}

.hero p{
  font-size:18px;
  color:var(--muted);
  max-width:610px
}

.actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap
}

.mock{
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  padding:22px;
  box-shadow:var(--shadow)
}

.search{
  padding:15px;
  background:#f3f7f6;
  border-radius:15px;
  color:#7b898f
}

.mini-profile{
  display:flex;
  align-items:center;
  gap:13px;
  padding:17px 0;
  border-bottom:1px solid var(--line)
}

.avatar{
  width:46px;
  height:46px;
  border-radius:50%;
  background:var(--warm);
  display:grid;
  place-items:center;
  font-weight:800
}

.mini-profile span{
  display:block;
  color:var(--muted);
  font-size:13px
}

.tag{
  margin-left:auto;
  background:var(--soft);
  color:var(--accent-dark);
  padding:5px 9px;
  border-radius:99px;
  font-size:11px;
  font-weight:700
}

.section{
  padding:78px 0
}

.section.alt{
  background:#fff
}

.section-head{
  max-width:700px;
  margin-bottom:35px
}

.section-head p{
  color:var(--muted)
}

.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px
}

.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:25px
}

.card p{
  color:var(--muted)
}

.form-wrap{
  max-width:560px;
  margin:60px auto
}

.form-card,
.panel{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:28px;
  box-shadow:var(--shadow)
}

.field{
  margin-bottom:16px
}

.field label{
  display:block;
  font-size:13px;
  font-weight:700;
  margin-bottom:6px
}

.field input,
.field select,
.field textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:11px;
  padding:12px 13px;
  font:inherit;
  background:#fff
}

.field textarea{
  min-height:110px;
  resize:vertical
}

.check{
  display:flex;
  gap:9px;
  align-items:flex-start;
  font-size:12px;
  color:var(--muted);
  margin:14px 0
}

.full{
  width:100%
}

.message{
  margin:14px 0;
  padding:11px 13px;
  border-radius:10px;
  font-size:13px;
  display:none
}

.message.success,
.message.error{
  display:block
}

.message.success{
  background:var(--soft);
  color:var(--accent-dark)
}

.message.error{
  background:#faeeee;
  color:var(--danger)
}

.small{
  font-size:13px;
  color:var(--muted)
}

.dashboard{
  padding:45px 0 80px
}

.dash-head{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:center;
  margin-bottom:25px
}

.dash-grid{
  display:grid;
  grid-template-columns:240px 1fr;
  gap:20px
}

.side{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:12px;
  height:max-content
}

.side a{
  display:block;
  padding:11px 12px;
  border-radius:10px;
  color:var(--muted);
  font-size:14px
}

.side a.active,
.side a:hover{
  background:var(--soft);
  color:var(--accent-dark);
  font-weight:700
}

.profile-form{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:15px
}

.span-2{
  grid-column:span 2
}

.directory{
  padding:45px 0 80px
}

.filters{
  display:grid;
  grid-template-columns:1fr 1fr 1fr auto;
  gap:10px;
  margin:25px 0
}

.filters input,
.filters select{
  border:1px solid var(--line);
  border-radius:11px;
  padding:12px;
  font:inherit;
  background:#fff
}

.results{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px
}

.pro-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:22px
}

.pro-top{
  display:flex;
  gap:14px;
  align-items:center
}

.pro-card h3{
  margin:0
}

.pro-card p{
  color:var(--muted);
  font-size:14px
}

.chips{
  display:flex;
  gap:6px;
  flex-wrap:wrap;
  margin:14px 0
}

.chip{
  background:var(--soft);
  color:var(--accent-dark);
  padding:5px 8px;
  border-radius:99px;
  font-size:11px;
  font-weight:700
}

.empty{
  text-align:center;
  padding:50px;
  color:var(--muted)
}

.footer{
  padding:28px 0;
  color:var(--muted);
  font-size:13px;
  border-top:1px solid var(--line)
}

@media(max-width:800px){

  .navlinks{
    display:none
  }

  .hero,
  .dash-grid{
    grid-template-columns:1fr
  }

  .cards,
  .results{
    grid-template-columns:1fr
  }

  .filters{
    grid-template-columns:1fr
  }

  .profile-form{
    grid-template-columns:1fr
  }

  .span-2{
    grid-column:auto
  }

  .dash-head{
    align-items:flex-start;
    flex-direction:column
  }
}
