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

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: radial-gradient(circle at top, #020617 0, #020617 55%, #020012 100%);
      color: #e5e7eb;
      line-height: 1.8;
    }

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

    .page {
      min-height: 100vh;
      display: flex;
      flex-direction: column
    }

    .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 16px
    }

    header {
      position: sticky;
      top: 0;
      z-index: 20;
      background: rgba(15, 23, 42, .96);
      border-bottom: 1px solid rgba(148, 163, 184, .35);
      backdrop-filter: blur(18px);
    }

    .nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 14px;
      padding: 12px 0;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: #a5b4fc;
    }

    .logo-dot {
      width: 22px;
      height: 22px;
      border-radius: 999px;
      background: conic-gradient(from 120deg, #22c55e, #22c55e, #16a34a, #22c55e);
      box-shadow: 0 0 20px rgba(34, 197, 94, .8);
    }

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

    .nav-links a {
      padding-bottom: 3px;
      border-bottom: 1px solid transparent
    }

    .nav-links a:hover {
      border-color: rgba(148, 163, 184, .9)
    }

    main {
      flex: 1
    }

    .hero {
      padding: 32px 0 26px
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
      gap: 26px;
      align-items: center;
    }

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

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

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

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

    .h1-highlight {
      color: #facc15
    }

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

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

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

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

    .btn-primary {
      border-radius: 999px;
      border: none;
      padding: 9px 20px;
      font-size: 13px;
      font-weight: 600;
      background: linear-gradient(135deg, #22c55e, #a3e635);
      color: #020617;
      cursor: pointer;
    }

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

    .hero-card {
      border-radius: 18px;
      padding: 16px;
      background: radial-gradient(circle at top, #0f172a, #020617 70%);
      border: 1px solid rgba(148, 163, 184, .6);
      box-shadow: 0 22px 60px rgba(0, 0, 0, .9);
      font-size: 12px;
    }

    .hero-card-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 10px;
    }

    .hero-card-title {
      font-size: 14px;
      font-weight: 600
    }

    .score-pill {
      padding: 4px 9px;
      border-radius: 999px;
      background: rgba(34, 197, 94, .18);
      color: #bbf7d0;
      font-size: 12px;
    }

    .score-pill strong {
      font-size: 14px
    }

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

    .hc-item {
      padding: 8px;
      border-radius: 12px;
      background: rgba(15, 23, 42, .96);
      border: 1px solid rgba(31, 41, 55, .85);
    }

    .hc-label {
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: .16em;
      color: #9ca3af;
      margin-bottom: 3px;
    }

    .hc-value {
      font-size: 13px
    }

    section {
      padding: 18px 0 16px
    }

    section+section {
      border-top: 1px solid rgba(22, 163, 74, .4)
    }

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

    .section-sub {
      font-size: 13px;
      color: #9ca3af;
      margin-bottom: 12px;
      max-width: 620px;
    }

    .grid-2 {
      display: grid;
      grid-template-columns: minmax(0, 2.1fr) minmax(0, 2fr);
      gap: 24px;
    }

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

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

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

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

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

    @media(max-width:720px) {
      .pros-cons {
        grid-template-columns: minmax(0, 1fr)
      }
    }

    .card {
      border-radius: 16px;
      padding: 12px 13px;
      background: rgba(15, 23, 42, .96);
      border: 1px solid rgba(31, 41, 55, .9);
      font-size: 13px;
    }

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

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

    footer {
      border-top: 1px solid rgba(22, 163, 74, .4);
      padding: 14px 16px 20px;
      font-size: 11px;
      color: #9ca3af;
      background: rgba(2, 6, 23, .98);
    }

    .footer-row {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 10px;
    }
