:root{
      --bg:#0B0B0E;
      --bg2:#101018;
      --card:#141421;
      --text:#F2F3F7;
      --muted:#B9BBC8;
      --muted2:#8E92A8;
      --accent:#F09838;
      --accent2:#E6882E;
      --accent3:#FFBC5A;
      --line:rgba(255,255,255,.10);
      --shadow:0 20px 60px rgba(0,0,0,.55);
      --radius:18px;
      --radius2:26px;
      --max:1120px;
      --heroGrad:
        radial-gradient(1200px 600px at 15% 0%, rgba(240,152,56,.32), transparent 55%),
        radial-gradient(900px 500px at 80% 10%, rgba(255,188,90,.20), transparent 55%),
        radial-gradient(800px 600px at 65% 85%, rgba(169,234,217,.12), transparent 55%),
        linear-gradient(180deg, #0B0B0E 0%, #0E0E14 55%, #0B0B0E 100%);
    }

    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      font-family:ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
      color:var(--text);
      background:var(--bg);
      line-height:1.6;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    .wrap{max-width:var(--max);margin:0 auto;padding:0 20px}
    .btn{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:12px 16px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.12);
      background:rgba(255,255,255,.04);
      color:var(--text);
      font-weight:650;
      transition:.2s transform,.2s background,.2s border-color;
    }
    .btn:hover{transform:translateY(-1px);background:rgba(255,255,255,.06);border-color:rgba(255,255,255,.18)}
    .btn.primary{
      background:linear-gradient(180deg, var(--accent3), var(--accent));
      color:#18130B;
      border-color:rgba(0,0,0,.08);
      box-shadow:0 12px 28px rgba(240,152,56,.22);
    }
    .pill{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(240,152,56,.10);
      border:1px solid rgba(240,152,56,.25);
      color:var(--accent3);
      font-weight:650;
      font-size:13px;
    }

    header{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter:blur(10px);
      background:rgba(11,11,14,.72);
      border-bottom:1px solid rgba(255,255,255,.08);
    }
    .nav{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:14px 0;
      gap:18px;
    }
    .nav-logo{
      display:flex;
      align-items:center;
      gap:14px;
      color:#F6EFE6;
      text-decoration:none;
      font-weight:800;
      font-size:clamp(1.5rem, 2.2vw, 2.15rem);
      font-family:"Arial Rounded MT Bold", "Avenir Next", Avenir, "Segoe UI", sans-serif;
      line-height:1;
      letter-spacing:0;
      white-space:nowrap;
    }
    .nav-logo-mark{
      width:46px;
      height:46px;
      display:grid;
      grid-template-columns:1fr 1fr;
      grid-template-rows:1fr 1fr;
      gap:6px;
      flex:0 0 auto;
    }
    .nav-logo-mark span{
      background:#FFBC59;
      box-shadow:0 0 0 1px rgba(0,0,0,.04);
    }
    .nav-logo-mark span:nth-child(1),
    .nav-logo-mark span:nth-child(3),
    .nav-logo-mark span:nth-child(4){border-radius:1px}
    .nav-logo-mark span:nth-child(2){
      transform:rotate(45deg) scale(.88);
      border-radius:1px;
    }
    .nav-logo-text{
      color:#F6E5D1;
      background:linear-gradient(90deg, #FAFAF8 0%, #F8F5F0 52%, #EBC79C 100%);
      background-clip:text;
      -webkit-background-clip:text;
      -webkit-text-fill-color:transparent;
    }
    .nav-cta{display:flex;gap:10px;align-items:center;flex-wrap:wrap;justify-content:flex-end}

    .eu-banner{
      background:#fff;
      border-top:6px solid #8A8A8A;
      border-bottom:1px solid rgba(0,0,0,.08);
    }
    .eu-banner picture,
    .eu-banner img{
      width:100%;
      height:auto;
      display:block;
    }

    .hero{
      padding:70px 0 42px;
      background:var(--heroGrad);
    }
    .heroGrid{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:36px;
      align-items:center;
    }
    h1{
      margin:14px 0;
      font-size:clamp(34px, 3.8vw, 54px);
      line-height:1.08;
      letter-spacing:-.7px;
    }
    .sub{
      max-width:64ch;
      margin:0;
      color:var(--muted);
      font-size:18px;
    }
    .funding-visual{
      border-radius:var(--radius2);
      border:1px solid rgba(255,255,255,.10);
      background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
      box-shadow:var(--shadow);
      padding:18px;
      overflow:hidden;
    }
    .funding-mark{
      min-height:250px;
      display:grid;
      place-items:center;
      border-radius:16px;
      border:1px solid rgba(255,255,255,.10);
      background:
        radial-gradient(420px 260px at 50% 30%, rgba(240,152,56,.20), transparent 60%),
        rgba(0,0,0,.22);
      padding:24px;
    }
    .funding-mark picture{
      width:100%;
      display:block;
    }
    .funding-mark img{
      width:100%;
      height:250px;
      object-fit:cover;
      border-radius:10px;
      filter:drop-shadow(0 18px 35px rgba(0,0,0,.35));
    }

    section{padding:58px 0}
    .sectionTitle{margin-bottom:18px}
    h2{
      margin:0;
      font-size:clamp(24px, 2.6vw, 34px);
      letter-spacing:-.4px;
    }
    .lead{margin:6px 0 0;color:var(--muted);max-width:76ch}
    .grid2{display:grid;grid-template-columns:repeat(2,1fr);gap:18px;margin-top:18px}
    .grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:18px}
    .card{
      border-radius:var(--radius);
      padding:18px;
      border:1px solid rgba(255,255,255,.10);
      background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
      box-shadow:0 12px 32px rgba(0,0,0,.25);
    }
    .card h3{margin:0 0 6px;font-size:16px;letter-spacing:-.2px}
    .card p{margin:0;color:var(--muted)}
    .card strong{color:var(--text)}
    .metric{
      border-radius:var(--radius);
      padding:18px;
      border:1px solid rgba(240,152,56,.22);
      background:linear-gradient(180deg, rgba(240,152,56,.10), rgba(255,255,255,.02));
    }
    .metric small{
      display:block;
      color:var(--muted2);
      font-weight:800;
      letter-spacing:.08em;
      text-transform:uppercase;
    }
    .metric b{
      display:block;
      margin-top:8px;
      font-size:22px;
      line-height:1.25;
      color:var(--text);
    }
    .official{
      border-radius:var(--radius2);
      border:1px solid rgba(255,255,255,.10);
      background:rgba(255,255,255,.04);
      box-shadow:var(--shadow);
      padding:clamp(22px, 4vw, 36px);
    }
    .official p{color:var(--muted);margin:12px 0 0}
    .official p:first-child{margin-top:0}
    .official a{color:var(--accent3);font-weight:700}
    .official-list{
      margin:14px 0 0;
      padding-left:22px;
      color:var(--muted);
    }
    .official-list li{margin-top:8px}
    .notice{
      padding:18px;
      border-radius:var(--radius);
      border:1px solid rgba(255,255,255,.10);
      background:rgba(255,255,255,.035);
      color:var(--muted);
      font-size:14px;
    }
    .notice a{color:var(--accent3);font-weight:800}
    footer{
      padding:28px 0 40px;
      color:var(--muted2);
      font-size:13px;
      border-top:1px solid rgba(255,255,255,.08);
    }
    .foot{
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      justify-content:space-between;
      gap:12px;
    }
    .foot .left{display:flex;align-items:center;gap:10px}
    .benoli{
      width:26px;
      height:26px;
      border-radius:10px;
      border:1px solid rgba(255,255,255,.12);
      background:rgba(255,255,255,.04);
      padding:4px;
    }

    @media (max-width:920px){
      .heroGrid{grid-template-columns:1fr}
      .grid2,.grid3{grid-template-columns:1fr}
      .nav{align-items:flex-start;flex-direction:column}
      .nav-cta{justify-content:flex-start}
    }

.footer-brand-line { color: var(--text); font-weight: 700; }
.footer-actions { display: flex; gap: 14px; flex-wrap: wrap; }
