/* =========================================================
   ICAD — DESIGN SYSTEM
   Deep Atlantic blue + laurel gold, glass surfaces, Fraunces/Inter
========================================================= */
:root{
  --bg:#050F1C;
  --bg-alt:#0A1D33;
  --bg-elevated:#0F2A48;
  --bg-elevated-2:#123457;
  --blue-900:#071528;
  --blue-800:#0A1F3B;
  --blue-700:#12417A;
  --blue-600:#1668B3;
  --blue-500:#2E8FDD;
  --blue-400:#4FB1F0;
  --cyan-300:#7ED1F5;
  --white:#F7FAFD;
  --ink:#F7FAFD;
  --muted:#9BB0C7;
  --muted-2:#7391AC;
  --border:rgba(126,209,245,0.14);
  --border-strong:rgba(126,209,245,0.28);
  --glass-bg:rgba(15,42,72,0.46);
  --glass-bg-2:rgba(10,29,51,0.55);
  --glass-border:rgba(255,255,255,0.10);
  --glass-highlight:rgba(255,255,255,0.06);
  --gold:#D9B36B;
  --gold-2:#F0D9A6;
  --gold-soft:rgba(217,179,107,0.14);
  --green-accent:#3FAE72;
  --shadow: 0 24px 70px rgba(2,10,20,0.5);
  --shadow-lg: 0 40px 110px rgba(2,10,20,0.55);
  --radius-sm:8px;
  --radius:16px;
  --radius-lg:28px;
  --radius-xl:36px;
  --font-display:'Fraunces', serif;
  --font-body:'Inter', sans-serif;
  --font-mono:'IBM Plex Mono', monospace;
  --maxw:1280px;
  --nav-h:82px;
  --blur: blur(18px) saturate(160%);
}

*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  background:
    radial-gradient(ellipse 1200px 700px at 85% -10%, rgba(46,143,221,0.16), transparent 60%),
    radial-gradient(ellipse 900px 700px at -10% 40%, rgba(126,209,245,0.08), transparent 60%),
    var(--bg);
  color:var(--ink);
  font-family:var(--font-body);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%; display:block;}
a{color:inherit; text-decoration:none;}
ul{list-style:none;}
button{font-family:inherit; cursor:pointer;}
input, textarea, select{font-family:inherit;}

.wrap{max-width:var(--maxw); margin:0 auto; padding:0 32px;}
@media(max-width:760px){ .wrap{padding:0 20px;} }

.eyebrow{
  font-family:var(--font-mono);
  font-size:11.5px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--blue-400);
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.eyebrow::before{ content:""; width:16px; height:1px; background:var(--blue-400); }
.eyebrow.gold{ color:var(--gold); }
.eyebrow.gold::before{ background:var(--gold); }

h1,h2,h3,h4{font-family:var(--font-display); font-weight:600; letter-spacing:-0.01em; color:var(--ink);}
.section-title{ font-size:clamp(28px,4vw,44px); font-weight:600; line-height:1.08; max-width:820px; }
.section-sub{color:var(--muted); font-size:16.5px; max-width:640px; margin-top:14px;}
.section-head{margin-bottom:52px;}
section{position:relative;}
.pad{padding:104px 0;}
@media(max-width:760px){ .pad{padding:68px 0;} }

/* reveal on scroll */
.reveal{opacity:0; transform:translateY(26px); transition:opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);}
.reveal.in{opacity:1; transform:translateY(0);}
@media (prefers-reduced-motion: reduce){
  .reveal{opacity:1; transform:none; transition:none;}
  html{scroll-behavior:auto;}
  *{animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important;}
}

/* =========================================================
   GLASS COMPONENTS (signature system)
========================================================= */
.glass{
  background:var(--glass-bg);
  border:1px solid var(--glass-border);
  border-radius:var(--radius-lg);
  backdrop-filter:var(--blur);
  -webkit-backdrop-filter:var(--blur);
  box-shadow:var(--shadow), inset 0 1px 0 rgba(255,255,255,0.06);
  position:relative;
}
.glass::before{
  content:""; position:absolute; inset:0; border-radius:inherit; pointer-events:none;
  background:linear-gradient(160deg, rgba(255,255,255,0.08), transparent 40%);
}
.glass-panel{ padding:44px; }
@media(max-width:640px){ .glass-panel{padding:26px;} }

/* Africa silhouette watermark motif */
.africa-mark{
  position:absolute; opacity:.06; pointer-events:none;
  background:radial-gradient(circle at 30% 30%, var(--blue-400), transparent 60%);
  -webkit-mask: url('africa-mask.svg') no-repeat center/contain;
  mask: url('africa-mask.svg') no-repeat center/contain;
}

/* =========================================================
   ANNOUNCEMENT BAR
========================================================= */
.announce{ background:linear-gradient(90deg, var(--blue-700), var(--blue-600)); color:#fff; font-size:13.5px; position:relative; z-index:60; }
.announce .wrap{ display:flex; align-items:center; justify-content:center; gap:10px; padding:10px 32px; text-align:center; flex-wrap:wrap; }
.announce b{font-family:var(--font-mono); letter-spacing:.08em; font-size:11px; background:rgba(255,255,255,.16); padding:3px 8px; border-radius:20px;}
.announce a{border-bottom:1px solid rgba(255,255,255,.55); font-weight:600; white-space:nowrap;}
.announce .close-x{position:absolute; right:14px; top:50%; transform:translateY(-50%); opacity:.7; background:none; border:0; color:#fff; font-size:16px;}
@media(max-width:640px){ .announce .close-x{display:none;} }

/* =========================================================
   NAVBAR (glass)
========================================================= */
header.nav{
  position:sticky; top:0; z-index:80; height:var(--nav-h);
  display:flex; align-items:center;
  background:rgba(6,17,30,0.46);
  backdrop-filter:var(--blur); -webkit-backdrop-filter:var(--blur);
  border-bottom:1px solid var(--glass-border);
  transition:background .35s ease, box-shadow .35s ease;
}
header.nav.scrolled{ background:rgba(5,13,24,0.82); box-shadow:0 16px 40px rgba(2,8,16,0.35); }
.nav-inner{display:flex; align-items:center; justify-content:space-between; width:100%;}
.brand{display:flex; align-items:center; gap:12px;}
.brand img{width:44px; height:44px; border-radius:50%; box-shadow:0 0 0 1px var(--glass-border), 0 6px 18px rgba(0,0,0,.35);}
.brand .name{display:flex; flex-direction:column; line-height:1.1;}
.brand .name strong{font-family:var(--font-display); font-size:19px; letter-spacing:.01em;}
.brand .name span{font-family:var(--font-mono); font-size:9.5px; letter-spacing:.12em; color:var(--muted); text-transform:uppercase;}

.nav-links{display:flex; align-items:center; gap:2px;}
.nav-links > li{position:relative;}
.nav-links a.toplink{
  font-size:14px; font-weight:500; color:var(--muted); display:inline-flex; align-items:center; gap:5px;
  padding:10px 14px; border-radius:20px; position:relative; transition:color .25s ease, background .25s ease;
}
.nav-links a.toplink:hover, .nav-links li.has-drop:hover a.toplink{color:var(--ink); background:rgba(255,255,255,0.04);}
.nav-links a.toplink.active{color:var(--ink);}
.nav-links a.toplink.active::after{
  content:""; position:absolute; left:14px; right:14px; bottom:3px; height:2px;
  background:linear-gradient(90deg,var(--blue-400),var(--cyan-300)); border-radius:2px;
}
.nav-links .caret{width:9px; height:9px; margin-top:1px; opacity:.7;}
.navdrop{
  position:absolute; top:calc(100% + 10px); left:50%; transform:translateX(-50%) translateY(6px);
  min-width:270px; padding:10px; border-radius:16px;
  background:var(--glass-bg-2); border:1px solid var(--glass-border);
  backdrop-filter:var(--blur); -webkit-backdrop-filter:var(--blur);
  box-shadow:var(--shadow-lg);
  opacity:0; pointer-events:none; transition:opacity .22s ease, transform .22s ease;
}
li.has-drop:hover .navdrop, li.has-drop:focus-within .navdrop{ opacity:1; pointer-events:auto; transform:translateX(-50%) translateY(0); }
.navdrop a{ display:flex; flex-direction:column; gap:2px; padding:10px 14px; border-radius:10px; font-size:13.5px; color:var(--muted); }
.navdrop a:hover{ background:rgba(255,255,255,0.06); color:var(--ink); }
.navdrop a small{ font-size:11px; color:var(--muted-2); font-weight:400; }

.nav-actions{display:flex; align-items:center; gap:10px;}
.btn{
  display:inline-flex; align-items:center; gap:8px; padding:12px 22px; border-radius:30px;
  font-size:13.5px; font-weight:600; letter-spacing:.01em; border:1px solid transparent; white-space:nowrap;
  transition:transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}
.btn-primary{ background:linear-gradient(120deg, var(--blue-500), var(--cyan-300)); color:#04101E; box-shadow:0 10px 26px rgba(46,143,221,0.35); }
.btn-primary:hover{transform:translateY(-2px); box-shadow:0 16px 36px rgba(46,143,221,0.45);}
.btn-gold{ background:linear-gradient(120deg, var(--gold), var(--gold-2)); color:#241a06; box-shadow:0 10px 26px rgba(217,179,107,0.3); }
.btn-gold:hover{transform:translateY(-2px);}
.btn-ghost{ background:rgba(255,255,255,0.03); border:1px solid var(--glass-border); color:var(--ink); backdrop-filter:blur(6px); }
.btn-ghost:hover{background:rgba(255,255,255,0.07); border-color:var(--border-strong);}
.btn-sm{padding:9px 17px; font-size:12.5px;}

.hamburger{display:none; width:40px; height:40px; border-radius:10px; border:1px solid var(--glass-border); background:rgba(255,255,255,0.03); align-items:center; justify-content:center; color:var(--ink);}
@media(max-width:1080px){
  .nav-links{display:none;}
  .nav-actions .btn-primary{display:none;}
  .hamburger{display:flex;}
}

/* mobile menu */
.mobile-menu{ position:fixed; inset:0; z-index:90; background:rgba(5,12,22,0.98); backdrop-filter:var(--blur); transform:translateX(100%); transition:transform .45s cubic-bezier(.2,.8,.2,1); display:flex; flex-direction:column; }
.mobile-menu.open{transform:translateX(0);}
.mobile-menu .mm-top{display:flex; align-items:center; justify-content:space-between; padding:20px 24px; height:var(--nav-h); border-bottom:1px solid var(--glass-border);}
.mobile-menu nav{padding:16px 24px; display:flex; flex-direction:column; gap:0; overflow:auto; flex:1;}
.mobile-menu .mm-item{border-bottom:1px solid var(--glass-border);}
.mobile-menu .mm-item > a{font-family:var(--font-display); font-size:23px; padding:16px 4px; display:block; color:var(--ink);}
.mobile-menu .mm-sub{ display:flex; flex-direction:column; gap:2px; padding:0 4px 14px 10px; }
.mobile-menu .mm-sub a{font-family:var(--font-body); font-size:14px; color:var(--muted); padding:7px 0;}
.mobile-menu .mm-cta{padding:24px; display:flex; gap:12px; flex-wrap:wrap;}
.icon-btn{
  width:40px; height:40px; border-radius:50%; border:1px solid var(--glass-border);
  background:rgba(255,255,255,0.03); color:var(--ink); display:flex; align-items:center; justify-content:center;
  transition:border-color .25s ease, background .25s ease, transform .2s ease;
}
.icon-btn:hover{border-color:var(--border-strong); background:rgba(255,255,255,0.07); transform:translateY(-1px);}
.icon-btn svg{width:17px; height:17px;}

/* =========================================================
   PAGE HERO (interior pages)
========================================================= */
.page-hero{
  padding:64px 0 70px; position:relative; overflow:hidden;
  background:
    radial-gradient(ellipse 900px 420px at 88% -10%, rgba(46,143,221,0.22), transparent 60%),
    radial-gradient(ellipse 700px 420px at 5% 100%, rgba(217,179,107,0.08), transparent 60%),
    var(--bg);
  border-bottom:1px solid var(--border);
}
.page-hero .crumb{ font-family:var(--font-mono); font-size:11.5px; color:var(--muted-2); letter-spacing:.06em; display:flex; gap:8px; align-items:center; margin-bottom:18px; }
.page-hero .crumb a{color:var(--blue-400);}
.page-hero h1{ font-size:clamp(32px,4.6vw,54px); line-height:1.06; max-width:900px; margin-top:16px; }
.page-hero p.lead{ font-size:17px; color:var(--muted); max-width:640px; margin-top:18px; }
.page-hero .hero-tags{display:flex; gap:10px; flex-wrap:wrap; margin-top:26px;}

/* =========================================================
   FULL HOMEPAGE HERO
========================================================= */
.hero{ min-height:calc(100vh - var(--nav-h)); display:flex; align-items:center; position:relative; padding:70px 0 60px; overflow:hidden; }
.hero-grid{ position:absolute; inset:0; opacity:.3; background-image:linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px); background-size:64px 64px; mask-image:radial-gradient(ellipse 900px 600px at 70% 20%, black, transparent 70%); }
.hero .africa-mark{ width:660px; height:780px; right:-140px; top:-50px; opacity:.07; }
.hero-inner{position:relative; z-index:2; display:grid; grid-template-columns:1.1fr .9fr; gap:54px; align-items:center;}
@media(max-width:980px){ .hero-inner{grid-template-columns:1fr;} }
.hero h1{ font-size:clamp(38px,5.6vw,70px); line-height:1.02; font-weight:600; letter-spacing:-0.015em; margin:22px 0 22px; }
.hero h1 em{ font-style:normal; background:linear-gradient(120deg,var(--blue-400),var(--cyan-300)); -webkit-background-clip:text; background-clip:text; color:transparent; }
.hero p.lead{font-size:18px; color:var(--muted); max-width:540px;}
.hero-ctas{display:flex; gap:14px; margin-top:34px; flex-wrap:wrap;}
.hero-stats{display:flex; gap:0; margin-top:48px; flex-wrap:wrap;}
.hero-stats .stat{padding:0 26px 0 0; margin-right:26px; border-right:1px solid var(--border);}
.hero-stats .stat:last-child{border-right:0;}
.hero-stats .stat b{font-family:var(--font-display); font-size:26px; display:block;}
.hero-stats .stat span{font-family:var(--font-mono); font-size:10.5px; letter-spacing:.08em; text-transform:uppercase; color:var(--muted-2);}

/* hero glass visual: orbit + illustration */
.orbit-wrap{position:relative; aspect-ratio:1/1; display:flex; align-items:center; justify-content:center;}
.orbit-ring{position:absolute; border-radius:50%; border:1px solid var(--border);}
.orbit-ring.r1{inset:0;}
.orbit-ring.r2{inset:11%; border-style:dashed;}
.orbit-ring.r3{inset:23%;}
.orbit-core{
  width:56%; aspect-ratio:1/1; border-radius:50%;
  background:var(--glass-bg); backdrop-filter:var(--blur); -webkit-backdrop-filter:var(--blur);
  border:1px solid var(--glass-border);
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 0 0 1px var(--border-strong), 0 40px 90px rgba(22,104,179,.32), inset 0 0 70px rgba(126,209,245,.14);
  position:relative;
}
.orbit-core img{width:74%; aspect-ratio:1/1; object-fit:cover; border-radius:50%; opacity:.98; filter:drop-shadow(0 10px 22px rgba(0,0,0,.4));}
.orbit-spin{animation:spin 42s linear infinite;}
.orbit-spin-rev{animation:spin 58s linear infinite reverse;}
@keyframes spin{ to{ transform:rotate(360deg); } }
.orbit-tag{
  position:absolute; background:var(--glass-bg-2); border:1px solid var(--glass-border);
  backdrop-filter:var(--blur);
  border-radius:30px; padding:8px 14px; font-size:11.5px; font-family:var(--font-mono);
  color:var(--ink); display:flex; align-items:center; gap:6px; box-shadow:var(--shadow); white-space:nowrap;
}
.orbit-tag .pulse{width:6px; height:6px; border-radius:50%; background:#5CD98A; box-shadow:0 0 8px #5CD98A;}
@media(max-width:980px){ .orbit-wrap{max-width:360px; margin:0 auto;} }

.scroll-cue{ margin-top:60px; display:flex; align-items:center; gap:10px; font-family:var(--font-mono); font-size:11px; letter-spacing:.14em; color:var(--muted-2); }
.scroll-cue .dot{ width:22px; height:34px; border:1.5px solid var(--border-strong); border-radius:20px; position:relative; }
.scroll-cue .dot::after{ content:""; position:absolute; top:6px; left:50%; transform:translateX(-50%); width:3px; height:6px; border-radius:2px; background:var(--blue-400); animation:scrollcue 1.8s infinite ease-in-out; }
@keyframes scrollcue{0%{opacity:1; top:6px;} 60%{opacity:0; top:18px;} 100%{opacity:0; top:18px;}}

/* =========================================================
   SHARED CARD GRIDS
========================================================= */
.pillars{display:grid; grid-template-columns:repeat(3,1fr); gap:16px;}
@media(max-width:640px){ .pillars{grid-template-columns:repeat(2,1fr);} }
.pillar{ background:var(--glass-bg); border:1px solid var(--glass-border); backdrop-filter:var(--blur); border-radius:var(--radius); padding:24px 20px; text-align:left; transition:transform .3s ease, border-color .3s ease; }
.pillar:hover{transform:translateY(-4px); border-color:var(--border-strong);}
.pillar svg{width:22px; height:22px; stroke:var(--blue-400); margin-bottom:14px;}
.pillar h5{font-size:14.5px; font-weight:700; font-family:var(--font-body);}
.pillar p{font-size:12.5px; color:var(--muted-2); margin-top:6px; line-height:1.5;}

.areas-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--glass-border); border:1px solid var(--glass-border); border-radius:var(--radius-lg); overflow:hidden;}
@media(max-width:900px){ .areas-grid{grid-template-columns:repeat(2,1fr);} }
@media(max-width:600px){ .areas-grid{grid-template-columns:1fr;} }
.area-card{ background:var(--bg-alt); padding:34px 26px; position:relative; overflow:hidden; transition:background .3s ease; min-height:230px; display:flex; flex-direction:column; justify-content:space-between; }
.area-card:hover{background:var(--bg-elevated);}
.area-card .num{font-family:var(--font-mono); font-size:11px; color:var(--muted-2);}
.area-card h4{font-size:19px; margin-top:38px; font-weight:600;}
.area-card p{font-size:13.5px; color:var(--muted); margin-top:10px;}
.area-card .arrow{ position:absolute; right:22px; top:30px; width:34px; height:34px; border-radius:50%; border:1px solid var(--border-strong); display:flex; align-items:center; justify-content:center; transition:transform .3s ease, background .3s ease; }
.area-card:hover .arrow{transform:rotate(45deg); background:var(--blue-600); border-color:var(--blue-600);}
.area-card .arrow svg{width:14px; height:14px; stroke:var(--ink);}
.area-card a.stretch{position:absolute; inset:0;}

/* timeline */
.timeline{position:relative; padding-left:34px; margin-top:10px;}
.timeline::before{content:""; position:absolute; left:6px; top:6px; bottom:6px; width:1px; background:linear-gradient(var(--blue-400), transparent 95%); opacity:.5;}
.tl-item{position:relative; padding-bottom:30px;}
.tl-item:last-child{padding-bottom:0;}
.tl-item::before{ content:""; position:absolute; left:-34px; top:4px; width:11px; height:11px; border-radius:50%; background:var(--bg); border:2px solid var(--blue-400); }
.tl-item .time{font-family:var(--font-mono); font-size:11.5px; color:var(--blue-400); letter-spacing:.05em;}
.tl-item h5{font-size:15.5px; margin-top:5px; font-weight:600;}
.tl-item p{font-size:13px; color:var(--muted-2); margin-top:3px;}
.tl-item .dur{font-family:var(--font-mono); font-size:10.5px; color:var(--muted-2); margin-left:8px;}

/* event style */
.event-hero{ border-radius:var(--radius-lg); overflow:hidden; border:1px solid var(--glass-border); background:var(--glass-bg); backdrop-filter:var(--blur); padding:52px 44px; position:relative; }
@media(max-width:640px){ .event-hero{padding:34px 22px;} }
.event-hero h3{font-size:clamp(24px,3.4vw,38px); max-width:800px; line-height:1.15;}
.event-meta-row{display:flex; gap:28px; flex-wrap:wrap; margin-top:26px;}
.event-meta-row .m{display:flex; align-items:center; gap:10px; font-size:13.5px; color:var(--muted);}
.event-meta-row svg{width:17px; height:17px; stroke:var(--blue-400); flex-shrink:0;}
.event-tabs{display:flex; gap:6px; margin:44px 0 28px; flex-wrap:wrap; border-bottom:1px solid var(--border); padding-bottom:0;}
.event-tab{ padding:11px 4px; margin-right:22px; font-size:13.5px; font-weight:600; color:var(--muted-2); border-bottom:2px solid transparent; transition:color .2s ease, border-color .2s ease; background:none; border-top:0; border-left:0; border-right:0; }
.event-tab.active{color:var(--ink); border-color:var(--blue-400);}
.event-panel{display:none;}
.event-panel.active{display:block;}

.tag{ display:inline-flex; align-items:center; gap:6px; font-family:var(--font-mono); font-size:10px; letter-spacing:.1em; text-transform:uppercase; padding:4px 9px; border-radius:20px; border:1px solid var(--border-strong); }
.tag.live{color:#5CD98A; border-color:rgba(92,217,138,.4);}
.tag.live .dot{width:6px; height:6px; border-radius:50%; background:#5CD98A; box-shadow:0 0 8px #5CD98A; animation:blink 1.6s infinite;}
@keyframes blink{50%{opacity:.35;}}
.tag.upcoming{color:var(--blue-400);}
.tag.new{color:var(--gold);}
.tag.featured{color:var(--cyan-300);}
.chip{ font-size:11.5px; font-family:var(--font-mono); padding:6px 12px; border-radius:20px; border:1px solid var(--border-strong); color:var(--muted); display:inline-block; }

/* people / awardee grids */
.people-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:18px;}
@media(max-width:900px){ .people-grid{grid-template-columns:repeat(2,1fr);} }
@media(max-width:520px){ .people-grid{grid-template-columns:1fr 1fr;} }
.person{background:var(--glass-bg); border:1px solid var(--glass-border); backdrop-filter:var(--blur); border-radius:var(--radius); padding:16px; transition:transform .25s ease, border-color .25s ease;}
.person:hover{transform:translateY(-3px); border-color:var(--border-strong);}
.person .ph{ width:100%; aspect-ratio:1/1; border-radius:10px; margin-bottom:12px; background:linear-gradient(150deg, var(--blue-700), var(--blue-900)); display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-size:22px; color:var(--cyan-300); font-weight:600; }
.person h6{font-size:13px; font-weight:700; line-height:1.3;}
.person .role{font-size:11.5px; color:var(--blue-400); margin-top:4px;}
.person .purpose{font-size:11.5px; color:var(--muted-2); margin-top:6px; line-height:1.4;}

.award-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:16px;}
@media(max-width:980px){ .award-grid{grid-template-columns:repeat(3,1fr);} }
@media(max-width:700px){ .award-grid{grid-template-columns:repeat(2,1fr);} }
.award-card{ background:var(--glass-bg); border:1px solid var(--glass-border); backdrop-filter:var(--blur); border-radius:var(--radius); padding:20px; position:relative; overflow:hidden; transition:transform .3s ease, border-color .3s ease; }
.award-card:hover{transform:translateY(-4px); border-color:var(--gold);}
.award-card .crest{ width:38px; height:38px; border-radius:50%; margin-bottom:14px; background:linear-gradient(140deg, var(--gold), #8a6a2c); display:flex; align-items:center; justify-content:center; color:#241a06; font-size:15px; font-weight:700; font-family:var(--font-display); }
.award-card h6{font-size:13.5px; font-weight:700; line-height:1.35;}
.award-card .role{font-size:11px; color:var(--muted-2); margin-top:5px;}
.award-card .purpose{font-size:11px; color:var(--muted); margin-top:10px; line-height:1.5; padding-top:10px; border-top:1px solid var(--border);}
.hall-note{ margin-top:34px; padding:16px 20px; border:1px dashed var(--border-strong); border-radius:var(--radius); font-size:12.5px; color:var(--muted-2); font-family:var(--font-mono); line-height:1.6; }

/* filter pills for awards page */
.filter-row{display:flex; gap:10px; flex-wrap:wrap; margin-bottom:34px;}
.filter-pill{ padding:9px 16px; border-radius:20px; border:1px solid var(--glass-border); background:var(--glass-bg); font-size:12.5px; color:var(--muted); transition:all .2s ease; }
.filter-pill.active, .filter-pill:hover{color:var(--ink); border-color:var(--blue-400); background:rgba(79,177,240,0.1);}

/* book block */
.book-block{ display:grid; grid-template-columns:.5fr 1fr; gap:56px; align-items:center; background:var(--glass-bg); border:1px solid var(--glass-border); backdrop-filter:var(--blur); border-radius:var(--radius-lg); padding:48px; overflow:hidden; }
@media(max-width:840px){ .book-block{grid-template-columns:1fr; padding:30px;} }
.book-cover{ aspect-ratio:3/4; border-radius:10px; position:relative; overflow:hidden; background:linear-gradient(160deg, #0F7A3D 0%, #0B5E2E 55%, #063D1D 100%); box-shadow:0 30px 60px rgba(0,0,0,.4), 0 0 0 1px var(--border); display:flex; flex-direction:column; justify-content:space-between; padding:26px; color:#fff; }
.book-cover .title{font-family:var(--font-display); font-size:26px; font-weight:700; line-height:1.05;}
.book-cover .sub{font-size:10.5px; font-family:var(--font-mono); letter-spacing:.08em; margin-top:10px; opacity:.85; text-transform:uppercase;}
.book-cover .by{font-size:11px; font-family:var(--font-mono); letter-spacing:.06em; opacity:.9;}
.book-meta .tag-row{display:flex; gap:8px; margin-bottom:18px; flex-wrap:wrap;}
.book-meta h3{font-size:clamp(22px,2.6vw,30px); line-height:1.2;}
.book-meta .author{color:var(--blue-400); font-weight:600; margin-top:10px; font-size:14.5px;}
.book-meta p.desc{color:var(--muted); margin-top:16px; font-size:14.5px; max-width:560px;}
.book-actions{display:flex; gap:12px; margin-top:26px; flex-wrap:wrap;}

/* founder / bio */
.founder{display:grid; grid-template-columns:.42fr 1fr; gap:60px; align-items:start;}
@media(max-width:900px){ .founder{grid-template-columns:1fr; gap:32px;} }
.founder-portrait{ aspect-ratio:4/5; border-radius:var(--radius-lg); overflow:hidden; background:linear-gradient(160deg, var(--blue-700), var(--blue-900)); display:flex; align-items:center; justify-content:center; position:relative; border:1px solid var(--glass-border); }
.founder-portrait::after{ content:"MOTO"; font-family:var(--font-display); font-size:64px; color:rgba(126,209,245,.15); font-weight:700; }
.founder-copy p{color:var(--muted); font-size:15px; margin-bottom:16px; max-width:660px;}
.founder-copy p:first-of-type{font-size:18px; color:var(--ink); font-family:var(--font-display); line-height:1.4;}
.founder-tags{display:flex; gap:10px; flex-wrap:wrap; margin-top:22px;}

/* offices */
.offices-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:20px;}
@media(max-width:840px){ .offices-grid{grid-template-columns:1fr;} }
.office-card{ background:var(--glass-bg); border:1px solid var(--glass-border); backdrop-filter:var(--blur); border-radius:var(--radius); padding:28px; position:relative; }
.office-card .flag-strip{width:36px; height:5px; border-radius:3px; margin-bottom:20px;}
.office-card h5{font-size:19px; font-weight:700;}
.office-card .addr{font-size:13.5px; color:var(--muted); margin-top:14px; line-height:1.6;}
.office-card .lines{margin-top:16px; display:flex; flex-direction:column; gap:8px;}
.office-card .lines a{font-size:13px; color:var(--blue-400); display:flex; align-items:center; gap:8px;}
.office-card .lines svg{width:14px; height:14px; stroke:var(--blue-400);}

/* partners marquee */
.marquee-wrap{overflow:hidden; -webkit-mask:linear-gradient(90deg, transparent, black 8%, black 92%, transparent); mask:linear-gradient(90deg, transparent, black 8%, black 92%, transparent);}
.marquee{display:flex; gap:64px; width:max-content; animation:scroll-left 28s linear infinite;}
.marquee:hover{animation-play-state:paused;}
@keyframes scroll-left{ from{transform:translateX(0);} to{transform:translateX(-50%);} }
.partner-logo{ font-family:var(--font-display); font-weight:700; font-size:20px; color:var(--muted-2); white-space:nowrap; opacity:.75; transition:opacity .3s ease, color .3s ease; display:flex; align-items:center; gap:10px; }
.partner-logo:hover{opacity:1; color:var(--ink);}
.partner-logo .sw{width:8px; height:8px; border-radius:50%; background:var(--blue-400);}

/* involve */
.involve-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:20px;}
@media(max-width:900px){ .involve-grid{grid-template-columns:repeat(2,1fr);} }
@media(max-width:600px){ .involve-grid{grid-template-columns:1fr;} }
.involve-card{ background:var(--glass-bg); border:1px solid var(--glass-border); backdrop-filter:var(--blur); border-radius:var(--radius); padding:26px; transition:transform .3s ease, border-color .3s ease; }
.involve-card:hover{transform:translateY(-4px); border-color:var(--blue-400);}
.involve-card .ic{width:44px; height:44px; border-radius:50%; background:var(--gold-soft); display:flex; align-items:center; justify-content:center; margin-bottom:16px;}
.involve-card svg{width:20px; height:20px; stroke:var(--gold);}
.involve-card h5{font-size:16px; font-weight:700;}
.involve-card p{font-size:13px; color:var(--muted); margin-top:8px;}
.involve-card .go{font-size:12.5px; color:var(--blue-400); font-weight:600; margin-top:16px; display:inline-flex; align-items:center; gap:5px;}

/* newsletter */
.newsletter{ border-radius:var(--radius-lg); border:1px solid var(--glass-border); overflow:hidden; background:var(--glass-bg); backdrop-filter:var(--blur); padding:60px 50px; text-align:center; }
@media(max-width:640px){ .newsletter{padding:40px 22px;} }
.newsletter h3{font-size:clamp(24px,3vw,34px); max-width:560px; margin:0 auto;}
.newsletter p{color:var(--muted); margin-top:14px; max-width:480px; margin-left:auto; margin-right:auto;}
.nl-form{display:flex; gap:10px; max-width:440px; margin:28px auto 0; flex-wrap:wrap; justify-content:center;}
.nl-form input{ flex:1; min-width:220px; padding:14px 18px; border-radius:30px; border:1px solid var(--border-strong); background:rgba(255,255,255,0.03); color:var(--ink); font-size:14px; outline:none; }
.nl-form input:focus{border-color:var(--blue-400);}
.nl-msg{margin-top:14px; font-size:13px; font-family:var(--font-mono); min-height:18px;}
.nl-msg.ok{color:#5CD98A;}
.nl-msg.err{color:#F27878;}

/* contact */
.contact-grid{display:grid; grid-template-columns:.85fr 1.15fr; gap:60px;}
@media(max-width:900px){ .contact-grid{grid-template-columns:1fr; gap:36px;} }
.contact-info .item{display:flex; gap:14px; padding:18px 0; border-top:1px solid var(--border);}
.contact-info .item:first-child{border-top:none;}
.contact-info .item svg{width:18px; height:18px; stroke:var(--blue-400); flex-shrink:0; margin-top:2px;}
.contact-info .item .k{font-size:12px; color:var(--muted-2); font-family:var(--font-mono); text-transform:uppercase; letter-spacing:.06em;}
.contact-info .item .v{font-size:14.5px; margin-top:3px;}
.contact-form{display:flex; flex-direction:column; gap:16px; background:var(--glass-bg); border:1px solid var(--glass-border); backdrop-filter:var(--blur); border-radius:var(--radius-lg); padding:30px;}
.form-row{display:grid; grid-template-columns:1fr 1fr; gap:16px;}
@media(max-width:520px){ .form-row{grid-template-columns:1fr;} }
.field label{font-size:12px; color:var(--muted-2); font-family:var(--font-mono); text-transform:uppercase; letter-spacing:.05em; margin-bottom:8px; display:block;}
.field input, .field select, .field textarea{ width:100%; padding:13px 16px; border-radius:10px; border:1px solid var(--border-strong); background:rgba(5,15,28,0.5); color:var(--ink); font-size:14px; outline:none; transition:border-color .2s ease; }
.field input:focus, .field select:focus, .field textarea:focus{border-color:var(--blue-400);}
.field textarea{resize:vertical; min-height:110px;}
.form-status{font-size:13px; font-family:var(--font-mono); min-height:18px;}

/* mission split */
.mission-wrap{display:grid; grid-template-columns:.95fr 1.05fr; gap:70px; align-items:start;}
@media(max-width:900px){ .mission-wrap{grid-template-columns:1fr; gap:40px;} }
.mission-statement{font-family:var(--font-display); font-size:clamp(24px,3vw,34px); line-height:1.25; font-weight:500; color:var(--ink);}
.mission-statement .accent{color:var(--blue-400);}
.mission-meta{margin-top:30px; display:flex; flex-direction:column; gap:18px;}
.mission-meta .row{display:flex; gap:14px; padding:16px 0; border-top:1px solid var(--border);}
.mission-meta .row .k{font-family:var(--font-mono); font-size:11px; letter-spacing:.1em; text-transform:uppercase; color:var(--blue-400); width:110px; flex-shrink:0; padding-top:2px;}
.mission-meta .row .v{color:var(--muted); font-size:14.5px;}

/* generic content prose */
.prose{max-width:760px; color:var(--muted); font-size:15px; line-height:1.8;}
.prose p{margin-bottom:16px;}
.prose h3{color:var(--ink); font-size:22px; margin:30px 0 12px;}

/* generic 2 col grid */
.grid2{display:grid; grid-template-columns:1fr 1fr; gap:24px;}
@media(max-width:760px){ .grid2{grid-template-columns:1fr;} }
.grid3{display:grid; grid-template-columns:repeat(3,1fr); gap:20px;}
@media(max-width:900px){ .grid3{grid-template-columns:repeat(2,1fr);} }
@media(max-width:600px){ .grid3{grid-template-columns:1fr;} }

.area-icon-svg{ width:34px; height:34px; stroke:var(--gold); }

/* illustration frame used on interior pages */
.illus-frame{
  border-radius:var(--radius-lg); overflow:hidden; border:1px solid var(--glass-border);
  background:var(--glass-bg); backdrop-filter:var(--blur); position:relative; aspect-ratio:16/10;
}
.illus-frame img, .illus-frame svg{width:100%; height:100%; object-fit:cover; display:block;}
.illus-caption{ position:absolute; left:18px; bottom:16px; font-family:var(--font-mono); font-size:10.5px; letter-spacing:.08em; text-transform:uppercase; color:var(--muted); background:rgba(5,12,22,0.55); padding:6px 12px; border-radius:20px; border:1px solid var(--glass-border); }

/* =========================================================
   FOOTER
========================================================= */
footer{background:var(--blue-900); border-top:1px solid var(--border); padding:76px 0 30px; position:relative; overflow:hidden;}
footer, footer .muted-f{color:#AFC5DD;}
footer h4, footer strong{color:#fff;}
.footer-grid{display:grid; grid-template-columns:1.3fr repeat(4,.9fr); gap:36px;}
@media(max-width:900px){ .footer-grid{grid-template-columns:repeat(2,1fr);} }
@media(max-width:560px){ .footer-grid{grid-template-columns:1fr;} }
.footer-brand{display:flex; align-items:center; gap:12px; margin-bottom:16px;}
.footer-brand img{width:44px; height:44px; border-radius:50%;}
.footer-brand strong{font-family:var(--font-display); font-size:18px;}
.footer-col h6{font-family:var(--font-mono); font-size:11px; letter-spacing:.1em; text-transform:uppercase; color:#7FA6CC; margin-bottom:16px;}
.footer-col ul{display:flex; flex-direction:column; gap:11px;}
.footer-col a{font-size:13.5px; color:#C7D6E8; transition:color .2s ease;}
.footer-col a:hover{color:#fff;}
.footer-desc{font-size:13.5px; color:#9FB6D1; max-width:280px; line-height:1.6;}
.footer-social{display:flex; gap:10px; margin-top:20px;}
.footer-social a{width:36px; height:36px; border-radius:50%; border:1px solid rgba(255,255,255,.15); display:flex; align-items:center; justify-content:center;}
.footer-social a:hover{background:rgba(255,255,255,.08);}
.footer-social svg{width:15px; height:15px; stroke:#fff;}
.footer-bottom{margin-top:60px; padding-top:26px; border-top:1px solid rgba(255,255,255,.1); display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:12.5px; color:#7FA6CC;}

/* =========================================================
   FLOATING ACTIONS + SEARCH + TOAST
========================================================= */
.fab{ position:fixed; right:26px; bottom:26px; z-index:55; width:48px; height:48px; border-radius:50%; background:var(--glass-bg-2); border:1px solid var(--glass-border); backdrop-filter:var(--blur); display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow); opacity:0; pointer-events:none; transform:translateY(12px); transition:opacity .3s ease, transform .3s ease, border-color .3s ease; }
.fab.show{opacity:1; pointer-events:auto; transform:translateY(0);}
.fab:hover{border-color:var(--blue-400);}
.fab svg{width:18px; height:18px; stroke:var(--blue-400);}
.fab-mobile-cta{display:none;}
@media(max-width:760px){
  .fab-mobile-cta{ display:flex; position:fixed; left:20px; right:20px; bottom:20px; z-index:55; align-items:center; justify-content:center; padding:15px; border-radius:30px; background:linear-gradient(120deg, var(--blue-500), var(--cyan-300)); color:#04101E; font-weight:700; font-size:14px; box-shadow:0 16px 34px rgba(46,143,221,.4); }
  .fab{right:20px; bottom:88px;}
}

.search-modal{position:fixed; inset:0; z-index:99; background:rgba(4,10,18,.72); backdrop-filter:blur(6px); display:flex; align-items:flex-start; justify-content:center; padding:10vh 20px; opacity:0; pointer-events:none; transition:opacity .25s ease;}
.search-modal.open{opacity:1; pointer-events:auto;}
.search-box{width:100%; max-width:600px; background:var(--glass-bg-2); border:1px solid var(--glass-border); backdrop-filter:var(--blur); border-radius:var(--radius-lg); overflow:hidden; box-shadow:0 30px 80px rgba(0,0,0,.5);}
.search-input-row{display:flex; align-items:center; gap:14px; padding:20px 22px; border-bottom:1px solid var(--border);}
.search-input-row svg{width:20px; height:20px; stroke:var(--muted-2); flex-shrink:0;}
.search-input-row input{flex:1; background:transparent; border:0; outline:0; color:var(--ink); font-size:16px;}
.search-input-row .esc{font-family:var(--font-mono); font-size:11px; color:var(--muted-2); border:1px solid var(--border); padding:3px 8px; border-radius:6px;}
.search-results{max-height:50vh; overflow:auto; padding:10px;}
.sr-group{padding:10px 12px 4px;}
.sr-group .lbl{font-family:var(--font-mono); font-size:10.5px; letter-spacing:.08em; text-transform:uppercase; color:var(--blue-400);}
.sr-item{padding:11px 12px; border-radius:10px; display:flex; justify-content:space-between; gap:10px; cursor:pointer;}
.sr-item:hover{background:rgba(255,255,255,0.05);}
.sr-item .t{font-size:14px;}
.sr-item .c{font-size:11px; color:var(--muted-2); font-family:var(--font-mono);}
.sr-empty{padding:40px 20px; text-align:center; color:var(--muted-2); font-size:13.5px;}

.toast{position:fixed; left:50%; bottom:30px; transform:translate(-50%,20px); z-index:100; background:var(--glass-bg-2); border:1px solid var(--glass-border); backdrop-filter:var(--blur); padding:14px 22px; border-radius:30px; font-size:13.5px; box-shadow:var(--shadow); opacity:0; transition:all .35s ease; display:flex; align-items:center; gap:10px;}
.toast.show{opacity:1; transform:translate(-50%,0);}
.toast .dot{width:7px; height:7px; border-radius:50%; background:#5CD98A;}

/* misc */
.skiplink{position:absolute; left:-999px; top:0; background:var(--blue-500); color:#04101E; padding:10px 16px; z-index:200; border-radius:8px;}
.skiplink:focus{left:16px; top:16px;}
:focus-visible{outline:2px solid var(--blue-400); outline-offset:3px;}
.now-strip{border-top:1px solid var(--border); border-bottom:1px solid var(--border); background:rgba(255,255,255,0.015);}
.now-row{display:flex; align-items:stretch; gap:0; overflow:hidden;}
.now-cards{display:flex; gap:1px; background:var(--glass-border); overflow-x:auto; scrollbar-width:none;}
.now-cards::-webkit-scrollbar{display:none;}
.now-card{min-width:280px; background:var(--bg-alt); padding:22px 22px 24px; flex-shrink:0; transition:background .25s ease;}
.now-card:hover{background:var(--bg-elevated);}
.now-card .now-date{font-family:var(--font-mono); font-size:11px; color:var(--muted-2); margin-top:12px;}
.now-card h4{font-size:16.5px; margin-top:8px; font-weight:600; line-height:1.3;}
.now-card p{font-size:13.5px; color:var(--muted); margin-top:8px;}
.now-card .more{font-size:12.5px; color:var(--blue-400); margin-top:14px; display:inline-flex; align-items:center; gap:5px; font-weight:600;}
