 :root {
    --black: #04080F;
    --deep: #080E1A;
    --panel: #0D1526;
    --border: rgba(20,40,255,0.18);
    --blue: #1428FF;
    --blue-dim: rgba(20,40,255,0.10);
    --orange: #FF8A00;
    --orange-dim: rgba(255,138,0,0.12);
    --white: #EEF4FF;
    --muted: #EEF4FF;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--black);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
  }

  /* FIXED HEX CANVAS */
  #hexCanvas {
    position: fixed; inset: 0; z-index: 0;
    width: 100%; height: 100%;
    pointer-events: none;
  }
  nav, section, footer, #trust, .stats-wrap { position: relative; z-index: 1; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 5vw;
    background: rgba(4,8,15,0.88);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: background .3s;
  }
  .nav-logo {
    font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.25rem;
    display: flex; align-items: center; gap: .5rem;
    text-decoration: none; color: var(--white);
  }
  .logo-word-node { color: var(--blue); }
  .logo-img {
    height: 2rem; width: auto; object-fit: contain; flex-shrink: 0;
    filter: drop-shadow(0 0 4px rgba(255,138,0,0.25));
  }
  body.light .logo-img {
    filter: none;
  }
  /* Keep pulse dot animation for mobile menu — not needed but safe fallback */
  @keyframes pulse-dot {
    0%,100% { box-shadow: 0 0 6px var(--orange); }
    50% { box-shadow: 0 0 20px var(--orange); }
  }
  .nav-links { display: flex; gap: 1.8rem; list-style: none; align-items: center; }
  .nav-links a {
    font-family: 'Poppins', sans-serif; font-size: .76rem; font-weight: 500;
    letter-spacing: .04em; color: var(--muted); text-decoration: none;
    text-transform: uppercase; transition: color .25s;
  }
  .nav-links a:hover { color: var(--white); }
  .nav-links a.spy-active {
    color: var(--white);
    position: relative;
  }
  .nav-links a.spy-active::after {
    content: '';
    position: absolute; bottom: -4px; left: 0; right: 0;
    height: 2px; border-radius: 2px;
    background: var(--orange);
  }
  /* Mobile spy-active */
  .mob-links a.spy-active { color: var(--white); }
  body.light .nav-links a.spy-active { color: var(--white); }
  body.light .mob-links a.spy-active { color: rgba(10,15,36,.9); }

  /* Services dropdown */
  .nav-dropdown { position: relative; }
  .nav-dropdown > a { display: flex; align-items: center; gap: .35rem; cursor: pointer; }
  .nav-dropdown > a::after {
    content: ''; display: inline-block;
    width: 0; height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid var(--muted);
    transition: transform .2s, border-color .2s;
  }
  .nav-dropdown:hover > a::after { transform: rotate(180deg); border-top-color: var(--white); }
  .nav-dropdown-menu {
    display: none; position: absolute; top: 100%; left: 50%;
    transform: translateX(-50%);
    padding-top: 0.8rem; /* invisible bridge — keeps hover alive over the gap */
    z-index: 300;
  }
  /* Inner panel — visually separated from the link */
  .nav-dropdown-panel {
    background: rgba(8,14,26,0.97); backdrop-filter: blur(24px);
    border: 1px solid rgba(20,40,255,0.22); border-radius: 8px;
    padding: .5rem; min-width: 180px;
    box-shadow: 0 16px 40px rgba(0,0,0,.5);
    position: relative;
  }
  .nav-dropdown-panel::before {
    content: ''; position: absolute; top: -5px; left: 50%; transform: translateX(-50%);
    width: 10px; height: 10px;
    background: rgba(8,14,26,0.97);
    border-left: 1px solid rgba(20,40,255,0.22);
    border-top: 1px solid rgba(20,40,255,0.22);
    transform: translateX(-50%) rotate(45deg);
  }
  .nav-dropdown:hover .nav-dropdown-menu { display: block; animation: dropIn .18s ease; }
  @keyframes dropIn { from { opacity:0; transform: translateX(-50%) translateY(-4px); } to { opacity:1; transform: translateX(-50%) translateY(0); } }
  .nav-dropdown-menu a {
    display: flex; align-items: center; gap: .7rem;
    font-family: 'Poppins', sans-serif; font-size: .74rem; font-weight: 500;
    color: rgba(200,215,240,0.75); text-decoration: none; padding: .6rem .9rem;
    border-radius: 5px; transition: background .18s, color .18s;
    text-transform: none; letter-spacing: .02em; white-space: nowrap;
  }
  .nav-dropdown-menu a:hover { background: var(--blue-dim); color: #fff; }
  .nav-dropdown-menu a .dd-icon {
    width: 28px; height: 28px; border-radius: 6px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center; font-size: .85rem;
  }
  .nav-dropdown-menu a:first-child .dd-icon { background: rgba(20,40,255,0.15); }
  .nav-dropdown-menu a:last-child .dd-icon { background: rgba(255,138,0,0.15); }
  .dd-sep { height: 1px; background: rgba(20,40,255,0.18); margin: .3rem .5rem; }

  /* nav right side */
  .nav-right { display: flex; align-items: center; gap: .8rem; }
  .nav-cta {
    font-family: 'Poppins', sans-serif; font-size: .74rem; font-weight: 600;
    letter-spacing: .06em; text-transform: uppercase; padding: .5rem 1.4rem;
    border: 1px solid var(--blue); color: var(--blue);
    background: transparent; border-radius: 4px; cursor: pointer;
    transition: background .25s, color .25s; text-decoration: none;
  }
  .nav-cta:hover { background: var(--blue); color: #fff; }

  /* Light mode toggle */
  .theme-toggle {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid var(--border); background: transparent;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    font-size: 1rem; transition: border-color .2s, background .2s;
    color: var(--muted); flex-shrink: 0;
  }
  .theme-toggle:hover { border-color: var(--orange); background: var(--orange-dim); color: var(--orange); }

  /* Notification bell */
  .notif-btn {
    position: relative; width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid var(--border); background: transparent;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    font-size: .95rem; transition: border-color .2s, background .2s;
    color: var(--muted); flex-shrink: 0; text-decoration: none;
  }
  .notif-btn:hover { border-color: var(--blue); background: var(--blue-dim); color: var(--white); }
  .notif-badge {
    position: absolute; top: -3px; right: -3px;
    width: 16px; height: 16px; border-radius: 50%;
    background: var(--orange); border: 2px solid var(--black);
    display: flex; align-items: center; justify-content: center;
    font-size: .5rem; font-weight: 800; color: #fff;
    font-family: 'Poppins', sans-serif; line-height: 1;
  }
  /* Notification dropdown */
  .notif-dropdown {
    display: none; position: absolute; top: calc(100% + .6rem); right: 0;
    width: 320px; background: rgba(8,14,26,0.98);
    backdrop-filter: blur(24px);
    border: 1px solid var(--border); border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0,0,0,.6); z-index: 300; overflow: hidden;
  }
  .notif-wrap { position: relative; }
  .notif-wrap:hover .notif-dropdown,
  .notif-dropdown.open { display: block; animation: dropIn .18s ease; }
  .notif-head {
    padding: .85rem 1rem; border-bottom: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
  }
  .notif-head-title { font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--white); }
  .notif-head-clear { font-size: .64rem; color: var(--blue); cursor: pointer; background: none; border: none; font-family: 'Poppins',sans-serif; font-weight: 600; }
  .notif-head-clear:hover { opacity: .75; }
  .notif-item {
    display: flex; gap: .8rem; padding: .85rem 1rem;
    border-bottom: 1px solid var(--border); transition: background .15s; cursor: pointer;
  }
  .notif-item:last-child { border-bottom: none; }
  .notif-item:hover { background: rgba(20,40,255,.06); }
  .notif-item.unread { background: rgba(20,40,255,.05); }
  .notif-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); flex-shrink: 0; margin-top: .35rem; }
  .notif-dot.orange { background: var(--orange); }
  .notif-dot.green { background: #00c864; }
  .notif-dot.read { background: transparent; border: 1px solid var(--border); }
  .notif-text { flex: 1; font-size: .76rem; color: var(--muted); line-height: 1.55; }
  .notif-text strong { color: var(--white); font-weight: 600; }
  .notif-time { font-size: .6rem; color: rgba(200,215,240,.35); margin-top: .2rem; }
  .notif-empty { padding: 2rem 1rem; text-align: center; font-size: .78rem; color: rgba(200,215,240,.35); }

  /* ── LIGHT MODE ── */
  body.light {
    --black: #F0F4FF;
    --deep: #E4EAFF;
    --panel: #FFFFFF;
    --border: rgba(20,40,255,0.14);
    --white: #0A0F24;
    --muted: #04080F;
    --blue-dim: rgba(20,40,255,0.08);
    --orange-dim: rgba(255,138,0,0.10);
  }
  body.light nav { background: rgba(230,236,255,0.95) !important; }
  body.light footer { background: #E4EAFF; }
  body.light #trust { background: rgba(210,220,255,0.85); border-color: rgba(20,40,255,0.15); }
  body.light .trust-label { color: rgba(10,15,36,0.6); }
  body.light .trust-item span { color: rgba(10,15,36,0.5); }
  body.light .trust-item:hover span { color: rgba(10,15,36,0.9); }
  body.light .stats-wrap { background: rgba(220,228,255,0.6); }
  body.light #value { background: rgba(224,232,255,0.5); }
  body.light #dashboard { background: rgba(224,232,255,0.6); }
  body.light .about-visual::before { background: radial-gradient(circle, rgba(20,40,255,.06), transparent 70%); }
  body.light #hexCanvas { opacity: 1; } /* Controlled per-frame in draw() */
  /* Dropdown stays dark on light mode — high contrast against the light nav */
  body.light .nav-dropdown-panel {
    background: #0D1526;
    border-color: rgba(20,40,255,0.3);
    box-shadow: 0 16px 40px rgba(0,0,0,.25);
  }
  body.light .nav-dropdown-panel::before { background: #0D1526; border-color: rgba(20,40,255,0.3); }

  /* HERO */
  #hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center;
    padding: 0 5vw; padding-top: 80px;
    overflow: hidden;
  }
  .hero-content { position: relative; z-index: 2; max-width: 760px; }
  .hero-tag {
    display: inline-flex; align-items: center; gap: .6rem;
    font-family: 'Poppins', sans-serif; font-size: .7rem; font-weight: 600;
    letter-spacing: .12em; text-transform: uppercase; color: var(--blue);
    border: 1px solid var(--border); border-radius: 3px;
    padding: .35rem .85rem; margin-bottom: 2rem; background: var(--blue-dim);
  }
  .hero-tag::before {
    content: ''; width: 6px; height: 6px; background: var(--orange);
    border-radius: 50%; box-shadow: 0 0 8px var(--orange);
  }
  h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.4rem, 5.5vw, 5rem);
    font-weight: 800; line-height: 1.06; letter-spacing: -.02em;
    margin-bottom: 1.5rem;
  }
  h1 em { font-style: normal; color: var(--blue); }
  .hero-sub {
    font-family: 'Poppins', sans-serif; font-size: 1.08rem; font-weight: 300;
    color: var(--muted); max-width: 560px; margin-bottom: 1rem; line-height: 1.78;
  }
  .hero-tagline {
    font-family: 'Poppins', sans-serif; font-size: .82rem; font-weight: 600;
    color: var(--orange); letter-spacing: .06em; margin-bottom: 2.5rem;
    display: flex; align-items: center; gap: .7rem;
  }
  .hero-tagline::before { content: ''; flex: 0 0 28px; height: 1px; background: var(--orange); }
  .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

  /* BUTTONS */
  .btn-primary {
    font-family: 'Poppins', sans-serif; font-size: .78rem; font-weight: 600;
    letter-spacing: .06em; text-transform: uppercase; padding: .85rem 2rem;
    background: var(--blue); color: #fff; border: none;
    border-radius: 4px; cursor: pointer;
    transition: transform .2s, box-shadow .2s; text-decoration: none;
    display: inline-block;
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(20,40,255,.4); }
  .btn-primary.orange { background: var(--orange); }
  .btn-primary.orange:hover { box-shadow: 0 8px 36px rgba(255,138,0,.45); }
  .btn-outline {
    font-family: 'Poppins', sans-serif; font-size: .78rem; font-weight: 500;
    letter-spacing: .06em; text-transform: uppercase; padding: .85rem 2rem;
    background: transparent; color: var(--white);
    border: 1px solid rgba(200,215,240,.25); border-radius: 4px;
    cursor: pointer; transition: border-color .2s; text-decoration: none; display: inline-block;
  }
  .btn-outline:hover { border-color: var(--white); }
  .btn-ghost {
    font-family: 'Poppins', sans-serif; font-size: .78rem; font-weight: 500;
    letter-spacing: .06em; text-transform: uppercase; padding: .75rem 1.6rem;
    background: transparent; color: var(--muted);
    border: 1px solid rgba(200,215,240,.15); border-radius: 4px;
    cursor: pointer; transition: all .2s; text-decoration: none; display: inline-block;
  }
  .btn-ghost:hover { color: var(--white); border-color: rgba(200,215,240,.35); }


  /* SECTIONS */
  section { padding: 6.5rem 5vw; }
  .section-tag {
    font-family: 'Poppins', sans-serif; font-size: .63rem; font-weight: 700;
    letter-spacing: .14em; text-transform: uppercase; color: var(--blue); margin-bottom: 1rem;
    display: flex; align-items: center; gap: .7rem;
  }
  .section-tag::before { content: ''; flex: 0 0 20px; height: 1px; background: var(--blue); }
  .section-tag.orange-tag { color: var(--orange); }
  .section-tag.orange-tag::before { background: var(--orange); }
  h2 {
    font-family: 'Poppins', sans-serif; font-weight: 800;
    font-size: clamp(1.8rem, 3.2vw, 2.9rem);
    line-height: 1.1; letter-spacing: -.02em; margin-bottom: 1.1rem;
  }
  h2 em { font-style: normal; color: var(--blue); }
  h2 em.orange { color: var(--orange); }
  .body-text {
    font-family: 'Poppins', sans-serif; font-weight: 300;
    color: var(--muted); max-width: 580px; font-size: 1rem; line-height: 1.8;
  }

  /* STATS */
  .stats-wrap { padding: 0 5vw 3rem; background: rgba(8,14,26,0.6); }
  .stats-strip {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1px; background: var(--border);
    border: 1px solid var(--border); border-radius: 6px; overflow: hidden;
  }
  .stat-cell { background: var(--panel); padding: 2rem 1.5rem; text-align: center; }
  .stat-num { font-family: 'Poppins', sans-serif; font-size: 2.3rem; font-weight: 800; color: var(--blue); display: block; line-height: 1; }
  .stat-label { font-family: 'Poppins', sans-serif; font-size: .58rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: .4rem; }


  /* ABOUT */
  #about { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
  .about-visual { border: 1px solid var(--border); border-radius: 8px; background: var(--panel); padding: 2.5rem; overflow: hidden; position: relative; }
  .about-visual::before { content: ''; position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(20,40,255,.08), transparent 70%); }
  .about-quote { font-family: 'Poppins', sans-serif; font-size: 1.05rem; font-weight: 500; line-height: 1.65; color: var(--white); position: relative; }
  .about-quote::before { content: '"\2019'; font-size: 5rem; color: var(--blue); opacity: .18; line-height: .7; display: block; margin-bottom: .5rem; }
  .about-sdgs { margin-top: 1.8rem; display: flex; gap: .6rem; flex-wrap: wrap; }
  .sdg-chip { font-family: 'Poppins', sans-serif; font-size: .56rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: .3rem .7rem; border: 1px solid var(--border); border-radius: 3px; color: var(--muted); background: var(--blue-dim); }

  /* VALUE PROPS */
  #value { background: rgba(8,14,26,0.5); }
  .vp-tabs { display: flex; gap: 0; margin-bottom: 2.5rem; border: 1px solid var(--border); border-radius: 5px; overflow: hidden; max-width: 360px; }
  .vp-tab { flex: 1; padding: .7rem 1.2rem; text-align: center; font-family: 'Poppins', sans-serif; font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; border: none; background: transparent; color: var(--muted); transition: all .25s; }
  .vp-tab.active { background: var(--blue); color: #fff; }
  .vp-panel { display: none; }
  .vp-panel.active { display: block; }
  .feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; margin-top: 2rem; }
  .feat-card { background: var(--panel); border: 1px solid var(--border); border-radius: 8px; padding: 1.8rem; transition: border-color .25s, transform .25s; }
  .feat-card:hover { border-color: var(--blue); transform: translateY(-4px); }
  .feat-icon { font-size: 1.4rem; margin-bottom: 1rem; width: 44px; height: 44px; border-radius: 8px; background: var(--blue-dim); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; }
  .feat-card h3 { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: .92rem; margin-bottom: .5rem; color: var(--white); }
  .feat-card p { font-family: 'Poppins', sans-serif; font-size: .86rem; font-weight: 300; color: var(--muted); line-height: 1.65; }

  
  /* IMPACT */
  #impact { background: var(--black); }
  .impact-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 1rem; margin-top: 2.5rem; }
  .sdg-card { background: var(--panel); border: 1px solid var(--border); border-radius: 8px; padding: 1.5rem 1rem; text-align: center; transition: border-color .25s, transform .25s; }
  .sdg-card:hover { border-color: var(--orange); transform: translateY(-4px); }
  .sdg-num { font-family: 'Poppins', sans-serif; font-size: 1.7rem; font-weight: 800; color: var(--orange); line-height: 1; }
  .sdg-title { font-family: 'Poppins', sans-serif; font-size: .54rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); margin: .5rem 0 .35rem; }
  .sdg-desc { font-family: 'Poppins', sans-serif; font-size: .8rem; font-weight: 300; color: var(--muted); line-height: 1.5; }

  /* DASHBOARD */
  #dashboard { background: rgba(8,14,26,0.6); }
  .dash-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: center; margin-top: 2.5rem; }
  .dash-bullet { display: flex; align-items: center; gap: .8rem; margin-bottom: .7rem; }
  .dash-bullet-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 10px var(--blue); flex-shrink: 0; }
  .dash-bullet span { font-family: 'Poppins', sans-serif; color: var(--muted); font-size: .9rem; font-weight: 300; }
  .dash-mockup { background: var(--panel); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; box-shadow: 0 40px 80px rgba(0,0,0,.55); }
  .dash-topbar { background: rgba(0,0,0,.35); border-bottom: 1px solid var(--border); padding: .75rem 1.2rem; display: flex; align-items: center; gap: .5rem; }
  .d1{width:8px;height:8px;border-radius:50%;background:#FF5F56}
  .d2{width:8px;height:8px;border-radius:50%;background:#FFBD2E}
  .d3{width:8px;height:8px;border-radius:50%;background:#27C93F}
  .dash-url { margin-left: auto; font-family: 'Poppins', sans-serif; font-size: .56rem; font-weight: 500; color: var(--muted); background: rgba(255,255,255,.05); padding: .2rem .7rem; border-radius: 2px; }
  .dash-body { display: flex; }
  .dash-sidebar { width: 120px; border-right: 1px solid var(--border); padding: 1rem .7rem; background: rgba(0,0,0,.2); }
  .dash-tab { font-family: 'Poppins', sans-serif; font-size: .5rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); padding: .5rem .5rem; border-radius: 3px; margin-bottom: .3rem; cursor: pointer; transition: all .2s; display: flex; align-items: center; gap: .4rem; }
  .dash-tab.active { background: var(--blue-dim); color: var(--blue); }
  .dash-content { flex: 1; padding: 1.2rem; }
  .dash-stat-row { display: flex; gap: .7rem; margin-bottom: 1rem; }
  .dash-stat { flex: 1; background: var(--blue-dim); border: 1px solid var(--border); border-radius: 4px; padding: .7rem; }
  .ds-val { font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 800; color: var(--blue); }
  .ds-lbl { font-family: 'Poppins', sans-serif; font-size: .45rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: .2rem; }
  .dash-prog-label { font-family: 'Poppins', sans-serif; font-size: .5rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: .4rem; }
  .dash-prog-bar { height: 5px; background: rgba(255,255,255,.07); border-radius: 3px; overflow: hidden; }
  .dash-prog-fill { height: 100%; width: 65%; background: linear-gradient(90deg, var(--blue), var(--orange)); border-radius: 3px; }
  .dash-badge { margin-top: .75rem; background: var(--orange-dim); border: 1px solid rgba(255,138,0,.2); border-radius: 3px; padding: .5rem .7rem; font-family: 'Poppins', sans-serif; font-size: .48rem; font-weight: 500; letter-spacing: .06em; color: var(--orange); }

  /* CONTACT + FAQ */
  #contact-faq { background: var(--deep); }
  .cf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 3rem; }
  .cf-card { background: var(--panel); border: 1px solid var(--border); border-radius: 10px; padding: 2.5rem; }
  .cf-card h3 { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.3rem; margin-bottom: .5rem; }
  .cf-card .cf-sub { font-family: 'Poppins', sans-serif; font-size: .88rem; font-weight: 300; color: var(--muted); margin-bottom: 1.8rem; line-height: 1.7; }
  /* Contact form */
  .cf-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
  .cf-input {
    width: 100%; background: var(--deep); border: 1px solid var(--border);
    border-radius: 5px; padding: .7rem 1rem;
    color: var(--white); font-family: 'Poppins', sans-serif; font-size: .88rem; font-weight: 300;
    outline: none; transition: border-color .2s;
  }
  .cf-input::placeholder { color: var(--muted); }
  .cf-input:focus { border-color: var(--blue); }
  textarea.cf-input { resize: vertical; min-height: 100px; margin-bottom: 1rem; }
  /* FAQ accordion */
  .faq-item { border-bottom: 1px solid var(--border); }
  .faq-item:last-child { border-bottom: none; }
  .faq-q {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 0; cursor: pointer;
    font-family: 'Poppins', sans-serif; font-size: .9rem; font-weight: 600;
    color: var(--white); gap: 1rem; transition: color .2s; user-select: none;
  }
  .faq-q:hover { color: var(--blue); }
  .faq-chevron {
    width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    font-size: .6rem; transition: transform .3s, background .2s, border-color .2s;
  }
  .faq-item.open .faq-chevron { transform: rotate(180deg); background: var(--blue-dim); border-color: var(--blue); color: var(--blue); }
  .faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height .35s ease, padding .3s ease;
    font-family: 'Poppins', sans-serif; font-size: .88rem; font-weight: 300;
    color: var(--muted); line-height: 1.75;
  }
  .faq-item.open .faq-a { max-height: 200px; padding-bottom: 1rem; }

  /* COMMUNITY PARTNERS */
  #partners { background: var(--deep); }
  .partners-slider { overflow: hidden; margin-top: 2.5rem; position: relative; }
  .partners-slider::before, .partners-slider::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
  }
  .partners-slider::before { left: 0; background: linear-gradient(to right, var(--deep), transparent); }
  .partners-slider::after { right: 0; background: linear-gradient(to left, var(--deep), transparent); }
  .partners-track {
    display: flex; gap: 1.4rem; align-items: stretch;
    animation: scroll-partners 22s linear infinite;
    width: max-content;
  }
  .partners-track:hover { animation-play-state: paused; }
  @keyframes scroll-partners {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  .partner-card { background: var(--panel); border: 1px solid var(--border); border-radius: 8px; padding: 1.5rem 1.4rem; text-align: center; transition: border-color .3s, transform .3s; display: flex; flex-direction: column; align-items: center; gap: .75rem; min-width: 160px; flex-shrink: 0; }
  .partner-card:hover { border-color: rgba(255,138,0,.45); transform: translateY(-4px); }
  .partner-logo-wrap { width: 56px; height: 56px; border-radius: 50%; background: var(--orange-dim); border: 1px solid rgba(255,138,0,.22); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
  .partner-name { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: .78rem; color: var(--white); line-height: 1.3; }
  .partner-type { font-family: 'Poppins', sans-serif; font-size: .54rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--orange); }

  /* FOOTER */
  footer { background: var(--deep); border-top: 1px solid var(--border); padding: 4rem 5vw 2rem; }
  .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 3rem; margin-bottom: 3rem; }
  .footer-brand p { font-family: 'Poppins', sans-serif; color: var(--muted); font-size: .86rem; font-weight: 300; margin-top: .8rem; max-width: 220px; line-height: 1.65; }
  .footer-col h4 { font-family: 'Poppins', sans-serif; font-size: .6rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); margin-bottom: 1.2rem; }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: .6rem; }
  .footer-col a { font-family: 'Poppins', sans-serif; color: var(--muted); text-decoration: none; font-size: .86rem; font-weight: 300; transition: color .2s; }
  .footer-col a:hover { color: var(--white); }
  .newsletter-row { display: flex; gap: .5rem; margin-top: .8rem; }
  .newsletter-input { flex: 1; background: var(--panel); border: 1px solid var(--border); border-radius: 4px; padding: .6rem .8rem; color: var(--white); font-family: 'Poppins', sans-serif; font-size: .82rem; font-weight: 300; outline: none; }
  .newsletter-input::placeholder { color: var(--muted); }
  .newsletter-input:focus { border-color: var(--blue); }
  .newsletter-btn { background: var(--blue); color: #fff; border: none; border-radius: 4px; padding: .6rem 1rem; font-family: 'Poppins', sans-serif; font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; transition: opacity .2s; }
  .newsletter-btn:hover { opacity: .85; }
  .social-row { display: flex; gap: .7rem; margin-top: 1.2rem; }
  .social-btn { width: 36px; height: 36px; border: 1px solid var(--border); border-radius: 5px; display: flex; align-items: center; justify-content: center; background: var(--panel); color: var(--muted); font-size: .8rem; text-decoration: none; transition: border-color .2s, color .2s; }
  .social-btn img {
    width: 24px; height: 24px;
  }
  .social-btn:hover { border-color: var(--blue); color: var(--blue); }
  .footer-bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
  .footer-bottom p { font-family: 'Poppins', sans-serif; font-size: .6rem; font-weight: 500; letter-spacing: .08em; color: var(--muted); }

  /* SCROLL REVEAL */
  .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s, transform .7s; }
  .reveal.visible { opacity: 1; transform: none; }

  /* HAMBURGER BUTTON */
  .hamburger {
    display: none; flex-direction: column; justify-content: center; gap: 5px;
    width: 36px; height: 36px; background: transparent;
    border: 1px solid var(--border); border-radius: 6px;
    cursor: pointer; padding: 7px; transition: border-color .2s;
  }
  .hamburger:hover { border-color: var(--blue); }
  .hamburger span {
    display: block; height: 2px; border-radius: 2px;
    background: var(--white); transition: transform .3s, opacity .3s, width .3s;
    transform-origin: center;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* MOBILE MENU PANEL */
  #mobileMenu {
    display: none; position: fixed; top: 62px; left: 0; right: 0;
    z-index: 190; background: rgba(4,8,15,0.98);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    padding: 1.2rem 5vw 1.6rem;
    transform: translateY(-8px); opacity: 0;
    transition: transform .25s ease, opacity .25s ease;
  }
  #mobileMenu.open {
    display: block;
    animation: mobileIn .25s ease forwards;
  }
  @keyframes mobileIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .mob-links { list-style: none; margin-bottom: 1.2rem; }
  .mob-links li { border-bottom: 1px solid var(--border); }
  .mob-links li:last-child { border-bottom: none; }
  .mob-links a {
    display: flex; align-items: center; justify-content: space-between;
    font-family: 'Poppins', sans-serif; font-size: .88rem; font-weight: 500;
    color: var(--muted); text-decoration: none; padding: .9rem 0;
    transition: color .2s; text-transform: uppercase; letter-spacing: .04em;
  }
  .mob-links a:hover { color: var(--white); }
  /* Mobile services sub-items */
  .mob-sub { list-style: none; padding: 0 0 .5rem 1rem; }
  .mob-sub li { border-bottom: none; }
  .mob-sub a {
    font-size: .8rem; text-transform: none; letter-spacing: .02em;
    color: rgba(200,215,240,.5); padding: .5rem 0;
    display: flex; align-items: center; gap: .6rem;
  }
  .mob-sub a:hover { color: var(--white); }
  .mob-sub .dd-icon { width: 24px; height: 24px; border-radius: 5px; font-size: .75rem; display:flex;align-items:center;justify-content:center; }
  .mob-sub a:first-child .dd-icon { background: var(--blue-dim); }
  .mob-sub a:last-child .dd-icon { background: var(--orange-dim); }
  .mob-services-toggle { cursor: pointer; }
  .mob-chevron { font-size: .6rem; transition: transform .25s; }
  .mob-services-toggle.open .mob-chevron { transform: rotate(180deg); }
  .mob-sub { display: none; }
  .mob-services-toggle.open + .mob-sub { display: block; }
  /* Mobile bottom row */
  .mob-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: .8rem; border-top: 1px solid var(--border); }

  /* Light mode — mobile menu */
  body.light #mobileMenu { background: rgba(225,232,255,0.98); }
  body.light .mob-links a { color: rgba(10,15,36,.5); }
  body.light .mob-links a:hover { color: rgba(10,15,36,.9); }
  body.light .mob-sub a { color: rgba(10,15,36,.4); }
  body.light .mob-sub a:hover { color: rgba(10,15,36,.85); }
  body.light .hamburger span { background: var(--white); }

  /* RESPONSIVE */
  @media(max-width:900px){
    .cs-grid,#about,.dash-grid,.footer-grid,.bce-grid,.cf-grid{grid-template-columns:1fr}
    .stats-strip{grid-template-columns:repeat(2,1fr)}
    .impact-grid{grid-template-columns:repeat(3,1fr)}
    .feature-grid{grid-template-columns:1fr}
    .partners-grid{grid-template-columns:repeat(2,1fr)}
    .nav-links{ display: none; }
    .hamburger{ display: flex; }
    .nav-right .nav-cta { display: none; } /* login moves into mobile menu */
  }
  @media(max-width:500px){
    .partners-grid{grid-template-columns:1fr}
    .impact-grid{grid-template-columns:repeat(2,1fr)}
    .cf-form-row{grid-template-columns:1fr}
  }

  /* ── ABOUT PAGE SPECIFIC ── */

  /* PAGE HEADER */
  .page-header { padding: 9rem 5vw 5.5rem; position: relative; overflow: hidden; border-bottom: 1px solid var(--border); }
  .page-header::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse 70% 70% at 60% 50%, rgba(20,40,255,.09), transparent 65%); pointer-events:none; }
  .page-header-inner { position:relative; z-index:2; display:grid; grid-template-columns:1fr 1fr; gap:3rem; align-items:center; }
  .ph-eyebrow { display:flex; align-items:center; gap:.7rem; font-size:.65rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:var(--orange); margin-bottom:1.1rem; }
  .ph-eyebrow::before { content:''; width:24px; height:1px; background:var(--orange); }
  .ph-h1 { font-size:clamp(2.6rem,5.5vw,4.2rem); font-weight:800; line-height:1.08; letter-spacing:-.02em; }
  .ph-h1 em { font-style:normal; color:var(--blue); }
  .ph-sub { font-size:1.05rem; line-height:1.75; color:var(--muted); margin-top:1.2rem; max-width:480px; }
  .ph-btns { display:flex; gap:1rem; margin-top:2rem; flex-wrap:wrap; }
  .ph-right { display:flex; flex-direction:column; gap:1.2rem; }
  .ph-stat-card { background:var(--panel); border:1px solid var(--border); border-radius:10px; padding:1.4rem 1.8rem; display:flex; align-items:center; gap:1.2rem; }
  .ph-stat-icon { font-size:1.6rem; flex-shrink:0; }
  .ph-stat-num { font-size:1.6rem; font-weight:800; color:var(--blue); line-height:1; }
  .ph-stat-label { font-size:.62rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase; color:var(--muted); margin-top:.25rem; }

  /* PREMIUM STATS BAR */
  .stats-premium { padding: 0 5vw 0; background: transparent; }
  .stats-premium-inner { display:grid; grid-template-columns:repeat(4,1fr); border:1px solid var(--border); border-radius:16px; overflow:hidden; background:var(--panel); }
  .spc { padding:2.2rem 1.5rem 2rem; text-align:center; position:relative; border-right:1px solid var(--border); }
  .spc:last-child { border-right:none; }
  .spc::before { content:''; position:absolute; top:0; left:20%; right:20%; height:2px; background:linear-gradient(90deg, transparent, var(--blue), transparent); opacity:0; transition:opacity .4s; }
  .spc:hover::before { opacity:1; }
  .spc-num { font-size:2.6rem; font-weight:800; color:var(--white); line-height:1; background:linear-gradient(135deg,var(--white),var(--blue)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
  .spc-label { font-size:.6rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--muted); margin-top:.6rem; }
  .spc-sub { font-size:.7rem; color:var(--muted); opacity:.6; margin-top:.3rem; }

  /* TEAM */
  .team-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; margin-top:2.5rem; }
  .team-card { background:var(--panel); border:1px solid var(--border); border-radius:10px; padding:2rem 1.5rem; text-align:center; transition:border-color .25s,transform .25s; position:relative; overflow:hidden; }
  .team-card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:linear-gradient(90deg,var(--blue),var(--orange)); opacity:0; transition:opacity .3s; }
  .team-card:hover { border-color:var(--blue); transform:translateY(-4px); }
  .team-card:hover::before { opacity:1; }
  .team-avatar { width:100px; height:100px; border-radius:50%; border:2px solid var(--blue); margin:0 auto 1rem; overflow:hidden; background:var(--blue-dim); }
  .team-avatar img { width:100%; height:100%; object-fit:cover; object-position:top; display:block; }
  .team-node-tag { font-size:.52rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--orange); background:var(--orange-dim); border-radius:3px; padding:.2rem .5rem; display:inline-block; margin-bottom:.6rem; }
  .team-name { font-size:.88rem; font-weight:700; color:var(--white); margin-bottom:.25rem; }
  .team-role { font-size:.76rem; font-weight:300; color:var(--muted); }

  /* NODE MAP SECTION */
  .node-map-section { background:var(--deep); padding:6.5rem 5vw; }
  .node-canvas-wrap { position:relative; width:100%; height:520px; margin-top:3.5rem; }
  #nodeMapCanvas { position:absolute; inset:0; width:100%; height:100%; }
  .nmc-center { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); z-index:4; text-align:center; cursor:default; }
  .nmc-center-ring { width:110px; height:110px; border-radius:50%; background:radial-gradient(circle, rgba(20,40,255,.25) 0%, rgba(20,40,255,.05) 70%); border:2px solid var(--blue); display:flex; flex-direction:column; align-items:center; justify-content:center; box-shadow:0 0 40px rgba(20,40,255,.35), 0 0 80px rgba(20,40,255,.12); animation:nodeGlow 3s ease-in-out infinite; }
  @keyframes nodeGlow { 0%,100%{box-shadow:0 0 30px rgba(20,40,255,.3),0 0 60px rgba(20,40,255,.1);} 50%{box-shadow:0 0 50px rgba(20,40,255,.6),0 0 100px rgba(20,40,255,.2);} }
  .nmc-center-label { font-size:.6rem; font-weight:800; letter-spacing:.12em; color:var(--blue); text-transform:uppercase; line-height:1.3; }
  .nmc-node { position:absolute; transform:translate(-50%,-50%); z-index:3; cursor:pointer; }
  .nmc-node-inner { width:80px; height:80px; border-radius:50%; background:rgba(8,14,30,.85); border:1.5px solid var(--border); display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; backdrop-filter:blur(10px); transition:border-color .3s, box-shadow .3s, transform .3s; }
  .nmc-node:hover .nmc-node-inner { border-color:var(--blue); box-shadow:0 0 20px rgba(20,40,255,.3); transform:scale(1.08); }
  .nmc-node-icon { font-size:1.1rem; margin-bottom:.2rem; }
  .nmc-node-name { font-size:.48rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color:var(--white); line-height:1.3; }
  .nmc-node-sub { font-size:.42rem; color:var(--muted); margin-top:.15rem; }
  .nmc-node-pulse { position:absolute; width:100%; height:100%; border-radius:50%; border:1px solid rgba(20,40,255,.3); animation:nodePulse 2.5s ease-out infinite; }
  @keyframes nodePulse { 0%{transform:scale(1);opacity:.8;} 100%{transform:scale(1.8);opacity:0;} }

  @media(max-width:960px){
    .page-header-inner{grid-template-columns:1fr;}
    .ph-right{display:none;}
    .stats-premium-inner{grid-template-columns:repeat(2,1fr);}
    .spc:nth-child(2){border-right:none;}
    .spc:nth-child(1),.spc:nth-child(2){border-bottom:1px solid var(--border);}
    .team-grid{grid-template-columns:repeat(2,1fr);}
    .node-canvas-wrap{height:380px;}
  }
  @media(max-width:500px){
    .team-grid{grid-template-columns:1fr;}
    .stats-premium-inner{grid-template-columns:1fr;}
    .spc{border-right:none; border-bottom:1px solid var(--border);}
    .spc:last-child{border-bottom:none;}
    .node-canvas-wrap{height:320px;}
  }
