  :root{
    --ink:#14142E;
    --ink-soft:#2A2A4A;
    --paper:#FFFFFF;
    --surface:#F6F5F1;
    --mint:#DDF5E4;
    --mint-line:rgba(20,20,46,0.18);
    --coral:#FF5A3C;
    --coral-dark:#E8431F;
    --indigo:#3A3AF0;
    --yellow:#FFC93C;
    --line:#E7E5DD;
    --radius:20px;
  }
  *{box-sizing:border-box;margin:0;padding:0;}
  html{scroll-behavior:smooth;}
  body{
    font-family:'Plus Jakarta Sans', sans-serif;
    color:var(--ink);
    background:var(--paper);
    line-height:1.65;
    -webkit-font-smoothing:antialiased;
  }
  h1,h2,h3,.display{
    font-family:'Unbounded', sans-serif;
    line-height:1.15;
    letter-spacing:-0.01em;
  }
  a{color:inherit;text-decoration:none;}
  img{max-width:100%;display:block;}
  .wrap{max-width:1120px;margin:0 auto;padding:0 28px;}
  .eyebrow{
    display:inline-flex;align-items:center;gap:8px;
    font-family:'Unbounded', sans-serif;
    font-size:12px;font-weight:700;letter-spacing:0.14em;text-transform:uppercase;
    color:var(--coral-dark);
    margin-bottom:18px;
  }
  .eyebrow::before{
    content:"";width:8px;height:8px;border-radius:50%;background:var(--coral);
    box-shadow:0 0 0 4px rgba(255,90,60,0.15);
  }
  .btn{
    display:inline-flex;align-items:center;gap:10px;
    font-family:'Unbounded', sans-serif;font-weight:600;font-size:14.5px;
    padding:15px 28px;border-radius:100px;
    background:var(--coral);color:#fff;
    box-shadow:0 6px 0 var(--coral-dark);
    transition:transform .12s ease, box-shadow .12s ease;
    border:none;cursor:pointer;
  }
  .btn:hover{transform:translateY(2px);box-shadow:0 4px 0 var(--coral-dark);}
  .btn.ghost{
    background:transparent;color:var(--ink);border:2px solid var(--mint-line);
    box-shadow:none;padding:13px 26px;
  }
  .btn.ghost:hover{border-color:var(--ink);transform:none;}

  /* ---------- NAV ---------- */
  header{
    position:sticky;top:0;z-index:50;
    background:rgba(255,255,255,0.92);
    backdrop-filter:blur(8px);
    border-bottom:1px solid var(--line);
  }
  .nav{
    max-width:1280px;margin:0 auto;padding:14px 28px;
    display:flex;align-items:center;
    gap:32px;
  }
  .brand{display:flex;align-items:center;gap:10px;flex:none;}
  .brand img{height:68px;width:auto;object-fit:contain;}
  .brand span{font-family:'Unbounded';font-weight:700;font-size:17px;}
  .nav ul{
    list-style:none;display:flex;flex:1;justify-content:space-between;
    gap:4px;flex-wrap:nowrap;min-width:0;
  }
  .nav ul li{flex:none;}
  .nav ul li a{
    font-size:12.5px;font-weight:600;color:var(--ink-soft);
    white-space:nowrap;padding:8px 6px;border-radius:100px;
    display:block;transition:background .15s ease, color .15s ease;
  }
  .nav ul li a:hover{color:var(--coral-dark);background:var(--surface);}
  .nav-toggle-label{display:none;font-size:24px;cursor:pointer;flex:none;}
  #nav-toggle{display:none;}

  @media (max-width:900px){
    .nav ul{
      position:absolute;top:100%;left:0;right:0;
      background:#fff;flex-direction:column;justify-content:flex-start;gap:0;
      border-bottom:1px solid var(--line);
      max-height:0;overflow:hidden;transition:max-height .25s ease;
    }
    .nav ul li a{border-radius:0;padding:14px 28px;}
    .nav ul li{border-top:1px solid var(--line);}
    .nav-toggle-label{display:block;}
    #nav-toggle:checked ~ ul{max-height:600px;overflow-y:auto;}
  }

  /* ---------- HERO ---------- */
  .hero{
    background:var(--mint);
    color:var(--ink);
    position:relative;
    overflow:hidden;
    padding:96px 0 110px;
  }
  .hero::before{
    content:"";position:absolute;top:-140px;right:-140px;
    width:420px;height:420px;border-radius:50%;
    background:radial-gradient(circle at 30% 30%, rgba(255,90,60,0.25), transparent 70%);
  }
  .hero::after{
    content:"";position:absolute;bottom:-180px;left:-120px;
    width:380px;height:380px;border-radius:50%;
    background:radial-gradient(circle at 60% 40%, rgba(58,58,240,0.18), transparent 70%);
  }
  .hero-inner{position:relative;z-index:2;max-width:760px;}
  .hero h1{
    font-size:clamp(42px,7vw,74px);
    font-weight:900;
    background:linear-gradient(100deg, var(--ink) 30%, var(--coral-dark) 65%, var(--indigo) 100%);
    -webkit-background-clip:text;background-clip:text;color:transparent;
    margin-bottom:22px;
  }
  .hero .acronym{
    font-family:'Unbounded', sans-serif;font-size:12.5px;font-weight:600;
    letter-spacing:0.08em;text-transform:uppercase;color:var(--coral-dark);
    margin:-6px 0 20px;
  }
  .hero .tagline{font-size:clamp(17px,2.4vw,21px);font-weight:600;color:var(--ink);margin-bottom:20px;}
  .hero p{color:var(--ink-soft);font-size:16px;max-width:620px;margin-bottom:34px;}
  .spark-mark{
    position:absolute;right:60px;bottom:40px;width:110px;height:110px;z-index:1;opacity:0.9;
  }

  /* ---------- SECTIONS ---------- */
  section{padding:96px 0;}
  .section-surface{background:var(--surface);}
  .section-head{max-width:680px;margin-bottom:44px;}
  .section-head h2{font-size:clamp(28px,4vw,38px);font-weight:700;}
  .prose p{margin-bottom:18px;color:var(--ink-soft);font-size:16.5px;max-width:760px;}
  mark{
    background:linear-gradient(180deg, transparent 62%, var(--yellow) 62%);
    padding:0 2px;
  }

  /* feature grid */
  .grid-features{
    display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:22px;
  }
  .feature-card{
    background:#fff;border:1px solid var(--line);border-radius:var(--radius);
    padding:30px 26px;position:relative;
  }
  .feature-card:nth-child(odd){transform:rotate(-0.6deg);}
  .feature-card:nth-child(even){transform:rotate(0.6deg);}
  .feature-icon{
    width:46px;height:46px;border-radius:12px;
    display:flex;align-items:center;justify-content:center;
    background:var(--surface);color:var(--coral-dark);margin-bottom:16px;
  }
  .feature-card h3{font-size:17px;font-weight:700;margin-bottom:10px;font-family:'Unbounded';}
  .feature-card p{font-size:14.5px;color:var(--ink-soft);}

  /* timeline */
  .timeline-wrap{background:var(--mint);color:var(--ink);position:relative;overflow:hidden;}
  .timeline-list{display:flex;flex-direction:column;gap:0;max-width:640px;margin:0 auto;}
  .timeline-item{display:flex;gap:22px;align-items:flex-start;padding:8px 0;}
  .stamp{
    flex:none;width:56px;height:56px;border-radius:50%;
    border:2px dashed var(--mint-line);
    display:flex;align-items:center;justify-content:center;
    font-family:'Unbounded';font-weight:700;font-size:15px;color:var(--coral-dark);
    position:relative;
  }
  .connector{width:2px;flex:none;background:repeating-linear-gradient(to bottom, var(--mint-line) 0 6px, transparent 6px 12px);margin:0 auto;height:34px;margin-left:27px;}
  .timeline-text h3{font-size:18px;font-weight:600;margin-top:8px;font-family:'Plus Jakarta Sans';}
  .timeline-cta{text-align:center;margin-top:48px;}

  /* parents love */
  .parents-layout{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center;}
  .checklist{list-style:none;display:flex;flex-direction:column;gap:16px;}
  .checklist li{display:flex;gap:12px;align-items:flex-start;font-size:16px;color:var(--ink-soft);font-weight:500;}
  .check-icon{
    flex:none;width:24px;height:24px;border-radius:50%;background:var(--coral);
    display:flex;align-items:center;justify-content:center;color:#fff;font-size:13px;margin-top:2px;
  }
  .parents-img{border-radius:var(--radius);overflow:hidden;border:1px solid var(--line);}
  @media (max-width:820px){.parents-layout{grid-template-columns:1fr;}}

  /* upcoming workshop */
  .workshop-card{
    background:#fff;border:1px solid var(--line);border-radius:24px;
    padding:44px;display:grid;grid-template-columns:1fr 1fr;gap:40px;
    box-shadow:0 20px 60px -30px rgba(20,20,46,0.25);
  }
  .workshop-meta{display:flex;flex-direction:column;gap:14px;font-size:15px;}
  .workshop-meta strong{font-family:'Unbounded';font-size:12px;letter-spacing:.08em;text-transform:uppercase;color:var(--coral-dark);display:block;margin-bottom:2px;}
  .workshop-list{list-style:none;display:flex;flex-direction:column;gap:10px;margin:18px 0 26px;}
  .workshop-list li{display:flex;gap:10px;font-size:14.5px;color:var(--ink-soft);}
  .workshop-list li::before{content:"→";color:var(--coral);font-weight:700;}
  @media (max-width:760px){.workshop-card{grid-template-columns:1fr;padding:30px;}}

  /* closing cta */
  .closing{
    background:linear-gradient(120deg, var(--indigo), var(--coral));
    color:#fff;text-align:center;padding:100px 0;
  }
  .closing h2{font-size:clamp(28px,4.5vw,42px);margin-bottom:18px;}
  .closing p{max-width:560px;margin:0 auto 30px;color:rgba(255,255,255,0.9);}
  .closing .btn{background:#fff;color:var(--ink);box-shadow:0 6px 0 rgba(0,0,0,0.2);}

  /* footer */
  footer{background:var(--mint);color:var(--ink-soft);padding:64px 0 30px;}
  .footer-top{display:flex;flex-wrap:wrap;gap:40px;justify-content:space-between;margin-bottom:40px;}
  .footer-brand h3{font-family:'Unbounded';color:var(--ink);font-size:22px;margin-bottom:8px;}
  .footer-brand p{font-size:14px;color:var(--ink-soft);}
  .footer-contact{font-size:14.5px;display:flex;flex-direction:column;gap:6px;}
  .footer-links{display:flex;gap:22px;font-size:14.5px;}
  .footer-links a:hover{color:var(--coral-dark);}
  .footer-bottom{border-top:1px solid var(--mint-line);padding-top:22px;font-size:13px;color:var(--ink-soft);display:flex;justify-content:space-between;flex-wrap:wrap;gap:10px;}

/* ---------- SHARED SUBPAGE COMPONENTS ---------- */
.page-hero{
  background:var(--mint);color:var(--ink);
  padding:76px 0 64px;position:relative;overflow:hidden;
}
.page-hero::before{
  content:"";position:absolute;top:-120px;right:-100px;
  width:340px;height:340px;border-radius:50%;
  background:radial-gradient(circle at 30% 30%, rgba(255,90,60,0.22), transparent 70%);
}
.page-hero-inner{position:relative;z-index:2;max-width:700px;}
.page-hero h1{font-size:clamp(34px,5.5vw,52px);font-weight:800;margin-bottom:16px;}
.page-hero p{font-size:16.5px;color:var(--ink-soft);max-width:620px;}

.info-card{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius);
  padding:32px;margin-bottom:22px;
}
.info-card h3{font-family:'Unbounded';font-size:18px;font-weight:700;margin-bottom:12px;}
.info-card p{color:var(--ink-soft);font-size:15.5px;margin-bottom:14px;}

/* team */
.team-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:26px;}
.team-card{background:#fff;border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;}
.team-card img{width:100%;height:200px;object-fit:cover;object-position:top;}
.team-card-body{padding:22px 24px;}
.team-card h3{font-family:'Unbounded';font-size:16.5px;font-weight:700;margin-bottom:2px;}
.team-role{font-size:12.5px;font-weight:600;color:var(--coral-dark);text-transform:uppercase;letter-spacing:.05em;margin-bottom:10px;display:block;}
.team-card p{font-size:14px;color:var(--ink-soft);}

/* faq */
.faq-item{border-bottom:1px solid var(--line);padding:24px 0;}
.faq-item:first-child{padding-top:0;}
.faq-item h3{font-family:'Unbounded';font-size:16px;font-weight:600;margin-bottom:8px;}
.faq-item p{color:var(--ink-soft);font-size:15px;}

/* resources */
.resource-group{margin-bottom:44px;}
.resource-group h3{font-family:'Unbounded';font-size:17px;font-weight:700;margin-bottom:18px;padding-bottom:10px;border-bottom:2px solid var(--mint);}
.resource-item{margin-bottom:18px;}
.resource-item .r-title{font-weight:600;font-size:15.5px;display:block;margin-bottom:2px;}
.resource-item p{color:var(--ink-soft);font-size:14.5px;margin-bottom:4px;}
.resource-item a{color:var(--coral-dark);font-weight:600;font-size:14px;}
.resource-item a:hover{text-decoration:underline;}
.tool-table{width:100%;border-collapse:collapse;margin-top:10px;}
.tool-table td{padding:10px 0;border-bottom:1px solid var(--line);font-size:14.5px;}
.tool-table td:first-child{font-weight:600;width:160px;}
.tool-table a{color:var(--coral-dark);}

/* numbered start-here list (real sequence, numbering is meaningful) */
.step-list{list-style:none;counter-reset:step;display:flex;flex-direction:column;gap:14px;max-width:560px;}
.step-list li{display:flex;gap:14px;align-items:flex-start;counter-increment:step;font-size:15.5px;color:var(--ink-soft);}
.step-list li::before{
  content:counter(step);flex:none;
  width:28px;height:28px;border-radius:50%;background:var(--mint);color:var(--coral-dark);
  display:flex;align-items:center;justify-content:center;font-family:'Unbounded';font-size:12.5px;font-weight:700;
}

/* empty state */
.empty-state{
  text-align:center;padding:70px 20px;border:1px dashed var(--line);border-radius:var(--radius);
  color:var(--ink-soft);
}
.empty-state h3{font-family:'Unbounded';color:var(--ink);margin-bottom:10px;font-size:19px;}

/* contact */
.contact-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:20px;}
.contact-card{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:26px;text-align:center;}
.contact-card .c-label{font-size:12px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--coral-dark);display:block;margin-bottom:10px;}
.contact-card a, .contact-card span{font-size:16px;font-weight:600;color:var(--ink);}
