:root {
      --bg0: #0b1220;
      --bg1: #0f172a;
      --card: rgba(255, 255, 255, 0.04);
      --border: rgba(148, 163, 184, 0.18);
      --borderHover: rgba(96, 165, 250, 0.55);
      --text: #e2e8f0;
      --muted: rgba(226, 232, 240, 0.78);
      --muted2: rgba(226, 232, 240, 0.62);
      --accent: #60a5fa;
      --shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
      --radius: 18px;
    }

    * { box-sizing: border-box; }

    body {
      margin: 0;
      min-height: 100vh;
      font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
      color: var(--text);
      background:
        radial-gradient(900px 500px at 15% 10%, rgba(96, 165, 250, 0.18), transparent 60%),
        radial-gradient(700px 450px at 85% 20%, rgba(167, 139, 250, 0.14), transparent 55%),
        linear-gradient(180deg, var(--bg0), var(--bg1));
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 56px 20px;
    }

    .wrap { width: 100%; max-width: 920px; }

    .panel {
      background: rgba(15, 23, 42, 0.55);
      border: 1px solid var(--border);
      border-radius: calc(var(--radius) + 6px);
      box-shadow: var(--shadow);
      padding: 34px;
      backdrop-filter: blur(10px);
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 12px;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: rgba(255, 255, 255, 0.03);
      font-size: 12px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted2);
    }

    .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 6px rgba(96, 165, 250, 0.12);
    }

    h1 {
      margin: 14px 0 8px;
      font-size: clamp(34px, 4.5vw, 54px);
      line-height: 1.06;
      letter-spacing: -0.02em;
    }

    .subtitle {
      margin: 0 0 22px;
      color: var(--muted);
      font-size: 16px;
      line-height: 1.6;
      max-width: 65ch;
    }

    .sectionHeader {
      margin-top: 26px;
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
      padding: 0 4px;
    }

    .sectionTitle {
      font-size: 14px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted2);
    }

    .sectionNote {
      font-size: 13px;
      color: var(--muted2);
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 14px;
      margin-top: 12px;
    }

    .card {
      display: block;
      text-decoration: none;
      color: inherit;
      border: 1px solid var(--border);
      background: var(--card);
      border-radius: var(--radius);
      padding: 18px 18px 16px;
      transition: transform 140ms ease, border-color 140ms ease, background 140ms ease;
    }

    .card:hover {
      border-color: var(--borderHover);
      transform: translateY(-2px);
      background: rgba(255, 255, 255, 0.06);
    }

    .cardTop {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 14px;
      flex-wrap: wrap;
    }

    .title {
      font-size: 18px;
      font-weight: 650;
      letter-spacing: -0.01em;
    }

    .pill {
      font-size: 12px;
      color: var(--muted2);
      border: 1px solid var(--border);
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.03);
      white-space: nowrap;
    }

    .desc {
      margin-top: 10px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.65;
    }

    .meta {
      margin-top: 14px;
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      color: var(--muted2);
      font-size: 12px;
    }

    .meta span {
      border: 1px solid var(--border);
      background: rgba(255, 255, 255, 0.02);
      padding: 6px 10px;
      border-radius: 999px;
    }

    footer {
      margin-top: 22px;
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      color: var(--muted2);
      font-size: 13px;
      padding: 0 4px;
    }

    footer a {
      color: var(--text);
      text-decoration: none;
      border-bottom: 1px solid rgba(226, 232, 240, 0.25);
    }

    footer a:hover {
      border-bottom-color: rgba(96, 165, 250, 0.7);
    }