    :root{
      --bg: #0b0c0f;
      --panel: rgba(255,255,255,0.06);
      --panel2: rgba(255,255,255,0.08);
      --text: rgba(255,255,255,0.92);
      --muted: rgba(255,255,255,0.70);
      --muted2: rgba(255,255,255,0.55);
      --line: rgba(255,255,255,0.12);
      --accent: #8dd6ff;
      --good: #8CFFB5;
      --shadow: 0 18px 60px rgba(0,0,0,0.45);
      --radius: 18px;
      --max: 1180px;
      --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
    }

    *{ box-sizing:border-box; }
    body{
      margin:0;
      font-family: var(--font);
      background:
        radial-gradient(900px 500px at 20% -10%, rgba(141,214,255,0.25), transparent 60%),
        radial-gradient(700px 400px at 85% 5%, rgba(140,255,181,0.18), transparent 60%),
        var(--bg);
      color: var(--text);
      line-height:1.35;
    }
    a{ color: inherit; text-decoration: none; }
    a:hover{ text-decoration: underline; }

    .wrap{ max-width: var(--max); margin: 0 auto; padding: 0 18px; }

    /* Top bar */
    .topbar{
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(12px);
      background: rgba(11,12,15,0.65);
      border-bottom: 1px solid var(--line);
    }
    .topbar-inner{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding: 12px 0;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:10px;
      min-width: 180px;
    }
    .logo-img{
  	height:34px;
  	width:34px;
  	object-fit: contain;
  	border-radius:8px;
    }
    .brand-title{
      display:flex; flex-direction:column; line-height:1.05;
    }
    .brand-title strong{ font-size: 14px; letter-spacing: 0.2px; }
    .brand-title span{ font-size: 12px; color: var(--muted2); }

    .nav{
      display:flex;
      align-items:center;
      gap: 14px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .nav a{
      font-size: 13px;
      color: var(--muted);
      padding: 8px 10px;
      border-radius: 999px;
    }

    .actions{
      display:flex; align-items:center; gap:10px;
      min-width: 260px;
      justify-content: flex-end;
    }

    .search{
      display:flex; align-items:center; gap:10px;
      background: var(--panel);
      border: 1px solid var(--line);
      border-radius: 999px;
      padding: 8px 12px;
      width: min(360px, 52vw);
    }
    .search svg{ flex: 0 0 auto; opacity: 0.75; }
    .search input{
      width:100%;
      border:0;
      outline:none;
      background: transparent;
      color: var(--text);
      font-size: 13px;
    }
    .pill{
      background: var(--panel);
      border: 1px solid var(--line);
      color: var(--text);
      padding: 9px 12px;
      border-radius: 999px;
      font-size: 13px;
      cursor:pointer;
    }
    .pill:hover{ background: var(--panel2); }
    .pill:active{ transform: translateY(1px); }

    /* Header */
    header{
      padding: 52px 0 20px;
    }
    .kicker{
      color: var(--muted);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-size: 12px;
    }
    h1{
      margin: 10px 0 10px;
      font-size: clamp(34px, 5vw, 56px);
      letter-spacing: -0.02em;
    }
    .subhead{
      margin: 0;
      color: var(--muted);
      font-size: 16px;
      max-width: 64ch;
    }

    /* Featured hero */
    .hero{
      margin-top: 26px;
      border-radius: var(--radius);
      border: 1px solid var(--line);
      overflow:hidden;
      background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
      box-shadow: var(--shadow);
    }
    .hero-inner{
      display:grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 0;
      min-height: 320px;
    }
    .hero-media {
      position: relative;
      overflow: hidden;
    }

    .hero-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .hero-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(0,0,0,0.2), rgba(0,0,0,0.55));
    }

    .hero-media .imglabel{
      position:absolute; left:18px; bottom:16px; z-index: 1;
      font-size: 12px; color: rgba(255,255,255,0.75);
    }
    .hero-copy{
      padding: 26px 22px;
      display:flex;
      flex-direction: column;
      justify-content: center;
      gap: 10px;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      gap:8px;
      font-size: 12px;
      color: var(--muted);
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .dot{
      width:7px; height:7px; border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 6px rgba(141,214,255,0.10);
    }
    .hero-copy h2{
      margin: 0;
      font-size: clamp(20px, 2.2vw, 28px);
      letter-spacing: -0.01em;
    }
    .hero-copy p{
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }
    .meta{
      display:flex;
      align-items:center;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 8px;
      color: var(--muted2);
      font-size: 13px;
    }
    .cta-row{
      display:flex; gap:10px; margin-top: 14px; flex-wrap: wrap;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      gap: 10px;
      padding: 10px 14px;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.06);
      cursor:pointer;
      font-size: 13px;
      text-decoration:none;
    }
    .btn:hover{ background: rgba(255,255,255,0.10); text-decoration:none; }
    .btn.primary{
      border-color: rgba(141,214,255,0.35);
      background: rgba(141,214,255,0.12);
    }
    .btn.primary:hover{ background: rgba(141,214,255,0.18); }

    /* Section headers */
    .section-head{
      margin-top: 34px;
      display:flex;
      align-items:flex-end;
      justify-content: space-between;
      gap: 14px;
      flex-wrap: wrap;
    }
    .section-head h3{
      margin: 0;
      font-size: 20px;
      letter-spacing: -0.01em;
    }
    .section-head .hint{
      color: var(--muted2);
      font-size: 13px;
    }

    /* Filter chips */
    .filters{
      margin-top: 14px;
      display:flex; flex-wrap: wrap;
      gap: 10px;
      align-items:center;
    }
    .chip{
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.05);
      color: var(--muted);
      padding: 8px 12px;
      border-radius: 999px;
      font-size: 13px;
      cursor:pointer;
      user-select:none;
    }
    .chip[aria-pressed="true"]{
      color: var(--text);
      background: rgba(255,255,255,0.10);
      border-color: rgba(141,214,255,0.35);
      box-shadow: 0 0 0 4px rgba(141,214,255,0.08) inset;
    }

    /* Grid */
    .grid{
      margin-top: 18px;
      display:grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 14px;
    }
    .card{
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.05);
      border-radius: var(--radius);
      overflow:hidden;
      min-height: 220px;
      display:flex;
      flex-direction: column;
      box-shadow: 0 10px 40px rgba(0,0,0,0.28);
    }
    .card:hover{ background: rgba(255,255,255,0.07); }
    .card .thumb{
      height: 128px;
      background:
        radial-gradient(600px 220px at 30% 30%, rgba(141,214,255,0.22), transparent 60%),
        radial-gradient(500px 210px at 80% 20%, rgba(140,255,181,0.18), transparent 60%),
        linear-gradient(120deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
      border-bottom: 1px solid var(--line);
      position: relative;
    }
    .card .thumb img{
      width:100%; height:100%; object-fit: cover; display:block;
      filter: saturate(1.05) contrast(1.05);
      opacity: 0.95;
    }
    .card .thumb .badge{
      position:absolute; left: 12px; bottom: 10px;
      background: rgba(0,0,0,0.40);
      border: 1px solid rgba(255,255,255,0.20);
      color: rgba(255,255,255,0.92);
      padding: 6px 10px;
      border-radius: 999px;
      font-size: 12px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      backdrop-filter: blur(8px);
    }
    .card .body{
      padding: 14px 14px 16px;
      display:flex;
      flex-direction: column;
      gap: 8px;
      flex: 1 1 auto;
    }
    .card .title{
      font-size: 15px;
      margin: 0;
      letter-spacing: -0.01em;
    }
    .card .excerpt{
      margin: 0;
      color: var(--muted);
      font-size: 13px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow:hidden;
    }
    .card .foot{
      margin-top: auto;
      display:flex;
      align-items:center;
      justify-content: space-between;
      gap: 10px;
      color: var(--muted2);
      font-size: 12px;
      padding-top: 6px;
    }
    .card .arrow{
      opacity: 0.85;
    }

    /* Layout sizes (12-col grid) */
    .span-6{ grid-column: span 6; }
    .span-4{ grid-column: span 4; }
    .span-3{ grid-column: span 3; }

    /* “Media resources” panel */
    .resources{
      margin-top: 28px;
      border-radius: var(--radius);
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.04);
      padding: 16px;
      display:flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items:center;
      justify-content: space-between;
    }
    .resources .left{
      display:flex; flex-direction: column; gap: 4px;
    }
    .resources strong{ font-size: 14px; }
    .resources span{ color: var(--muted); font-size: 13px; }
    .resources .right{ display:flex; gap: 10px; flex-wrap: wrap; }

    /* Footer */
    footer{
      margin-top: 44px;
      padding: 28px 0 44px;
      border-top: 1px solid var(--line);
      color: var(--muted2);
      font-size: 13px;
    }

    /* Responsive */
    @media (max-width: 980px){
      .hero-inner{ grid-template-columns: 1fr; }
      .actions{ min-width: unset; }
      .span-6{ grid-column: span 12; }
      .span-4{ grid-column: span 6; }
      .span-3{ grid-column: span 6; }
    }
    @media (max-width: 560px){
      .nav{ display:none; }
      .search{ width: 60vw; }
      .span-4, .span-3{ grid-column: span 12; }
      header{ padding-top: 34px; }
    }
    /* Active top-nav link (persisted via aria-current="page") */
    .nav a[aria-current="page"]{
      color: var(--text);
      background: var(--panel);
      border: 1px solid var(--line);
      text-decoration: none;
    }

    /* Keyboard focus */
    .nav a:focus-visible{
      outline: 2px solid currentColor;
      outline-offset: 4px;
      border-radius: 8px;
    }