* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: #020617;
      color: #e5e7eb;
      line-height: 1.8;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .shell {
      max-width: 1120px;
      margin: 0 auto;
      padding: 18px 16px 26px;
    }

    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      margin-bottom: 18px;
    }

    .logo-line {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .logo-mark {
      width: 26px;
      height: 26px;
      border-radius: 999px;
      background: conic-gradient(from 120deg, #f97316, #22c55e, #0ea5e9, #f97316);
    }

    .logo-text {
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: #a5b4fc;
    }

    .nav-mini {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: #9ca3af;
    }

    .hero {
      border-radius: 18px;
      padding: 20px 18px 18px;
      background: radial-gradient(circle at top left, #0f172a, #020617 70%);
      border: 1px solid rgba(55, 65, 81, 0.9);
      box-shadow: 0 26px 70px rgba(0, 0, 0, 0.9);
      margin-bottom: 20px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 2.2fr 1.8fr;
      gap: 20px;
    }

    @media (max-width: 880px) {
      .hero-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .hero-kicker {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.22em;
      color: #22c55e;
      margin-bottom: 10px;
    }

    h1 {
      font-size: 30px;
      margin-bottom: 8px;
    }

    @media (min-width: 900px) {
      h1 {
        font-size: 34px;
      }
    }

    .hero-text {
      font-size: 14px;
      color: #cbd5f5;
      margin-bottom: 14px;
      max-width: 540px;
    }

    .hero-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 15px;
      font-size: 11px;
    }

    .tag {
      padding: 5px 10px;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.7);
      background: rgba(15, 23, 42, 0.95);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .btn-main {
      padding: 9px 20px;
      border-radius: 999px;
      border: none;
      font-size: 13px;
      background: linear-gradient(135deg, #f97316, #facc15);
      color: #111827;
      font-weight: 600;
      cursor: pointer;
    }

    .btn-ghost {
      padding: 8px 16px;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.8);
      background: transparent;
      font-size: 12px;
      cursor: pointer;
    }

    .hero-side {
      display: grid;
      gap: 10px;
      font-size: 12px;
    }

    .side-card {
      border-radius: 14px;
      padding: 10px 11px;
      background: rgba(15, 23, 42, 0.96);
      border: 1px solid rgba(55, 65, 81, 0.9);
    }

    .side-title {
      font-size: 13px;
      margin-bottom: 4px;
      font-weight: 600;
    }

    .side-meta {
      font-size: 12px;
      color: #9ca3af;
    }

    .score-big {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 4px;
    }

    main {
      display: grid;
      grid-template-columns: 3fr 2.2fr;
      gap: 18px;
    }

    @media (max-width: 950px) {
      main {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    section {
      margin-bottom: 14px;
    }

    h2 {
      font-size: 20px;
      margin-bottom: 6px;
    }

    .lead {
      font-size: 13px;
      color: #9ca3af;
      margin-bottom: 8px;
    }

    ul {
      list-style: none;
      font-size: 13px;
    }

    li {
      display: flex;
      gap: 8px;
      margin-bottom: 7px;
    }

    .tick {
      margin-top: 6px;
      width: 8px;
      height: 8px;
      border-radius: 2px;
      background: #22c55e;
      flex-shrink: 0;
    }

    .warn {
      margin-top: 6px;
      width: 8px;
      height: 8px;
      border-radius: 2px;
      background: #f97316;
      flex-shrink: 0;
    }

    .card {
      border-radius: 14px;
      padding: 10px 11px;
      background: rgba(15, 23, 42, 0.96);
      border: 1px solid rgba(55, 65, 81, 0.9);
      margin-bottom: 10px;
      font-size: 13px;
    }

    .card h3 {
      font-size: 14px;
      margin-bottom: 5px;
    }

    .rg {
      font-size: 12px;
      color: #9ca3af;
      border-radius: 12px;
      border: 1px dashed rgba(148, 163, 184, 0.9);
      padding: 9px 11px;
      margin-top: 8px;
    }

    footer {
      margin-top: 18px;
      padding-top: 10px;
      border-top: 1px solid rgba(31, 41, 55, 0.9);
      font-size: 11px;
      color: #6b7280;
    }
