:root{
  --navy:#101927;
  --deep:#08111f;
  --blue:#086fd6;
  --green:#078640;
  --gold:#f4b321;
  --orange:#f26422;
  --red:#d92332;
  --ink:#101927;
  --muted:#5b6b82;
  --paper:#f6f9fd;
  --white:#ffffff;
  --line:#dbe5f2;
  --shadow:0 22px 55px rgba(16,25,39,.12);
  --radius:24px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Inter",system-ui,-apple-system,"Segoe UI",Arial,sans-serif;
  color:var(--ink);
  background:var(--paper);
  line-height:1.6;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{width:min(1180px,92%);margin:auto}
.skip{position:absolute;left:-999px;top:auto}
.skip:focus{left:20px;top:20px;background:#fff;padding:10px;z-index:999;border-radius:10px}

.site-header{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}
.nav{
  min-height:96px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}
.brand img{width:260px;height:auto}
.nav-links{display:flex;align-items:center;gap:22px;font-weight:800;font-size:.97rem}
.nav-links a:hover{color:var(--blue)}
.button,.nav-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:14px 22px;
  background:#0d4c91;
  color:#fff;
  font-weight:900;
  box-shadow:0 14px 30px rgba(13,76,145,.22);
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover,.nav-cta:hover{transform:translateY(-2px);box-shadow:0 18px 34px rgba(13,76,145,.28)}
.button.secondary{background:#fff;color:#0d4c91;border:1px solid var(--line);box-shadow:none}
.button.download{width:100%;margin-top:auto}

.hero{
  padding:70px 0 64px;
  background:
    radial-gradient(circle at 10% 28%,#d8ecff 0,transparent 32%),
    radial-gradient(circle at 92% 10%,#fff0c6 0,transparent 32%),
    linear-gradient(180deg,#fff,#eff6ff);
  overflow:hidden;
}
.hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1.04fr) minmax(360px,.72fr);
  align-items:center;
  gap:64px;
}
.eyebrow{
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--blue);
  font-weight:900;
  font-size:.78rem;
  margin:0 0 16px;
}
.hero h1,.page-hero h1,.section-title{
  font-family:"Cormorant Garamond",Georgia,"Times New Roman",serif;
  line-height:.98;
  letter-spacing:-.04em;
  font-weight:700;
}
.hero h1{
  font-size:clamp(3.75rem,5.9vw,6.15rem);
  max-width:900px;
  margin:0 0 24px;
}
.lead{font-size:1.18rem;color:var(--muted);max-width:700px}
.hero-copy .lead{max-width:780px}
.hero-actions,.cta-row{display:flex;gap:14px;flex-wrap:wrap;margin-top:28px}
.hero-card{
  background:white;
  border:1px solid var(--line);
  border-radius:34px;
  padding:52px 42px 44px;
  box-shadow:var(--shadow);
  text-align:center;
}
.hero-card img{width:430px;margin:0 auto 46px}
.hero-card p{border-top:1px solid var(--line);padding-top:22px;color:#0d4c91;font-weight:900;font-size:1.06rem;margin:0}

.section{padding:86px 0}
.section.white{background:#fff}
.section.dark{background:var(--navy);color:#fff}
.focus-section{background:#f4f8fd}
.participation-section{background:linear-gradient(180deg,#f6f9fd,#fff)}
.align-start{align-items:start}.align-center{align-items:center}
.section-title{font-size:clamp(2.65rem,4.8vw,4.85rem);margin:10px 0 30px}
.section.dark .lead,.section.dark p{color:#d5dfec}

.grid{display:grid;gap:22px}
.grid.two{grid-template-columns:repeat(2,minmax(0,1fr))}
.grid.three{grid-template-columns:repeat(3,minmax(0,1fr))}
.grid.four{grid-template-columns:repeat(4,minmax(0,1fr))}
.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:30px;
  box-shadow:0 16px 38px rgba(16,25,39,.07);
}
.card h3{font-size:1.3rem;line-height:1.22;margin:0 0 12px}
.card p{color:var(--muted);margin:0}
.dark .card{background:#202b3d;border-color:rgba(255,255,255,.16);box-shadow:none}
.dark .card p{color:#d5dfec}
.feature-card h3{font-size:1.65rem}

.color-card{color:#fff;position:relative;overflow:hidden;min-height:230px}
.color-card:after{content:"";position:absolute;width:118px;height:118px;border-radius:999px;background:rgba(255,255,255,.22);right:-20px;top:-20px}
.color-card h3,.color-card p{position:relative;z-index:1;color:#fff}
.blue{background:linear-gradient(135deg,#0878df,#064b9c)}
.green{background:linear-gradient(135deg,#078a42,#056735)}
.gold{background:linear-gradient(135deg,#ffc137,#e39b00)}
.orange{background:linear-gradient(135deg,#f36a24,#cf4a09)}
.red{background:linear-gradient(135deg,#e12a39,#b80f22)}
.sky{background:linear-gradient(135deg,#20a9f4,#0576d0)}
.slate{background:linear-gradient(135deg,#224e86,#142f5c)}
.lime{background:linear-gradient(135deg,#7fb23b,#f57d22)}

.resource-card{display:flex;flex-direction:column;gap:18px;min-height:330px}
.resource-meta{font-size:.9rem;font-weight:900;color:var(--blue);letter-spacing:.08em;text-transform:uppercase}
.badge{display:inline-block;border-radius:999px;background:#eef6ff;color:#086fd6;font-weight:900;padding:7px 12px;margin-bottom:14px;font-size:.8rem}
.pill-list{display:flex;gap:12px;flex-wrap:wrap}
.pill{padding:12px 16px;background:#fff;border:1px solid var(--line);border-radius:999px;font-weight:800}
.notice{padding:20px;border-left:5px solid var(--blue);background:#eef6ff;border-radius:14px;color:#31445e}
.small{font-size:.92rem;color:var(--muted)}

.page-hero{padding:80px 0;background:linear-gradient(180deg,#fff,#eef6ff);border-bottom:1px solid var(--line)}
.page-hero h1{font-size:clamp(3.2rem,7vw,6rem);margin:16px 0}
.form-box{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:34px;box-shadow:var(--shadow)}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.field{margin-bottom:16px}
.field label{display:block;font-weight:900;margin-bottom:7px}
.field input,.field textarea,.field select{width:100%;padding:14px;border:1px solid #cfdbea;border-radius:14px;font:inherit}
.field textarea{min-height:140px}
.advisor-placeholder{border:2px dashed #cbd7e6;background:#fbfdff;text-align:center}

.footer{background:var(--deep);color:#d9e4f1;padding:55px 0}
.footer-grid{display:grid;grid-template-columns:1.2fr .8fr .8fr;gap:30px}
.footer img{width:280px;margin-bottom:20px}
.footer a{display:block;margin:8px 0;color:#d9e4f1}
.footer .small{color:#aebed1}

@media(max-width:1100px){
  .grid.four{grid-template-columns:repeat(2,minmax(0,1fr))}
  .hero-grid{grid-template-columns:1fr;gap:44px}
  .hero-card{max-width:560px}
}
@media(max-width:950px){
  .grid.two,.grid.three,.footer-grid{grid-template-columns:1fr}
  .nav{align-items:flex-start;flex-direction:column;padding:18px 0}
  .brand img{width:230px}
  .nav-links{flex-wrap:wrap;gap:14px}
  .hero{padding:56px 0 50px}
  .hero-card{padding:32px}
  .hero-card img{width:min(100%,420px)}
  .section{padding:64px 0}
  .form-row{grid-template-columns:1fr}
}
@media(max-width:620px){
  .brand img{width:205px}
  .nav-links{font-size:.9rem}
  .grid.four{grid-template-columns:1fr}
  .hero h1{font-size:clamp(3rem,13vw,4.25rem);line-height:1;letter-spacing:-.035em}
  .lead{font-size:1.06rem}
  .section-title{font-size:clamp(2.45rem,10vw,3.5rem);line-height:1}
  .page-hero h1{font-size:3rem}
  .button,.nav-cta{width:100%}
  .hero-actions .button,.cta-row .button{width:100%}
  .card{padding:24px}
  .hero-card p{font-size:.98rem}
}
