@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root{
  --black: #05070C;
  --surface: #0C111A;
  --surface-2: #10161F;
  --line: rgba(255,255,255,0.09);
  --line-soft: rgba(255,255,255,0.05);
  --white: #F4F6FA;
  --muted: #8C96AA;
  --muted-2: #5C6478;
  --blue: #2F6FED;
  --blue-bright: #55C7F7;
  --clay: #E2853E;
  --radius: 14px;
}

*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection{ background: var(--blue); color:#fff; }

h1,h2,h3,h4{ font-family:'Space Grotesk', sans-serif; letter-spacing:-0.02em; }
a{ color:inherit; text-decoration:none; }
img{ display:block; max-width:100%; }
button{ font-family:inherit; cursor:pointer; }

.eyebrow{
  font-family:'JetBrains Mono', monospace;
  font-size:12px;
  letter-spacing:0.16em;
  text-transform:uppercase;
  color: var(--blue-bright);
  display:flex; align-items:center; gap:10px;
  margin-bottom:18px;
}
.eyebrow::before{ content:''; width:20px; height:1px; background:var(--blue-bright); display:inline-block; }
.eyebrow.clay{ color: var(--clay); }
.eyebrow.clay::before{ background: var(--clay); }

.wrap{ max-width:1180px; margin:0 auto; padding:0 32px; }

.ring-divider{
  display:flex; align-items:center; justify-content:center;
  gap:14px; padding: 64px 0 40px; color: var(--muted-2);
}
.ring-divider .seg{ width:100px; height:1px; background:var(--line); }
.ring-divider svg{ width:22px; height:22px; opacity:0.6; }

/* ============ NAV ============ */
header{
  position:fixed; top:0; left:0; right:0; z-index:100;
  background: rgba(5,7,12,0.72);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom:1px solid var(--line-soft);
}
nav{
  max-width:1180px; margin:0 auto; padding:16px 32px;
  display:flex; align-items:center; justify-content:space-between;
}
.brand{ display:flex; align-items:center; gap:10px; }
.brand img{ height:30px; width:auto; }
.brand span{ font-family:'Space Grotesk'; font-weight:700; font-size:18px; }
.navlinks{ display:flex; gap:36px; }
.navlinks a{
  font-size:14px; color:var(--muted); font-weight:500;
  position:relative; padding:4px 0; transition:color .25s;
}
.navlinks a::after{
  content:''; position:absolute; left:0; bottom:0; width:0; height:1px;
  background:var(--blue-bright); transition:width .25s;
}
.navlinks a:hover{ color:var(--white); }
.navlinks a:hover::after{ width:100%; }
.navlinks a.active{ color:var(--white); }
.navlinks a.active::after{ width:100%; }
.nav-cta{
  font-family:'JetBrains Mono'; font-size:12px; letter-spacing:0.05em;
  background:var(--blue); color:#fff; padding:10px 18px; border-radius:100px;
  transition: transform .2s, background .2s;
}
.nav-cta:hover{ background:var(--blue-bright); color:#05070C; transform:translateY(-1px); }

.nav-toggle{
  display:none; width:38px; height:38px; border:1px solid var(--line);
  border-radius:8px; align-items:center; justify-content:center;
  background:transparent; flex-shrink:0;
}
.nav-toggle svg{ width:18px; height:18px; }
.nav-toggle .icon-close{ display:none; }
header.menu-open .nav-toggle .icon-open{ display:none; }
header.menu-open .nav-toggle .icon-close{ display:block; }

.mobile-menu{ display:none; max-height:0; overflow:hidden; transition: max-height .35s ease; border-top:1px solid var(--line-soft); }
header.menu-open .mobile-menu{ max-height:420px; }
.mobile-menu-inner{ padding:20px 32px 28px; display:flex; flex-direction:column; gap:4px; }
.mobile-menu a{ padding:14px 4px; font-size:16px; color:var(--white); font-weight:500; border-bottom:1px solid var(--line-soft); }
.mobile-menu a.active{ color:var(--blue-bright); }
.mobile-menu .nav-cta{ margin-top:14px; text-align:center; width:100%; justify-content:center; display:flex; }

/* ============ PAGE HERO BANNER (subpages) ============ */
.page-hero{
  position:relative; padding:170px 0 90px; overflow:hidden; min-height:56vh;
  display:flex; align-items:flex-end;
}
.page-hero .bg{ position:absolute; inset:0; z-index:0; }
.page-hero .bg img{ width:100%; height:100%; object-fit:cover; }
.page-hero .bg::after{
  content:''; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(5,7,12,0.55) 0%, rgba(5,7,12,0.75) 55%, rgba(5,7,12,0.98) 100%);
}
.page-hero-content{ position:relative; z-index:2; }
.page-hero h1{ font-size:clamp(38px,6vw,66px); font-weight:700; line-height:1.03; max-width:820px; margin:22px 0 18px; }
.page-hero p{ color:var(--muted); font-size:17px; max-width:560px; line-height:1.6; }
.crumbs{ font-family:'JetBrains Mono'; font-size:12px; color:var(--muted-2); display:flex; gap:8px; align-items:center; }
.crumbs a{ color:var(--muted-2); transition:color .2s; }
.crumbs a:hover{ color:var(--blue-bright); }

/* ============ HOME HERO (full) ============ */
.hero{
  position:relative; min-height:100vh; display:flex; flex-direction:column; justify-content:center;
  padding:160px 0 90px; overflow:hidden;
}
.hero::before{
  content:''; position:absolute; inset:0;
  background:
    radial-gradient(ellipse 70% 55% at 18% 10%, rgba(47,111,237,0.22), transparent 60%),
    radial-gradient(ellipse 55% 45% at 88% 30%, rgba(85,199,247,0.14), transparent 60%);
  z-index:0;
}
.hero-grid{
  position:absolute; inset:0; z-index:0; opacity:0.35;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent 75%);
}
.hero-content{ position:relative; z-index:2; }
.hero-tag{
  font-family:'JetBrains Mono'; font-size:12px; color:var(--muted);
  border:1px solid var(--line); padding:7px 14px; border-radius:100px;
  display:inline-flex; align-items:center; gap:8px;
}
.hero-tag .dot{ width:6px; height:6px; border-radius:50%; background:#4ADE80; box-shadow:0 0 8px #4ADE80; }
.hero h1{ font-size: clamp(40px, 6.4vw, 84px); line-height: 1.01; font-weight:700; margin: 28px 0 26px; max-width: 920px; }
.hero h1 .line{ display:block; }
.hero h1 .grad{ background: linear-gradient(96deg, var(--blue-bright), var(--blue) 70%); -webkit-background-clip:text; background-clip:text; color:transparent; }
.hero p.lead{ font-size:18px; line-height:1.65; color:var(--muted); max-width:560px; margin-bottom:44px; }
.hero-ctas{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom:80px; }
.hero-stats{ display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid var(--line); padding-top:32px; gap:24px; }
.hero-stats .stat .num{
  font-family:'Space Grotesk'; font-size:28px; font-weight:700;
  background: linear-gradient(96deg, #fff, var(--blue-bright)); -webkit-background-clip:text; background-clip:text; color:transparent;
}
.hero-stats .stat .label{ font-family:'JetBrains Mono'; font-size:11.5px; color:var(--muted-2); letter-spacing:0.04em; margin-top:6px; }

/* ============ BUTTONS ============ */
.btn{
  font-family:'Space Grotesk'; font-weight:600; font-size:15px;
  padding:15px 28px; border-radius:10px; display:inline-flex; align-items:center; gap:10px;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s;
}
.btn-primary{ background:var(--blue); color:#fff; box-shadow: 0 8px 30px -8px rgba(47,111,237,0.6); }
.btn-primary:hover{ transform:translateY(-2px); box-shadow: 0 12px 34px -6px rgba(47,111,237,0.75); }
.btn-clay{ background:var(--clay); color:#fff; box-shadow: 0 8px 30px -8px rgba(226,133,62,0.55); }
.btn-clay:hover{ transform:translateY(-2px); }
.btn-ghost{ border:1px solid var(--line); color:var(--white); }
.btn-ghost:hover{ border-color:rgba(255,255,255,0.35); transform:translateY(-2px); }
.btn svg{ width:16px; height:16px; }

/* ============ SECTIONS ============ */
section{ position:relative; }
.section-head{ max-width:640px; margin-bottom:56px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size:clamp(30px,4vw,46px); font-weight:700; line-height:1.08; }
.section-head p{ color:var(--muted); font-size:16.5px; line-height:1.6; margin-top:18px; }

/* ============ ARMS OVERVIEW CARDS ============ */
.arms{ padding:20px 0 100px; }
.arms-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.arm-card{
  background:var(--surface); border:1px solid var(--line); border-radius: var(--radius);
  overflow:hidden; transition: transform .3s ease, border-color .3s ease; display:flex; flex-direction:column;
}
.arm-card:hover{ transform:translateY(-6px); border-color:rgba(255,255,255,0.2); }
.arm-card .img-wrap{ height:200px; overflow:hidden; position:relative; }
.arm-card .img-wrap img{ width:100%; height:100%; object-fit:cover; transition:transform .6s ease; }
.arm-card:hover .img-wrap img{ transform:scale(1.07); }
.arm-card .img-wrap::after{ content:''; position:absolute; inset:0; background:linear-gradient(180deg, transparent 40%, rgba(12,17,26,0.9)); }
.arm-card .body{ padding:26px 24px 30px; flex:1; display:flex; flex-direction:column; }
.arm-card .idx{ font-family:'JetBrains Mono'; font-size:12px; color:var(--muted-2); margin-bottom:10px; }
.arm-card h3{ font-size:21px; margin-bottom:10px; }
.arm-card p{ color:var(--muted); font-size:14.5px; line-height:1.6; flex:1; }
.arm-card .go{ margin-top:20px; font-family:'JetBrains Mono'; font-size:12.5px; color:var(--blue-bright); display:flex; align-items:center; gap:6px; }
svg{ width:1em; height:1em; }

/* ============ DEEP SECTION ============ */
.deep{ padding:100px 0; border-top:1px solid var(--line-soft); }
.deep.alt{ background:var(--surface); }
.deep-inner{ display:grid; grid-template-columns: 0.9fr 1.1fr; gap:64px; align-items:center; }
.deep-inner.reverse{ grid-template-columns: 1.1fr 0.9fr; }
.deep-inner.reverse .deep-text{ order:2; }
.deep-text h2{ font-size:clamp(28px,3.6vw,40px); margin-bottom:20px; line-height:1.1; }
.deep-text p{ color:var(--muted); font-size:16px; line-height:1.7; margin-bottom:16px; }
.deep-text .checklist{ margin:26px 0 34px; display:flex; flex-direction:column; gap:14px; }
.deep-text .checklist div{ display:flex; gap:12px; align-items:flex-start; font-size:14.5px; color:var(--white); }
.deep-text .checklist svg{ flex-shrink:0; margin-top:3px; width:16px; height:16px; color:var(--blue-bright); }
.deep.clay .checklist svg{ color:var(--clay); }

.bento{ display:grid; grid-template-columns:1.2fr 1fr; grid-template-rows: 160px 160px; gap:14px; }
.bento .b1{ grid-row: 1 / 3; }
.bento .cell{
  display:block; margin:0; border-radius:12px; overflow:hidden; position:relative; border:1px solid var(--line);
  cursor: zoom-in; background:var(--surface-2);
}
.bento img{ width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.bento .cell:hover img{ transform:scale(1.06); }

/* ============ GALLERY GRID (photo-heavy pages) ============ */
.gallery{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.gallery .g-item{
  border-radius:12px; overflow:hidden; border:1px solid var(--line); cursor:zoom-in;
  position:relative; background:var(--surface-2);
}
.gallery .g-item.tall{ grid-row: span 2; }
.gallery img{ width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.gallery .g-item:hover img{ transform:scale(1.06); }
.gallery .g-item .cap{
  position:absolute; left:0; right:0; bottom:0; padding:14px 16px;
  background:linear-gradient(180deg, transparent, rgba(5,7,12,0.92));
  font-family:'JetBrains Mono'; font-size:11.5px; color:var(--muted); opacity:0; transition:opacity .25s;
}
.gallery .g-item:hover .cap{ opacity:1; }

/* quote block */
.quote-block{ margin-top:38px; padding:22px 24px; border-left:2px solid var(--clay); background: rgba(226,133,62,0.06); border-radius:0 10px 10px 0; }
.quote-block p{ font-style:italic; color:var(--white); font-size:15px; margin:0; }
.quote-block .who{ margin-top:10px; font-family:'JetBrains Mono'; font-size:11.5px; color:var(--clay); }

/* ============ IMPACT / FULL BLEED STRIP ============ */
.impact-strip{ position:relative; margin: 0; height:460px; overflow:hidden; border-top:1px solid var(--line-soft); border-bottom:1px solid var(--line-soft); }
.impact-strip img{ width:100%; height:100%; object-fit:cover; }
.impact-strip .overlay{ position:absolute; inset:0; background: linear-gradient(180deg, rgba(5,7,12,0.15) 0%, rgba(5,7,12,0.55) 65%, rgba(5,7,12,0.95) 100%); display:flex; align-items:flex-end; padding: 48px; }
.impact-strip .cap{ max-width:640px; }
.impact-strip .cap h3{ font-size:26px; margin-bottom:8px; }
.impact-strip .cap p{ color:var(--muted); font-size:14.5px; }

/* ============ EVENTS ============ */
.events-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:24px; }
.event-photo{ border-radius:var(--radius); overflow:hidden; border:1px solid var(--line); height:420px; position:relative; cursor:zoom-in; }
.event-photo img{ width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.event-photo:hover img{ transform:scale(1.05); }
.events-side{ display:flex; flex-direction:column; justify-content:center; }
.event-badge{ display:inline-flex; align-items:center; gap:8px; font-family:'JetBrains Mono'; font-size:11.5px; color:var(--muted); border:1px solid var(--line); padding:6px 12px; border-radius:100px; margin-bottom:22px; width:fit-content; }
.events-list{ margin-top:26px; display:flex; flex-direction:column; gap:0; }
.events-list .row{ display:flex; justify-content:space-between; align-items:center; padding:16px 0; border-top:1px solid var(--line); font-size:14px; gap:16px; }
.events-list .row:last-child{ border-bottom:1px solid var(--line); }
.events-list .row .name{ color:var(--white); font-weight:500; }
.events-list .row .meta{ font-family:'JetBrains Mono'; color:var(--muted-2); font-size:12px; text-align:right; }

.event-card{ background:var(--surface); border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; display:flex; flex-direction:column; transition:transform .3s, border-color .3s; }
.event-card:hover{ transform:translateY(-6px); border-color:rgba(255,255,255,0.2); }
.event-card .img-wrap{ height:190px; overflow:hidden; cursor:zoom-in; }
.event-card .img-wrap img{ width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.event-card:hover .img-wrap img{ transform:scale(1.06); }
.event-card .body{ padding:22px 22px 26px; }
.event-card .tag{ font-family:'JetBrains Mono'; font-size:11px; color:var(--clay); margin-bottom:8px; display:block; }
.event-card h4{ font-size:17px; margin-bottom:8px; }
.event-card p{ color:var(--muted); font-size:13.5px; line-height:1.55; }

/* ============ TEAM ============ */
.team-photo-wrap{ border-radius: var(--radius); overflow:hidden; border:1px solid var(--line); margin-bottom:56px; position:relative; cursor:zoom-in; }
.team-photo-wrap img{ width:100%; max-height:520px; object-fit:cover; transition:transform .5s ease; }
.team-photo-wrap:hover img{ transform:scale(1.03); }
.team-roles{ display:grid; grid-template-columns:repeat(5,1fr); gap:20px; }
.role-card{ border:1px solid var(--line); border-radius:12px; padding:22px 18px; text-align:left; background: var(--black); transition:border-color .25s, transform .25s; }
.role-card:hover{ border-color:var(--blue); transform:translateY(-4px); }
.role-card .mark{ width:30px; height:30px; margin-bottom:16px; }
.role-card h4{ font-size:15.5px; margin-bottom:4px; }
.role-card p{ font-size:12.5px; color:var(--muted-2); font-family:'JetBrains Mono'; }

/* ============ CONTACT ============ */
.contact-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-bottom:70px; }
.contact-card{ background:var(--surface); border:1px solid var(--line); border-radius:var(--radius); padding:30px 26px; transition:transform .25s, border-color .25s; }
.contact-card:hover{ transform:translateY(-6px); border-color:rgba(255,255,255,0.2); }
.contact-card .ic{ width:38px; height:38px; border-radius:10px; background:rgba(47,111,237,0.12); display:flex; align-items:center; justify-content:center; margin-bottom:20px; }
.contact-card .ic svg{ width:18px; height:18px; color:var(--blue-bright); }
.contact-card h4{ font-size:17px; margin-bottom:10px; }
.contact-card p{ color:var(--muted); font-size:14px; line-height:1.6; margin-bottom:18px; }
.contact-card a.email{ font-family:'JetBrains Mono'; font-size:13px; color:var(--blue-bright); }
.map-wrap{ border-radius:var(--radius); overflow:hidden; border:1px solid var(--line); height:380px; filter:grayscale(0.4) invert(0.92) contrast(0.85); }
.map-wrap iframe{ width:100%; height:100%; border:0; }

/* ============ CTA BAND ============ */
.ctaband{ padding:110px 0; text-align:center; position:relative; overflow:hidden; }
.ctaband::before{ content:''; position:absolute; inset:0; background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(47,111,237,0.25), transparent 70%); }
.ctaband-inner{ position:relative; z-index:1; }
.ctaband h2{ font-size:clamp(32px,5vw,58px); max-width:780px; margin:0 auto 26px; line-height:1.08; }
.ctaband p{ color:var(--muted); font-size:16px; max-width:500px; margin:0 auto 40px; }
.ctaband .btn-row{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

/* ============ FOOTER ============ */
footer{ padding:70px 0 40px; border-top:1px solid var(--line-soft); }
.footer-top{ display:grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap:40px; margin-bottom:60px; }
.footer-brand .brand{ margin-bottom:16px; }
.footer-brand p{ color:var(--muted); font-size:14px; line-height:1.6; max-width:280px; }
.fcol h5{ font-family:'JetBrains Mono'; font-size:12px; letter-spacing:0.08em; text-transform:uppercase; color:var(--muted-2); margin-bottom:18px; }
.fcol a{ display:block; color:var(--muted); font-size:14px; margin-bottom:12px; transition:color .2s; }
.fcol a:hover{ color:var(--white); }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding-top:28px; border-top:1px solid var(--line-soft); font-size:13px; color:var(--muted-2); flex-wrap:wrap; gap:16px; }
.socials{ display:flex; gap:16px; }
.socials a{ width:34px; height:34px; border:1px solid var(--line); border-radius:8px; display:flex; align-items:center; justify-content:center; transition: border-color .2s, transform .2s; }
.socials a:hover{ border-color:var(--blue-bright); transform:translateY(-2px); }
.socials svg{ width:15px; height:15px; }

/* ============ LIGHTBOX (native <dialog> — renders in the browser's top layer, ============ */
/* ============ so it's always painted above everything else on the page) ============ */
dialog.lightbox{
  border:0; padding:0; background:transparent; margin:auto;
  width:100%; height:100%; max-width:100vw; max-height:100vh;
}
dialog.lightbox::backdrop{ background:rgba(5,7,12,0.94); }
dialog.lightbox .inner{ width:100%; height:100%; display:flex; align-items:center; justify-content:center; padding:40px; }
dialog.lightbox img{ max-width:min(1100px, 90vw); max-height:86vh; object-fit:contain; border-radius:10px; box-shadow:0 30px 80px -20px rgba(0,0,0,0.6); }
.lightbox-close{
  position:fixed; top:28px; right:32px; width:44px; height:44px; border-radius:50%;
  border:1px solid var(--line); background:rgba(12,17,26,0.7); display:flex; align-items:center; justify-content:center;
  transition:border-color .2s, transform .2s; z-index:2;
}
.lightbox-close:hover{ border-color:var(--blue-bright); transform:rotate(90deg); }
.lightbox-close svg{ width:18px; height:18px; }

/* ============ reveal on scroll (progressive enhancement — visible by default) ============ */
.js-ready .reveal{ opacity:0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.js-ready .reveal.in{ opacity:1; transform:none; }

/* ============ responsive ============ */
@media (max-width: 980px){
  .navlinks{ display:none; }
  .nav-cta{ display:none; }
  .nav-toggle{ display:flex; }
  .mobile-menu{ display:block; }

  .hero{ padding-top:140px; min-height:auto; }
  .hero-stats{ grid-template-columns:repeat(2,1fr); row-gap:32px; }
  .page-hero{ padding:140px 0 70px; min-height:44vh; }

  .arms-grid{ grid-template-columns:1fr; }

  .deep{ padding:72px 0; }
  .deep-inner, .deep-inner.reverse{ grid-template-columns:1fr; gap:40px; }
  .deep-inner.reverse .deep-text{ order:0; }
  .bento{ grid-template-columns:1fr 1fr; grid-template-rows:180px 180px; }

  .gallery{ grid-template-columns:1fr 1fr; }
  .gallery .g-item.tall{ grid-row:span 1; height:220px; }
  .gallery .g-item{ height:220px; }

  .events-grid{ grid-template-columns:1fr; gap:36px; }
  .event-photo{ height:320px; }
  .events-grid.cards{ grid-template-columns:1fr 1fr; }

  .team-roles{ grid-template-columns:repeat(2,1fr); }
  .contact-grid{ grid-template-columns:1fr; }

  .ctaband{ padding:80px 0; }
  .footer-top{ grid-template-columns:1fr 1fr; row-gap:40px; }
}

@media (max-width:720px){
  .impact-strip{ height:380px; }
  .events-grid.cards{ grid-template-columns:1fr; }
}

@media (max-width:560px){
  .wrap{ padding:0 20px; }
  nav{ padding:14px 20px; }
  .mobile-menu-inner{ padding:16px 20px 24px; }
  .hero{ padding-top:120px; }
  .page-hero{ padding:110px 0 56px; }
  .hero-stats{ grid-template-columns:1fr 1fr; row-gap:26px; }
  .hero-ctas{ flex-direction:column; align-items:stretch; }
  .hero-ctas .btn{ justify-content:center; }

  .bento{ grid-template-columns:1fr; grid-template-rows:none; }
  .bento .b1{ grid-row:auto; height:220px; }
  .bento .cell{ height:200px; }

  .gallery{ grid-template-columns:1fr; }
  .gallery .g-item, .gallery .g-item.tall{ height:240px; grid-row:auto; }

  .events-list .row{ flex-direction:column; align-items:flex-start; gap:4px; }
  .events-list .row .meta{ text-align:left; }

  .team-roles{ grid-template-columns:1fr 1fr; gap:14px; }
  .role-card{ padding:18px 14px; }

  .footer-top{ grid-template-columns:1fr; row-gap:36px; }
  .footer-bottom{ flex-direction:column; align-items:flex-start; }

  .impact-strip{ height:300px; }
  .impact-strip .overlay{ padding:28px 20px; }

  .lightbox{ padding:20px; }
  .lightbox-close{ top:16px; right:16px; }
}

@media (max-width:400px){
  .hero-stats{ grid-template-columns:1fr; }
  .team-roles{ grid-template-columns:1fr; }
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
