/* ============================================================
   ATIC Website — v3 (Pixel-exact from Figma CSS spec)
   Font: IBM Plex Sans | Primary: #46166B
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/* ── Design tokens (directly from Figma CSS) ── */
:root {
  --purple:     #46166B;   /* primary brand purple */
  --purple-tag: #6615A4;   /* research badge */
  --lavender:   #FAF4FF;   /* light purple bg */
  --gold:       #FDCC48;   /* CTA banner */
  --green-tag:  #166B5A;   /* workshop badge */
  --amber-tag:  #DEA303;   /* event badge */
  --footer-bg:  #46166B;
  --text:       #000000;
  --text-muted: #7E7E7E;
  --border:     #A9ACB0;
  --card-f9:    #F9F9F9;
  --ededed:     #EDEDED;
  --white:      #FFFFFF;
  --shadow:     0 4px 16px rgba(0,0,0,.08);
  --r-sm:  6px;
  --r-md: 12px;
  --nav-h: 80px;
  --max-w: 1400px;
  --ease:  all .22s ease;
}

/* ── Reset ── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:'IBM Plex Sans',system-ui,sans-serif;
  color:var(--text);
  background:#fff;
  -webkit-font-smoothing:antialiased;
  line-height:1.6;
  overflow-x:hidden; /* feedback: remove horizontal scrollbar */
}
img{max-width:100%;height:auto;display:block}
a{text-decoration:none;color:inherit}
ul{list-style:none}
button{cursor:pointer;border:0;background:none;font-family:inherit}
/* Navbar is transparent, hero sections include nav-h in their top padding */
.page-body{padding-top:0}

/* ── Container ── */
.container{width:100%;max-width:var(--max-w);margin:0 auto;padding:0 40px}

/* ================================================================
   TYPOGRAPHY  (from Figma CSS)
   ================================================================ */
/* Hero heading: weight 300, 64px */
.h-hero{
  font-size:clamp(2rem,4.5vw,4rem);
  font-weight:300;
  line-height:1.3;
  letter-spacing:-0.01em;
  color:var(--text);
}
/* Global h2 baseline — feedback: IBM Plex Sans Regular, 32px, all pages */
h2{
  font-size:2rem; /* 32px */
  font-weight:400; /* Regular */
  font-family:'IBM Plex Sans',system-ui,sans-serif;
  line-height:1.2;
  letter-spacing:-0.01em;
  color:var(--text);
}
/* .h-section mirrors the same rule (kept for specificity) */
.h-section{
  font-size:2rem;
  font-weight:400;
  line-height:1.2;
  letter-spacing:-0.01em;
  color:var(--text);
}
/* Card title: weight 600, 28px */
.h-card{
  font-size:clamp(1rem,2vw,1.75rem);
  font-weight:600;
  line-height:1.15;
  color:var(--text);
}
/* What We Do item title: weight 600, 24px */
.h-item{
  font-size:clamp(1rem,1.8vw,1.5rem);
  font-weight:600;
  line-height:1.33;
  color:var(--text);
}
p{font-size:1rem;color:var(--text);line-height:1.6}
.text-muted{color:var(--text-muted)}
.text-center{text-align:center}

/* ================================================================
   BUTTONS & LINKS  (from Figma CSS)
   ================================================================ */
/* Primary: filled, NO border */
.btn-primary{
  display:inline-flex;align-items:center;gap:6px;
  padding:8px 20px;
  background:var(--purple);color:#fff;
  font-size:1rem;font-weight:500;letter-spacing:-0.01em;
  border:0;
  border-radius:var(--r-sm);
  transition:var(--ease);
}
.btn-primary:hover{background:#341153;transform:translateY(-1px)}

/* Outline: completely borderless, no background box */
.btn-outline{
  display:inline-flex;align-items:center;gap:6px;
  padding:8px 20px;
  background:transparent;
  color:var(--purple);
  font-size:1rem;font-weight:500;letter-spacing:-0.01em;
  border:0;
  border-radius:0;
  transition:var(--ease);
}
.btn-outline:hover{color:#341153;gap:10px;}

/* Text arrow link — "Button →" style from Figma */
.link-btn{
  display:inline-flex;align-items:center;gap:4px;
  font-size:0.875rem;font-weight:500;
  color:var(--purple);
  transition:var(--ease);
}
.link-btn::after{content:'→'}
.link-btn:hover{gap:8px}

/* White-on-purple outline (for footer/dark bg) */
/* White variant on dark/coloured bg — NO border */
.btn-outline-white{
  display:inline-flex;align-items:center;padding:8px 20px;
  border:0;
  background:rgba(255,255,255,.18);color:#fff;
  font-size:1rem;font-weight:500;
  border-radius:var(--r-sm);transition:var(--ease);
}
.btn-outline-white:hover{background:rgba(255,255,255,.32)}

/* Small util */
.btn-sm{padding:6px 16px!important;font-size:0.875rem!important}

/* ── Badge tags (from Figma CSS) ── */
.tag{
  display:inline-flex;align-items:center;justify-content:center;
  padding:2px 14px;
  border-radius:16px;
  font-size:1rem;font-weight:500;
  line-height:1.5;
}
.tag-research{border:1px solid var(--purple-tag);color:var(--purple-tag)}
/* All tags match Research badge — hug text, never stretch */
.tag-workshop,
.tag-event,
.tag-purple,
.badge-tag {
  border:1px solid #6615A4;
  color:#6615A4;
  border-radius:16px;
  padding:2px 14px;
  font-size:1rem;
  font-weight:500;
  display:inline-block !important;
  width:auto !important;
  max-width:max-content !important;
  align-self:flex-start !important;
  flex-shrink:0;
}

/* Completed / In Progress */
.badge-done{display:inline-flex;align-items:center;padding:3px 10px;border-radius:20px;font-size:.75rem;font-weight:600;background:#D1FAE5;color:#059669}
.badge-prog{display:inline-flex;align-items:center;padding:3px 10px;border-radius:20px;font-size:.75rem;font-weight:600;background:#DBEAFE;color:#2563EB}

/* ================================================================
   NAVBAR
   ================================================================ */
/* feedback: transparent navbar blends with hero, turns opaque on scroll */
.navbar{
  position:fixed;top:0;left:0;right:0;
  height:var(--nav-h);
  background:transparent;
  border-bottom:none;
  z-index:1000;
  transition:background .3s ease, border-bottom .3s ease, box-shadow .3s ease;
}
.navbar.scrolled{
  background:rgba(255,255,255,.97);
  backdrop-filter:blur(10px);
  border-bottom:1px solid #eee;
  box-shadow:var(--shadow);
}

.nav-inner{display:flex;align-items:center;justify-content:space-between;height:100%}

/* ATIC Logo — feedback: use img file so it stays consistent on responsive */
.nav-logo{display:flex;align-items:center;flex-shrink:0;text-decoration:none}
.nav-logo-img{height:44px;width:auto;display:block}
/* Keep text fallbacks for footer */
.logo-atic{font-size:2rem;font-weight:500;line-height:1;color:var(--text);letter-spacing:0}
.logo-sub-wrap{display:flex;align-items:center;padding-top:4px}
.logo-sub{font-size:0.625rem;font-weight:500;color:var(--text);line-height:1.3;max-width:130px}

/* Nav links */
.nav-links{display:flex;align-items:center;gap:4px}
.nav-links a{
  padding:6px 10px;
  font-size:0.875rem;font-weight:400;
  color:var(--text);
  border-radius:4px;
  transition:var(--ease);
  white-space:nowrap;
}
.nav-links a:hover,.nav-links a.active{color:var(--purple)}

/* Hamburger */
.hamburger{display:none;flex-direction:column;gap:5px;padding:8px;cursor:pointer}
.hamburger span{display:block;width:22px;height:2px;background:var(--text);border-radius:2px;transition:var(--ease)}
.hamburger.open span:nth-child(1){transform:rotate(45deg) translate(5px,5px)}
.hamburger.open span:nth-child(2){opacity:0}
.hamburger.open span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)}

.mobile-nav{display:none;position:fixed;top:var(--nav-h);left:0;right:0;background:#fff;border-bottom:1px solid #eee;padding:12px 24px;z-index:999;box-shadow:var(--shadow)}
.mobile-nav.open{display:block}
.mobile-nav a{display:block;padding:12px 0;border-bottom:1px solid #eee;font-weight:400;color:var(--text);transition:var(--ease)}
.mobile-nav a:last-child{border-bottom:none}
.mobile-nav a:hover,.mobile-nav a.active{color:var(--purple)}

/* ================================================================
   HERO — HOME
   ================================================================ */
.hero-home{
  background:linear-gradient(111.95deg,#FFFFFF 37.01%,#FAF4FF 55%);
  padding:calc(var(--nav-h) + 72px) 0 64px; /* top includes nav-h so gradient shows behind transparent nav */
  overflow:hidden;
}
.hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(420px,686px);
  gap:40px;
  align-items:center;
}

.hero-content h1{margin-bottom:24px}
.hero-desc{font-size:1.25rem;font-weight:400;letter-spacing:-0.01em;color:var(--text);margin-bottom:32px;max-width:520px}
.hero-actions{display:flex;gap:16px;flex-wrap:wrap}

/* ================================================================
   IMAGE FILL — all <img> tags sit directly in their container.
   To swap a placeholder for a real photo just change src="...".
   ================================================================ */

/* Rectangular image containers */
.r-img, .w-img, .u-img, .ev-banner, .ws-img, .part-img {
  overflow: hidden;
  background: #EDEDED;   /* shows while image loads */
}
.r-img img, .w-img img, .u-img img,
.ev-banner img, .ws-img img, .part-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Circular image containers */
.orb-node, .lab-circle, .prod-circle { overflow: hidden; }
.orb-node img, .lab-circle img, .prod-circle img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Team member photo (slightly rounded rect) */
.mem-placeholder { overflow: hidden; }
.mem-placeholder img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Orbital hero illustration ── */
.hero-illustration{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  overflow:visible;
}
.hero-orb{
  position:relative;
  width:min(100%,686px);
  aspect-ratio:686 / 623;
  flex-shrink:0;
  transform:translateX(24px);
}
.orb-final{
  display:block;
  width:100%;
  height:100%;
}

/* ================================================================
   HERO — INNER PAGES
   feedback: title 40px weight 300, subtitle 18px weight 300, padding 60px
   ================================================================ */
.hero-inner{
  background:linear-gradient(111.95deg,#FFFFFF 37.01%,#FAF4FF 55%);
  padding:calc(var(--nav-h) + 60px) 0 60px; /* top includes nav-h so gradient shows behind transparent nav */
}
/* Standardised subpage header — feedback: 40px / 18px / Light / 60px padding
   Covers both plain <h1> and <h1 class="h-hero"> variants */
.hero-inner h1,
.hero-inner .h-hero {
  font-size:2.5rem !important; /* 40px */
  font-weight:300 !important;
  line-height:1.25;
  margin-bottom:16px;
}
/* Subtitle: 18px, IBM Plex Sans Light */
.hero-inner .hero-desc,
.hero-inner .hero-desc-lg,
.hero-inner > .container > p {
  font-size:1.125rem !important; /* 18px */
  font-weight:300 !important;
  max-width:720px;
  color:var(--text);
}

/* ================================================================
   SECTION WRAPPER
   ================================================================ */
section{padding:72px 0}

/* ================================================================
   ABOUT ATIC  (Home)
   ================================================================ */
.about-home{background:#fff;padding:72px 0}
.about-home-grid{
  display:grid;
  grid-template-columns:minmax(0, 1.15fr) minmax(320px, 420px);
  gap:44px;
  align-items:start;
}
.about-copy .h-section{margin-bottom:20px}
.about-home-text{
  max-width:620px;
  font-size:1rem;
  line-height:1.7;
}
.about-links-grid{
  display:grid;
  grid-template-columns:330px 330px;
  grid-auto-rows:235px;
  width:680px;
  gap:20px;
  margin-top:24px;
  padding-top:0;
}
.about-link-card{
  border:1px solid var(--border);
  width:330px;
  height:235px;
  padding:39px 21px 18px 18px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.about-link-card .h-item{
  margin-bottom:0;
  max-width:256px;
  font-size:22px;
  font-weight:600;
  line-height:32px;
}
.about-link-card > p:not(.h-item){
  max-width:256px;
  font-size:16px;
  line-height:24px;
}
.about-link-card .link-btn{
  margin-top:auto;
  font-size:14px;
  line-height:24px;
}

.about-profile-card{
  background:var(--card-f9);
  border-radius:var(--r-md);
  padding:40px 24px 36px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  min-height:100%;
}
.about-profile-photo{
  width:180px;height:200px;
  border-radius:var(--r-sm);
  object-fit:cover;
  margin-bottom:20px;
  display:block;
}
.about-profile-name{font-size:1.5rem;font-weight:500;letter-spacing:-0.01em;margin-bottom:4px}
.about-profile-role{font-size:1.125rem;font-style:italic;font-weight:400;color:var(--text-muted);margin-bottom:16px}
.about-profile-bio{font-size:1rem;line-height:1.6;margin-bottom:20px}

/* ================================================================
   FEATURED RESEARCH  (Home)
   ================================================================ */
.featured-research{background:#fff;padding:72px 0;border-top:1px solid #eee}
.section-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:32px;flex-wrap:wrap;gap:12px}

/* 4-col grid */
.research-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:40px}
/* Card: border: 1px solid #A9ACB0 (from Figma) */
.r-card{border:1px solid var(--border);display:flex;flex-direction:column;transition:var(--ease)}
.r-card:hover{box-shadow:var(--shadow);transform:translateY(-2px)}
/* Image area (from Figma: background: #EDEDED, height ~200px) */
.r-img{height:200px;background:var(--ededed);overflow:hidden;position:relative;flex-shrink:0}
.r-img img{width:100%;height:100%;object-fit:cover}
.r-img-placeholder{width:100%;height:100%;display:flex;align-items:center;justify-content:center}
/* Gradient placeholders */
.ri-1{background:linear-gradient(160deg,#e8d5ff,#d4b8f0)}
.ri-2{background:linear-gradient(160deg,#c8e6ff,#b3d4f5)}
.ri-3{background:linear-gradient(160deg,#ffe0d0,#f5c4ae)}
.ri-4{background:linear-gradient(160deg,#d0f0e8,#b5e0d4)}
.r-body{padding:24px 28px 28px;display:flex;flex-direction:column;gap:12px;flex:1}
.r-body .h-card{margin-bottom:4px}
.r-body p{font-size:1.125rem;line-height:1.33}

/* ================================================================
   CTA BANNER  (from Figma: background:#FDCC48, dark text)
   ================================================================ */
.cta-banner{background:var(--gold);padding:56px 0}
.cta-inner{display:flex;align-items:center;justify-content:space-between;gap:32px;flex-wrap:wrap}
/* Dark text on yellow (from Figma: color:#040404) */
.cta-inner h2{
  font-size:clamp(1.2rem,2.5vw,2.5rem);
  font-weight:500;
  letter-spacing:-0.5px;
  color:#040404;
  max-width:640px;
}
.cta-btns{display:flex;gap:16px;flex-shrink:0;flex-wrap:wrap}

/* ================================================================
   LATEST UPDATES  (Home)
   ================================================================ */
.latest-updates{background:#fff;padding:72px 0}
.updates-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:40px;margin-top:32px}
/* Card: border:1px solid #A9ACB0 (from Figma) */
.u-card{border:1px solid var(--border);display:flex;flex-direction:column;transition:var(--ease)}
.u-card:hover{box-shadow:var(--shadow);transform:translateY(-2px)}
/* aspect-ratio matches the 440x200 image exactly — no cropping at any viewport */
.u-img{aspect-ratio:11/5;overflow:hidden;flex-shrink:0;background:var(--ededed)}
/* Event poster image backgrounds */
/* u-img gradient fallbacks (shown only if image fails to load) */
.u-img-1{background:#1B3A5C}
.u-img-2{background:#7C2D12}
.u-img-3{background:#1E3A8A}
.u-body{padding:24px 28px;display:flex;flex-direction:column;gap:12px;flex:1}
.u-body .h-card{margin-bottom:4px}
.u-body p{font-size:1.125rem;line-height:1.33}
/* Poster text styles */
.poster{color:#fff;text-align:center;line-height:1.25}
.poster .p-sm{font-size:.65rem;font-weight:600;letter-spacing:.5px;opacity:.85;margin-bottom:4px}
.poster .p-title{font-size:1rem;font-weight:700}
.poster .p-date{font-size:.65rem;margin-top:6px;opacity:.75}
.poster .p-gold{color:var(--gold)}
.poster .p-dream{font-size:1.6rem;font-weight:900;letter-spacing:2px;color:var(--gold)}

/* ================================================================
   COMMUNITY RESOURCES  (Home)
   ================================================================ */
.community-section{background:#fff;padding:72px 0}
.comm-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:40px;margin-top:32px}
/* F9F9F9 background cards (from Figma) */
.comm-card{background:var(--card-f9);padding:28px;display:flex;flex-direction:column;gap:12px;transition:var(--ease)}
.comm-card:hover{box-shadow:var(--shadow)}
.comm-card .h-card{margin-bottom:4px}
.comm-card p{font-size:1.125rem;line-height:1.33}

/* ================================================================
   ATIC TESTING LAB PREVIEW  (Home)
   ================================================================ */
.lab-preview{background:#fff;padding:72px 0}
.lab-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:40px;margin-top:32px}
/* Horizontal card: border:1px solid #A9ACB0 (from Figma) */
.lab-card{
  border:1px solid var(--border);
  padding:24px 20px;
  display:flex;gap:20px;align-items:flex-start;
  transition:var(--ease);
}
.lab-card:hover{box-shadow:var(--shadow)}
/* Circular photo (80px from Figma) */
.lab-circle{
  width:80px;height:80px;
  border-radius:50%;
  background:var(--ededed);
  display:flex;align-items:center;justify-content:center;
  font-size:1.8rem;
  flex-shrink:0;
  border:1px solid #D9D9D9;
  overflow:hidden;
}
.lab-circle img{width:100%;height:100%;object-fit:cover}
.lab-body{flex:1}
.lab-body .h-card{font-size:1.125rem;margin-bottom:6px}
.lab-body p{font-size:0.9375rem;margin-bottom:8px}

/* ================================================================
   PARTNERS  (Home)
   ================================================================ */
.partners-section{background:#fff;padding:72px 0}
/* feedback: increase spacing between rows, full colour on ALL logos */
.govt-logos{
  display:flex;align-items:center;justify-content:center;
  gap:60px;flex-wrap:wrap;
  margin-bottom:56px; /* more space between govt and industry rows */
}
.govt-logo{
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.govt-logo img{
  height:80px;width:auto;
  max-width:340px;
  display:block;
  object-fit:contain;
  opacity:1;
  transition:opacity .2s;
}
.govt-logo img:hover{opacity:.85}

/* Industry logos — always full colour, real PNG images */
.industry-logos{display:flex;align-items:center;justify-content:center;gap:56px;flex-wrap:wrap}
.ind-logo{
  height:48px;
  width:auto;
  object-fit:contain;
  display:block;
  opacity:1;
  filter:none; /* always full colour — never greyscale */
  transition:opacity .2s;
}
.ind-logo:hover{opacity:.8}

/* ================================================================
   FOOTER  (from Figma: background:#46166B, centered)
   ================================================================ */
footer{background:var(--footer-bg);padding:56px 0 28px}

.footer-logo-wrap{text-align:center;margin-bottom:32px;display:flex;flex-direction:column;align-items:center;gap:4px}
.footer-atic{font-size:2.625rem;font-weight:600;color:#fff;line-height:1}
.footer-sub{font-size:.75rem;font-weight:500;color:rgba(255,255,255,.7)}

.footer-nav{display:flex;justify-content:center;align-items:center;gap:8px 40px;flex-wrap:wrap;margin-bottom:28px}
.footer-nav a{font-size:.75rem;font-weight:400;color:rgba(255,255,255,.7);transition:var(--ease)}
.footer-nav a:hover{color:#fff}

.footer-copy{text-align:center;font-size:.75rem;color:rgba(255,255,255,.5);border-top:1px solid rgba(255,255,255,.1);padding-top:20px}

/* ================================================================
   OUR TEAM PAGE
   ================================================================ */
.director-section{background:#fff}
.director-card{
  display:flex;gap:36px;align-items:flex-start;
  border:1px solid var(--border);
  padding:36px;
}
.dir-photo{width:160px;height:180px;border-radius:var(--r-sm);object-fit:cover;flex-shrink:0}
.dir-info .h-card{font-size:1.5rem;margin-bottom:2px}
.dir-role{font-size:1.125rem;font-style:italic;color:var(--text-muted);margin-bottom:4px}
.dir-email{font-size:.875rem;color:var(--text-muted);margin-bottom:16px}
.dir-info p{font-size:1rem;margin-bottom:20px}

.members-section{background:var(--card-f9);padding:72px 0}
.members-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:24px}
.member-card{
  background:#fff;
  border:1px solid var(--border);
  padding:24px;
  display:flex;gap:20px;align-items:flex-start;
  transition:var(--ease);
}
.member-card:hover{box-shadow:var(--shadow)}
.mem-photo{width:130px;height:150px;border-radius:var(--r-sm);object-fit:cover;flex-shrink:0;background:var(--ededed)}
.mem-placeholder{width:130px;height:150px;border-radius:var(--r-sm);background:var(--ededed);display:flex;align-items:center;justify-content:center;font-size:2rem;flex-shrink:0}
.mem-info .h-item{margin-bottom:2px;font-size:1rem}
.mem-role{font-size:.875rem;font-style:italic;color:var(--text-muted);margin-bottom:2px}
.mem-email{font-size:.8125rem;color:var(--text-muted);margin-bottom:10px}
.mem-info p{font-size:.875rem}

/* ================================================================
   OUR WORK PAGE
   ================================================================ */
.work-section{background:#fff;padding:72px 0}
/* Tabs — Figma: centered, 14px Regular, inactive #A8A8A8, active #46166B underline */
.tabs-bar{
  display:flex;justify-content:center;gap:56px;
  border-bottom:1px solid #eee;
  margin-bottom:40px;
  overflow-x:auto;
}
.tab-btn{
  padding:20px 0;
  font-size:.875rem;font-weight:400;
  color:#A8A8A8;
  border-bottom:2px solid transparent;
  margin-bottom:-1px;
  transition:var(--ease);
  white-space:nowrap;background:none;
  border-top:none;border-left:none;border-right:none;cursor:pointer;
  letter-spacing:-0.01em;
}
.tab-btn:hover{color:var(--purple)}
.tab-btn.active{color:var(--purple);border-bottom-color:var(--purple)}
.tab-panel{display:none}
.tab-panel.active{display:block}

/* Research Projects — 2-col grid, Figma spec */
.work-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:40px}
.w-card{border:1px solid var(--border);display:flex;flex-direction:column;transition:var(--ease);background:#fff}
.w-card:hover{box-shadow:var(--shadow);transform:translateY(-2px)}
/* Image: 300px (Figma: height:300px, overflow hidden) */
.w-img{height:300px;background:#E6E6E6;overflow:hidden;flex-shrink:0}
/* Content area: padding 28px sides, 32px bottom — matches Figma */
.w-body{padding:20px 28px 32px;display:flex;flex-direction:column;gap:12px;flex:1}
/* Title: 28px weight 600 */
.w-body h4,.w-body .h-card{font-size:1.75rem!important;font-weight:600;line-height:1.15;color:#000;margin-bottom:0}
/* Lead: 18px weight 400, black */
.w-lead{font-size:1.125rem;font-weight:400;color:#000;font-style:normal;margin-bottom:0}
/* Description: 18px weight 400, black */
.w-body p{font-size:1.125rem;font-weight:400;color:#000;line-height:1.33}

/* Publications */
.pub-list{display:flex;flex-direction:column;gap:14px}
.pub-item{padding:18px 20px;border:1px solid var(--border);transition:var(--ease)}
.pub-item:hover{border-color:var(--purple)}
.pub-item p{font-size:.9375rem;color:var(--text);margin-bottom:10px;line-height:1.65}
.pub-tags{display:flex;gap:8px;flex-wrap:wrap}
.tag-pdf{background:#FEE2E2;color:#DC2626;padding:3px 10px;border-radius:4px;font-size:.75rem;font-weight:700}
.pagination-bar{text-align:center;margin-top:24px;font-size:.875rem;color:var(--text-muted)}
.load-more{display:block;margin:16px auto 0;padding:9px 32px;border:1px solid var(--border);border-radius:var(--r-sm);font-size:.875rem;font-weight:500;color:var(--text-muted);transition:var(--ease)}
.load-more:hover{border-color:var(--purple);color:var(--purple)}

/* Events */
.events-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:40px}
.ev-card{border:1px solid var(--border);overflow:hidden;transition:var(--ease)}
.ev-card:hover{box-shadow:var(--shadow)}
.ev-banner{height:280px;overflow:hidden;background:var(--ededed)}
.ev-body{padding:20px;display:flex;flex-direction:column;gap:10px;align-items:flex-start}
.ev-body .h-card{font-size:1.125rem}
.ev-body p{font-size:.9375rem}

/* Workshops */
.workshop-card{display:flex;gap:24px;align-items:flex-start;padding:24px;border:1px solid var(--border);margin-bottom:16px;transition:var(--ease)}
.workshop-card:hover{box-shadow:var(--shadow)}
.ws-img{width:200px;height:130px;border-radius:var(--r-sm);flex-shrink:0;overflow:hidden}
.ws-body p{font-size:.9375rem}

/* Work CTA — Figma: background #F3E9FF, title 32px/500, button 20px */
.work-cta{background:#F3E9FF;padding:56px 0}
.work-cta-inner{display:flex;align-items:center;justify-content:space-between;gap:32px;flex-wrap:wrap}
.work-cta-title{font-size:2rem;font-weight:500;letter-spacing:-.5px;color:#1B1B1B;margin-bottom:8px}
.work-cta-inner p{font-size:1rem;font-weight:400;color:#454545;max-width:600px}
/* CTA button — 20px, 226px min-width */
.btn-collab{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 24px;
  background:var(--purple);color:#fff;
  font-size:1.25rem;font-weight:400;
  border:0;border-radius:var(--r-sm);
  min-width:200px;
  flex-shrink:0;
  transition:var(--ease);
}
.btn-collab:hover{background:#341153}

/* ================================================================
   PARTICIPATE PAGE
   ================================================================ */
.ways-section{background:#fff;padding:72px 0}
.ways-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:40px;margin-top:32px}
.way-card{border:1px solid var(--border);overflow:hidden;display:flex;flex-direction:column;transition:var(--ease)}
.way-card:hover{box-shadow:var(--shadow);transform:translateY(-2px)}
.way-img-wrap{position:relative;height:190px}
.way-bg{width:100%;height:100%;display:flex;align-items:center;justify-content:center;font-size:5rem}
.way-bg-1{background:linear-gradient(135deg,#7F1D1D,#DC2626)}
.way-bg-2{background:linear-gradient(135deg,#1E3A5F,#2563EB)}
.way-bg-3{background:linear-gradient(135deg,#064E3B,#059669)}
.way-badge{position:absolute;bottom:12px;right:12px;width:40px;height:40px;background:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1.1rem;box-shadow:0 2px 8px rgba(0,0,0,.15)}
.way-body{padding:20px 24px;display:flex;flex-direction:column;gap:8px;flex:1}
.way-body .h-card{font-size:1.125rem}
.way-body p{font-size:1rem}

.feedback-section{background:var(--card-f9);padding:56px 0}
.feedback-inner{display:flex;align-items:center;justify-content:space-between;gap:24px;flex-wrap:wrap}
.feedback-inner .h-section{font-size:1.5rem;margin-bottom:4px}
.feedback-inner p{font-size:1rem}

/* ================================================================
   COMMUNITY RESOURCES PAGE
   ================================================================ */
.resources-section{background:#fff;padding:72px 0}
.resources-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:40px;margin-top:32px}
.res-card{background:var(--card-f9);padding:28px;display:flex;flex-direction:column;gap:12px;transition:var(--ease)}
.res-card:hover{box-shadow:var(--shadow)}
.res-card .h-card{font-size:1.125rem}
.res-card p{font-size:1.125rem;line-height:1.33}

.founded-section{background:#fff;padding:72px 0;border-top:1px solid #eee}

/* ================================================================
   ATIC TESTING LAB PAGE
   ================================================================ */
.eval-section{background:#fff;padding:72px 0}
.process-row{display:flex;align-items:flex-start;overflow-x:auto;padding-bottom:8px;margin-top:40px}
.process-step{flex:1;min-width:120px;display:flex;flex-direction:column;align-items:center;text-align:center;position:relative;padding:0 8px}
.process-step:not(:last-child)::after{content:'›';position:absolute;top:18px;right:-10px;font-size:1.4rem;color:var(--purple);font-weight:700}
.step-icon{width:52px;height:52px;border-radius:50%;background:var(--lavender);border:1.5px solid var(--purple);display:flex;align-items:center;justify-content:center;font-size:1.3rem;margin-bottom:10px;flex-shrink:0}
.step-label{font-size:.78rem;font-weight:600;margin-bottom:6px;line-height:1.3}
.step-desc{font-size:.72rem;color:var(--text-muted);line-height:1.5}

.metrics-section{background:var(--card-f9);padding:72px 0}
.metrics-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin-top:32px}
.metric-box{padding:16px 14px;background:#fff;border:1px solid var(--border);text-align:center;font-size:.9rem;font-weight:500;transition:var(--ease)}
.metric-box:hover{border-color:var(--purple);color:var(--purple)}

.products-section{background:#fff;padding:72px 0}
.prod-card{border:1px solid var(--border);padding:24px;margin-bottom:16px;transition:var(--ease)}
.prod-card:last-child{margin-bottom:0}
.prod-card:hover{box-shadow:var(--shadow)}
.prod-header{display:flex;align-items:flex-start;gap:16px}
.prod-icon{width:52px;height:52px;border-radius:50%;background:var(--ededed);border:1px solid #D9D9D9;display:flex;align-items:center;justify-content:center;font-size:1.4rem;flex-shrink:0}
.prod-head-info{flex:1}
.prod-head-info .h-card{font-size:1.125rem;margin-bottom:4px}
.prod-head-info p{font-size:.9375rem}
.prod-checklist{margin-top:18px;padding-top:16px;border-top:1px solid #eee;display:grid;grid-template-columns:1fr 1fr;gap:6px 24px}
.check-row{display:flex;align-items:center;gap:8px;font-size:.875rem;color:var(--text-muted)}
.ci-done{color:#059669}.ci-pend{color:#F59E0B}.ci-wait{color:#D1D5DB}

/* ================================================================
   UTILITIES
   ================================================================ */
.mt-8{margin-top:8px}.mt-12{margin-top:12px}.mt-16{margin-top:16px}.mt-24{margin-top:24px}.mt-32{margin-top:32px}
.mb-8{margin-bottom:8px}.mb-16{margin-bottom:16px}.mb-24{margin-bottom:24px}.mb-32{margin-bottom:32px}.mb-40{margin-bottom:40px}

/* ================================================================
   RESPONSIVE ≤ 1024px
   ================================================================ */
@media(max-width:1024px){
  .research-grid{grid-template-columns:repeat(2,1fr)}
  .metrics-grid{grid-template-columns:repeat(3,1fr)}
  .r-body p,.comm-card p,.u-body p,.res-card p{font-size:1rem}
}

/* ================================================================
   RESPONSIVE ≤ 900px  (hamburger)
   ================================================================ */
@media(max-width:900px){
  .nav-links{display:none}
  .hamburger{display:flex}
  .hero-grid{grid-template-columns:1fr}
  .hero-illustration{display:none}
  .about-home-grid{grid-template-columns:1fr;gap:32px}
  .process-step{min-width:95px}
}
/* ================================================================
   RESPONSIVE ≤ 768px
   ================================================================ */
@media(max-width:768px){
  section{padding:52px 0}
  .container{padding:0 20px}
  .research-grid{grid-template-columns:1fr}
  .updates-grid{grid-template-columns:1fr}
  .comm-grid{grid-template-columns:1fr}
  .lab-grid{grid-template-columns:1fr}
  .members-grid{grid-template-columns:1fr}
  .work-grid{grid-template-columns:1fr}
  .ways-grid{grid-template-columns:1fr}
  .resources-grid{grid-template-columns:1fr}
  .metrics-grid{grid-template-columns:repeat(2,1fr)}
  .events-grid{grid-template-columns:1fr}
  .prod-checklist{grid-template-columns:1fr}
  .director-card{flex-direction:column;align-items:center;text-align:center}
  .cta-inner{flex-direction:column;text-align:center}
  .cta-btns{justify-content:center}
  .work-cta-inner{flex-direction:column;text-align:center}
  .feedback-inner{flex-direction:column;text-align:center}
  .process-row{flex-direction:column;align-items:center}
  .process-step::after{display:none}
  .workshop-card{flex-direction:column}
  .ws-img{width:100%}
  .govt-logos{flex-direction:column;align-items:center}
  .about-links-grid{grid-template-columns:1fr;width:100%;grid-auto-rows:auto}
  .about-link-card{width:100%;height:auto}
  .about-profile-card{padding:28px 16px}
}

/* ================================================================
   RESPONSIVE ≤ 480px
   ================================================================ */
@media(max-width:480px){
  :root{--nav-h:64px}
  .container{padding:0 16px}
  section{padding:40px 0}
  .hero-home{padding:calc(var(--nav-h) + 32px) 0 36px}
  .hero-actions{flex-direction:column}
  .hero-actions .btn-primary,.hero-actions .btn-outline{justify-content:center}
  .metrics-grid{grid-template-columns:1fr 1fr}
  .cta-btns{flex-direction:column;width:100%}
  .cta-btns .btn-primary,.cta-btns .btn-outline{justify-content:center}
  .footer-nav{gap:8px 20px}
  .lab-grid{grid-template-columns:1fr}
}
