    :root {
      --primary: #6B21A8;
      --primary-dark: #4A0E72;
      --bg: #FAF7F2;
      --surface: #FFFFFF;
      --text: #0F0F12;
      --muted: #6B7280;
      --border: #E5E0D8;
      --radius: 16px;
      --max-w: 1080px;
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { color: var(--primary); text-decoration: none; }
    a:hover { text-decoration: underline; }
    .container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
    section { padding: 64px 0; }

    .hero {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      color: var(--bg);
      text-align: center;
      padding: 72px 24px 56px;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: "";
      position: absolute;
      top: -45%;
      left: 50%;
      transform: translateX(-50%);
      width: 680px;
      height: 680px;
      background: radial-gradient(circle, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0) 62%);
      pointer-events: none;
    }
    .hero > * { position: relative; z-index: 1; }
    .hero .mark { display: block; margin: 0 auto 22px; height: 84px; width: auto; filter: drop-shadow(0 6px 20px rgba(0,0,0,0.18)); }
    .hero h1 {
      font-size: clamp(2rem, 5vw, 3rem);
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-bottom: 14px;
    }
    .hero .tagline {
      font-size: clamp(1rem, 2.2vw, 1.2rem);
      max-width: 620px;
      margin: 0 auto;
      opacity: 0.92;
      font-weight: 400;
    }
    .hero-nav {
      margin-top: 30px;
      display: flex;
      justify-content: center;
      gap: 8px;
      flex-wrap: wrap;
    }
    .hero-nav a {
      color: var(--bg);
      background: rgba(250, 247, 242, 0.12);
      border: 1px solid rgba(250, 247, 242, 0.25);
      padding: 8px 16px;
      border-radius: 999px;
      font-size: 0.85rem;
      font-weight: 500;
    }
    .hero-nav a:hover { background: rgba(250, 247, 242, 0.22); text-decoration: none; }

    .section-eyebrow {
      color: var(--primary);
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }
    .section-title {
      font-size: clamp(1.6rem, 4vw, 2.1rem);
      font-weight: 700;
      letter-spacing: -0.01em;
      margin-bottom: 16px;
    }
    .content { max-width: 760px; margin: 0 auto; }
    .card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px 28px;
      margin-bottom: 20px;
    }
    .card h2 { font-size: 1.25rem; font-weight: 600; margin-bottom: 10px; }
    .card p { margin-bottom: 12px; color: var(--text); }
    .card p:last-child { margin-bottom: 0; }
    .card ul, .card ol { margin: 8px 0 12px 22px; }
    .card li { margin-bottom: 8px; }
    .card strong { font-weight: 600; }
    .note {
      background: rgba(106, 27, 154, 0.05);
      border: 1px solid rgba(106, 27, 154, 0.18);
      border-radius: 12px;
      padding: 16px 18px;
      color: var(--muted);
      font-size: 0.95rem;
      margin-top: 8px;
    }

    footer {
      background: #0F0F12;
      color: rgba(250, 247, 242, 0.7);
      padding: 40px 24px;
      text-align: center;
      font-size: 0.9rem;
    }
    footer .footer-links { margin-bottom: 16px; }
    footer .footer-links a { color: rgba(250, 247, 242, 0.85); margin: 0 12px; }
    footer .footer-links a:hover { color: var(--bg); }
    footer .copy { color: rgba(250, 247, 242, 0.5); }

    @media (max-width: 600px) {
      section { padding: 48px 0; }
      .hero { padding: 52px 24px 44px; }
      .card { padding: 22px 20px; }
    }
  
