
  @import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;500;600;700;800&family=Golos+Text:wght@400;500;600;700&display=swap');

  :root{
    --bg:#f7f8fc;
    --surface:#ffffff;
    --tint:#eef1fa;
    --tint-2:#e8ebf8;
    --ink:#1f1d33;
    --muted:#6c7086;
    --line:#e7e9f4;
    --pink:#e63e8c;
    --purple:#6c4fd9;
    --blue:#3e7fe0;
    --gold:#e0a53a;
    --teal:#2fa88f;
    --icon-tint:#eceeFA;
    --icon-ink:#585ad0;
    --shadow: 0 16px 40px -26px rgba(31,29,51,.28);
    --grad-brand: linear-gradient(100deg, var(--pink), var(--purple) 55%, var(--blue));
    color-scheme: light;
  }
  /* This page is a deliberate single (light) look, matching the approved reference design —
     it does not follow the viewer's system dark-mode preference. */

  *{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    margin:0; background:var(--bg); color:var(--ink);
    font-family:'Golos Text', Arial, sans-serif; -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }
  h1,h2,h3,.logo-word,.stat-num,.step-no{ font-family:'Unbounded','Golos Text',sans-serif; }
  h1,h2,h3{ text-wrap:balance; margin:0; }
  p{ margin:0; }
  a{ color:inherit; }
  img{ max-width:100%; display:block; }
  ul{ margin:0; padding:0; list-style:none; }
  ::selection{ background:var(--pink); color:#fff; }
  @media (prefers-reduced-motion: reduce){
    html{ scroll-behavior:auto; }
    *{ animation-duration:.001ms !important; transition-duration:.001ms !important; }
  }

  .wrap{ max-width:1180px; margin:0 auto; padding:0 32px; }
  @media (max-width:640px){ .wrap{ padding:0 20px; } }

  .grad-text{ background:var(--grad-brand); -webkit-background-clip:text; background-clip:text; color:transparent; }

  /* ---------- Header ---------- */
  header{
    position:sticky; top:0; z-index:50; background:color-mix(in srgb, var(--bg) 88%, transparent);
    backdrop-filter:blur(10px); border-bottom:1px solid var(--line);
  }
  .header-inner{ display:flex; align-items:center; justify-content:space-between; padding:14px 32px; gap:24px; max-width:1180px; margin:0 auto; }
  .brand{ display:flex; align-items:center; gap:10px; text-decoration:none; }
  .brand-icon{ width:40px; height:34px; flex:none; object-fit:contain; }
  .brand-eyebrow{ display:block; font-size:11px; color:var(--muted); }
  .brand-word{ font-family:'Unbounded'; font-weight:700; font-size:14.5px; color:var(--ink); }
  nav{ display:flex; gap:26px; }
  nav a{ font-size:14px; font-weight:500; text-decoration:none; color:var(--ink); position:relative; padding:4px 0; white-space:nowrap; }
  nav a::after{ content:''; position:absolute; left:0; right:0; bottom:-3px; height:2px; background:var(--grad-brand); transform:scaleX(0); transform-origin:left; transition:transform .25s ease; }
  nav a:hover::after, nav a:focus-visible::after{ transform:scaleX(1); }
  .btn{ display:inline-flex; align-items:center; gap:8px; font-family:'Golos Text'; font-weight:600; font-size:14px; padding:11px 22px; border-radius:100px; text-decoration:none; border:1px solid transparent; white-space:nowrap; cursor:pointer; }
  .btn-primary{ background:var(--grad-brand); color:#fff; box-shadow:var(--shadow); }
  .btn-primary:hover{ filter:brightness(1.06); }
  .btn-ghost{ background:var(--surface); border-color:var(--line); color:var(--ink); }
  .btn-ghost:hover{ border-color:var(--purple); }
  .btn:focus-visible, a:focus-visible, button:focus-visible{ outline:2px solid var(--purple); outline-offset:3px; }
  .nav-toggle{ display:none; flex-direction:column; justify-content:center; align-items:center; gap:5px; width:38px; height:38px; border-radius:10px; border:1px solid var(--line); background:var(--surface); cursor:pointer; flex:none; padding:0; }
  .nav-toggle span{ width:18px; height:2px; background:var(--ink); border-radius:2px; transition:transform .25s ease, opacity .2s ease; }
  .nav-toggle.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2){ opacity:0; }
  .nav-toggle.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }
  .mobile-nav{ display:none; flex-direction:column; gap:2px; max-width:1180px; margin:0 auto; padding:0 32px 16px; }
  .mobile-nav a{ font-size:15px; font-weight:500; text-decoration:none; color:var(--ink); padding:12px 4px; border-bottom:1px solid var(--line); }
  .mobile-nav .btn{ margin-top:14px; justify-content:center; border-bottom:none; }
  .mobile-nav.open{ display:flex; }
  @media (max-width:920px){
    nav{ display:none; }
    .nav-toggle{ display:flex; }
    .btn-header-cta{ display:none; }
    .header-inner{ padding:14px 20px; }
  }
  @media (min-width:921px){ .mobile-nav{ display:none !important; } }

  /* ---------- Hero ---------- */
  .hero{
    position:relative; padding:56px 0 44px; overflow:hidden;
    background-color:var(--bg);
  }
  .hero-video{
    position:absolute; inset:0; width:100%; height:100%; z-index:0; pointer-events:none;
    object-fit:cover; object-position:right center;
    -webkit-mask-image: radial-gradient(ellipse 50% 50% at 50% 50%, #000 42%, transparent 100%);
    mask-image: radial-gradient(ellipse 50% 50% at 50% 50%, #000 42%, transparent 100%);
  }
  .hero-fade{
    position:absolute; inset:0; z-index:0; pointer-events:none;
    background-image: linear-gradient(90deg, var(--bg) 0%, color-mix(in srgb, var(--bg) 72%, transparent) 38%, color-mix(in srgb, var(--bg) 18%, transparent) 62%, transparent 82%);
  }
  @media (max-width:900px){
    .hero-video{ object-position:68% center; }
    .hero-fade{
      background-image: linear-gradient(180deg, var(--bg) 0%, color-mix(in srgb, var(--bg) 60%, transparent) 40%, color-mix(in srgb, var(--bg) 30%, transparent) 68%, color-mix(in srgb, var(--bg) 55%, transparent) 100%);
    }
  }
  @media (max-width:640px){
    .hero-video{
      object-position:62% center;
      -webkit-mask-image: radial-gradient(ellipse 50% 50% at 50% 50%, #000 35%, transparent 100%);
      mask-image: radial-gradient(ellipse 50% 50% at 50% 50%, #000 35%, transparent 100%);
    }
    .hero-fade{
      background-image: linear-gradient(180deg, color-mix(in srgb, var(--bg) 88%, transparent) 0%, color-mix(in srgb, var(--bg) 55%, transparent) 45%, color-mix(in srgb, var(--bg) 78%, transparent) 100%);
    }
  }

  .stages-img{
    width:100%; display:block; height:auto; margin:8px 0 32px; border-radius:22px; box-shadow:var(--shadow);
  }
  @media (max-width:680px){ .stages-img{ display:none; } }
  @media (max-width:640px){ .stages-img{ border-radius:16px; } }

  /* ---------- Banner ---------- */
  .banner-section{ padding:36px 0; background:var(--bg); }
  .banner-img{
    width:100%; display:block; border-radius:22px; height:auto; box-shadow:var(--shadow);
  }
  @media (max-width:640px){ .banner-img{ border-radius:16px; } }
  .hero-grid{ position:relative; z-index:1; }
  .hero-eyebrow{ font-size:14px; color:var(--muted); margin-bottom:14px; }
  .hero h1{ font-size:clamp(36px,5.4vw,58px); font-weight:800; line-height:1.05; letter-spacing:-.01em; }
  .hero .tag{ display:block; font-size:clamp(17px,2vw,21px); font-weight:600; margin-top:10px; color:var(--purple); font-family:'Golos Text'; }
  .hero p.lede{ margin-top:18px; font-size:16.5px; line-height:1.6; color:var(--muted); max-width:46ch; }
  .hero-actions{ display:flex; gap:14px; margin-top:26px; flex-wrap:wrap; }
  .stat-row{ display:flex; gap:14px; margin-top:34px; flex-wrap:wrap; }
  .stat-pill{ display:flex; align-items:center; gap:12px; background:var(--surface); border:1px solid var(--line); border-radius:16px; padding:13px 18px; box-shadow:var(--shadow); }
  .stat-pill .ic{ width:34px; height:34px; border-radius:9px; display:grid; place-items:center; flex:none; background:var(--icon-tint); color:var(--icon-ink); }
  .stat-num{ font-size:15px; font-weight:700; line-height:1.3; font-variant-numeric:tabular-nums; }
  .stat-label{ font-size:12.5px; color:var(--muted); }

  /* ---------- Section shell ---------- */
  section{ padding:56px 0; }
  .section-head{ margin:0 0 30px; }
  h2{ font-size:clamp(22px,2.6vw,28px); font-weight:700; letter-spacing:-.01em; }
  .section-sub{ margin-top:10px; font-size:15px; color:var(--muted); line-height:1.6; max-width:60ch; }

  /* ---------- generic icon-card grids ---------- */
  .grid-4{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
  @media (max-width:980px){ .grid-4{ grid-template-columns:repeat(2,1fr); } }
  @media (max-width:560px){ .grid-4{ grid-template-columns:1fr; } }
  .grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
  @media (max-width:860px){ .grid-3{ grid-template-columns:1fr; } }
  .grid-2{ display:grid; grid-template-columns:repeat(2,1fr); gap:18px; }
  @media (max-width:700px){ .grid-2{ grid-template-columns:1fr; } }

  .org-heading{ font-size:13px; font-weight:700; text-transform:uppercase; letter-spacing:.05em; color:var(--muted); margin:34px 0 16px; }
  .org-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:18px; }
  @media (max-width:780px){ .org-grid{ grid-template-columns:1fr; } }
  .org-card{ background:var(--surface); border:1px solid var(--line); border-radius:16px; padding:24px 22px; box-shadow:var(--shadow); }
  .org-card h3{ font-size:15.5px; font-weight:700; line-height:1.4; margin:14px 0 14px; }
  .org-details{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:10px; }
  .org-details li{ display:flex; align-items:flex-start; gap:10px; font-size:14px; color:var(--muted); line-height:1.5; }
  .org-details li svg{ flex:none; margin-top:2px; }
  .org-details li a{ color:var(--ink); font-weight:600; }
  .icard{ background:var(--surface); border:1px solid var(--line); border-radius:16px; padding:24px 22px; box-shadow:var(--shadow); }
  .icard .ic{ width:44px; height:44px; border-radius:12px; display:grid; place-items:center; margin-bottom:16px; background:var(--icon-tint); color:var(--icon-ink); }
  .icard.gold .ic{ background:color-mix(in srgb, var(--gold) 18%, var(--icon-tint)); color:var(--gold); }
  .icard h3{ font-size:16px; font-weight:700; margin-bottom:8px; }
  .icard p{ font-size:14px; color:var(--muted); line-height:1.55; }

  /* ---------- News ---------- */
  .news-card{ background:var(--surface); border:1px solid var(--line); border-radius:22px; box-shadow:var(--shadow); overflow:hidden; display:flex; align-items:flex-start; }
  .news-card-img{ width:280px; height:350px; flex:none; object-fit:cover; display:block; }
  .news-card-body{ padding:28px 32px; display:flex; flex-direction:column; gap:10px; justify-content:center; align-self:center; }
  .news-date{ font-size:12.5px; font-weight:700; color:var(--purple); text-transform:uppercase; letter-spacing:.05em; }
  .news-card-body h3{ font-size:19px; line-height:1.35; font-weight:700; }
  .news-card-body p{ font-size:14.5px; color:var(--muted); line-height:1.7; margin-top:2px; }
  .news-card-body p + p{ margin-top:10px; }
  .news-more{ margin-top:6px; }
  .news-more summary{ cursor:pointer; font-size:14px; font-weight:600; color:var(--purple); list-style:none; }
  .news-more summary::-webkit-details-marker{ display:none; }
  .news-more[open] summary{ margin-bottom:8px; }
  .news-note{ margin-top:20px; font-size:14px; color:var(--muted); line-height:1.6; }
  .news-note a{ color:var(--purple); font-weight:600; }
  @media (max-width:700px){
    .news-card{ flex-direction:column; }
    .news-card-img{ width:100%; height:240px; }
    .news-card-body{ padding:22px 22px 26px; }
  }

  /* ---------- Participants panel ---------- */
  .panel{ background:var(--surface); border:1px solid var(--line); border-radius:22px; padding:32px; box-shadow:var(--shadow); position:relative; overflow:hidden; }
  .panel h2{ margin-bottom:26px; position:relative; }
  .who-grid{ display:grid; grid-template-columns:260px 1fr 240px; gap:22px; align-items:stretch; position:relative; }
  @media (max-width:900px){ .who-grid{ grid-template-columns:1fr; } }
  .who-box{ background:var(--tint); border-radius:16px; padding:24px; display:flex; flex-direction:column; gap:6px; justify-content:center; }
  .who-box .ic{ width:40px; height:40px; border-radius:11px; background:var(--surface); color:var(--blue); display:grid; place-items:center; margin-bottom:8px; }
  .who-box .lead{ font-size:14px; color:var(--muted); }
  .who-box .big{ font-size:19px; font-weight:700; }
  .who-list{ display:flex; flex-direction:column; justify-content:center; gap:14px; }
  .who-list li{ display:flex; gap:10px; font-size:14.5px; line-height:1.5; }
  .who-list li svg{ flex:none; margin-top:2px; color:var(--teal); }
  .note-box{ background:var(--tint-2); border-radius:16px; padding:24px; display:flex; gap:12px; align-items:flex-start; }
  .note-box .ic{ width:32px; height:32px; border-radius:9px; background:var(--surface); color:var(--blue); display:grid; place-items:center; flex:none; }
  .note-box p{ font-size:13.5px; line-height:1.55; color:var(--ink); }

  /* ---------- Timeline ---------- */
  .timeline{ display:grid; grid-template-columns:repeat(6,1fr); gap:14px; }
  @media (max-width:980px){ .timeline{ grid-template-columns:repeat(3,1fr); } }
  @media (max-width:640px){ .timeline{ grid-template-columns:1fr; } }
  .tl-item{ position:relative; padding-top:48px; }
  .tl-num{ position:absolute; top:0; left:0; width:34px; height:34px; border-radius:50%; display:grid; place-items:center; font-family:'Unbounded'; font-weight:700; font-size:13px; color:#fff; z-index:2; }
  .tl-item::after{ content:''; position:absolute; top:17px; left:34px; right:-14px; height:0; border-top:2px dotted var(--line); }
  @media (max-width:980px){ .tl-item::after{ display:none; } }
  .tl-item:nth-child(6)::after{ display:none; }
  .tl-date{ font-size:12px; font-weight:700; color:var(--muted); margin-bottom:8px; }
  .tl-item h3{ font-size:14.5px; font-weight:700; line-height:1.32; margin-bottom:8px; min-height:38px; }
  .tl-item p{ font-size:13px; color:var(--muted); line-height:1.5; margin-bottom:14px; }
  .tl-item .foot-ic{ color:var(--muted); opacity:.7; }

  /* ---------- Register ---------- */
  .register-grid{ display:grid; grid-template-columns:1.25fr .75fr; gap:40px; align-items:start; }
  @media (max-width:940px){ .register-grid{ grid-template-columns:1fr; } }
  .steps4{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
  @media (max-width:700px){ .steps4{ grid-template-columns:repeat(2,1fr); } }
  .step{ display:flex; flex-direction:column; gap:10px; }
  .step-no{ font-size:26px; font-weight:300; color:var(--muted); opacity:.55; }
  .step .ic{ width:40px; height:40px; border-radius:11px; display:grid; place-items:center; background:var(--icon-tint); color:var(--icon-ink); }
  .step h3{ font-size:14.5px; font-weight:700; }
  .step p, .step a{ font-size:13.5px; color:var(--muted); line-height:1.5; }
  .step a{ color:var(--purple); text-decoration:underline; text-underline-offset:3px; font-weight:600; }

  .docs-card{ background:var(--surface); border:1px solid var(--line); border-radius:18px; padding:26px; box-shadow:var(--shadow); }
  .docs-card h3{ font-size:14px; font-weight:700; color:var(--purple); margin-bottom:16px; }
  .doc-list{ display:grid; gap:12px; }
  .doc-list li{ display:flex; gap:10px; align-items:flex-start; font-size:14px; line-height:1.4; }
  .doc-list li svg{ flex:none; color:var(--blue); margin-top:2px; }

  /* ---------- Result ---------- */
  .result-row{ display:flex; flex-wrap:wrap; gap:28px; margin-bottom:26px; }
  .result-item{ display:flex; gap:12px; align-items:flex-start; flex:1 1 220px; min-width:200px; }
  .result-item .ic{ width:38px; height:38px; border-radius:11px; display:grid; place-items:center; flex:none; }
  .result-item h3{ font-size:15px; font-weight:700; margin-bottom:2px; }
  .result-item p{ font-size:13.5px; color:var(--muted); }
  .winner-banner{ display:flex; align-items:center; gap:16px; background:var(--tint); border-radius:16px; padding:20px 26px; }
  .winner-banner .ic{ width:38px;height:38px;border-radius:11px;background:linear-gradient(135deg,var(--gold),#c77e1f);color:#fff;display:grid;place-items:center;flex:none; }
  .winner-banner p{ font-size:14.5px; line-height:1.55; }
  .winner-banner b{ color:var(--purple); }

  /* ---------- Gallery ---------- */
  .gallery3{ display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
  @media (max-width:700px){ .gallery3{ grid-template-columns:1fr 1fr; } .gallery3 .gtile:first-child{ grid-column:1/3; } }
  .gtile{ aspect-ratio:3/4; border-radius:14px; position:relative; overflow:hidden; background:var(--tint); box-shadow:var(--shadow); border:none; padding:0; cursor:pointer; display:block; width:100%; }
  .gtile img{ width:100%; height:100%; object-fit:cover; display:block; transition:transform .35s ease; }
  .gtile:hover img{ transform:scale(1.045); }
  .gtile-more-overlay{ position:absolute; inset:0; background:linear-gradient(180deg, rgba(20,10,45,.15), rgba(20,10,45,.72)); color:#fff; display:flex; flex-direction:column; align-items:center; justify-content:center; font-family:var(--display-font,inherit); font-weight:800; font-size:30px; gap:6px; text-align:center; }
  .gtile-more-overlay small{ font-size:13px; font-weight:600; letter-spacing:.02em; opacity:.92; }
  .gallery-allbtn{ display:block; margin:20px auto 0; padding:12px 26px; border-radius:999px; border:1px solid var(--line); background:var(--surface); color:var(--ink); font-weight:600; font-size:14px; cursor:pointer; }
  .gallery-allbtn:hover{ border-color:var(--purple); color:var(--purple); }

  /* ---------- Lightbox ---------- */
  .lightbox{ position:fixed; inset:0; z-index:1000; background:#0c0a18; display:none; align-items:center; justify-content:center; }
  .lightbox.open{ display:flex; }
  .lb-close,.lb-grid-btn{ position:absolute; top:16px; width:44px; height:44px; border-radius:50%; border:none; background:rgba(255,255,255,.12); color:#fff; font-size:18px; cursor:pointer; z-index:2; display:grid; place-items:center; }
  .lb-close:hover,.lb-grid-btn:hover{ background:rgba(255,255,255,.24); }
  .lb-close{ right:16px; }
  .lb-grid-btn{ left:16px; }
  .lb-viewer{ position:relative; width:100%; height:100%; display:flex; align-items:center; justify-content:center; }
  .lightbox.mode-grid .lb-viewer{ display:none; }
  .lightbox.mode-viewer .lb-grid{ display:none; }
  #lb-img{ max-width:88vw; max-height:80vh; object-fit:contain; border-radius:10px; box-shadow:0 24px 70px rgba(0,0,0,.5); }
  .lb-arrow{ position:absolute; top:50%; transform:translateY(-50%); width:52px; height:52px; border-radius:50%; border:none; background:rgba(255,255,255,.12); color:#fff; font-size:26px; cursor:pointer; display:grid; place-items:center; }
  .lb-arrow:hover{ background:rgba(255,255,255,.24); }
  .lb-prev{ left:14px; }
  .lb-next{ right:14px; }
  .lb-counter{ position:absolute; bottom:16px; left:50%; transform:translateX(-50%); color:rgba(255,255,255,.85); font-size:13px; letter-spacing:.02em; }
  .lb-grid{ width:100%; height:100%; overflow-y:auto; box-sizing:border-box; padding:76px 20px 40px; }
  .lb-grid-inner{ max-width:1140px; margin:0 auto; display:grid; grid-template-columns:repeat(auto-fill,minmax(130px,1fr)); gap:10px; }
  .lb-grid-inner img{ width:100%; aspect-ratio:3/4; object-fit:cover; border-radius:10px; cursor:pointer; display:block; transition:transform .2s,opacity .2s; }
  .lb-grid-inner img:hover{ transform:scale(1.03); }
  @media (max-width:640px){ #lb-img{ max-width:94vw; max-height:74vh; } .lb-arrow{ width:42px; height:42px; font-size:20px; } }

  /* ---------- CTA band ---------- */
  .cta-band{ background: linear-gradient(100deg, color-mix(in srgb, var(--pink) 20%, var(--surface)), color-mix(in srgb, var(--purple) 20%, var(--surface)) 55%, color-mix(in srgb, var(--blue) 20%, var(--surface))); padding:34px 0; }
  .cta-inner{ display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap; }
  .cta-inner h2{ font-size:clamp(19px,2.4vw,24px); }
  .cta-inner p{ color:var(--muted); margin-top:4px; font-size:14px; }
  .cta-actions{ display:flex; gap:12px; flex-wrap:wrap; }

  footer{ padding:22px 0; }
  .foot-inner{ display:flex; justify-content:space-between; align-items:center; gap:16px; flex-wrap:wrap; }
  .foot-inner p{ font-size:13px; color:var(--muted); }
  .foot-social{ display:flex; gap:10px; }
  .foot-social a{ width:30px; height:30px; border-radius:50%; background:var(--tint); color:var(--muted); display:grid; place-items:center; text-decoration:none; transition:background .15s, color .15s; }
  .foot-social a:hover{ background:var(--icon-tint); color:var(--icon-ink); }
  .foot-social-text{ font-family:'Golos Text', Arial, sans-serif; font-weight:700; font-size:11px; letter-spacing:-.01em; }
  .foot-social-max{ font-size:9px; letter-spacing:-.02em; }
