    :root{
      --bg:#031124;
      --bg-2:#061832;
      --surface:#081d3a;
      --surface-2:#0b2446;
      --surface-3:#102c54;
      --text:#f5fbff;
      --muted:#9fb1c7;
      --muted-2:#7188a3;
      --line:rgba(124,178,232,.16);
      --cyan:#19d4ff;
      --blue:#3b7bff;
      --purple:#845cff;
      --green:#20e6c7;
      --shadow:0 22px 70px rgba(0,0,0,.26);
      --radius:22px;
      --container:1160px;
    }

    *{box-sizing:border-box;margin:0;padding:0}
    html{scroll-behavior:smooth}
    body{
      font-family:"DM Sans",sans-serif;
      background:
        radial-gradient(circle at 78% 8%,rgba(18,110,255,.12),transparent 30%),
        radial-gradient(circle at 20% 30%,rgba(0,211,255,.06),transparent 24%),
        var(--bg);
      color:var(--text);
      line-height:1.6;
      overflow-x:hidden;
    }

    body::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      opacity:.18;
      background-image:
        linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);
      background-size:50px 50px;
      mask-image:linear-gradient(to bottom,black,transparent 65%);
      z-index:-1;
    }

    a{text-decoration:none;color:inherit}
    img{display:block;max-width:100%}
    button,input{font:inherit}

    .container{
      width:min(var(--container),calc(100% - 40px));
      margin-inline:auto;
    }

    .section{
      padding:55px 0;
      position:relative;
    }

    .section-soft{
      background:#EAF5FF;
      border-top:1px solid rgba(255,255,255,.025);
      border-bottom:1px solid rgba(255,255,255,.025);
    }

    .eyebrow{
      display:flex;
      align-items:center;
      gap:10px;
      color:var(--cyan);
      font-size:12px;
      font-weight:800;
      text-transform:uppercase;
      letter-spacing:2.1px;
      margin-bottom:16px;
    }

    .eyebrow::before{
      content:"";
      width:28px;
      height:2px;
      border-radius:999px;
      background:linear-gradient(90deg,var(--cyan),var(--purple));
      box-shadow:0 0 14px rgba(25,212,255,.45);
    }

    .section-title{
      font-size:clamp(34px,4.5vw,58px);
      line-height:1.04;
      letter-spacing:-2.3px;
      max-width:760px;
    }

    .section-subtitle{
      color:var(--muted);
      font-size:17px;
      max-width:720px;
      margin-top:18px;
    }

    .gradient-text{
      background:linear-gradient(90deg,#fff 0%,#65e5ff 45%,#7d8cff 100%);
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      min-height:50px;
      padding:0 22px;
      border:1px solid transparent;
      border-radius:12px;
      font-size:14px;
      font-weight:800;
      transition:.25s ease;
      cursor:pointer;
    }

    .btn-primary{
      background:linear-gradient(100deg,var(--cyan),var(--blue) 55%,var(--purple));
      box-shadow:0 13px 34px rgba(41,118,255,.25);
      color:#fff;
    }

    .btn-primary:hover{
      transform:translateY(-2px);
      box-shadow:0 18px 46px rgba(41,118,255,.35);
    }

    .btn-outline{
      border-color:rgba(160,205,255,.22);
      background:rgba(255,255,255,.025);
      color:#dceaff;
    }

    .btn-outline:hover{
      border-color:rgba(25,212,255,.55);
      background:rgba(25,212,255,.07);
      transform:translateY(-2px);
    }

    .arrow{font-size:18px;line-height:1}

    /* Header */
    .site-header{
      position:sticky;
      top:0;
      z-index:1000;
      background:rgba(3,17,36,.77);
      backdrop-filter:blur(18px);
      border-bottom:1px solid rgba(255,255,255,.06);
    }

    .navbar{
      min-height:76px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:24px;
    }

    .brand img{
      width:178px;
      height:auto;
    }

    .nav-links{
      display:flex;
      align-items:center;
      gap:26px;
      color:#bfcee0;
      font-size:13px;
      font-weight:700;
    }

    .nav-links a{
      position:relative;
      transition:.2s ease;
    }

    .nav-links a::after{
      content:"";
      position:absolute;
      left:0;
      bottom:-8px;
      width:0;
      height:2px;
      background:var(--cyan);
      transition:.25s ease;
    }

    .nav-links a:hover{color:#fff}
    .nav-links a:hover::after{width:100%}

    .nav-register{
      min-height:35px;
      padding:10px 45px;
      border-radius:9px;
      background:linear-gradient(90deg,var(--blue),var(--purple));
      color:white!important;
    }

    .nav-register::after{display:none}

    .menu-toggle{
      width:42px;
      height:42px;
      display:none;
      border:1px solid var(--line);
      background:rgba(255,255,255,.03);
      border-radius:10px;
      color:#fff;
      cursor:pointer;
    }

    /* Hero */
    .hero{
      position:relative;
      min-height:690px;
      display:flex;
      align-items:center;
      overflow:hidden;
      isolation:isolate;
      background:#031124;
    }

    .hero-video{
      position:absolute;
      inset:0;
      width:100%;
      height:100%;
      object-fit:cover;
      object-position:center;
      z-index:-3;
      filter:saturate(.82) contrast(1.04);
    }

    .hero::before{
      content:"";
      position:absolute;
      inset:0;
      z-index:-2;
      background:
        linear-gradient(90deg,rgba(3,17,36,.85) 0%,rgba(3,17,36,.60) 42%,rgba(3,17,36,.52) 72%,rgba(3,17,36,.38) 100%),
        linear-gradient(0deg,rgba(3,17,36,.72) 0%,transparent 40%);
    }

    .hero::after{
      content:"";
      position:absolute;
      width:650px;
      height:650px;
      right:-280px;
      top:-90px;
      border:1px solid rgba(40,143,255,.12);
      border-radius:50%;
      box-shadow:
        0 0 0 75px rgba(25,212,255,.018),
        0 0 0 150px rgba(71,106,255,.018);
      pointer-events:none;
      z-index:-1;
    }

    .hero-grid{
      display:grid;
      grid-template-columns:1.08fr .92fr;
      align-items:center;
      gap:64px;
    }

    .hero-copy{position:relative;z-index:2}

    .hero-kicker{
      color:#90a5bd;
      font-size:12px;
      font-weight:800;
      text-transform:uppercase;
      letter-spacing:1.4px;
      margin-bottom:16px;
    }

    .hero h1{
      font-size:clamp(51px,6.4vw,82px);
      line-height:.95;
      letter-spacing:-4px;
      max-width:790px;
    }

    .hero h1 span{color:#41cfff}

    .hero-lead{
      margin-top:24px;
      font-size:20px;
      line-height:1.5;
      color:#d8e5f2;
      max-width:700px;
    }

    .hero-text{
      color:var(--muted);
      font-size:15px;
      max-width:660px;
      margin-top:15px;
    }

    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:30px;
    }

    .hero-panel{
      min-height:270px !important;
      /*border:1px solid rgba(88,163,255,.12);
      background:
        radial-gradient(circle at 42% 44%,rgba(25,212,255,.12),transparent 15%),
        radial-gradient(circle at 72% 30%,rgba(127,83,255,.13),transparent 20%),
        linear-gradient(145deg,rgba(8,29,58,.74),rgba(3,17,36,.42));*/
      border-radius:40px;
      position:relative;
      overflow:hidden;
     /* box-shadow:var(--shadow);*/
    }

    .orbit{
      position:absolute;
      border-radius:50%;
      border:1px solid rgba(65,175,255,.15);
    }
    .orbit.o1{width:440px;height:440px;left:40px;top:22px}
    .orbit.o2{width:300px;height:300px;left:110px;top:92px}
    .orbit.o3{width:170px;height:170px;left:175px;top:157px}
    .orbit-dot{
      position:absolute;
      width:10px;height:10px;border-radius:50%;
      background:var(--cyan);
      box-shadow:0 0 20px rgba(25,212,255,.95);
    }
    .orbit-dot.d1{left:188px;top:72px}
    .orbit-dot.d2{right:72px;top:219px;background:var(--purple)}
    .orbit-dot.d3{left:116px;bottom:77px;background:var(--green)}

    .hero-panel-card{
      position:absolute;
      inset:auto 28px 28px 28px;
      border:1px solid rgba(255,255,255,.1);
      background:rgba(4,20,42,.75);
      backdrop-filter:blur(12px);
      padding:22px;
      border-radius:18px;
    }

    .hero-panel-card small{
      display:block;
      color:var(--cyan);
      font-weight:800;
      text-transform:uppercase;
      letter-spacing:1.5px;
      margin-bottom:6px;
    }

    .hero-panel-card strong{
      display:block;
      font-size:27px;
      letter-spacing:-1px;
      line-height:1.1;
    }

    .hero-panel-card p{
      color:var(--muted);
      margin-top:8px;
      font-size:13px;
    }

    /* Stats */
    .stats-wrap{
      border-top:1px solid var(--line);
      border-bottom:1px solid var(--line);
      background:linear-gradient(90deg,rgba(8,29,58,.8),rgba(6,25,50,.35));
    }

    .stats{
      display:grid;
      grid-template-columns:repeat(4,1fr);
    }

    .stat{
      padding:26px 28px;
      border-right:1px solid var(--line);
    }
    .stat:last-child{border-right:0}

    .stat strong{
      display:block;
      font-size:25px;
      letter-spacing:-1px;
      color:#fff;
    }

    .stat span{
      color:var(--muted-2);
      font-size:12px;
      font-weight:700;
      text-transform:uppercase;
      letter-spacing:.9px;
    }

    /* About */
    .about-grid{
      display:grid;
      grid-template-columns:.85fr 1.15fr;
      gap:72px;
      align-items:start;
    }

    .about-copy p{
      color:#c0d0e0;
      font-size:15px;
      margin-bottom:18px;
    }

    .about-copy p:first-child{
      color:#eff7ff;
      font-size:17px;
    }

    .impact-ribbon{
      margin-top:26px;
      display:flex;
      flex-wrap:wrap;
      gap:9px;
    }

    .impact-ribbon span{
      font-size:10px;
      font-weight:700;
      letter-spacing:.7px;
      text-transform:uppercase;
      padding:8px 11px;
      color:#b9e9ff;
      border:1px solid rgba(25,212,255,.18);
      border-radius:999px;
      background:rgba(25,212,255,.04);
    }

    /* Journey */
    .journey-head{
      text-align:center;
      margin-bottom:44px;
    }
    .journey-head .eyebrow{justify-content:center}
    .journey-head .section-title{margin-inline:auto}
    .journey-head .section-subtitle{margin-inline:auto}

    .phase-grid{
      position:relative;
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:28px;
      padding-top:52px;
    }

    .phase-grid::before{
      content:"";
      position:absolute;
      top:18px;
      left:16.66%;
      right:16.66%;
      height:3px;
      border-radius:99px;
      background:rgba(128,173,221,.18);
    }

    .timeline-progress{
      position:absolute;
      z-index:2;
      top:18px;
      left:16.66%;
      width:66.68%;
      height:3px;
      border-radius:99px;
      transform:scaleX(0);
      transform-origin:left center;
      background:linear-gradient(90deg,var(--cyan),var(--blue),var(--purple));
      box-shadow:0 0 18px rgba(25,212,255,.52);
      transition:transform 1.35s cubic-bezier(.22,.8,.24,1);
    }

    .phase-grid.timeline-active .timeline-progress{transform:scaleX(1)}

    .phase-card::before{
      content:"";
      position:absolute;
      z-index:4;
      top:-45px;
      left:50%;
      width:17px;
      height:17px;
      border:4px solid #071a34;
      border-radius:50%;
      background:#6f829a;
      transform:translateX(-50%);
      box-shadow:0 0 0 6px rgba(91,147,209,.12);
      transition:.45s ease;
    }

    .phase-grid.timeline-active .phase-card::before{
      background:var(--cyan);
      box-shadow:0 0 0 8px rgba(25,212,255,.12),0 0 24px rgba(25,212,255,.8);
      animation:timelinePulse 1.8s ease-in-out infinite;
      animation-delay:var(--delay);
    }

    @keyframes timelinePulse{
      50%{box-shadow:0 0 0 13px rgba(25,212,255,0),0 0 28px rgba(25,212,255,.9)}
    }

    .phase-card{
      position:relative;
      min-height:360px;
      padding:28px;
      border:1px solid var(--line);
      border-radius:var(--radius);
      overflow:visible;
      background:
        radial-gradient(circle at 85% 10%,rgba(42,139,255,.10),transparent 33%),
        linear-gradient(150deg,rgba(11,36,70,.95),rgba(6,24,50,.7));
      transition:.3s ease;
      opacity:0;
      transform:translateY(24px);
    }

    .phase-grid.timeline-active .phase-card{
      opacity:1;
      transform:none;
      transition:opacity .65s ease var(--delay),transform .65s ease var(--delay),border-color .3s ease,box-shadow .3s ease;
    }

    .phase-card:hover{
      transform:translateY(-8px);
      border-color:rgba(25,212,255,.35);
      box-shadow:0 22px 55px rgba(0,0,0,.25);
    }

    .phase-number{
      position:absolute;
      right:18px;
      top:4px;
      font-size:92px;
      line-height:1;
      font-weight:800;
      color:rgba(88,139,204,.09);
      letter-spacing:-6px;
    }

    .phase-icon{
      width:42px;
      height:42px;
      border-radius:12px;
      display:grid;
      place-items:center;
      color:var(--cyan);
      background:rgba(25,212,255,.08);
      border:1px solid rgba(25,212,255,.15);
      margin-bottom:58px;
    }

    .phase-meta{
      color:var(--cyan);
      font-size:11px;
      text-transform:uppercase;
      font-weight:800;
      letter-spacing:1.2px;
    }

    .phase-card h3{
      font-size:24px;
      line-height:1.1;
      margin:9px 0 12px;
      letter-spacing:-.8px;
    }

    .phase-card p{
      color:var(--muted);
      font-size:14px;
    }

    .phase-link{
      display:inline-flex;
      margin-top:22px;
      color:#68dfff;
      font-size:13px;
      font-weight:800;
    }

    /* Balanced light sections */
    #about,
    #previous,
    #volunteers{
      color:#10233f;
      background:
        radial-gradient(circle at 90% 0%,rgba(66,128,255,.10),transparent 30%),
        linear-gradient(180deg,#ffffff 0%,#f6f9ff 100%);
      border-color:#dfe8f3;
    }

    #speakers{
      color:#10233f;
      background:
        radial-gradient(circle at 10% 10%,rgba(25,212,255,.10),transparent 28%),
        #eef5ff;
      border-color:#dce7f3;
    }

    #about .section-title,
    #speakers .section-title,
    #previous .section-title,
    #volunteers .section-title{color:#0a1d38}

    #about .gradient-text,
    #speakers .gradient-text,
    #previous .gradient-text,
    #volunteers .gradient-text{
      background:linear-gradient(90deg,#12365e,#286dcb 55%,#764cca);
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
    }

    #about .about-copy p,
    #about .about-copy p:first-child,
    #speakers .section-subtitle,
    #previous .legacy-copy p,
    #volunteers .section-subtitle{color:#52677f}

    #about .impact-ribbon span{
      color:#1762a8;
      background:#eaf5ff;
      border-color:#c5e1f7;
    }

    #speakers .person-card,
    #volunteers .person-card{
      background:#fff;
      border-color:#dbe5f0;
      box-shadow:0 12px 34px rgba(28,62,100,.08);
    }

    #speakers .person-info h3,
    #volunteers .person-info h3{color:#10233f}

    #speakers .person-info p,
    #volunteers .person-info p{color:#64778d}

    #volunteers .volunteer-cta{
      background:linear-gradient(90deg,#e9f8ff,#f0edff);
    }

    #volunteers .volunteer-cta p{color:#52677f}

    #previous .btn-outline{
      color:#174a80;
      border-color:#b9cee5;
      background:#fff;
    }

    /* Phase 1 Detail */
    .phase-detail-grid{
      display:grid;
      grid-template-columns:1fr 285px;
      gap:52px;
      align-items:start;
    }

    .phase-highlight{
      margin-top:26px;
      padding:17px 20px;
      border-left:3px solid var(--cyan);
      background:linear-gradient(90deg,rgba(25,212,255,.08),transparent);
      color:#ddeafa;
      font-weight:600;
    }

    .mini-card{
      border:1px solid var(--line);
      background:linear-gradient(145deg,rgba(12,38,74,.86),rgba(7,26,51,.72));
      border-radius:18px;
      padding:22px;
      box-shadow:var(--shadow);
    }

    .mini-card small{
      color:var(--cyan);
      text-transform:uppercase;
      font-weight:800;
      letter-spacing:1.2px;
    }

    .mini-card h3{
      margin-top:9px;
      font-size:22px;
      line-height:1.15;
    }

    .mini-card p{
      color:var(--muted);
      font-size:13px;
      margin-top:8px;
    }

    .info-layout{
      margin-top:35px;
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:16px;
    }

    .wide{grid-column:1/-1}

    .info-card{
      border:1px solid var(--line);
      border-radius:18px;
      padding:24px;
      background:rgba(8,29,58,.72);
    }

    .info-card h4{
      color:var(--cyan);
      font-size:12px;
      font-weight:800;
      text-transform:uppercase;
      letter-spacing:1.4px;
      margin-bottom:16px;
    }

    .check-list{
      list-style:none;
      display:grid;
      gap:12px;
    }

    .check-list li{
      position:relative;
      padding-left:28px;
      color:#cfdeed;
      font-size:14px;
    }

    .check-list li::before{
      content:"✓";
      position:absolute;
      left:0;
      top:0;
      color:var(--cyan);
      font-weight:900;
    }

    .details-list{
      list-style:none;
    }

    .details-list li{
      display:flex;
      justify-content:space-between;
      gap:16px;
      padding:12px 0;
      border-bottom:1px solid rgba(255,255,255,.06);
      color:#acc0d5;
      font-size:13px;
    }

    .details-list li:last-child{border-bottom:0}
    .details-list strong{color:#fff;font-weight:700;text-align:right}

    .registration-card{
      margin-top:16px;
      max-width:560px;
      border:1px solid rgba(89,162,255,.18);
      border-radius:18px;
      padding:25px;
      background:linear-gradient(135deg,rgba(14,45,84,.9),rgba(8,29,58,.82));
    }

    .registration-card p{
      color:var(--muted);
      font-size:14px;
      margin:12px 0;
    }

    .registration-card .tiny{
      font-size:12px;
      color:#8198b1;
    }

    /* Legacy */
    .legacy-grid{
      display:grid;
      grid-template-columns:390px 1fr;
      gap:64px;
      align-items:center;
    }

    .legacy-poster{
      min-height:515px;
      border-radius:24px;
      border:1px solid rgba(146,190,236,.2);
      overflow:hidden;
      position:relative;
      background:
        linear-gradient(180deg,rgba(2,13,29,.05),rgba(5,16,38,.92)),
        radial-gradient(circle at 26% 34%,rgba(25,212,255,.30),transparent 13%),
        radial-gradient(circle at 72% 24%,rgba(132,92,255,.24),transparent 16%),
        linear-gradient(135deg,#1d4c6b,#3b264f 55%,#0b223e);
      box-shadow:var(--shadow);
    }

    .legacy-poster::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(90deg,transparent 48%,rgba(255,255,255,.05) 49%,transparent 50%),
        linear-gradient(transparent 48%,rgba(255,255,255,.05) 49%,transparent 50%);

      opacity:.35;
    }

    .poster-date{
      position:absolute;
      top:30px;
      left:28px;
      font-size:54px;
      line-height:.84;
      font-weight:800;
      letter-spacing:-3px;
    }

    .poster-year{
      position:absolute;
      top:125px;
      left:30px;
      font-size:17px;
      color:#dbe9f7;
      font-weight:700;
    }

    .poster-title{
      position:absolute;
      left:28px;
      right:28px;
      bottom:35px;
    }

    .poster-title small{
      color:var(--cyan);
      text-transform:uppercase;
      letter-spacing:1.5px;
      font-weight:800;
    }

    .poster-title h3{
      font-size:31px;
      line-height:1.05;
      margin-top:7px;
    }

    .legacy-copy p{
      color:#bacce0;
      margin-top:15px;
      font-size:14px;
    }

    .legacy-actions{
      margin-top:25px;
      display:flex;
      flex-wrap:wrap;
      gap:11px;
    }

    /* People */
    .people-head{
      text-align:center;
      margin-bottom:43px;
    }
    .people-head .eyebrow{justify-content:center}
    .people-head .section-title{margin-inline:auto}
    .people-head .section-subtitle{margin-inline:auto}

    .people-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:18px;
    }

    .person-card{
      border:1px solid var(--line);
      border-radius:18px;
      overflow:hidden;
      background:linear-gradient(160deg,rgba(10,34,67,.96),rgba(5,22,45,.95));
      transition:.3s ease;
    }

    .person-card:hover{
      transform:translateY(-7px);
      border-color:rgba(25,212,255,.35);
      box-shadow:0 18px 45px rgba(0,0,0,.24);
    }

    .person-image{
      aspect-ratio:1 / 1.08;
      overflow:hidden;
      background:#081a31;
    }

    .person-image img{
      width:100%;
      height:100%;
      object-fit:cover;
      filter:saturate(.55) contrast(1.03);
      transition:.45s ease;
    }

    .person-card:hover .person-image img{
      transform:scale(1.045);
      filter:saturate(.95);
    }

    .person-info{
      padding:17px 17px 19px;
    }

    .person-info h3{
      font-size:17px;
      letter-spacing:-.3px;
    }

    .person-info p{
      color:var(--muted);
      margin-top:4px;
      font-size:11.5px;
      line-height:1.45;
      min-height:34px;
    }

    .volunteer-grid .person-image{aspect-ratio:1/1}
    .volunteer-grid .person-info p{min-height:0}

    .volunteer-cta{
      margin-top:28px;
      padding:20px 22px;
      display:flex;
      gap:20px;
      align-items:center;
      justify-content:space-between;
      border-left:3px solid var(--cyan);
      background:linear-gradient(90deg,rgba(25,212,255,.065),rgba(80,79,255,.08));
      border-radius:0 15px 15px 0;
    }

    .volunteer-cta p{color:#b9cbe0;font-size:14px}

    /* Final CTA */
    .final-section{
      padding:100px 0;
      background:
        radial-gradient(circle at 80% 20%,rgba(127,76,255,.22),transparent 30%),
        linear-gradient(115deg,#072448 0%,#092254 55%,#241153 100%);
      border-top:1px solid rgba(146,190,236,.1);
    }

    .final-grid{
      display:grid;
      grid-template-columns:.8fr 1.2fr;
      gap:60px;
      align-items:start;
    }

    .impact-words{
      display:flex;
      flex-wrap:wrap;
      gap:9px;
      margin-top:25px;
    }

    .impact-words span{
      padding:9px 12px;
      border:1px solid rgba(255,255,255,.12);
      border-radius:999px;
      color:#dce9ff;
      font-size:11px;
      font-weight:800;
      text-transform:uppercase;
      letter-spacing:.7px;
      background:rgba(255,255,255,.035);
    }

    .final-copy{
      columns:2;
      column-gap:30px;
    }

    .final-copy p{
      color:#cfdaeb;
      font-size:14px;
      break-inside:avoid;
      margin-bottom:16px;
    }

    /* Footer */
    footer{
      padding:38px 0 24px;
      background:#020b18;
      border-top:1px solid rgba(255,255,255,.06);
    }

    .footer-grid{
      display:grid;
      grid-template-columns:1.25fr 1fr auto;
      gap:44px;
      align-items:center;
    }

    .footer-brand img{width:190px}
    .footer-brand p{
      color:#8ea4bd;
      margin-top:10px;
      font-size:13px;
    }

    .footer-links{
      display:grid;
      gap:6px;
      color:#b1c2d5;
      font-size:12px;
    }
    .footer-links a:hover{color:var(--cyan)}

    .qr-wrap{
      display:flex;
      align-items:center;
      gap:13px;
    }
    .qr-wrap img{
      width:90px;
      height:90px;
      background:white;
      padding:5px;
      border-radius:10px;
    }
    .qr-wrap p{
      color:#9fb2c7;
      font-size:11px;
      max-width:110px;
    }

    .copyright{
      margin-top:25px;
      padding-top:20px;
      border-top:1px solid rgba(255,255,255,.06);
      display:flex;
      justify-content:space-between;
      gap:20px;
      color:#637890;
      font-size:11px;
    }

    .back-top{color:#a8bed4}
    .back-top:hover{color:var(--cyan)}

    /* Reveal */
    .reveal{
      opacity:0;
      transform:translateY(18px);
      transition:opacity .65s ease, transform .65s ease;
    }
    .reveal.show{
      opacity:1;
      transform:none;
    }

    /* Responsive */
    @media (max-width:1050px){
      .hero-grid{grid-template-columns:1fr .75fr;gap:35px}
      .hero-panel{min-height:370px}
      .about-grid{grid-template-columns:1fr;gap:28px}
      .legacy-grid{grid-template-columns:340px 1fr;gap:38px}
      .people-grid{grid-template-columns:repeat(3,1fr)}
    }

    @media (max-width:820px){
      .section{padding:80px 0}
      .navbar{min-height:68px}
      .brand img{width:150px}
      .menu-toggle{display:grid;place-items:center}

      .nav-links{
        position:absolute;
        left:20px;
        right:20px;
        top:76px;
        padding:18px;
        border:1px solid var(--line);
        border-radius:16px;
        background:rgba(4,20,42,.98);
        backdrop-filter:blur(18px);
        display:none;
        flex-direction:column;
        align-items:stretch;
        gap:4px;
        box-shadow:var(--shadow);
      }
      .nav-links.open{display:flex}
      .nav-links a{padding:10px 8px}
      .nav-links a::after{display:none}

      .hero{padding:75px 0 54px;min-height:650px}
      .hero-grid{grid-template-columns:1fr}
      .hero-panel{display:none}
      .hero h1{letter-spacing:-3px}

      .stats{grid-template-columns:repeat(2,1fr)}
      .stat:nth-child(2){border-right:0}
      .stat:nth-child(-n+2){border-bottom:1px solid var(--line)}

      .phase-grid{
        grid-template-columns:1fr;
        gap:26px;
        padding:0 0 0 42px;
      }
      .phase-grid::before{
        top:22px;
        bottom:22px;
        left:11px;
        right:auto;
        width:3px;
        height:auto;
      }
      .timeline-progress{
        top:22px;
        left:11px;
        width:3px;
        height:calc(100% - 44px);
        transform:scaleY(0);
        transform-origin:center top;
      }
      .phase-grid.timeline-active .timeline-progress{transform:scaleY(1)}
      .phase-card::before{
        top:28px;
        left:-32px;
      }
      .phase-card{min-height:290px}
      .phase-icon{margin-bottom:40px}

      .phase-detail-grid{grid-template-columns:1fr}
      .mini-card{max-width:420px}
      .info-layout{grid-template-columns:1fr}
      .wide{grid-column:auto}

      .legacy-grid{grid-template-columns:1fr}
      .legacy-poster{min-height:430px;max-width:420px;width:100%}

      .people-grid{grid-template-columns:repeat(2,1fr)}
      .final-grid{grid-template-columns:1fr}
      .final-copy{columns:1}

      .footer-grid{grid-template-columns:1fr 1fr}
      .qr-wrap{grid-column:1/-1}
    }

    @media (max-width:560px){
      .container{width:min(100% - 26px,var(--container))}
      .section{padding:68px 0}
      .hero{padding-top:58px}
      .hero h1{font-size:49px;letter-spacing:-2.7px}
      .hero-lead{font-size:17px}
      .hero-actions .btn{width:100%}
      .stats-wrap .container{width:100%}
      .stat{padding:20px 17px}
      .stat strong{font-size:22px}

      .section-title{font-size:38px;letter-spacing:-1.8px}
      .phase-detail-grid{gap:30px}
      .info-card{padding:20px}
      .details-list li{flex-direction:column;gap:3px}
      .details-list li strong{text-align:left}

      .people-grid{grid-template-columns:1fr 1fr;gap:10px}
      .person-info{padding:12px}
      .person-info h3{font-size:14px}
      .person-info p{font-size:10px;min-height:40px}
      .volunteer-grid .person-info p{min-height:auto}

      .volunteer-cta{align-items:flex-start;flex-direction:column}
      .volunteer-cta .btn{width:100%}

      .legacy-actions .btn{width:100%}
      .legacy-poster{min-height:390px}
      .poster-date{font-size:46px}

      .footer-grid{grid-template-columns:1fr}
      .qr-wrap{grid-column:auto}
      .copyright{flex-direction:column}
    }

    @media (prefers-reduced-motion:reduce){
      html{scroll-behavior:auto}
      .hero-video{display:none}
      .reveal,.phase-card,.timeline-progress{opacity:1;transform:none;transition:none;animation:none}
    }
    
  .iwil-live-schedule,
  .iwil-live-schedule *{
    box-sizing:border-box;
  }

  .iwil-live-schedule{
    padding:90px 20px;
    font-family:"DM Sans",Arial,sans-serif;
    color:#10233f;
    background:
      radial-gradient(circle at 8% 15%,rgba(25,212,255,.13),transparent 26%),
      radial-gradient(circle at 94% 85%,rgba(132,92,255,.10),transparent 28%),
      #f7fbff;
  }

  .iwil-live-container{
    width:100%;
    max-width:1160px;
    margin:0 auto;
  }

  .iwil-live-heading{
    max-width:760px;
    margin-bottom:42px;
  }

  .iwil-live-label{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:14px;
    color:#1675af;
    font-size:12px;
    font-weight:800;
    letter-spacing:2px;
  }

  .iwil-live-label::before{
    content:"";
    width:30px;
    height:2px;
    border-radius:20px;
    background:linear-gradient(90deg,#19d4ff,#845cff);
  }

  .iwil-live-heading h2{
    margin:0;
    color:#10233f;
    font-size:clamp(34px,5vw,58px);
    line-height:1.05;
    letter-spacing:-2px;
  }

  .iwil-live-heading h2 em{
    font-style:normal;
    background:linear-gradient(90deg,#1675af,#456fe0,#7851d7);
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
  }

  .iwil-live-layout{
    display:grid;
    grid-template-columns:280px 1fr;
    gap:54px;
    align-items:stretch;
  }

  .iwil-live-date{
    position:relative;
    min-height:380px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    border-radius:26px;
    color:#fff;
    text-align:center;
    background:
      radial-gradient(circle at 80% 18%,rgba(25,212,255,.24),transparent 24%),
      linear-gradient(145deg,#08254a,#174e83 56%,#533c8e);
    box-shadow:0 22px 55px rgba(25,69,112,.20);
  }

  .iwil-live-date::before,
  .iwil-live-date::after{
    content:"";
    position:absolute;
    border:1px solid rgba(255,255,255,.13);
    border-radius:50%;
  }

  .iwil-live-date::before{
    width:240px;
    height:240px;
    left:-90px;
    top:-80px;
  }

  .iwil-live-date::after{
    width:170px;
    height:170px;
    right:-78px;
    bottom:-65px;
  }

  .iwil-live-date span{
    position:relative;
    z-index:1;
    font-size:13px;
    font-weight:800;
    letter-spacing:2.5px;
    text-transform:uppercase;
  }

  .iwil-live-date strong{
    position:relative;
    z-index:1;
    display:block;
    margin:7px 0 0;
    font-size:94px;
    line-height:.9;
    letter-spacing:-6px;
  }

  .iwil-live-date small{
    position:relative;
    z-index:1;
    font-size:28px;
    font-weight:700;
    letter-spacing:7px;
  }

  .iwil-live-date div{
    position:relative;
    z-index:1;
    margin-top:32px;
    padding:9px 18px;
    border:1px solid rgba(255,255,255,.2);
    border-radius:50px;
    background:rgba(255,255,255,.08);
    font-size:11px;
    font-weight:800;
    letter-spacing:1.4px;
    text-transform:uppercase;
  }

  .iwil-live-agenda{
    position:relative;
    display:grid;
    gap:15px;
    padding-left:32px;
  }

  .iwil-live-agenda::before{
    content:"";
    position:absolute;
    left:7px;
    top:42px;
    bottom:42px;
    width:2px;
    background:linear-gradient(#19d4ff,#3b7bff,#845cff);
  }

  .iwil-live-item{
    position:relative;
    display:grid;
    grid-template-columns:170px 1fr;
    gap:25px;
    align-items:center;
    min-height:116px;
    padding:23px 28px;
    border:1px solid #dce8f3;
    border-radius:20px;
    background:#fff;
    box-shadow:0 14px 38px rgba(27,70,112,.08);
    transition:transform .3s ease,box-shadow .3s ease,border-color .3s ease;
  }

  .iwil-live-item::before{
    content:"";
    position:absolute;
    left:-32px;
    top:50%;
    width:14px;
    height:14px;
    border:4px solid #f7fbff;
    border-radius:50%;
    background:#19d4ff;
    box-shadow:0 0 18px rgba(25,212,255,.65);
    transform:translateY(-50%);
  }

  .iwil-live-item:hover{
    transform:translateX(7px);
    border-color:#bcd8ea;
    box-shadow:0 20px 46px rgba(27,70,112,.13);
  }

  .iwil-live-time strong{
    display:block;
    color:#176faf;
    font-size:16px;
    line-height:1.25;
  }

  .iwil-live-time span{
    display:block;
    margin-top:6px;
    color:#7b8ea3;
    font-size:11px;
    font-weight:800;
    letter-spacing:1px;
    text-transform:uppercase;
  }

  .iwil-live-session{
    padding-left:25px;
    border-left:1px solid #e2ebf3;
  }

  .iwil-live-session small{
    color:#8395a8;
    font-size:10px;
    font-weight:800;
    letter-spacing:1.3px;
    text-transform:uppercase;
  }

  .iwil-live-session h3{
    margin:5px 0 0;
    color:#10233f;
    font-size:22px;
    line-height:1.25;
  }

  .iwil-live-session p{
    margin:6px 0 0;
    color:#687d92;
    font-size:13px;
  }

  @media(max-width:800px){
    .iwil-live-schedule{padding:70px 20px}
    .iwil-live-layout{grid-template-columns:1fr;gap:34px}
    .iwil-live-date{min-height:260px}
    .iwil-live-date strong{font-size:76px}
  }

  @media(max-width:560px){
    .iwil-live-schedule{padding:58px 14px}
    .iwil-live-heading{margin-bottom:30px}
    .iwil-live-heading h2{font-size:37px;letter-spacing:-1.4px}
    .iwil-live-agenda{padding-left:24px}
    .iwil-live-agenda::before{left:5px}
    .iwil-live-item{grid-template-columns:1fr;gap:14px;padding:21px}
    .iwil-live-item::before{left:-24px}
    .iwil-live-session{padding:14px 0 0;border-left:0;border-top:1px solid #e2ebf3}
    .iwil-live-session h3{font-size:19px}
  }
  
  
  
  .iwil-events,
  .iwil-events *{box-sizing:border-box}

  .iwil-events{
    position:relative;
    overflow:hidden;
    padding:90px 20px;
    font-family:"DM Sans",Arial,sans-serif;
    background:
      radial-gradient(circle at 8% 14%,rgba(24,213,255,.13),transparent 25%),
      radial-gradient(circle at 94% 88%,rgba(128,92,255,.10),transparent 27%),
      linear-gradient(180deg,#f7fbff 0%,#eaf4fc 100%);
  }

  .iwil-events::before,
  .iwil-events::after{
    content:"";
    position:absolute;
    border:1px solid rgba(33,130,191,.12);
    border-radius:50%;
    pointer-events:none;
  }

  .iwil-events::before{width:260px;height:260px;left:-140px;top:-100px}
  .iwil-events::after{width:320px;height:320px;right:-180px;bottom:-160px}

  .iwil-events__container{
    position:relative;
    z-index:1;
    width:100%;
    max-width:1160px;
    margin:0 auto;
  }

  .iwil-events__heading{
    max-width:700px;
    margin:0 auto 45px;
    text-align:center;
  }

  .iwil-events__heading span{
    display:inline-flex;
    align-items:center;
    gap:9px;
    color:#1477ae;
    font-size:11px;
    font-weight:800;
    letter-spacing:1.8px;
    text-transform:uppercase;
  }

  .iwil-events__heading span::before,
  .iwil-events__heading span::after{
    content:"";
    width:24px;
    height:2px;
    background:linear-gradient(90deg,#18d5ff,#805cff);
  }

  .iwil-events__heading h2{
    margin:10px 0 12px;
    color:#102b47;
    font-size:clamp(36px,5vw,56px);
    line-height:1.05;
    letter-spacing:-2.5px;
  }

  .iwil-events__heading h2 strong{
    font-weight:800;
    background:linear-gradient(90deg,#08add8,#337fe8,#7552d4);
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
  }

  .iwil-events__heading p{
    margin:0;
    color:#60778e;
    font-size:15px;
  }

  .iwil-events__grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
  }

  .iwil-event-card{
    position:relative;
    display:block;
    aspect-ratio:16/9;
    overflow:hidden;
    border:1px solid #d3e3ef;
    border-radius:16px;
    background:#dfeaf3;
    box-shadow:0 16px 38px rgba(25,68,108,.10);
    opacity:0;
    transform:translateY(24px);
    transition:
      opacity .6s ease var(--delay),
      transform .6s ease var(--delay),
      box-shadow .3s ease,
      border-color .3s ease;
  }

  .iwil-events.is-visible .iwil-event-card{
    opacity:1;
    transform:translateY(0);
  }

  .iwil-event-card img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .55s cubic-bezier(.2,.7,.2,1),filter .4s ease;
  }

  .iwil-event-card__overlay{
    position:absolute;
    inset:auto 0 0;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:34px 18px 15px;
    color:#fff;
    background:linear-gradient(transparent,rgba(5,24,45,.88));
    opacity:0;
    transform:translateY(10px);
    transition:.3s ease;
  }

  .iwil-event-card__overlay b{
    font-size:12px;
    letter-spacing:.6px;
    text-transform:uppercase;
  }

  .iwil-event-card__overlay i{
    width:30px;
    height:30px;
    display:grid;
    place-items:center;
    border:1px solid rgba(255,255,255,.32);
    border-radius:50%;
    font-style:normal;
  }

  .iwil-event-card:hover{
    border-color:#8fc9e5;
    box-shadow:0 24px 52px rgba(25,68,108,.18);
    transform:translateY(-7px)!important;
  }

  .iwil-event-card:hover img{transform:scale(1.055);filter:saturate(1.08)}
  .iwil-event-card:hover .iwil-event-card__overlay{opacity:1;transform:none}

  @media(max-width:850px){
    .iwil-events__grid{grid-template-columns:repeat(2,1fr)}
  }

  @media(max-width:520px){
    .iwil-events{padding:65px 14px}
    .iwil-events__heading{margin-bottom:30px}
    .iwil-events__heading p{font-size:14px}
    .iwil-events__grid{grid-template-columns:1fr;gap:15px}
    .iwil-event-card__overlay{opacity:1;transform:none}
  }

  @media(prefers-reduced-motion:reduce){
    .iwil-event-card,.iwil-event-card img,.iwil-event-card__overlay{opacity:1;transform:none;transition:none}
  }

  
  .footer-sticky-icons {
    position: fixed;
    right: 22px;
    bottom: 20px;
    z-index: 99999;
    display: none;
    flex-direction: column;
    gap: 12px;
}

.footer-sticky-icons.show {
    display: flex;
}

.footer-sticky-icons a {
    width: 240px;
    padding: 14px 20px;
    border-radius: 50px;
    color: #fff !important;
    text-decoration: none !important;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    box-sizing: border-box;
}

.sticky-youtube {
    background: #ff0000;
}

.sticky-whatsapp {
    background: #25d366;
}

.footer-sticky-icons i {
    margin-right: 8px;
    font-size: 20px;
}

@media (max-width: 767px) {
    .footer-sticky-icons {
        right: 12px;
        bottom: 12px;
    }

    .footer-sticky-icons a {
        width: 210px;
        padding: 12px 15px;
        font-size: 14px;
    }
}
  
  
  
  .sticky-social {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sticky-social a {
    width: 235px;
    padding: 14px 20px;
    border-radius: 50px;
    color: #fff !important;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    box-sizing: border-box;
    transition: 0.3s;
}

.sticky-social a:hover {
    color: #fff !important;
    transform: translateX(-6px);
}

.youtube-sticky {
    background: #ff0000;
}

.whatsapp-sticky {
    background: #25d366;
}

.sticky-social i {
    font-size: 22px;
}

@media (max-width: 767px) {
    .sticky-social {
        right: 12px;
        bottom: 12px;
    }

    .sticky-social a {
        width: 55px;
        height: 55px;
        padding: 0;
        border-radius: 50%;
    }

    .sticky-social span {
        display: none;
    }

    .sticky-social i {
        font-size: 25px;
    }
}
  
  
  .about-grid {
  display: grid;
  grid-template-columns: 48% 52%;
  gap: 55px;
  align-items: left
 ;
}

.about-video {
  position: relative;
  width: 100%;
  /*height: 450px;*/
  overflow: hidden;
  border-radius: 24px;
  background: #071b36;
  box-shadow: 0 20px 45px rgba(15, 50, 90, 0.15);
}

.about-video video {
  display: block;
  width: 100%;
  height: 400px;
  /*object-fit: cover;*/
}

/* Mobile */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

 /* .about-video {
    height: 450px;
  }*/
}
  
  /* Social Sticky CSS*/
  .iwil-social-bar {
  position: fixed;
  right: 18px;
  bottom: 90px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.iwil-social {
  position: relative;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease;
}

.iwil-social:hover {
  color: #ffffff;
  transform: translateX(-5px) scale(1.05);
}

.iwil-social svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.iwil-social span {
  position: absolute;
  right: 58px;
  padding: 7px 11px;
  color: #ffffff;
  background: #071b36;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition: 0.25s ease;
}

.iwil-social:hover span {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.iwil-social.facebook {
  background: #1877f2;
}

.iwil-social.linkedin {
  background: #0a66c2;
}

.iwil-social.youtube {
  background: #ff0000;
}

.iwil-social.whatsapp {
  background: #25d366;
}

.iwil-social.instagram {
  background: linear-gradient(
    135deg,
    #feda75,
    #fa7e1e,
    #d62976,
    #962fbf,
    #4f5bd5
  );
}

@media (max-width: 600px) {
  .iwil-social-bar {
    position: fixed;
    top: 80%;
    right: 8px;
    bottom: auto;
    left: auto;
    transform: translateY(-50%);

    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 7px;

    /*background: rgba(255, 255, 255, 0.92);*/
    border-radius: 30px;
    box-shadow: 0 6px 22px rgba(7, 27, 54, 0.18);
    z-index: 99999;
  }

  .iwil-social {
    flex: none;
    width: 40px;
    height: 40px;
    margin: 0;
    border-radius: 50%;
    transform: none;
  }

  .iwil-social:hover,
  .iwil-social:focus {
    transform: scale(1.06);
  }

  .iwil-social svg {
    display: block;
    width: 20px;
    height: 20px;
  }

  .iwil-social span {
    display: none;
  }
}
  
  