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

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

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

    .wrap {
      max-width: 1020px;
      margin: 0 auto;
      padding: 18px 14px 28px;
    }

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

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

    .chip {
      font-size: 11px;
      padding: 4px 10px;
      border-radius: 999px;
      background: #e0f2fe;
      color: #1d4ed8;
    }

    .hero {
      background: #ffffff;
      border-radius: 18px;
      border: 1px solid #e5e7eb;
      box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
      padding: 20px 20px 18px;
      margin-bottom: 18px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 3fr 2fr;
      gap: 18px;
    }

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

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

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

    .lead {
      font-size: 14px;
      color: #4b5563;
      margin-bottom: 14px;
    }

    .tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 14px;
    }

    .tag {
      padding: 4px 9px;
      border-radius: 999px;
      border: 1px solid #e5e7eb;
      font-size: 11px;
      color: #4b5563;
      background: #f9fafb;
    }

    .btn-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .btn-main {
      border-radius: 999px;
      border: none;
      padding: 9px 20px;
      background: #111827;
      color: #f9fafb;
      font-size: 13px;
      cursor: pointer;
    }

    .btn-sec {
      border-radius: 999px;
      padding: 8px 16px;
      border: 1px solid #d1d5db;
      background: #ffffff;
      font-size: 13px;
      cursor: pointer;
    }

    .score-box {
      padding: 12px 14px;
      border-radius: 14px;
      background: #eff6ff;
      border: 1px solid #dbeafe;
      font-size: 13px;
    }

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

    .score-note {
      font-size: 13px;
      color: #1f2937;
    }

    h2 {
      font-size: 22px;
      margin: 22px 0 8px;
    }

    p {
      font-size: 14px;
      color: #374151;
      margin-bottom: 10px;
    }

    section.block {
      background: #ffffff;
      border-radius: 16px;
      border: 1px solid #e5e7eb;
      padding: 16px 18px 18px;
      margin-bottom: 12px;
    }

    .grid-2 {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

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

    ul {
      list-style: none;
      padding-left: 0;
      font-size: 14px;
      color: #374151;
    }

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

    .dot {
      margin-top: 8px;
      width: 6px;
      height: 6px;
      border-radius: 999px;
      background: #111827;
      flex-shrink: 0;
    }

    .table {
      width: 100%;
      border-collapse: collapse;
      font-size: 13px;
      margin-top: 6px;
    }

    .table th,
    .table td {
      padding: 7px 6px;
      border-bottom: 1px solid #e5e7eb;
      text-align: left;
    }

    .table th {
      font-size: 12px;
      color: #6b7280;
    }

    .note {
      font-size: 12px;
      color: #6b7280;
      margin-top: 8px;
    }

    footer {
      margin-top: 12px;
      padding-top: 10px;
      border-top: 1px solid #e5e7eb;
      font-size: 11px;
      color: #6b7280;
    }
