   :root {
      --bg: #050814;
      --card-bg: rgba(10, 13, 25, 0.98);
      --accent: #0071e3;
      --accent-soft: rgba(0, 113, 227, 0.18);
      --text-main: #f5f5f7;
      --text-muted: #a1a1aa;
      --border-subtle: rgba(255,255,255,0.06);
      --radius-lg: 22px;
      --shadow-soft: 0 18px 45px rgba(0,0,0,0.65);
    }

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

    body {
      font-family: 'Fredoka', system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
      background:
        radial-gradient(circle at top, #12172a, #050814 55%) fixed;
      color: var(--text-main);
      -webkit-font-smoothing: antialiased;
      min-height: 100vh;
    }

    .page {
      max-width: 1040px;
      margin: 0 auto;
      padding: 32px 18px 60px;
    }

    header {
      margin-bottom: 28px;
    }

    .logo-wordmark {
      font-weight: 600;
      letter-spacing: .14em;
      text-transform: uppercase;
      font-size: 11px;
      color: var(--text-muted);
    }

    .headline {
      margin-top: 10px;
      font-size: clamp(30px, 4vw, 42px);
      font-weight: 700;
      letter-spacing: -.04em;
    }

    .headline span {
      background: linear-gradient(120deg, #4f9cff, #7a5cff, #f97316);
      -webkit-background-clip: text;
      color: transparent;
    }

    .subtitle {
      margin-top: 10px;
      max-width: 520px;
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .header-row-bottom {
      margin-top: 14px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      flex-wrap: wrap;
    }

    .cta-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 12px;
      border-radius: 999px;
      background: rgba(15,23,42,0.95);
      border: 1px solid rgba(148,163,184,0.28);
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: .14em;
      color: var(--text-muted);
    }

    .cta-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #22c55e;
      box-shadow: 0 0 0 6px rgba(34,197,94,0.26);
    }

    .articles-wrap {
      margin-top: 26px;
    }

    .articles-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 18px;
    }

    .article-card {
      position: relative;
      border-radius: var(--radius-lg);
      background: var(--card-bg);
      border: 1px solid var(--border-subtle);
      box-shadow: var(--shadow-soft);
      padding: 18px 18px 16px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      text-decoration: none;
      color: inherit;
      transition:
        transform 150ms ease-out,
        box-shadow 150ms ease-out,
        border-color 150ms ease-out,
        background 150ms ease-out;
    }

    .article-card::before {
      content: "";
      position: absolute;
      inset: -25%;
      background: radial-gradient(circle at top left, rgba(80,150,255,0.18), transparent 60%);
      opacity: 0;
      pointer-events: none;
      transition: opacity 180ms ease-out;
    }

    .article-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 24px 55px rgba(0,0,0,0.8);
      border-color: rgba(148,163,184,0.5);
      background: radial-gradient(circle at top left, rgba(37,99,235,0.16), rgba(10,13,25,0.98));
    }

    .article-card:hover::before {
      opacity: 1;
    }

    .article-label {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: .16em;
      color: var(--accent);
    }

    .article-title {
      font-size: 17px;
      font-weight: 600;
      letter-spacing: -.02em;
    }

    .article-meta {
      font-size: 11px;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
    }

    .meta-dot {
      width: 3px;
      height: 3px;
      border-radius: 999px;
      background: rgba(148,163,184,0.9);
    }

    .article-excerpt {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.5;
      max-height: 4.6em;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .article-more {
      margin-top: 6px;
      font-size: 12px;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      color: var(--accent);
    }

    .article-more span.chevron {
      font-size: 14px;
      transform: translateX(0);
      transition: transform 150ms ease-out;
    }

    .article-card:hover .article-more span.chevron {
      transform: translateX(2px);
    }

    .latest-inline {
      margin-top: 24px;
      font-size: 12px;
      color: var(--text-muted);
      display: flex;
      justify-content: flex-end;
      gap: 6px;
      flex-wrap: wrap;
    }

    .latest-inline a {
      color: var(--accent);
      text-decoration: none;
    }

    .latest-inline a:hover {
      text-decoration: underline;
    }

    footer {
      margin-top: 32px;
      font-size: 11px;
      color: var(--text-muted);
      border-top: 1px solid rgba(31,41,55,0.9);
      padding-top: 14px;
      display: flex;
      justify-content: space-between;
      gap: 10px;
      flex-wrap: wrap;
    }

    @media (max-width: 640px) {
      .page {
        padding-top: 26px;
      }
      .article-card {
        padding: 16px 15px 14px;
      }
    }