    :root{
      --bg:#0b0f14;
      --panel:#0f1620;
      --card:#121c28;
      --line:rgba(255,255,255,.08);
      --text:rgba(255,255,255,.92);
      --muted:rgba(255,255,255,.70);
      --muted2:rgba(255,255,255,.55);
      --accent:#ffb300;         /* yellow/orange */
      --accent2:#ffd36b;
      --danger:#ff5252;
      --ok:#40c4aa;
      --shadow: 0 18px 50px rgba(0,0,0,.55);
      --radius: 18px;
      --radius2: 26px;
      --max: 1160px;
    }

    *{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:
        radial-gradient(900px 500px at 15% -10%, rgba(255,179,0,.18), transparent 60%),
        radial-gradient(900px 600px at 95% 15%, rgba(255,211,107,.12), transparent 60%),
        linear-gradient(180deg, #0b0f14 0%, #070a0e 60%, #05070a 100%);
      overflow-x:hidden;
    }

    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    .container{max-width:var(--max); margin:0 auto; padding:0 18px}

    /* Top bar */
    .topbar{
      position:sticky; top:0; z-index:100;
      backdrop-filter: blur(14px);
      background: linear-gradient(180deg, rgba(11,15,20,.78), rgba(11,15,20,.45));
      border-bottom:1px solid var(--line);
    }
    .topbar-inner{
      display:flex; align-items:center; justify-content:space-between;
      padding:14px 0;
      gap:14px;
    }
    .brand{
      display:flex; align-items:center; gap:12px;
      min-width: 200px;
    }
    .logo{
      width:40px; height:40px; border-radius:12px;
      background:
        radial-gradient(circle at 30% 30%, rgba(255,211,107,.9), rgba(255,179,0,.25) 60%, rgba(255,179,0,.1) 100%),
        linear-gradient(145deg, rgba(255,179,0,.8), rgba(255,179,0,.1));
      border:1px solid rgba(255,179,0,.35);
      box-shadow: 0 10px 30px rgba(255,179,0,.18);
      position:relative;
    }
    .logo:after{
      content:"";
      position:absolute; inset:10px 12px;
      border-radius:10px;
      border:1px dashed rgba(255,255,255,.28);
      transform: rotate(-8deg);
    }
    .brand h3{margin:0; font-size:15px; letter-spacing:.4px}
    .brand p{margin:2px 0 0; font-size:12px; color:var(--muted2)}
    .nav{
      display:flex; align-items:center; gap:18px;
      flex-wrap:wrap;
      justify-content:center;
    }
    .nav a{
      font-size:13px; color:var(--muted);
      padding:8px 10px; border-radius:12px;
      border:1px solid transparent;
      transition:.2s ease;
    }
    .nav a:hover{
      color:var(--text);
      border-color:rgba(255,255,255,.10);
      background:rgba(255,255,255,.03);
    }
    .nav-cta{
      display:flex; gap:10px; align-items:center;
      min-width: 200px; justify-content:flex-end;
    }

    /* Buttons */
    .btn{
      display:inline-flex; align-items:center; justify-content:center; gap:10px;
      padding:11px 14px;
      border-radius:14px;
      border:1px solid rgba(255,255,255,.12);
      background:rgba(255,255,255,.04);
      color:var(--text);
      font-weight:600;
      font-size:13px;
      letter-spacing:.2px;
      transition:.2s ease;
      cursor:pointer;
      user-select:none;
      white-space:nowrap;
    }
    .btn:hover{transform: translateY(-1px); border-color:rgba(255,255,255,.18); background:rgba(255,255,255,.06)}
    .btn:active{transform: translateY(0)}
    .btn-primary{
      background: linear-gradient(180deg, rgba(255,179,0,.95), rgba(255,179,0,.75));
      border-color: rgba(255,179,0,.55);
      color:#111;
      box-shadow: 0 18px 40px rgba(255,179,0,.20);
    }
    .btn-primary:hover{filter:saturate(1.05); box-shadow: 0 22px 50px rgba(255,179,0,.24)}
    .btn-ghost{
      background: transparent;
      border-color: rgba(255,255,255,.14);
    }
    .btn-small{padding:9px 12px; font-size:12px; border-radius:12px}

    /* Sections */
    section{padding:70px 0}
    .kicker{
      display:inline-flex; gap:10px; align-items:center;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(255,179,0,.30);
      background: rgba(255,179,0,.10);
      color: var(--accent2);
      font-size:12px;
      letter-spacing:.4px;
      text-transform:uppercase;
      margin-bottom:14px;
    }
    .kicker .dot{
      width:8px; height:8px; border-radius:99px;
      background: var(--accent);
      box-shadow: 0 0 0 4px rgba(255,179,0,.15);
    }
    h1{margin:0; font-size:44px; line-height:1.05; letter-spacing:-.8px}
    h2{margin:0; font-size:30px; letter-spacing:-.4px}
    p{margin:0; color:var(--muted); line-height:1.6}

    /* Hero */
    .hero{
      padding:62px 0 44px;
      position:relative;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.25fr .95fr;
      gap:26px;
      align-items:stretch;
    }
    .hero-copy{
      background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
      border:1px solid var(--line);
      border-radius: var(--radius2);
      padding:26px;
      box-shadow: var(--shadow);
      position:relative;
      overflow:hidden;
    }
    .hero-copy:before{
      content:"";
      position:absolute;
      width:340px; height:340px;
      border-radius:999px;
      background: radial-gradient(circle at 35% 35%, rgba(255,179,0,.22), transparent 60%);
      top:-180px; left:-120px;
      pointer-events:none;
    }
    .hero-sub{
      margin-top:14px;
      font-size:16px;
      color:rgba(255,255,255,.78);
      max-width: 60ch;
    }
    .hero-actions{
      display:flex; gap:12px; flex-wrap:wrap;
      margin-top:18px;
    }
    .hero-meta{
      display:flex; gap:14px; flex-wrap:wrap;
      margin-top:22px;
    }
    .pill{
      display:flex; gap:10px; align-items:center;
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(255,255,255,.10);
      background: rgba(0,0,0,.18);
      color: rgba(255,255,255,.82);
      font-size:13px;
    }
    .pill b{color:var(--text)}
    .pill .ic{
      width:34px; height:34px; border-radius:14px;
      display:grid; place-items:center;
      background: rgba(255,179,0,.12);
      border:1px solid rgba(255,179,0,.25);
      color: var(--accent2);
      font-weight:800;
    }

    .hero-media{
      border-radius: var(--radius2);
      border:1px solid var(--line);
      overflow:hidden;
      position:relative;
      box-shadow: var(--shadow);
      min-height: 420px;
      background:#0a0e13;
    }
    .hero-media img{
      width:100%; height:100%;
      object-fit:cover;
      filter: contrast(1.05) saturate(1.05);
      transform: scale(1.02);
    }
    .hero-media:after{
      content:"";
      position:absolute; inset:0;
      background:
        linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.70) 92%),
        radial-gradient(600px 260px at 30% 20%, rgba(255,179,0,.18), transparent 65%);
      pointer-events:none;
    }
    .hero-badge{
      position:absolute;
      left:18px; bottom:18px;
      right:18px;
      display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap;
      z-index:1;
    }
    .badge{
      flex: 1 1 140px;
      border-radius:18px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(11,15,20,.55);
      backdrop-filter: blur(10px);
      padding:12px 12px;
    }
    .badge .t{font-size:12px; color:var(--muted2); margin-bottom:2px}
    .badge .v{font-size:14px; font-weight:700}

    /* Cards / grids */
    .grid-3{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:16px;
      margin-top:22px;
    }
    .card{
      border-radius: var(--radius);
      border:1px solid var(--line);
      background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
      padding:18px;
      box-shadow: 0 14px 40px rgba(0,0,0,.35);
      position:relative;
      overflow:hidden;
    }
    .card:before{
      content:"";
      position:absolute;
      inset:-60px -60px auto auto;
      width:160px; height:160px;
      background: radial-gradient(circle at 30% 30%, rgba(255,179,0,.16), transparent 70%);
      border-radius:999px;
      pointer-events:none;
    }
    .card h3{margin:10px 0 8px; font-size:16px}
    .card p{font-size:13px}
    .icon{
      width:44px; height:44px; border-radius:16px;
      display:grid; place-items:center;
      background: rgba(255,179,0,.12);
      border:1px solid rgba(255,179,0,.25);
      color: var(--accent2);
      font-weight:900;
      letter-spacing:.6px;
    }

    /* Split section */
    .split{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:18px;
      align-items:stretch;
      margin-top:18px;
    }
    .media-card{
      border-radius: var(--radius2);
      border:1px solid var(--line);
      overflow:hidden;
      background: #0a0e13;
      min-height: 360px;
      position:relative;
      box-shadow: var(--shadow);
    }
    .media-card img{
      width:100%; height:100%;
      object-fit:cover;
      filter:saturate(1.05) contrast(1.05);
    }
    .media-card:after{
      content:"";
      position:absolute; inset:0;
      background: linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.70));
      pointer-events:none;
    }
    .list{
      margin-top:14px;
      display:grid;
      gap:10px;
    }
    .li{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px;
      border-radius:16px;
      border:1px solid rgba(255,255,255,.10);
      background: rgba(0,0,0,.16);
    }
    .check{
      width:22px; height:22px; border-radius:8px;
      background: rgba(64,196,170,.16);
      border:1px solid rgba(64,196,170,.30);
      display:grid; place-items:center;
      color: rgba(64,196,170,1);
      font-weight:900;
      flex:0 0 auto;
      margin-top:1px;
    }
    .li b{display:block; font-size:13px; margin-bottom:3px}
    .li span{display:block; font-size:13px; color:var(--muted)}

    /* Gallery */
    .gallery{
      display:grid;
      grid-template-columns: 1.4fr 1fr 1fr;
      grid-template-rows: 220px 220px;
      gap:14px;
      margin-top:22px;
    }
    .g{
      border-radius: var(--radius2);
      overflow:hidden;
      border:1px solid var(--line);
      position:relative;
      background:#0a0e13;
      box-shadow: 0 16px 40px rgba(0,0,0,.35);
    }
    .g img{width:100%; height:100%; object-fit:cover}
    .g:after{
      content:"";
      position:absolute; inset:0;
      background: linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.55));
      opacity:.9;
      pointer-events:none;
    }
    .g.big{grid-row: 1 / span 2;}
    .g .cap{
      position:absolute; left:14px; bottom:12px; right:14px;
      z-index:1;
      display:flex; justify-content:space-between; align-items:end; gap:12px;
    }
    .cap b{font-size:14px}
    .cap small{display:block; color:var(--muted2); margin-top:2px}

    /* CTA */
    .cta{
      padding:0;
    }
    .cta-box{
      border-radius: 28px;
      border:1px solid rgba(255,179,0,.26);
      background:
        radial-gradient(900px 380px at 10% 0%, rgba(255,179,0,.22), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
      box-shadow: var(--shadow);
      overflow:hidden;
      position:relative;
      padding:26px;
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:18px;
      align-items:stretch;
    }
    .cta-box:after{
      content:"";
      position:absolute;
      inset:auto -140px -140px auto;
      width:320px; height:320px;
      border-radius:999px;
      background: radial-gradient(circle at 35% 35%, rgba(255,211,107,.20), transparent 65%);
      pointer-events:none;
    }
    .form{
      border-radius:22px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(0,0,0,.22);
      padding:16px;
      position:relative;
      z-index:1;
    }
    .row{display:grid; grid-template-columns: 1fr 1fr; gap:10px}
    .field{display:grid; gap:7px; margin-bottom:10px}
    label{font-size:12px; color:var(--muted2)}
    input, select, textarea{
      width:100%;
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(15,22,32,.55);
      color: var(--text);
      outline:none;
      transition: .2s ease;
    }
    textarea{min-height:92px; resize:vertical}
    input:focus, select:focus, textarea:focus{
      border-color: rgba(255,179,0,.45);
      box-shadow: 0 0 0 4px rgba(255,179,0,.12);
    }
    .hint{font-size:12px; color:var(--muted2); margin-top:8px}
    .fine{font-size:12px; color:var(--muted2); margin-top:10px}
    .fine a{color:var(--accent2); text-decoration:underline}

    /* Footer */
    footer{
      border-top:1px solid var(--line);
      padding:26px 0 36px;
      color: var(--muted2);
    }
    .foot{
      display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap;
      align-items:center;
    }
    .tiny{font-size:12px}

    /* Responsive */
    @media (max-width: 980px){
      h1{font-size:38px}
      .hero-grid, .split, .cta-box{grid-template-columns: 1fr}
      .hero-media{min-height: 360px}
      .nav{display:none} /* keep it simple for one-file */
      .nav-cta{min-width:auto}
      .gallery{grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px}
      .g.big{grid-row:auto}
      .row{grid-template-columns:1fr}
    }
    @media (max-width: 560px){
      h1{font-size:32px}
      section{padding:56px 0}
      .grid-3{grid-template-columns:1fr}
      .gallery{grid-template-columns: 1fr; grid-template-rows: 210px 210px 210px 210px}
    }