    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    :root {
      --bg: #050508;
      --surface: #0c0c12;
      --surface-2: #111118;
      --border: rgba(255,255,255,0.06);
      --border-hover: rgba(255,255,255,0.12);
      --text-primary: #f0f0f5;
      --text-secondary: rgba(255,255,255,0.72);
      --text-tertiary: rgba(255,255,255,0.45);
      --blue-600: #2563eb;
      --blue-500: #3b82f6;
      --blue-400: #60a5fa;
      --amber-500: #F59E0B;
    }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      background: var(--bg);
      color: var(--text-primary);
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
    }
    a { color: var(--blue-400); text-decoration: none; }
    a:hover { color: var(--blue-500); text-decoration: underline; }
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: rgba(5,5,8,0.8);
      backdrop-filter: blur(24px) saturate(180%);
      border-bottom: 1px solid var(--border);
    }
    .nav-inner {
      max-width: 1200px; margin: 0 auto; padding: 0 32px;
      display: flex; align-items: center; justify-content: space-between;
      height: 64px;
    }
    .nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
    .nav-wordmark {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 20px; font-weight: 800; letter-spacing: -0.8px;
      color: var(--text-primary);
    }
    .nav-wordmark span { color: var(--text-tertiary); font-weight: 300; }
    .nav-actions { display: flex; align-items: center; gap: 4px; }
    .nav-cta {
      background: var(--blue-600); color: #fff;
      padding: 9px 18px; border-radius: 8px;
      font-size: 13px; font-weight: 600; text-decoration: none;
    }
    .nav-cta:hover { background: var(--blue-500); color: #fff; text-decoration: none; }
    .lang-switch { font-size: 12px; font-weight: 600; color: var(--text-tertiary); cursor: pointer; padding: 6px 10px; border-radius: 6px; border: 1px solid var(--border); background: transparent; transition: all 0.2s; margin-left: 8px; }
    .lang-switch:hover { color: var(--text-primary); border-color: var(--border-hover); }
    main {
      max-width: 760px; margin: 0 auto; padding: 140px 32px 80px;
    }
    .eyebrow {
      display: inline-block;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 12px; font-weight: 600;
      letter-spacing: 1px; text-transform: uppercase;
      color: var(--blue-400);
      padding: 6px 14px;
      border: 1px solid rgba(96,165,250,0.25);
      border-radius: 999px;
      margin-bottom: 24px;
    }
    h1 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: clamp(32px, 5vw, 52px);
      font-weight: 800; letter-spacing: -1.5px;
      line-height: 1.1; margin-bottom: 20px;
    }
    .lede {
      font-size: 20px; color: var(--text-secondary);
      margin-bottom: 48px; line-height: 1.6;
    }
    article h2 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 28px; font-weight: 700;
      letter-spacing: -0.5px;
      margin-top: 56px; margin-bottom: 18px;
    }
    article p {
      color: var(--text-secondary);
      font-size: 17px;
      margin-bottom: 20px;
    }
    article ul {
      list-style: none;
      margin: 20px 0 32px;
      padding: 0;
    }
    article ul li {
      color: var(--text-secondary);
      font-size: 17px;
      padding: 10px 0 10px 28px;
      position: relative;
      border-bottom: 1px solid var(--border);
    }
    article ul li:last-child { border-bottom: none; }
    article ul li::before {
      content: ''; position: absolute; left: 4px; top: 20px;
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--amber-500);
    }
    article ul li strong { color: var(--text-primary); }
    .cta-box {
      margin-top: 64px;
      padding: 40px;
      background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(245,158,11,0.04));
      border: 1px solid rgba(96,165,250,0.18);
      border-radius: 16px;
      text-align: center;
    }
    .cta-box h3 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 24px; font-weight: 700;
      margin-bottom: 12px; letter-spacing: -0.4px;
    }
    .cta-box p { font-size: 16px; margin-bottom: 24px; }
    .cta-btn {
      display: inline-block;
      background: var(--blue-600);
      color: #fff !important;
      padding: 14px 32px;
      border-radius: 10px;
      font-weight: 600;
      font-size: 15px;
      text-decoration: none;
    }
    .cta-btn:hover { background: var(--blue-500); text-decoration: none; }
    .cta-note { display: block; margin-top: 14px; font-size: 13px; color: var(--text-tertiary); }
    .outro {
      margin-top: 72px;
      padding-top: 32px;
      border-top: 1px solid var(--border);
      text-align: center;
      color: var(--text-tertiary);
      font-style: italic;
      font-size: 15px;
    }
    footer {
      border-top: 1px solid var(--border);
      padding: 32px;
      text-align: center;
      color: var(--text-tertiary);
      font-size: 13px;
    }
    footer a { color: var(--text-tertiary); margin: 0 12px; }
