:root{
    --ink:#0D132B;
    --ink-soft:#4B5165;
    --paper:#FBFAF7;
    --paper-alt:#F3F1EC;
    --line:#E4E1D8;
    --pink:#FF4D8D;
    --orange:#FF8B3D;
    --purple:#7B4DFF;
    --blue:#2F80ED;
    --green:#27C992;
    --grad-full: linear-gradient(120deg, var(--pink) 0%, var(--orange) 26%, var(--purple) 55%, var(--blue) 78%, var(--green) 100%);
    --grad-soft: linear-gradient(120deg, rgba(255,77,141,0.12), rgba(255,139,61,0.12), rgba(123,77,255,0.12), rgba(47,128,237,0.12), rgba(39,201,146,0.12));
    --radius: 18px;
    --maxw: 1180px;
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    font-family:'Poppins', sans-serif;
    background-color:var(--paper);
    background-image:radial-gradient(circle, rgba(13,19,43,0.05) 1.1px, transparent 1.1px);
    background-size:26px 26px;
    color:var(--ink);
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }
  a{color:inherit; text-decoration:none;}
  img,svg{display:block; max-width:100%;}
  .wrap{max-width:var(--maxw); margin:0 auto; padding:0 28px;}
  .eyebrow{
    font-size:12px; font-weight:600; letter-spacing:0.22em; text-transform:uppercase;
    color:var(--purple); margin-bottom:14px; display:flex; align-items:center; gap:10px;
  }
  .eyebrow::before{content:""; width:22px; height:2px; background:var(--grad-full); display:inline-block; border-radius:2px;}
  h1,h2,h3{font-weight:700; letter-spacing:-0.01em;}
  .btn{
    display:inline-flex; align-items:center; gap:8px;
    padding:14px 28px; border-radius:999px; font-weight:600; font-size:15px;
    transition:transform .25s ease, box-shadow .25s ease;
    cursor:pointer; border:none;
  }
  .btn-primary{
    background:var(--ink); color:#fff;
  }
  .btn-primary:hover{ transform:translateY(-2px); box-shadow:0 12px 24px rgba(13,19,43,0.25);}
  .btn-outline{
    background:transparent; color:var(--ink); border:1.5px solid var(--ink);
  }
  .btn-outline:hover{ transform:translateY(-2px); background:var(--ink); color:#fff;}
  .btn-gradient{
    background:var(--grad-full); color:#fff;
  }
  .btn-gradient:hover{ transform:translateY(-2px); box-shadow:0 14px 30px rgba(123,77,255,0.35);}

  /* ===== NAV ===== */
  header.nav{
    position:fixed; top:0; left:0; right:0; z-index:100;
    background:rgba(251,250,247,0.75);
    backdrop-filter:blur(14px);
    border-bottom:1px solid transparent;
    transition:border-color .3s ease, background .3s ease;
  }
  header.nav.scrolled{ border-bottom-color:var(--line); background:rgba(251,250,247,0.94);}
  .nav-inner{
    max-width:var(--maxw); margin:0 auto; padding:16px 28px;
    display:flex; align-items:center; justify-content:space-between;
  }
  .brand{ display:flex; align-items:center; gap:10px; font-weight:700; font-size:19px; letter-spacing:-0.01em;}
  .brand svg{ width:30px; height:30px;}
  .nav-links{ display:flex; align-items:center; gap:30px; font-size:14.5px; font-weight:500; color:var(--ink-soft);}
  .nav-links a{ position:relative; padding:4px 0; transition:color .2s;}
  .nav-links a:hover{ color:var(--ink);}
  .nav-links a::after{
    content:""; position:absolute; left:0; bottom:-2px; width:0; height:2px;
    background:var(--grad-full); transition:width .25s ease;
  }
  .nav-links a:hover::after{ width:100%;}
  .nav-cta{ display:flex; align-items:center; gap:16px;}
  .burger{ display:none; }

  @media(max-width:940px){
    .nav-links{ display:none; }
    .nav-cta .btn-outline{ display:none; }
  }

  /* ===== HERO ===== */
  .hero{
    position:relative;
    padding:170px 0 90px;
    overflow:hidden;
  }
  .hero-inner{
    display:grid; grid-template-columns:1.15fr 0.85fr; gap:60px; align-items:center;
  }
  .hero h1{
    font-size:clamp(48px, 6.4vw, 92px);
    line-height:0.98;
    color:var(--ink);
  }
  .hero .tagline{
    font-size:clamp(18px, 2vw, 22px);
    font-weight:600;
    margin-top:22px;
    background:var(--grad-full);
    -webkit-background-clip:text; background-clip:text; color:transparent;
  }
  .hero p.support{
    margin-top:22px; max-width:480px; font-size:16.5px; color:var(--ink-soft);
  }
  .hero-ctas{ display:flex; gap:16px; margin-top:38px; flex-wrap:wrap;}
  .hero-visual{ position:relative; display:flex; align-items:center; justify-content:center;}
  .hero-visual svg, .hero-visual img{ width:100%; max-width:420px; animation:float 7s ease-in-out infinite;}
  @keyframes float{ 0%,100%{transform:translateY(0px) rotate(0deg);} 50%{transform:translateY(-14px) rotate(2deg);} }
  .hero-glow{
    position:absolute; width:600px; height:600px; border-radius:50%;
    background:radial-gradient(circle, rgba(123,77,255,0.10), transparent 70%);
    top:-160px; right:-160px; z-index:-1;
  }
  .hero-glow-2{
    position:absolute; width:480px; height:480px; border-radius:50%;
    background:radial-gradient(circle, rgba(255,77,141,0.09), transparent 70%);
    bottom:-200px; left:-180px; z-index:-1;
  }
  @media(max-width:940px){
    .hero{ padding:140px 0 70px;}
    .hero-inner{ grid-template-columns:1fr; text-align:left;}
    .hero-visual{ order:-1; margin-bottom:20px;}
    .hero-visual svg, .hero-visual img{ max-width:220px; margin:0 auto;}
  }

  /* ===== MARQUEE ===== */
  .marquee-wrap{
    overflow:hidden; padding:20px 0; background:var(--paper-alt);
    border-top:1px solid var(--line); border-bottom:1px solid var(--line);
  }
  .marquee-track{
    display:flex; width:max-content; animation:marquee 26s linear infinite;
  }
  .marquee-track:hover{ animation-play-state:paused; }
  .marquee-track span{
    font-size:13.5px; font-weight:700; letter-spacing:.16em; text-transform:uppercase;
    color:var(--ink-soft); white-space:nowrap; padding:0 34px; display:flex; align-items:center; gap:34px;
  }
  .marquee-track span::after{ content:"✦"; color:var(--purple); font-size:11px;}
  @keyframes marquee{ from{transform:translateX(0);} to{transform:translateX(-50%);} }
  @media(prefers-reduced-motion: reduce){ .marquee-track{ animation:none; } }

  /* ===== SECTION BASE ===== */
  section{ padding:100px 0; }
  .section-head{ max-width:640px; margin-bottom:56px;}
  .section-head h2{ font-size:clamp(32px,4vw,46px); line-height:1.08;}
  .section-head p{ margin-top:16px; font-size:16.5px; color:var(--ink-soft);}

  /* ===== ECOSYSTEM DIAGRAM (desktop) ===== */
  .ecosystem{ background:var(--paper-alt); position:relative;}
  .eco-diagram{ display:block; margin:0 auto 40px; max-width:760px;}
  .eco-diagram .hub-label{ font-family:'Poppins'; font-weight:700; font-size:14px; letter-spacing:.01em; fill:#fff;}
  .eco-diagram .node-label{ font-family:'Poppins'; font-weight:700; font-size:15px; fill:var(--ink);}
  .eco-diagram .node-sub{ font-family:'Poppins'; font-weight:600; font-size:8.5px; letter-spacing:.02em;}
  .eco-diagram path.link{
    fill:none; stroke-width:2.5;
    stroke-dasharray:400; stroke-dashoffset:400;
    transition:stroke-dashoffset 1.4s ease;
  }
  .eco-diagram.in-view path.link{ stroke-dashoffset:0;}
  .eco-diagram circle.node-dot{ transition:r .3s ease;}
  .eco-diagram .node-group:hover circle.node-dot{ r:54;}

  @media(max-width:820px){ .eco-diagram{ display:none;} }

  .eco-cards{
    display:grid; grid-template-columns:repeat(4,1fr); gap:20px;
  }
  @media(max-width:940px){ .eco-cards{ grid-template-columns:repeat(2,1fr);} }
  @media(max-width:560px){ .eco-cards{ grid-template-columns:1fr; gap:16px;} }

  /* ===== BRAND MEANING: FOUR HEARTS ===== */
  .brand-meaning{ padding:100px 0; text-align:center;}
  .brand-meaning .eyebrow{ justify-content:center;}
  .hearts-title{
    font-size:clamp(30px,4.6vw,50px); font-weight:800; line-height:1.1; letter-spacing:-0.01em;
    color:var(--ink); margin-bottom:34px;
  }
  .hearts-title .grad-text{
    background:var(--grad-full); -webkit-background-clip:text; background-clip:text; color:transparent;
  }
  .hearts-lines{ max-width:520px; margin:0 auto; }
  .hearts-lines p{ font-size:16.5px; color:var(--ink-soft); line-height:1.7; margin-bottom:10px;}
  .hearts-lines p.lead{ color:var(--ink); font-weight:500; margin-bottom:26px; font-size:17px;}
  .hearts-lines p.final{ margin-top:24px; font-weight:700; color:var(--ink); font-size:18.5px;}
  .meaning-logo{ display:flex; justify-content:center; margin:52px 0;}
  .meaning-logo img{ width:100%; max-width:190px;}
  .hearts-closing{
    text-align:center; margin-top:10px; padding-top:38px; border-top:1px solid var(--line);
    max-width:480px; margin-left:auto; margin-right:auto;
  }
  .hearts-closing-brand{ font-size:26px; font-weight:800; letter-spacing:0.03em; margin-bottom:10px;}
  .hearts-closing-tagline{ font-size:14.5px; color:var(--ink-soft); font-weight:600; letter-spacing:0.01em;}
  .sc-synthesis{ font-size:16px; color:var(--ink); font-weight:600; line-height:1.6; margin-bottom:22px;}

  .shape-colour-grid{
    display:grid; grid-template-columns:1fr 1fr; gap:48px;
    max-width:920px; margin:44px auto 0; text-align:left;
  }
  @media(max-width:820px){ .shape-colour-grid{ grid-template-columns:1fr; gap:36px; text-align:center;} }
  .sc-col h3{
    font-size:12px; font-weight:800; letter-spacing:.2em; text-transform:uppercase;
    color:var(--sc-color); margin-bottom:16px; display:flex; align-items:center; gap:10px;
  }
  .sc-col h3::before{ content:""; width:18px; height:2px; background:var(--sc-color); display:inline-block; border-radius:2px;}
  @media(max-width:820px){ .sc-col h3{ justify-content:center;} }
  .sc-col p{ font-size:14.5px; color:var(--ink-soft); line-height:1.7; margin-bottom:14px;}

  .eco-card{
    background:#fff; border:1px solid var(--line); border-radius:var(--radius);
    padding:28px 22px; position:relative; overflow:hidden;
    transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  }
  .eco-card::before{
    content:""; position:absolute; top:0; left:0; right:0; height:4px;
    background:var(--card-color, var(--purple));
  }
  .eco-card:hover{ transform:translateY(-6px); box-shadow:0 20px 40px rgba(13,19,43,0.08); border-color:transparent;}
  .eco-card .icon{
    width:44px; height:44px; border-radius:12px; display:flex; align-items:center; justify-content:center;
    background:var(--card-tint, rgba(123,77,255,0.1)); margin-bottom:18px;
  }
  .eco-card .icon svg{ width:22px; height:22px;}
  .eco-card .tag{ font-size:11px; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:var(--card-color, var(--purple)); margin-bottom:6px;}
  .eco-card h3{ font-size:18px; margin-bottom:10px;}
  .eco-card p{ font-size:14px; color:var(--ink-soft);}

  /* ===== ABOUT ===== */
  .about-inner{ display:grid; grid-template-columns:0.9fr 1.1fr; gap:70px; align-items:start;}
  .about-inner .big-line{ font-size:clamp(24px,2.6vw,30px); font-weight:600; line-height:1.4;}
  .about-inner .body-copy p{ margin-bottom:18px; font-size:16px; color:var(--ink-soft);}
  .about-inner .body-copy strong{ color:var(--ink);}
  @media(max-width:860px){ .about-inner{ grid-template-columns:1fr; gap:30px;} }
  .founder-quote{
    margin-top:30px; padding:24px 26px; border-left:3px solid; border-image:var(--grad-full) 1;
    background:var(--paper-alt); border-radius:0 14px 14px 0;
  }
  .founder-quote p{ font-style:italic; font-size:15px; color:var(--ink); margin-bottom:10px;}
  .founder-quote span{ font-size:13px; color:var(--ink-soft); font-weight:600;}

  /* ===== AUDIENCE ===== */
  .audience{ background:var(--ink); color:#fff;}
  .audience .section-head h2, .audience .section-head p{ color:#fff;}
  .audience .section-head p{ color:rgba(255,255,255,0.65);}
  .audience .eyebrow{ color:#FFB3CF;}
  .audience .eyebrow::before{ background:var(--grad-full);}
  .aud-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:rgba(255,255,255,0.12); border-radius:var(--radius); overflow:hidden;}
  @media(max-width:820px){ .aud-grid{ grid-template-columns:1fr;} }
  .aud-cell{
    background:var(--ink); padding:34px 28px; transition:background .3s ease;
  }
  .aud-cell:hover{ background:#161c38;}
  .aud-cell .quote{ font-size:16px; font-weight:600; margin-bottom:10px;}
  .aud-cell .quote::before{ content:"“"; color:var(--pink);}
  .aud-cell .quote::after{ content:"”"; color:var(--pink);}
  .aud-cell .arrow{ font-size:13px; color:rgba(255,255,255,0.6); display:flex; align-items:center; gap:8px; margin-top:14px;}
  .aud-cell .arrow b{ color:#fff; font-weight:600;}

  /* ===== PROGRAMMES ===== */
  .prog-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:22px;}
  @media(max-width:900px){ .prog-grid{ grid-template-columns:1fr;} }
  .prog-card{
    background:#fff; border:1px solid var(--line); border-radius:var(--radius);
    padding:28px; position:relative; transition:transform .3s ease, box-shadow .3s ease;
  }
  .prog-card:hover{ transform:translateY(-6px); box-shadow:0 20px 40px rgba(13,19,43,0.08);}
  .prog-date{
    font-size:11px; font-weight:700; letter-spacing:.12em; text-transform:uppercase;
    color:var(--card-color, var(--purple)); margin-bottom:14px;
  }
  .prog-card h3{ font-size:19px; margin-bottom:6px;}
  .prog-loc{ font-size:13px; color:var(--ink-soft); font-weight:500; margin-bottom:14px;}
  .prog-card p{ font-size:14.5px; color:var(--ink-soft); margin-bottom:0;}
  .prog-card .prog-link{
    display:inline-block; margin-top:16px; font-size:14px; font-weight:600; color:var(--ink);
    border-bottom:2px solid var(--card-color, var(--purple)); padding-bottom:2px;
  }
  .prog-note{ margin-top:30px; font-size:13px; color:var(--ink-soft); text-align:center;}

  /* ===== PARTNERS ===== */
  .partner-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px;}
  @media(max-width:900px){ .partner-grid{ grid-template-columns:repeat(2,1fr);} }
  @media(max-width:560px){ .partner-grid{ grid-template-columns:1fr;} }
  .partner-card{
    background:var(--paper-alt); border-radius:var(--radius); padding:30px 24px;
    border-top:4px solid var(--card-color, var(--purple));
    transition:transform .3s ease, box-shadow .3s ease;
  }
  .partner-card:hover{ transform:translateY(-6px); box-shadow:0 16px 32px rgba(13,19,43,0.07);}
  .partner-tag{ font-size:16px; font-weight:700; margin-bottom:10px; color:var(--ink);}
  .partner-card p{ font-size:14px; color:var(--ink-soft);}
  .partner-cta{ text-align:center; margin-top:44px;}

  /* ===== JOIN CTA ===== */
  .join{
    background:var(--grad-full); color:#fff; text-align:center; position:relative;
  }
  .join h2{ font-size:clamp(34px,5vw,54px); max-width:760px; margin:0 auto;}
  .join p{ max-width:560px; margin:18px auto 36px; font-size:16.5px; color:rgba(255,255,255,0.9);}
  .join .btn-primary{ background:#fff; color:var(--ink);}
  .join .btn-primary:hover{ box-shadow:0 14px 30px rgba(0,0,0,0.25);}
  .join .btn-outline{ border-color:#fff; color:#fff;}
  .join .btn-outline:hover{ background:#fff; color:var(--ink);}
  .join-ctas{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap;}

  /* ===== FOOTER ===== */
  footer{ padding:60px 0 40px; }
  .footer-inner{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:30px; border-top:1px solid var(--line); padding-top:36px;}
  .footer-brand{ display:flex; align-items:center; gap:10px; font-weight:700; font-size:17px;}
  .footer-brand svg{ width:24px; height:24px;}
  .footer-links{ display:flex; gap:40px; flex-wrap:wrap;}
  .footer-col h4{ font-size:12px; letter-spacing:.1em; text-transform:uppercase; color:var(--ink-soft); margin-bottom:12px; font-weight:600;}
  .footer-col a{ display:block; font-size:14px; color:var(--ink); margin-bottom:8px; opacity:0.8;}
  .footer-col a:hover{ opacity:1;}
  .footer-bottom{ margin-top:40px; font-size:13px; color:var(--ink-soft); display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;}

  /* reveal on scroll */
  .reveal{ opacity:0; transform:translateY(24px); transition:opacity .7s ease, transform .7s ease;}
  .reveal.in-view{ opacity:1; transform:translateY(0);}

  @media (prefers-reduced-motion: reduce){
    *{ animation:none !important; transition:none !important;}
  }

/* ===== PILLAR SUB-PAGE SHARED STYLES ===== */
.pillar-hero{ padding:150px 0 80px; }
.pillar-hero .pill-num{
  display:inline-block; font-size:12px; font-weight:800; letter-spacing:.2em; text-transform:uppercase;
  padding:6px 14px; border-radius:999px; color:#fff; margin-bottom:20px;
  background:var(--pillar-color, var(--purple));
}
.pillar-hero h1{ font-size:clamp(38px,6vw,64px); line-height:1.02; color:var(--ink);}
.pillar-hero .pill-tagline{
  font-size:13px; font-weight:700; letter-spacing:.18em; text-transform:uppercase;
  color:var(--pillar-color, var(--purple)); margin-top:16px;
}
.pillar-hero p.pill-intro{ margin-top:20px; max-width:560px; font-size:16.5px; color:var(--ink-soft);}
.pillar-hero .hero-ctas{ margin-top:32px;}

.role-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px;}
@media(max-width:900px){ .role-grid{ grid-template-columns:repeat(2,1fr);} }
@media(max-width:600px){ .role-grid{ grid-template-columns:1fr;} }
.role-item{
  background:#fff; border:1px solid var(--line); border-radius:14px; padding:20px;
  display:flex; gap:12px; align-items:flex-start;
}
.role-item .dot{
  flex:none; width:8px; height:8px; border-radius:50%; margin-top:7px;
  background:var(--pillar-color, var(--purple));
}
.role-item p{ font-size:14.5px; color:var(--ink-soft); line-height:1.55;}

/* journey stepper */
.journey{ display:flex; flex-direction:column; gap:0; max-width:480px; margin:0 auto;}
.journey-step{ display:flex; gap:20px; align-items:flex-start; position:relative; padding-bottom:34px;}
.journey-step:last-child{ padding-bottom:0;}
.journey-step::before{
  content:""; position:absolute; left:19px; top:42px; bottom:0; width:2px;
  background:var(--line);
}
.journey-step:last-child::before{ display:none;}
.journey-num{
  flex:none; width:40px; height:40px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  background:var(--pillar-color, var(--purple)); color:#fff; font-weight:800; font-size:15px; z-index:1;
}
.journey-body h4{ font-size:16px; margin-bottom:4px;}
.journey-body p{ font-size:14px; color:var(--ink-soft); line-height:1.5;}

/* bridge model (Co-op) */
.bridge-diagram{
  display:flex; align-items:center; justify-content:center; gap:0; flex-wrap:wrap; max-width:760px; margin:0 auto;
}
.bridge-side{
  flex:1; min-width:200px; text-align:center; padding:22px 16px; background:#fff;
  border:1px solid var(--line); border-radius:14px;
}
.bridge-side h4{ font-size:14px; margin-bottom:8px; color:var(--ink);}
.bridge-side p{ font-size:12.5px; color:var(--ink-soft); line-height:1.5;}
.bridge-center{
  flex:none; width:110px; height:110px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  background:var(--grad-full); color:#fff; font-weight:800; font-size:14px; text-align:center; margin:0 18px;
  box-shadow:0 14px 30px rgba(123,77,255,0.25);
}
@media(max-width:700px){ .bridge-center{ order:-1; margin:0 0 18px;} .bridge-side{ width:100%;} }

.flow-chain{ display:flex; align-items:center; justify-content:center; flex-wrap:wrap; gap:8px; max-width:760px; margin:0 auto;}
.flow-node{
  background:#fff; border:1px solid var(--line); border-radius:12px; padding:14px 18px;
  font-size:13px; font-weight:700; color:var(--ink); text-align:center;
}
.flow-arrow{ color:var(--pillar-color, var(--purple)); font-size:18px; font-weight:700;}

/* format / category grid (Academy, Trade) */
.format-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px;}
@media(max-width:900px){ .format-grid{ grid-template-columns:repeat(2,1fr);} }
@media(max-width:600px){ .format-grid{ grid-template-columns:1fr;} }
.format-card{
  background:#fff; border:1px solid var(--line); border-radius:14px; padding:22px;
  transition:transform .3s ease, box-shadow .3s ease;
}
.format-card:hover{ transform:translateY(-5px); box-shadow:0 16px 32px rgba(13,19,43,0.07);}
.format-card h4{ font-size:15px; margin-bottom:8px; color:var(--pillar-color, var(--purple));}
.format-card p{ font-size:13.5px; color:var(--ink-soft); line-height:1.55;}

/* audience grid (reused pattern, pillar-tinted) */
.pillar-audience{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px;}
@media(max-width:900px){ .pillar-audience{ grid-template-columns:repeat(2,1fr);} }
@media(max-width:600px){ .pillar-audience{ grid-template-columns:1fr;} }
.pillar-audience .a-card{
  background:var(--paper-alt); border-radius:14px; padding:22px; border-top:3px solid var(--pillar-color, var(--purple));
}
.pillar-audience .a-card h4{ font-size:14.5px; margin-bottom:8px;}
.pillar-audience .a-card p{ font-size:13px; color:var(--ink-soft); line-height:1.5;}

.value-list{ display:flex; flex-wrap:wrap; gap:10px; justify-content:center; max-width:760px; margin:0 auto;}
.value-pill{
  background:#fff; border:1px solid var(--line); border-radius:999px; padding:8px 18px;
  font-size:13px; font-weight:600; color:var(--ink);
}

.disclaimer-box{
  max-width:640px; margin:0 auto; padding:18px 22px; background:var(--paper-alt); border-radius:12px;
  font-size:12.5px; color:var(--ink-soft); line-height:1.6; text-align:center; border:1px dashed var(--line);
}

.founding-badge{
  display:inline-block; background:var(--ink); color:#fff; font-size:12px; font-weight:800;
  letter-spacing:.14em; text-transform:uppercase; padding:8px 18px; border-radius:999px; margin-bottom:14px;
}

.pillar-switcher{
  display:flex; gap:10px; justify-content:center; flex-wrap:wrap; margin-top:24px;
}
.pillar-switcher a{
  font-size:13px; font-weight:600; padding:8px 16px; border-radius:999px; border:1px solid var(--line);
  color:var(--ink-soft); transition:all .2s ease;
}
.pillar-switcher a:hover{ border-color:var(--ink); color:var(--ink);}
.pillar-switcher a.active{ background:var(--ink); color:#fff; border-color:var(--ink);}

.eco-card .eco-link{
  display:inline-block; margin-top:14px; font-size:13px; font-weight:600; color:var(--ink);
  border-bottom:2px solid var(--card-color, var(--purple)); padding-bottom:2px;
}

.section-alt{ background:var(--paper-alt); }

/* Launch section responsive (Co-op page) */
@media(max-width:820px){
  section.section-alt > .wrap.reveal[style*="grid-template-columns:0.85fr"]{
    grid-template-columns:1fr !important; text-align:center;
  }
}

/* ===== SME READINESS PATHWAY (Circle page) ===== */
.readiness-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:40px;
}
@media(max-width:900px){ .readiness-grid{ grid-template-columns:1fr;} }
.readiness-card{
  background:#fff; border:1px solid var(--line); border-radius:16px; padding:26px;
  border-top:3px solid var(--stage-color, var(--purple));
}
.readiness-icon{
  width:36px; height:36px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  background:var(--stage-color, var(--purple)); color:#fff; font-weight:800; font-size:15px; margin-bottom:14px;
}
.readiness-stage{
  display:block; font-size:11px; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
  color:var(--stage-color, var(--purple)); margin-bottom:6px;
}
.readiness-card h4{ font-size:17px; margin-bottom:14px; color:var(--ink);}
.readiness-list{ list-style:none; padding:0; margin:0;}
.readiness-list li{
  font-size:13px; color:var(--ink-soft); line-height:1.55; padding-left:16px; position:relative; margin-bottom:10px;
}
.readiness-list li::before{
  content:"•"; position:absolute; left:0; color:var(--stage-color, var(--purple)); font-weight:800;
}
.readiness-features{
  display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-top:36px;
  padding:22px; background:#fff; border-radius:16px; border:1px solid var(--line);
}
@media(max-width:700px){ .readiness-features{ grid-template-columns:1fr 1fr;} }
.rf-item{ display:flex; flex-direction:column; gap:4px; text-align:center;}
.rf-label{ font-size:12.5px; font-weight:800; letter-spacing:.02em;}
.rf-sub{ font-size:11.5px; color:var(--ink-soft); line-height:1.4;}

/* Readiness Pathway poster block responsive */
@media(max-width:820px){
  .section-alt > .wrap.reveal[style*="grid-template-columns:0.75fr"],
  section.section-alt > .wrap > div[style*="grid-template-columns:0.75fr"]{
    grid-template-columns:1fr !important; text-align:center;
  }
}

/* ===== STAGGERED REVEAL FOR GRID ITEMS ===== */
.eco-cards .reveal:nth-child(1),
.prog-grid .reveal:nth-child(1),
.role-grid .reveal:nth-child(1),
.format-grid .reveal:nth-child(1),
.readiness-grid .reveal:nth-child(1),
.pillar-audience .reveal:nth-child(1){ transition-delay:0s; }

.eco-cards .reveal:nth-child(2),
.prog-grid .reveal:nth-child(2),
.role-grid .reveal:nth-child(2),
.format-grid .reveal:nth-child(2),
.readiness-grid .reveal:nth-child(2),
.pillar-audience .reveal:nth-child(2){ transition-delay:.08s; }

.eco-cards .reveal:nth-child(3),
.prog-grid .reveal:nth-child(3),
.role-grid .reveal:nth-child(3),
.format-grid .reveal:nth-child(3),
.readiness-grid .reveal:nth-child(3),
.pillar-audience .reveal:nth-child(3){ transition-delay:.16s; }

.eco-cards .reveal:nth-child(4),
.prog-grid .reveal:nth-child(4),
.role-grid .reveal:nth-child(4),
.format-grid .reveal:nth-child(4){ transition-delay:.24s; }

.role-grid .reveal:nth-child(5),
.format-grid .reveal:nth-child(5){ transition-delay:.32s; }

.role-grid .reveal:nth-child(6),
.format-grid .reveal:nth-child(6){ transition-delay:.4s; }

/* ===== SECTION DECORATIVE BLOBS (fill empty sections with depth) ===== */
.deco-section{ position:relative; overflow:hidden; }
.deco-blob-a{
  position:absolute; width:420px; height:420px; border-radius:50%; z-index:0; pointer-events:none;
  background:radial-gradient(circle, rgba(123,77,255,0.08), transparent 70%);
  top:-140px; left:-140px;
}
.deco-blob-b{
  position:absolute; width:380px; height:380px; border-radius:50%; z-index:0; pointer-events:none;
  background:radial-gradient(circle, rgba(255,77,141,0.07), transparent 70%);
  bottom:-160px; right:-120px;
}
.deco-section > .wrap{ position:relative; z-index:1; }

.sc-divider{
  width:1.5px; align-self:stretch; background:linear-gradient(180deg, transparent, var(--line) 15%, var(--line) 85%, transparent);
  margin:0 auto; display:none;
}
@media(min-width:821px){
  .shape-colour-grid{ position:relative; }
  .shape-colour-grid::before{
    content:""; position:absolute; left:50%; top:6px; bottom:6px; width:1.5px;
    background:linear-gradient(180deg, transparent, var(--line) 15%, var(--line) 85%, transparent);
  }
}

/* ===== SHAPE/COLOUR ICON POINTS (reduce text density) ===== */
.sc-col .sc-intro{ font-size:14.5px; color:var(--ink-soft); margin-bottom:20px; line-height:1.6;}
.sc-points{ display:flex; flex-direction:column; gap:14px;}
.sc-point{ display:flex; gap:12px; align-items:flex-start;}
.sc-point-icon{
  flex:none; width:38px; height:38px; border-radius:11px; display:flex; align-items:center; justify-content:center;
  background:#fff; border:1px solid var(--line); box-shadow:0 4px 10px rgba(13,19,43,0.05);
}
.sc-point-icon svg{ width:18px; height:18px;}
.sc-point h4{ font-size:13.5px; font-weight:700; color:var(--ink); margin-bottom:2px;}
.sc-point p{ font-size:12.5px; color:var(--ink-soft); line-height:1.5;}

/* ===== BOARD / LEADERSHIP CARDS (Co-op page) ===== */
.board-grid{
  display:grid; grid-template-columns:repeat(5,1fr); gap:18px; margin-top:36px;
}
@media(max-width:960px){ .board-grid{ grid-template-columns:repeat(3,1fr);} }
@media(max-width:620px){ .board-grid{ grid-template-columns:repeat(2,1fr);} }
.board-card{
  background:#fff; border:1px solid var(--line); border-radius:16px; padding:24px 14px;
  text-align:center; transition:transform .3s ease, box-shadow .3s ease;
}
.board-card:hover{ transform:translateY(-4px); box-shadow:0 16px 32px rgba(13,19,43,0.08);}
.board-avatar{
  width:72px; height:72px; border-radius:50%; margin:0 auto 12px; overflow:hidden;
  border:2px solid #fff; box-shadow:0 4px 14px rgba(13,19,43,0.12);
}
.board-avatar img{ width:100%; height:100%; object-fit:cover; display:block;}
.board-card h4{ font-size:14px; margin-bottom:4px; color:var(--ink); line-height:1.3;}
.board-role{ font-size:11.5px; color:var(--ink-soft); font-weight:600;}

/* ===== COMMUNITY GALLERY (dual-direction scroll) ===== */
.gallery-wrap{ margin-top:36px; display:flex; flex-direction:column; gap:14px;}
.gallery-row{ overflow:hidden; width:100%;}
.gallery-track{ display:flex; gap:14px; width:max-content;}
.gallery-track img{
  width:260px; height:180px; object-fit:cover; border-radius:14px; flex:none;
  box-shadow:0 8px 20px rgba(13,19,43,0.08);
}
.gallery-track-left{ animation:galleryLeft 32s linear infinite; }
.gallery-track-right{ animation:galleryRight 32s linear infinite; }
.gallery-row:hover .gallery-track{ animation-play-state:paused; }
@keyframes galleryLeft{ from{transform:translateX(0);} to{transform:translateX(-50%);} }
@keyframes galleryRight{ from{transform:translateX(-50%);} to{transform:translateX(0);} }
@media(prefers-reduced-motion: reduce){ .gallery-track-left, .gallery-track-right{ animation:none; } }
@media(max-width:700px){ .gallery-track img{ width:190px; height:130px;} }

/* ===== JOURNEY AS DIALOGUE (Circle page) ===== */
.dialogue-wrap{ max-width:560px; margin:44px auto 0; display:flex; flex-direction:column; gap:12px;}
.dialogue-bubble{ display:flex; gap:10px; align-items:flex-end; max-width:82%;}
.dialogue-bubble.sheconomy{ align-self:flex-start;}
.dialogue-bubble.member{ align-self:flex-end; flex-direction:row-reverse;}
.dialogue-avatar{
  flex:none; width:30px; height:30px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg,#FF4D8D,#7B4DFF); color:#fff; font-weight:800; font-size:12px;
}
.dialogue-content{
  padding:12px 16px; border-radius:16px; font-size:14px; line-height:1.5;
}
.dialogue-bubble.sheconomy .dialogue-content{
  background:#fff; border:1px solid var(--line); border-bottom-left-radius:4px; color:var(--ink);
}
.dialogue-bubble.member .dialogue-content{
  background:var(--ink); color:#fff; border-bottom-right-radius:4px;
}
.dialogue-tag{
  display:block; font-size:10.5px; font-weight:800; letter-spacing:.06em; text-transform:uppercase;
  color:#FF4D8D; margin-bottom:4px;
}
.dialogue-content p{ margin:0;}
@media(max-width:600px){ .dialogue-bubble{ max-width:92%;} }

/* ===== POP-UP MARKET PLACEHOLDER (Trade page, pending real photos) ===== */
.popup-placeholder{
  width:100%; aspect-ratio:1/1; background:var(--paper-alt); border:2px dashed var(--line);
  display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; padding:24px;
  border-radius:18px;
}
.popup-placeholder span{ font-size:14px; font-weight:700; color:var(--ink-soft); margin-bottom:6px;}
.popup-placeholder small{ font-size:12px; color:var(--ink-soft); opacity:.7;}
