:root{
  --blue:#1559a8;
  --blue-dark:#114581;
  --olive:#6a7d33;
  --olive-dark:#4d6124;
  --sand:#f4ecde;
  --paper:#fffdfa;
  --line:#ded4c2;
  --ink:#1f2328;
  --muted:#66706a;
  --shadow:0 24px 60px rgba(22, 28, 38, .12);
  --radius:28px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--ink);
  background:
    radial-gradient(circle at top left, rgba(21,89,168,.14), transparent 34%),
    radial-gradient(circle at bottom right, rgba(106,125,51,.12), transparent 30%),
    linear-gradient(180deg, #f6efe2 0%, #f9f5ed 100%);
  font-family: Arial, Helvetica, sans-serif;
  line-height:1.55;
}
img{max-width:100%;display:block}
a{text-decoration:none}
.container{width:min(1180px, calc(100% - 32px)); margin:0 auto}
.narrow{width:min(860px, calc(100% - 32px))}
.center{text-align:center}
.section{padding:86px 0}
.muted-section{background:rgba(255,255,255,.45); border-top:1px solid rgba(181,161,126,.18); border-bottom:1px solid rgba(181,161,126,.18)}
.eyebrow{
  display:inline-block;
  text-transform:uppercase;
  letter-spacing:.22em;
  font-size:12px;
  font-weight:700;
  color:var(--blue);
  margin-bottom:14px;
}
h1,h2,h3{margin:0 0 14px; line-height:1.14}
h1{font-size:clamp(34px, 5vw, 62px)}
h2{font-size:clamp(30px, 4vw, 46px)}
h3{font-size:clamp(22px, 2.6vw, 28px)}
.lead{font-size:clamp(18px, 2.2vw, 22px); color:var(--muted); max-width:720px}
.hero{padding:38px 0 56px}
.hero-grid{
  display:grid;
  grid-template-columns: minmax(0,1.15fr) minmax(300px,.85fr);
  gap:42px;
  align-items:center;
}
.hero-copy{
  background:rgba(255,253,250,.78);
  backdrop-filter: blur(8px);
  border:1px solid rgba(181,161,126,.22);
  border-radius:var(--radius);
  padding:34px;
  box-shadow:var(--shadow);
}
.event-card{
  margin-top:24px;
  display:grid;
  gap:14px;
  grid-template-columns:repeat(2,minmax(0,1fr));
}
.event-card > div{
  background:linear-gradient(180deg, rgba(21,89,168,.06), rgba(255,255,255,.88));
  border:1px solid rgba(21,89,168,.12);
  border-radius:18px;
  padding:16px 18px;
}
.event-card strong{
  display:block;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:6px;
  color:var(--blue-dark);
}
.event-card span{font-size:17px}
.cta-row{display:flex; gap:14px; flex-wrap:wrap; margin-top:26px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:14px 20px; border-radius:999px; font-weight:700; transition:.2s ease;
}
.btn-primary{background:var(--blue); color:#fff; box-shadow:0 14px 28px rgba(21,89,168,.22)}
.btn-primary:hover{transform:translateY(-1px); background:var(--blue-dark)}
.btn-secondary{background:rgba(255,255,255,.85); color:var(--ink); border:1px solid rgba(21,89,168,.15)}
.btn-secondary:hover{transform:translateY(-1px); border-color:rgba(21,89,168,.35)}
.poster-image-frame{
  background:var(--blue);
  border-radius:24px;
  padding:16px;
  box-shadow:0 28px 54px rgba(17, 47, 91, .24);
}
.poster-image-frame img{
  width:100%;
  height:auto;
  border-radius:14px;
}
.host-list{
  display:grid; gap:12px; margin-top:26px;
}
.host-item{
  padding:15px 18px;
  border-radius:16px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(181,161,126,.22);
  box-shadow:0 10px 24px rgba(33,36,27,.06);
  font-weight:700;
}
.section-head{margin-bottom:30px}
.timeline{display:grid; gap:18px}
.timeline-item{
  display:grid;
  grid-template-columns:220px 1fr;
  gap:18px;
  align-items:stretch;
}
.timeline-time{
  background:#f1e6d3;
  border:1px solid rgba(181,161,126,.24);
  border-radius:20px;
  padding:20px 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  font-weight:800;
  color:#37352d;
  box-shadow:0 10px 24px rgba(33,36,27,.06);
}
.timeline-body{
  background:rgba(255,255,255,.8);
  border:1px solid rgba(181,161,126,.22);
  border-radius:22px;
  padding:22px 24px;
  box-shadow:0 14px 30px rgba(33,36,27,.06);
}
.timeline-body p{margin:0; color:var(--muted); font-size:18px}
.closing-note{
  text-align:center;
  margin:34px 0 0;
  font-weight:800;
  font-size:24px;
  color:var(--olive-dark);
}
.footer{padding-top:46px}
.logos{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:18px 26px;
  flex-wrap:wrap;
}
.logo-box{
  height:92px;
  min-width:150px;
  padding:12px 18px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.logos-uniform .logo-box{background:transparent; border:none; box-shadow:none}
.logos-uniform img{
  height:52px;
  width:auto;
  max-width:180px;
  object-fit:contain;
  filter:grayscale(1) brightness(.32) contrast(1.05);
}
.funding-logo{
  display:flex;
  justify-content:center;
  margin-top:18px;
}
.funding-logo img{height:60px; width:auto}
@media (max-width:960px){
  .hero-grid{grid-template-columns:1fr}
  .hero-visual{order:-1}
}
@media (max-width:780px){
  .section{padding:64px 0}
  .hero{padding-top:20px}
  .hero-copy{padding:24px}
  .event-card{grid-template-columns:1fr}
  .timeline-item{grid-template-columns:1fr}
  .timeline-time{justify-content:flex-start; font-size:22px}
  .timeline-body p{font-size:16px}
  .logos-uniform img{height:44px; max-width:160px}
}
