    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg:         #080D16;
      --bg2:        #0C1422;
      --bg3:        #111B2E;
      --green:      #22C55E;
      --green-dim:  rgba(34,197,94,.10);
      --green-brd:  rgba(34,197,94,.22);
      --blue:       #3B82F6;
      --blue-dim:   rgba(59,130,246,.10);
      --white:      #FFFFFF;
      --text:       #E2E8F0;
      --muted:      #64748B;
      --border:     rgba(255,255,255,.07);
      --r:          12px;
      --rl:         24px;
      --rxl:        40px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    a { text-decoration: none; color: inherit; }
    img { display: block; }

    /* ────────────────────────── NAV ────────────────────────── */
    nav {
      position: fixed;
      top: 18px;
      left: 50%;
      transform: translateX(-50%);
      width: calc(100% - 48px);
      max-width: 1200px;
      background: rgba(8,13,22,.88);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border: 1px solid var(--border);
      border-radius: var(--rxl);
      z-index: 1000;
      padding: 13px 24px 13px 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
    }

    .nav-links {
      display: flex;
      gap: 28px;
      list-style: none;
    }

    .nav-links a {
      font-size: 14px;
      font-weight: 500;
      color: var(--muted);
      transition: color .2s;
    }
    .nav-links a:hover { color: var(--white); }

    .nav-logo {
      display: flex;
      align-items: center;
    }

    .nav-logo-img {
      height: 57px;
      width: auto;
      display: block;
    }

    .btn-nav {
      background: var(--green);
      color: #000;
      font-weight: 700;
      font-size: 13px;
      padding: 10px 22px;
      border-radius: 100px;
      border: none;
      cursor: pointer;
      transition: opacity .2s, transform .2s;
      white-space: nowrap;
      font-family: 'Inter', sans-serif;
    }
    .btn-nav:hover { opacity: .88; transform: translateY(-1px); }

    .lang-switcher {
      display: flex;
      gap: 6px;
      align-items: center;
      flex-shrink: 0;
    }
    .lang-btn {
      display: block;
      line-height: 0;
      border-radius: 50%;
      opacity: .45;
      transition: opacity .2s, transform .2s;
    }
    .lang-btn:hover { opacity: 1; transform: scale(1.1); }
    .lang-btn.lang-active {
      opacity: 1;
      box-shadow: 0 0 0 2px var(--green);
      border-radius: 50%;
    }

    /* ────────────────────────── HERO ────────────────────────── */
    .hero {
      min-height: 100vh;
      padding: 130px 24px 80px;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    /* ── Hero background image + parallax container ── */
    .hero-bg {
      position: absolute;
      top: -15%;
      left: 0;
      width: 100%;
      height: 130%;
      background-image: url('../img/001.png');
      background-size: cover;
      background-position: center 30%;
      will-change: transform;
      z-index: 0;
    }

    /* ── Dark overlay — keeps text readable ── */
    .hero-overlay {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to right,  rgba(8,13,22,.92) 0%, rgba(8,13,22,.6) 45%, rgba(8,13,22,.5) 100%),
        linear-gradient(to bottom, rgba(8,13,22,.1)  0%, rgba(8,13,22,.88) 100%);
      z-index: 1;
    }

    .hero-glow-a {
      position: absolute;
      top: -160px; right: -160px;
      width: 640px; height: 640px;
      background: radial-gradient(circle, rgba(34,197,94,.07) 0%, transparent 65%);
      pointer-events: none;
      z-index: 2;
    }
    .hero-glow-b {
      position: absolute;
      bottom: -80px; left: -80px;
      width: 480px; height: 480px;
      background: radial-gradient(circle, rgba(59,130,246,.05) 0%, transparent 65%);
      pointer-events: none;
      z-index: 2;
    }

    .hero-inner {
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
      position: relative;
      z-index: 3;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--green-dim);
      border: 1px solid var(--green-brd);
      color: var(--green);
      font-size: 11px;
      font-weight: 700;
      padding: 6px 14px;
      border-radius: 100px;
      margin-bottom: 28px;
      letter-spacing: 1.2px;
      text-transform: uppercase;
    }
    .hero-badge i {
      width: 6px; height: 6px;
      background: var(--green);
      border-radius: 50%;
      display: block;
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%,100% { opacity: 1; }
      50%      { opacity: .4; }
    }

    .hero h1 {
      font-size: clamp(38px, 4.6vw, 62px);
      font-weight: 900;
      line-height: 1.08;
      letter-spacing: -2.5px;
      color: var(--white);
      margin-bottom: 24px;
    }

    .hero-sub {
      font-size: 17px;
      line-height: 1.7;
      color: var(--muted);
      margin-bottom: 40px;
      max-width: 460px;
    }

    .hero-ctas {
      display: flex;
      gap: 14px;
      align-items: center;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: var(--green);
      color: #000;
      font-weight: 700;
      font-size: 14px;
      padding: 14px 28px;
      border-radius: 100px;
      border: none;
      cursor: pointer;
      transition: transform .2s, opacity .2s;
      font-family: 'Inter', sans-serif;
    }
    .btn-primary:hover { transform: translateY(-2px); opacity: .9; }

    .btn-ghost {
      background: transparent;
      color: var(--text);
      font-weight: 600;
      font-size: 14px;
      padding: 14px 28px;
      border-radius: 100px;
      border: 1px solid var(--border);
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: border-color .2s, transform .2s;
      font-family: 'Inter', sans-serif;
    }
    .btn-ghost:hover { border-color: rgba(255,255,255,.25); transform: translateY(-2px); }
    .btn-ghost svg { transition: transform .2s; }
    .btn-ghost:hover svg { transform: translateX(3px); }

    .hero-proof {
      display: flex;
      align-items: center;
      gap: 24px;
      margin-top: 44px;
      padding-top: 44px;
      border-top: 1px solid var(--border);
    }
    .proof-item { display: flex; flex-direction: column; gap: 3px; }
    .proof-num  { font-size: 24px; font-weight: 900; color: var(--white); letter-spacing: -1px; }
    .proof-lbl  { font-size: 12px; color: var(--muted); font-weight: 500; }
    .proof-num span { color: var(--green); }
    .proof-div  { width: 1px; height: 36px; background: var(--border); }

    /* Hero Network Visual */
    .hero-visual {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 480px;
      position: relative;
    }

    .hero-visual svg {
      width: 100%;
      height: 100%;
      filter: drop-shadow(0 0 32px rgba(34,197,94,.12));
    }

    /* ────────────────────────── STATS BAR ────────────────────────── */
    .stats-wrap {
      padding: 0 24px;
    }

    .stats-bar {
      max-width: 1200px;
      margin: 0 auto;
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: var(--rl);
      padding: 36px 40px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }

    .stat-item {
      text-align: center;
      padding: 0 20px;
      position: relative;
    }
    .stat-item:not(:last-child)::after {
      content: '';
      position: absolute;
      right: 0; top: 50%;
      transform: translateY(-50%);
      height: 44px; width: 1px;
      background: var(--border);
    }

    .stat-val {
      font-size: 38px;
      font-weight: 900;
      color: var(--white);
      letter-spacing: -1.5px;
      line-height: 1;
      margin-bottom: 7px;
    }
    .stat-val span { color: var(--green); }
    .stat-lbl { font-size: 13px; color: var(--muted); font-weight: 500; }

    /* ────────────────────────── PLATFORM FEATURES ────────────────────────── */
    .features-wrap { padding: 0 24px; }

    .features-bar {
      max-width: 1200px;
      margin: 0 auto;
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: var(--rl);
      padding: 32px 40px;
      display: grid;
      grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
      align-items: center;
      gap: 0;
    }

    .feature-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 0 20px;
    }

    .feature-icon {
      flex-shrink: 0;
      width: 42px; height: 42px;
      background: var(--green-dim);
      border: 1px solid var(--green-brd);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
    }

    .feature-text { display: flex; flex-direction: column; gap: 4px; }
    .feature-title { font-size: 13.5px; font-weight: 700; color: var(--white); line-height: 1.3; }
    .feature-desc { font-size: 12px; color: var(--muted); line-height: 1.5; }

    .feature-divider {
      width: 1px; height: 52px;
      background: var(--border);
      flex-shrink: 0;
    }

    @media (max-width: 900px) {
      .features-bar {
        grid-template-columns: 1fr;
        gap: 24px;
      }
      .feature-divider { display: none; }
      .feature-item { padding: 0; }
    }

    /* ────────────────────────── SHARED SECTION ────────────────────────── */
    .section { padding: 100px 24px; }

    .section-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--green);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      margin-bottom: 18px;
    }
    .eyebrow::before {
      content: '';
      width: 22px; height: 2px;
      background: var(--green);
      display: block;
    }

    h2 {
      font-size: clamp(30px, 3.6vw, 50px);
      font-weight: 900;
      letter-spacing: -1.8px;
      line-height: 1.08;
      color: var(--white);
      margin-bottom: 18px;
    }
    h2 em { font-style: normal; color: var(--green); }

    .body-text {
      font-size: 16px;
      line-height: 1.75;
      color: var(--muted);
    }

    /* ────────────────────────── THE PROBLEM ────────────────────────── */
    .problem-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
    }

    .problem-left {}

    .problem-visual {
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: var(--rl);
      height: 380px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
    .problem-visual::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 60% 40%, rgba(59,130,246,.08) 0%, transparent 65%);
    }

    .problem-big-stat {
      text-align: center;
      position: relative;
      z-index: 1;
    }
    .problem-big-stat .num {
      font-size: 88px;
      font-weight: 900;
      color: var(--white);
      letter-spacing: -4px;
      line-height: 1;
      margin-bottom: 10px;
    }
    .problem-big-stat .num span { color: var(--green); }
    .problem-big-stat .lbl {
      font-size: 15px;
      color: var(--muted);
      font-weight: 500;
    }
    .stat-source {
      font-size: 11px;
      color: var(--muted);
      opacity: .55;
      margin-top: 10px;
      letter-spacing: .3px;
    }

    .problem-points {
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-top: 36px;
    }

    .point {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 20px;
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: var(--r);
      transition: border-color .2s;
    }
    .point:hover { border-color: var(--green-brd); }

    .point-dot {
      width: 8px; height: 8px;
      min-width: 8px;
      background: var(--green);
      border-radius: 50%;
      margin-top: 6px;
    }

    .point p {
      font-size: 14px;
      color: var(--text);
      line-height: 1.5;
      font-weight: 500;
    }

    /* ────────────────────────── REAL ISSUE / SILOS ────────────────────────── */
    .silos-section { background: var(--bg2); }

    .silos-header {
      text-align: center;
      max-width: 680px;
      margin: 0 auto 56px;
    }
    .silos-header h2 { max-width: none; }

    .silos-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-bottom: 24px;
    }

    .silo-card {
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: var(--rl);
      padding: 32px 22px;
      text-align: center;
      position: relative;
      overflow: hidden;
      transition: border-color .3s, transform .3s;
    }
    .silo-card::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      opacity: 0;
      transition: opacity .3s;
    }
    .silo-card.uni::after   { background: linear-gradient(90deg, transparent, #8B5CF6, transparent); }
    .silo-card.start::after { background: linear-gradient(90deg, transparent, var(--green), transparent); }
    .silo-card.gov::after   { background: linear-gradient(90deg, transparent, var(--blue), transparent); }
    .silo-card.ngo::after   { background: linear-gradient(90deg, transparent, #F97316, transparent); }
    .silo-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,.14); }
    .silo-card:hover::after { opacity: 1; }

    .silo-icon {
      width: 60px; height: 60px;
      border-radius: 14px;
      margin: 0 auto 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
    }
    .silo-icon.uni   { background: rgba(139,92,246,.15); }
    .silo-icon.start { background: rgba(34,197,94,.15); }
    .silo-icon.gov   { background: rgba(59,130,246,.15); }
    .silo-icon.ngo   { background: rgba(249,115,22,.15); }

    .silo-name {
      font-size: 16px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 10px;
    }
    .silo-desc {
      font-size: 13px;
      line-height: 1.6;
      color: var(--muted);
    }

    .silos-connector {
      padding: 28px 40px;
      background: var(--bg3);
      border: 1px solid var(--green-brd);
      border-radius: var(--rl);
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .silos-connector::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at center, rgba(34,197,94,.07) 0%, transparent 70%);
    }
    .silos-connector p {
      font-size: 19px;
      font-weight: 700;
      color: var(--white);
      position: relative;
      z-index: 1;
    }
    .silos-connector p span { color: var(--green); }

    /* ────────────────────────── HOW IT WORKS ────────────────────────── */
    .steps-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: end;
      margin-bottom: 56px;
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }

    .step-card {
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: var(--rl);
      padding: 36px;
      position: relative;
      overflow: hidden;
      transition: border-color .25s, transform .25s;
      display: flex;
      flex-direction: column;
    }
    .step-card:hover { border-color: var(--green-brd); transform: translateY(-3px); }

    .step-num {
      font-size: 10px;
      font-weight: 700;
      color: var(--green);
      letter-spacing: 2.5px;
      text-transform: uppercase;
      margin-bottom: 22px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .step-num::before { content: ''; width: 22px; height: 1px; background: var(--green); }

    .step-card h3 {
      font-size: 21px;
      font-weight: 800;
      color: var(--white);
      margin-bottom: 12px;
      letter-spacing: -0.6px;
    }
    .step-card p {
      font-size: 14px;
      line-height: 1.65;
      color: var(--muted);
    }

    .step-card-num {
      position: absolute;
      bottom: 24px;
      right: 28px;
      font-size: 64px;
      font-weight: 900;
      color: rgba(255,255,255,.04);
      line-height: 1;
      letter-spacing: -4px;
    }

    .step-screen {
      position: relative;
      margin: auto -36px -36px;
      padding-top: 28px;
      overflow: hidden;
      border-top: 1px solid rgba(255,255,255,.06);
    }
    .step-screen::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 32px;
      background: linear-gradient(to bottom, var(--bg3), transparent);
      z-index: 1;
      pointer-events: none;
    }
    .step-screen img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* ────────────────────────── VERTICAL STEPS ────────────────────────── */
    .steps-vertical {
      max-width: 720px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
    }

    .vstep {
      display: grid;
      grid-template-columns: 64px 1fr;
      gap: 0 32px;
    }

    .vstep-left {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .vstep-num-wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
    }

    .vstep-num {
      width: 48px; height: 48px;
      border-radius: 50%;
      background: var(--bg3);
      border: 1.5px solid var(--green-brd);
      color: var(--green);
      font-size: 13px;
      font-weight: 700;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      letter-spacing: .5px;
    }

    .vstep-num-last {
      border-color: var(--green);
      box-shadow: 0 0 18px rgba(34,197,94,.2);
    }

    .vstep-line {
      width: 1.5px;
      flex: 1;
      min-height: 40px;
      background: linear-gradient(to bottom, var(--green-brd), transparent);
      margin: 8px 0;
    }

    .vstep-right {
      padding-bottom: 48px;
    }

    .vstep-right h3 {
      font-size: 20px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 12px;
      padding-top: 12px;
    }

    .vstep-right p {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.7;
    }

    .vstep-connector-label {
      margin-top: 20px;
      font-size: 12px;
      font-weight: 600;
      color: var(--green);
      letter-spacing: .5px;
      opacity: .7;
    }

    /* ────────────────────────── MARQUEE ────────────────────────── */
    .marquee-wrap {
      padding: 44px 0;
      background: var(--bg2);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      overflow: hidden;
    }

    .marquee-track {
      display: flex;
      white-space: nowrap;
      animation: mq 28s linear infinite;
    }
    .marquee-track.rev { animation-direction: reverse; animation-duration: 34s; }

    @keyframes mq {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    .mq-item {
      font-size: 50px;
      font-weight: 900;
      color: var(--white);
      letter-spacing: -1px;
      padding: 0 28px;
      display: inline-flex;
      align-items: center;
      gap: 28px;
      flex-shrink: 0;
    }
    .mq-item.dim { color: rgba(255,255,255,.12); }

    .mq-dot {
      width: 10px; height: 10px;
      background: var(--green);
      border-radius: 50%;
      display: inline-block;
      flex-shrink: 0;
    }

    /* ────────────────────────── FOUR PILLARS ────────────────────────── */
    .pillars-section { background: var(--bg2); }

    .pillars-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: end;
      margin-bottom: 56px;
    }

    .pillars-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .pillar-card {
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: var(--rl);
      padding: 32px 22px;
      position: relative;
      overflow: hidden;
      transition: transform .3s, border-color .3s;
    }
    .pillar-card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,.14); }

    .pillar-avatar {
      width: 64px; height: 64px;
      border-radius: 50%;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
      font-weight: 900;
      color: var(--white);
      position: relative;
    }
    .pillar-avatar.uni   { background: linear-gradient(135deg, #7C3AED, #4F46E5); }
    .pillar-avatar.start { background: linear-gradient(135deg, #15803D, #22C55E); color: #fff; }
    .pillar-avatar.gov   { background: linear-gradient(135deg, #1D4ED8, #3B82F6); }
    .pillar-avatar.ngo   { background: linear-gradient(135deg, #C2410C, #F97316); }

    .pillar-badge {
      position: absolute;
      bottom: -2px; right: -2px;
      width: 22px; height: 22px;
      background: var(--green);
      border-radius: 50%;
      border: 2px solid var(--bg3);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      color: #000;
      font-weight: 800;
    }

    .pillar-card h3 {
      font-size: 17px;
      font-weight: 800;
      color: var(--white);
      margin-bottom: 6px;
      letter-spacing: -0.3px;
    }
    .pillar-role {
      font-size: 11px;
      color: var(--green);
      font-weight: 700;
      margin-bottom: 14px;
      text-transform: uppercase;
      letter-spacing: 0.8px;
    }
    .pillar-card p {
      font-size: 13px;
      line-height: 1.65;
      color: var(--muted);
    }

    /* ────────────────────────── PLATFORM ────────────────────────── */
    .platform-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
    }

    .platform-features { display: flex; flex-direction: column; }

    .pf-item {
      display: flex;
      gap: 20px;
      padding: 26px 0;
      border-bottom: 1px solid var(--border);
    }
    .pf-item:first-child { padding-top: 0; }
    .pf-item:last-child  { border-bottom: none; padding-bottom: 0; }

    .pf-num {
      font-size: 10px;
      color: var(--green);
      font-weight: 700;
      letter-spacing: 2px;
      min-width: 24px;
      padding-top: 3px;
    }

    .pf-content h3 {
      font-size: 16px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 6px;
      letter-spacing: -0.3px;
    }
    .pf-content p {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.55;
    }

    .platform-visual {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 1fr 1fr;
      gap: 16px;
      height: 460px;
    }

    .pv-card {
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: var(--rl);
      padding: 24px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      position: relative;
      overflow: hidden;
      transition: border-color .22s;
    }
    .pv-card:hover { border-color: var(--green-brd); }
    .pv-card.span-col { grid-column: span 1; }
    .pv-card.tall { grid-row: span 2; }

    .pv-icon {
      position: absolute;
      top: 20px; right: 20px;
      width: 38px; height: 38px;
      background: var(--green-dim);
      border-radius: 9px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 17px;
    }

    .pv-card h4 {
      font-size: 14px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 5px;
    }
    .pv-card p {
      font-size: 12px;
      color: var(--muted);
      line-height: 1.5;
    }

    .pv-graphic {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      opacity: .18;
      pointer-events: none;
    }

    /* ────────────────────────── CASES ────────────────────────── */
    .cases-section { background: var(--bg2); }

    .cases-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 48px;
    }

    .cases-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
    }

    .case-card {
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: var(--rl);
      overflow: hidden;
      transition: border-color .22s, transform .22s;
    }
    .case-card:hover { border-color: var(--green-brd); transform: translateY(-4px); }

    .case-img {
      height: 190px;
      display: flex;
      align-items: flex-end;
      padding: 20px;
      position: relative;
      overflow: hidden;
    }
    .case-img.brazil  {
      background:
        linear-gradient(to bottom, rgba(8,13,22,.35) 0%, rgba(8,13,22,.6) 100%),
        url('../img/cases/lagoa_negros_ba.jpeg') center/cover no-repeat;
    }
    .case-img.ukraine {
      background:
        linear-gradient(to bottom, rgba(8,13,22,.35) 0%, rgba(8,13,22,.6) 100%),
        url('../img/cases/mariopol.jpg') center/cover no-repeat;
    }
    .case-img-lines {
      position: absolute;
      inset: 0;
      opacity: .4;
    }

    .case-chip {
      background: var(--green);
      color: #000;
      font-size: 10px;
      font-weight: 700;
      padding: 5px 13px;
      border-radius: 100px;
      text-transform: uppercase;
      letter-spacing: 0.6px;
      position: relative;
      z-index: 1;
    }

    .case-body { padding: 30px; }

    .case-loc {
      font-size: 11px;
      color: var(--green);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .case-loc::before { content: '→'; }
    .case-flag { margin-left: auto; flex-shrink: 0; border-radius: 2px; }

    .case-body h3 {
      font-size: 19px;
      font-weight: 800;
      color: var(--white);
      letter-spacing: -0.5px;
      margin-bottom: 18px;
    }

    .case-meta { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }

    .case-row {
      display: flex;
      gap: 12px;
      font-size: 13px;
    }
    .case-row-label { color: var(--muted); min-width: 86px; font-weight: 500; }
    .case-row-val   { color: var(--text); font-weight: 500; }

    .case-impact {
      padding: 14px 18px;
      background: var(--green-dim);
      border: 1px solid var(--green-brd);
      border-radius: var(--r);
      font-size: 13px;
      color: var(--green);
      font-weight: 600;
      line-height: 1.45;
    }

    .case-actors {
      display: flex;
      gap: 8px;
      margin-top: 14px;
      padding-top: 14px;
      border-top: 1px solid rgba(255,255,255,.06);
    }
    .actor-badge {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      padding: 10px 4px;
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.07);
      border-radius: 10px;
      color: var(--muted);
    }
    .actor-badge span {
      font-size: 8px;
      font-weight: 700;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: .6px;
      text-align: center;
      line-height: 1.3;
    }
    .actor-badge.actor-dim { opacity: .28; }
    .actor-placeholder { font-size: 20px; color: var(--muted); line-height: 32px; }
    .actor-img { height: 48px; width: 100%; object-fit: contain; }

    /* ────────────────────────── THEORY OF CHANGE ────────────────────────── */
    .theory-section {
      padding: 100px 24px;
      text-align: center;
    }

    .theory-inner {
      max-width: 860px;
      margin: 0 auto;
    }

    .theory-statements { margin-top: 56px; }

    .theory-stmt {
      display: flex;
      align-items: center;
      gap: 36px;
      padding: 40px 0;
      border-bottom: 1px solid var(--border);
      text-align: left;
    }
    .theory-stmt:last-child { border-bottom: none; }

    .theory-n {
      font-size: 80px;
      font-weight: 900;
      color: rgba(255,255,255,.04);
      min-width: 70px;
      line-height: 1;
      letter-spacing: -4px;
    }

    .theory-txt h3 {
      font-size: 22px;
      font-weight: 800;
      color: var(--white);
      margin-bottom: 7px;
      letter-spacing: -0.5px;
    }
    .theory-txt p { font-size: 15px; color: var(--muted); line-height: 1.6; }

    .theory-arrow {
      margin-left: auto;
      color: var(--green);
      flex-shrink: 0;
    }

    /* ────────────────────────── TAGS MARQUEE ────────────────────────── */
    .tags-wrap {
      padding: 28px 0;
      background: var(--bg);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      overflow: hidden;
    }
    .tags-track {
      display: flex;
      white-space: nowrap;
      animation: mq 22s linear infinite;
    }

    .tag {
      display: inline-block;
      padding: 8px 20px;
      margin: 0 7px;
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: 100px;
      font-size: 13px;
      font-weight: 500;
      color: var(--muted);
      flex-shrink: 0;
    }
    .tag.hl {
      background: var(--green-dim);
      border-color: var(--green-brd);
      color: var(--green);
    }

    /* ────────────────────────── FINAL CTA ────────────────────────── */
    .cta-section { padding: 0 24px 100px; }

    .cta-box {
      max-width: 1200px;
      margin: 0 auto;
      background: var(--green);
      border-radius: var(--rxl);
      padding: 80px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 60px;
      align-items: center;
      position: relative;
      overflow: hidden;
    }
    .cta-box::before {
      content: '';
      position: absolute;
      top: -40%; right: 8%;
      width: 420px; height: 420px;
      background: rgba(0,0,0,.07);
      border-radius: 50%;
    }
    .cta-box::after {
      content: '';
      position: absolute;
      bottom: -30%; left: 30%;
      width: 280px; height: 280px;
      background: rgba(0,0,0,.05);
      border-radius: 50%;
    }

    .cta-text { position: relative; z-index: 1; }
    .cta-text .eyebrow { color: rgba(0,0,0,.55); }
    .cta-text .eyebrow::before { background: rgba(0,0,0,.4); }
    .cta-text h2 { color: #000; letter-spacing: -2px; margin-bottom: 12px; }
    .cta-text p  { color: rgba(0,0,0,.6); font-size: 17px; line-height: 1.55; }

    .cta-form {
      display: flex;
      flex-direction: column;
      gap: 11px;
      min-width: 300px;
      position: relative;
      z-index: 1;
    }

    .cta-input {
      background: rgba(0,0,0,.12);
      border: 1px solid rgba(0,0,0,.15);
      border-radius: 100px;
      padding: 14px 22px;
      font-size: 14px;
      color: #000;
      font-family: 'Inter', sans-serif;
      outline: none;
      width: 100%;
    }
    .cta-input::placeholder { color: rgba(0,0,0,.42); }
    .cta-input:focus { border-color: rgba(0,0,0,.35); }

    .btn-dark {
      background: #000;
      color: #fff;
      font-weight: 700;
      font-size: 14px;
      padding: 14px 28px;
      border-radius: 100px;
      border: none;
      cursor: pointer;
      transition: opacity .2s;
      font-family: 'Inter', sans-serif;
    }
    .btn-dark:hover { opacity: .82; }

    /* ────────────────────────── FAQ ────────────────────────── */
    .faq-section { padding: 0 24px 100px; }

    .faq-inner {
      max-width: 780px;
      margin: 0 auto;
    }

    .faq-header { text-align: center; margin-bottom: 52px; }

    .faq-tabs {
      display: flex;
      gap: 8px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 36px;
    }

    .faq-tab {
      padding: 8px 22px;
      border-radius: 100px;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      border: 1px solid var(--border);
      color: var(--muted);
      background: transparent;
      transition: all .2s;
      font-family: 'Inter', sans-serif;
    }
    .faq-tab.active {
      background: var(--green);
      color: #000;
      border-color: var(--green);
    }
    .faq-tab:hover:not(.active) { border-color: rgba(255,255,255,.2); color: var(--text); }

    .faq-group { display: flex; flex-direction: column; gap: 8px; }

    .faq-item {
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: var(--r);
      overflow: hidden;
      transition: border-color .2s;
    }
    .faq-item.open { border-color: var(--green-brd); }

    .faq-q {
      width: 100%;
      padding: 22px 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      background: none;
      border: none;
      cursor: pointer;
      text-align: left;
      font-family: 'Inter', sans-serif;
    }
    .faq-q span {
      font-size: 15px;
      font-weight: 600;
      color: var(--white);
      line-height: 1.4;
    }

    .faq-icon {
      width: 28px; height: 28px;
      min-width: 28px;
      background: var(--bg);
      border-radius: 50%;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--green);
      font-size: 17px;
      transition: transform .3s, background .2s;
    }
    .faq-item.open .faq-icon {
      transform: rotate(45deg);
      background: var(--green-dim);
      border-color: var(--green-brd);
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height .35s ease;
    }
    .faq-item.open .faq-a { max-height: 400px; }

    .faq-a-inner {
      padding: 0 24px 22px;
      font-size: 14px;
      color: var(--muted);
      line-height: 1.75;
    }

    /* ────────────────────────── FOOTER ────────────────────────── */
    footer {
      background: var(--green);
      padding: 60px 24px 40px;
    }

    .footer-inner { max-width: 1200px; margin: 0 auto; }

    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
      gap: 40px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(0,0,0,.14);
      margin-bottom: 36px;
    }

    .footer-logo-img {
      height: auto;
      width: 220px;
      display: block;
      margin-bottom: 16px;
      opacity: .9;
    }
    .footer-brand p {
      font-size: 14px;
      color: rgba(0,0,0,.55);
      line-height: 1.65;
      max-width: 240px;
      margin-bottom: 24px;
    }

    .footer-newsletter { display: flex; gap: 8px; }

    .footer-input {
      flex: 1;
      background: rgba(0,0,0,.1);
      border: 1px solid rgba(0,0,0,.15);
      border-radius: 100px;
      padding: 10px 18px;
      font-size: 13px;
      color: #000;
      font-family: 'Inter', sans-serif;
      outline: none;
      min-width: 0;
    }
    .footer-input::placeholder { color: rgba(0,0,0,.4); }

    .footer-sub-btn {
      background: #000;
      color: var(--green);
      font-weight: 700;
      font-size: 12px;
      padding: 10px 18px;
      border-radius: 100px;
      border: none;
      cursor: pointer;
      white-space: nowrap;
      font-family: 'Inter', sans-serif;
    }

    .footer-col h4 {
      font-size: 12px;
      font-weight: 800;
      color: #000;
      margin-bottom: 18px;
      text-transform: uppercase;
      letter-spacing: 0.8px;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col a {
      font-size: 14px;
      color: rgba(0,0,0,.58);
      transition: color .18s;
    }
    .footer-col a:hover { color: #000; }
    .footer-col span {
      font-size: 14px;
      color: rgba(0,0,0,.35);
      cursor: default;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
    }
    .footer-bottom p { font-size: 13px; color: rgba(0,0,0,.48); }

    .footer-legal { display: flex; gap: 24px; }
    .footer-legal a { font-size: 13px; color: rgba(0,0,0,.48); transition: color .18s; }
    .footer-legal a:hover { color: #000; }

    /* ────────────────────────── UTILITY ────────────────────────── */
    .text-green { color: var(--green); }
    .mt-8 { margin-top: 8px; }
    .hidden { display: none; }

    /* ────────────────────────── SCROLL PROGRESS ────────────────────────── */
    .progress-bar {
      position: fixed;
      top: 0; left: 0;
      height: 2px;
      width: 0%;
      background: var(--green);
      box-shadow: 0 0 10px var(--green), 0 0 20px rgba(34,197,94,.4);
      z-index: 9999;
      transition: width 0.08s linear;
      pointer-events: none;
    }

    /* ────────────────────────── CURSOR GLOW ────────────────────────── */
    .cursor-glow {
      position: fixed;
      width: 480px; height: 480px;
      background: radial-gradient(circle, rgba(34,197,94,.055) 0%, transparent 65%);
      border-radius: 50%;
      pointer-events: none;
      z-index: 0;
      transform: translate(-50%, -50%);
      transition: left 0.18s ease, top 0.18s ease;
      mix-blend-mode: screen;
    }

    /* ────────────────────────── HERO ENTRANCE ────────────────────────── */
    .hero-left {
      animation: heroSlideIn 0.9s cubic-bezier(0.16,1,0.3,1) both;
    }
    .hero-visual {
      animation: heroFadeIn 1.1s cubic-bezier(0.16,1,0.3,1) 0.2s both;
    }
    @keyframes heroSlideIn {
      from { opacity: 0; transform: translateX(-28px); }
      to   { opacity: 1; transform: none; }
    }
    @keyframes heroFadeIn {
      from { opacity: 0; transform: scale(0.92); }
      to   { opacity: 1; transform: scale(1); }
    }

    /* ────────────────────────── SCROLL REVEAL ────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(36px);
      transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1),
                  transform 0.75s cubic-bezier(0.16,1,0.3,1);
    }
    .reveal.from-left  { transform: translateX(-36px); }
    .reveal.from-right { transform: translateX(36px); }
    .reveal.scale-in   { transform: scale(0.92); }
    .reveal.visible {
      opacity: 1;
      transform: none !important;
    }
    /* stagger delays */
    .d1 { transition-delay: 0ms; }
    .d2 { transition-delay: 110ms; }
    .d3 { transition-delay: 220ms; }
    .d4 { transition-delay: 330ms; }
    .d5 { transition-delay: 440ms; }

    /* ────────────────────────── ACTIVE NAV ────────────────────────── */
    .nav-links a {
      position: relative;
    }
    .nav-links a.active {
      color: var(--white) !important;
    }
    .nav-links a.active::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 50%;
      transform: translateX(-50%);
      width: 4px; height: 4px;
      background: var(--green);
      border-radius: 50%;
    }

    /* ────────────────────────── ENHANCED CARD HOVERS ────────────────────────── */
    .silo-card:hover,
    .step-card:hover,
    .pillar-card:hover {
      box-shadow: 0 8px 40px rgba(34,197,94,.1), 0 2px 12px rgba(0,0,0,.4);
    }
    .case-card:hover {
      box-shadow: 0 12px 48px rgba(34,197,94,.12), 0 4px 16px rgba(0,0,0,.5);
    }
    .pv-card:hover {
      box-shadow: 0 4px 24px rgba(34,197,94,.1);
    }
    .theory-stmt {
      transition: padding-left 0.3s ease;
    }
    .theory-stmt:hover {
      padding-left: 12px;
    }
    .point:hover {
      box-shadow: 0 4px 20px rgba(34,197,94,.08);
    }

    /* ────────────────────────── MARQUEE PAUSE ON HOVER ────────────────────────── */
    .marquee-wrap:hover .marquee-track,
    .tags-wrap:hover .tags-track {
      animation-play-state: paused;
    }

    /* ────────────────────────── STATS COUNT FLASH ────────────────────────── */
    @keyframes countFlash {
      0%,100% { color: var(--white); }
      50%      { color: var(--green); }
    }
    .stat-val.counting { animation: countFlash 0.4s ease; }

    /* ────────────────────────── EYEBROW SLIDE ────────────────────────── */
    .eyebrow {
      overflow: hidden;
    }
    .eyebrow span {
      display: inline-block;
      transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
    }

    /* ────────────────────────── HERO PARALLAX GLOWS ────────────────────────── */
    .hero-glow-a, .hero-glow-b {
      transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
      will-change: transform;
    }

    /* ────────────────────────── STEP CARD NUMBER GLOW ────────────────────────── */
    .step-card:hover .step-card-num {
      color: rgba(34,197,94,.08);
      transition: color 0.3s;
    }

    /* ────────────────────────── CTA BOX SHIMMER ────────────────────────── */
    .cta-box {
      background: linear-gradient(135deg, #22C55E 0%, #16a34a 50%, #22C55E 100%);
      background-size: 200% 200%;
      animation: shimmer 6s ease infinite;
    }
    @keyframes shimmer {
      0%   { background-position: 0% 50%; }
      50%  { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    /* ────────────────────────── NETWORK DOT PULSE ────────────────────────── */
    .hero-visual circle:not([r="4"]) {
      filter: drop-shadow(0 0 6px rgba(34,197,94,.3));
    }


/* ══════════════════════════════════════════════════════════════════════════
   NEW SECTIONS — BRIDGE11 CONTENT REVISION
══════════════════════════════════════════════════════════════════════════ */

/* ── Stagger delay d5 ── */
.d5 { transition-delay: 550ms; }

/* ──────────────────────────────────────────────────────────────────────────
   PROBLEM HIGHLIGHT
────────────────────────────────────────────────────────────────────────── */
.problem-highlight {
  margin-top: 48px;
  padding: 28px 36px;
  background: rgba(34,197,94,.06);
  border: 1px solid rgba(34,197,94,.18);
  border-radius: 12px;
  text-align: center;
}
.problem-highlight p {
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
}
.problem-highlight strong {
  color: var(--green);
}

.btn-problem-cta {
  display: inline-block;
  margin-top: 8px;
  padding: 14px 28px;
  background: transparent;
  border: 1.5px solid var(--green);
  border-radius: 100px;
  color: var(--green);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.btn-problem-cta:hover {
  background: var(--green);
  color: #000;
}

/* ──────────────────────────────────────────────────────────────────────────
   SOLUTION SECTION
────────────────────────────────────────────────────────────────────────── */
.solution-section {
  background-color: var(--bg2);
  background-image:
    linear-gradient(to bottom, rgba(8,13,22,.82) 0%, rgba(8,13,22,.72) 50%, rgba(8,13,22,.88) 100%),
    url('../img/002.png');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

.solution-bridge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.solution-left-col,
.solution-right-col {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 32px 28px;
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  min-width: 200px;
  max-width: 280px;
}

.solution-side-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.solution-actor-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
  transition: background .2s;
}
.solution-actor-tag:hover { background: rgba(255,255,255,.09); }

.gov-tag  { border-color: rgba(59,130,246,.3);  color: #93c5fd; }
.uni-tag  { border-color: rgba(139,92,246,.3);  color: #c4b5fd; }
.start-tag{ border-color: rgba(34,197,94,.3);   color: #86efac; }
.ngo-tag  { border-color: rgba(249,115,22,.3);  color: #fdba74; }

.solution-center {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
}

.solution-hub {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--bg3);
  border: 2px solid var(--green);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 32px rgba(34,197,94,.18);
}

.solution-hub-img {
  width: 117px;
  height: auto;
  display: block;
}
.solution-hub-sub {
  font-size: 9px;
  color: var(--muted);
  letter-spacing: .8px;
  text-transform: uppercase;
}

.solution-arrows {
  display: flex;
  gap: 10px;
  font-size: 22px;
  color: var(--green);
  opacity: .7;
}

.solution-result {
  text-align: center;
  padding: 24px 32px;
  background: rgba(34,197,94,.05);
  border: 1px solid rgba(34,197,94,.14);
  border-radius: 12px;
  max-width: 600px;
  margin: 0 auto;
}
.solution-result p {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
}

/* ── Flow Diagram (new solution section) ── */
.flow-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0 auto;
  max-width: 1100px;
}

.flow-step {
  flex: 1;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}

.flow-step-center {
  border-color: var(--green-brd);
  box-shadow: 0 0 40px rgba(34,197,94,.1);
  flex: 1.15;
}

.flow-step-result {
  border-color: rgba(34,197,94,.3);
}

.flow-step-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
}

.flow-step-icon {
  width: 52px; height: 52px;
  background: var(--blue-dim);
  border: 1px solid rgba(59,130,246,.2);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}

.flow-step-result .flow-step-icon {
  background: var(--green-dim);
  border-color: var(--green-brd);
}

.flow-step-hub {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--bg2);
  border: 2px solid var(--green);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 28px rgba(34,197,94,.2);
  margin-bottom: 4px;
}

.flow-hub-img {
  width: 64px;
  height: auto;
}

.flow-step-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.flow-step-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
}

.flow-step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.flow-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .4px;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--muted);
}

.flow-tag.hl {
  background: var(--green-dim);
  border-color: var(--green-brd);
  color: var(--green);
}

.flow-arrow {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 8px;
}

.flow-arrow-label {
  font-size: 10px;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

@media (max-width: 860px) {
  .flow-diagram {
    flex-direction: column;
  }
  .flow-arrow svg {
    transform: rotate(90deg);
  }
  .flow-step { width: 100%; }
}

/* ──────────────────────────────────────────────────────────────────────────
   HOW IT WORKS — 3-column override & step note
────────────────────────────────────────────────────────────────────────── */
.steps-grid.steps-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
  .steps-grid.steps-3 {
    grid-template-columns: 1fr;
  }
}

.step-note {
  margin-top: 14px;
  padding: 12px 16px;
  background: rgba(34,197,94,.06);
  border-left: 3px solid var(--green);
  border-radius: 0 8px 8px 0;
  font-size: 13px;
  font-style: italic;
  color: #86efac;
  line-height: 1.6;
}

/* ──────────────────────────────────────────────────────────────────────────
   VALUE PROPOSITION SECTION
────────────────────────────────────────────────────────────────────────── */
.value-section {
  background: var(--bg);
}

.value-hero {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
  border: 1px solid rgba(255,255,255,.07);
}
.value-hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.value-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(8,13,22,.85) 100%
  );
  pointer-events: none;
}
@media (max-width: 700px) {
  .value-hero-img { height: 240px; }
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 960px) {
  .value-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .value-grid { grid-template-columns: 1fr; }
}

.value-card {
  background: var(--bg2);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  padding: 32px 28px;
  transition: border-color .3s, transform .3s;
}
.value-card:hover {
  border-color: rgba(34,197,94,.25);
  transform: translateY(-4px);
}

.value-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--green);
  margin-bottom: 14px;
  opacity: .8;
}

.value-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 10px;
}

.value-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* ──────────────────────────────────────────────────────────────────────────
   NETWORK SECTION
────────────────────────────────────────────────────────────────────────── */
.network-section {
  background: var(--bg2);
}

.network-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 960px) {
  .network-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .network-grid { grid-template-columns: 1fr; }
}

.network-col {
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  padding: 28px 22px;
}

.network-col-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.network-col-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 14px;
  letter-spacing: .3px;
}

.network-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding-bottom: 4px;
}
.network-brand-img {
  height: 42px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  opacity: .85;
  transition: opacity .2s;
}
.network-brand-img:hover { opacity: 1; }
.network-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.network-pill {
  display: inline-block;
  padding: 5px 11px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  color: var(--muted);
}

.network-pill-hl {
  background: rgba(34,197,94,.08);
  border-color: rgba(34,197,94,.22);
  color: #86efac;
}

.network-note {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 24px 32px;
  background: rgba(59,130,246,.05);
  border: 1px solid rgba(59,130,246,.12);
  border-radius: 12px;
}
.network-note p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* ──────────────────────────────────────────────────────────────────────────
   FUTURE SECTION
────────────────────────────────────────────────────────────────────────── */
.future-section {
  background: var(--bg);
}

.future-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 860px) {
  .future-grid { grid-template-columns: 1fr; gap: 48px; }
}

.future-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.future-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
}

.future-item-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(34,197,94,.5);
}

.future-highlight {
  background: var(--bg2);
  border: 1px solid rgba(34,197,94,.2);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}
.future-highlight::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), transparent);
}

.future-highlight-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}

.future-highlight-num {
  font-size: 48px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 4px;
}
.future-highlight-num span {
  font-size: 24px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0;
}

.future-highlight-period {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 18px;
  font-weight: 500;
}

.future-highlight-note {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 16px;
}

/* ──────────────────────────────────────────────────────────────────────────
   FOUNDERS SECTION
────────────────────────────────────────────────────────────────────────── */
.founders-section {
  background: var(--bg2);
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 700px) {
  .founders-grid { grid-template-columns: 1fr; }
}

.founder-card {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  padding: 32px 28px;
  transition: border-color .3s, transform .3s;
}
.founder-card:hover {
  border-color: rgba(34,197,94,.2);
  transform: translateY(-4px);
}

.founder-avatar {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

.founder-avatar-a {
  border: 3px solid rgba(34,197,94,.5);
  box-shadow: 0 0 0 5px rgba(34,197,94,.08);
}

.founder-avatar-f {
  border: 3px solid rgba(59,130,246,.5);
  box-shadow: 0 0 0 5px rgba(59,130,246,.08);
}

.founder-meta {
  flex: 1;
}

.founder-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 5px;
}

.founder-role {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.founder-bio {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

/* ══════════════════════════════════════════════
   TABLET / NARROW — ≤ 480px: features → 1 col
══════════════════════════════════════════════ */
@media (max-width: 480px) {
  .features-bar { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════
   MOBILE RESPONSIVE — ≤ 768px
══════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── Nav ── */
  nav {
    padding: 10px 16px;
    gap: 8px;
    justify-content: space-between;
  }
  .nav-links { display: none; }
  .nav-logo-img { height: 40px; }
  .btn-nav { font-size: 12px; padding: 9px 14px; }
  .lang-switcher { gap: 4px; }

  /* ── Hero ── */
  .hero {
    min-height: auto;
    padding: 100px 20px 48px;
    align-items: flex-start;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hero-inner h1 { font-size: clamp(2rem, 9vw, 3rem); }
  .hero-visual {
    height: 240px;
    justify-content: center;
  }
  .hero-visual svg {
    max-height: 240px;
    width: auto;
  }

  /* ── Features bar ── */
  .features-bar {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 28px 24px;
  }
  .feature-divider { display: none; }
  .feature-item { padding: 0; }

  /* ── The Problem ── */
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .problem-visual { height: 220px; }

  /* ── Section padding ── */
  .section { padding: 64px 20px; }

  /* ── Flow diagram (Solution) ── */
  .flow-diagram {
    flex-direction: column;
    gap: 0;
  }
  .flow-arrow {
    flex-direction: row;
    gap: 8px;
    padding: 8px 0;
    justify-content: center;
  }
  .flow-arrow svg { transform: rotate(90deg); }
  .flow-step { width: 100%; }

  /* ── How It Works steps ── */
  .steps-header {
    flex-direction: column;
    gap: 16px;
  }
  .vstep { gap: 0 20px; }

  /* ── Value cards ── */
  .value-grid { grid-template-columns: 1fr !important; }

  /* ── Theory of Change ── */
  .theory-stmt { flex-direction: column; gap: 16px; }
  .theory-arrow { display: none; }

  /* ── CTA section ── */
  .cta-box {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 28px;
  }
  .cta-input { width: 100%; }

  /* ── Founder cards ── */
  .founder-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .founder-avatar { width: 88px; height: 88px; }

  /* ── Footer ── */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .footer-legal { justify-content: center; flex-wrap: wrap; }

  /* ── FAQ tabs ── */
  .faq-tabs { flex-wrap: wrap; gap: 8px; justify-content: center; }
  .faq-tab { font-size: 13px; padding: 8px 14px; }
}
