:root{
  --ayge-blue:#1b2f8f;
  --ayge-teal:#66c7c0;
  --ayge-gold:#f4c542;
  --ayge-copper:#9b6a55;
  --ayge-green:#123d36;
  --ayge-orange:#cf7e42;
  --dark:#10213a;
  --muted:#61706f;
  --soft:#f6f3ec;
  --white:#fff;
  --line:#e8dfd2;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  background:var(--soft);
  color:#1e2d2a;
  line-height:1.6;
}
a{color:inherit;text-decoration:none}
.topnav{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.96);
  border-bottom:1px solid rgba(232,223,210,.9);
  backdrop-filter:blur(10px);
}
.nav-inner{
  max-width:1180px;
  margin:0 auto;
  padding:12px 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:220px;
}
.brand img{
  width:116px;
  height:auto;
  display:block;
}
.brand-name{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:1.4px;
  color:var(--ayge-green);
  font-weight:700;
}
.nav-links{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.nav-links a{
  font-size:13px;
  font-weight:700;
  padding:8px 10px;
  border-radius:999px;
  color:#29423e;
}
.nav-links a:hover,
.nav-links a.active{
  background:#f0ebe4;
  color:var(--ayge-orange);
}
.page-hero{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 15% 10%,rgba(102,199,192,.34),transparent 30%),
    radial-gradient(circle at 85% 15%,rgba(244,197,66,.28),transparent 27%),
    linear-gradient(135deg,#fff 0%,#f4f7f8 44%,#eef4ee 100%);
}
.page-hero-inner{
  max-width:1180px;
  margin:0 auto;
  padding:62px 22px 56px;
}
.page-kicker{
  display:inline-flex;
  background:#fff;
  border:1px solid var(--line);
  color:var(--ayge-green);
  padding:7px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1px;
}
.page-hero h1{
  margin:18px 0 12px;
  color:var(--ayge-blue);
  font-size:clamp(38px,5vw,62px);
  line-height:1;
  letter-spacing:-1.5px;
}
.page-hero p{
  max-width:820px;
  margin:0;
  color:#42524e;
  font-size:18px;
}
.page-wrap{
  max-width:1180px;
  margin:0 auto;
  padding:54px 22px 76px;
}
.member-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
}
.member-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 12px 32px rgba(23,63,95,.07);
}
.member-card img{
  width:100%;
  height:250px;
  object-fit:cover;
  display:block;
}
.member-card-body{padding:22px}
.member-card h2{
  margin:12px 0 8px;
  color:var(--ayge-green);
  font-size:25px;
  line-height:1.12;
}
.member-card p{margin:7px 0;color:#53625f}
.tag{
  display:inline-block;
  background:#e8f5f3;
  color:#245c55;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:12px 17px;
  background:var(--ayge-orange);
  color:#fff;
  font-weight:700;
  margin-top:12px;
  box-shadow:0 10px 24px rgba(207,126,66,.20);
}
.btn:hover{background:#b86833}
.notice{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:30px;
  box-shadow:0 12px 32px rgba(23,63,95,.06);
}
.notice h2{margin-top:0;color:var(--ayge-green)}
.notice.error{
  background:#fff5f3;
  border-color:#e6aaa5;
  color:#7b1d17;
}
.site-footer{
  background:var(--dark);
  color:rgba(255,255,255,.84);
  padding:44px 22px 28px;
}
.footer-inner{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr;
  gap:30px;
}
.footer-logo{
  width:130px;
  background:#fff;
  border-radius:12px;
  padding:8px;
  margin-bottom:12px;
}
.site-footer h3{color:#fff;margin:0 0 10px}
.site-footer a{display:block;margin:5px 0;color:rgba(255,255,255,.82)}
.site-footer a:hover{color:var(--ayge-gold)}
.footer-bottom{
  max-width:1180px;
  margin:28px auto 0;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.13);
  text-align:center;
  font-size:13px;
}
@media(max-width:900px){
  .member-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .footer-inner{grid-template-columns:1fr 1fr}
  .nav-inner{align-items:flex-start;flex-direction:column}
  .nav-links{justify-content:flex-start}
}
@media(max-width:620px){
  .member-grid,.footer-inner{grid-template-columns:1fr}
  .brand img{width:94px}
  .brand-name{display:none}
  .nav-links a{padding:7px 8px;font-size:12px}
  .page-hero-inner{padding:46px 18px}
  .page-wrap{padding:40px 18px 60px}
}
