    :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; }
    section:first-of-type { padding-top: 72px; }

    /* Hero (cloned from public/index.html) */
    .hero {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      color: var(--bg);
      text-align: center;
      padding: 80px 24px 64px;
      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: 92px; width: auto; filter: drop-shadow(0 6px 20px rgba(0,0,0,0.18)); }
    .hero h1 {
      font-size: clamp(2.2rem, 5vw, 3.4rem);
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-bottom: 16px;
    }
    .hero .tagline {
      font-size: clamp(1rem, 2.2vw, 1.25rem);
      max-width: 600px;
      margin: 0 auto;
      opacity: 0.92;
      font-weight: 400;
    }
    .hero-nav {
      margin-top: 32px;
      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 headers (cloned from public/index.html) */
    .section-eyebrow {
      color: var(--primary);
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 12px;
      text-align: center;
    }
    .section-title {
      font-size: clamp(1.8rem, 4vw, 2.4rem);
      font-weight: 700;
      letter-spacing: -0.01em;
      text-align: center;
      margin-bottom: 16px;
    }
    .section-lead {
      font-size: 1.1rem;
      color: var(--muted);
      text-align: center;
      max-width: 640px;
      margin: 0 auto 40px;
    }
    .section-alt { background: #F4EFE7; }

    /* FAQ accordion (clean cards inspired by community-guidelines) */
    .faq-list { max-width: 760px; margin: 0 auto; }
    .faq-item {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      margin-bottom: 12px;
      overflow: hidden;
      transition: box-shadow 0.2s ease;
      scroll-margin-top: 24px;
    }
    .faq-item:hover { box-shadow: 0 4px 12px rgba(106, 27, 154, 0.08); }
    .faq-item:target { box-shadow: 0 0 0 2px var(--primary); }
    .faq-item summary {
      padding: 20px 56px 20px 24px;
      cursor: pointer;
      font-weight: 600;
      font-size: 1.05rem;
      color: var(--text);
      list-style: none;
      position: relative;
      transition: color 0.15s;
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary::after {
      content: "+";
      position: absolute;
      right: 24px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 1.6rem;
      color: var(--primary);
      font-weight: 300;
      transition: transform 0.2s;
      line-height: 1;
    }
    .faq-item[open] summary::after { content: "-"; }
    .faq-item[open] summary { border-bottom: 1px solid var(--border); color: var(--primary); }
    .faq-answer { padding: 20px 24px; color: var(--text); font-size: 1rem; }
    .faq-answer p { margin-bottom: 12px; }
    .faq-answer p:last-child { margin-bottom: 0; }
    .faq-answer ul, .faq-answer ol { margin: 8px 0 12px 24px; }
    .faq-answer li { margin-bottom: 6px; }
    .faq-answer strong { color: var(--text); font-weight: 600; }
    .faq-answer .note {
      margin-top: 14px;
      padding: 12px 14px;
      background: #F4EFE7;
      border-left: 3px solid var(--primary);
      border-radius: 8px;
      font-size: 0.95rem;
      color: var(--text);
    }

    /* Safety callout */
    .safety-callout {
      max-width: 760px;
      margin: 0 auto 24px;
      padding: 18px 20px;
      background: #FDECEC;
      border: 1px solid #F3B9B9;
      border-radius: var(--radius);
      color: #7A1212;
      font-size: 0.98rem;
    }
    .safety-callout strong { color: #7A1212; }
    .safety-callout a { color: #7A1212; text-decoration: underline; font-weight: 600; }

    /* Help CTA section (gradient like contact section in index.html) */
    .help-cta {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      color: var(--bg);
      text-align: center;
    }
    .help-cta h2 { color: var(--bg); }
    .help-cta .section-eyebrow { color: rgba(250, 247, 242, 0.85); }
    .help-cta .section-lead { color: rgba(250, 247, 242, 0.85); margin-bottom: 32px; }
    .cta-btn {
      display: inline-block;
      background: var(--bg);
      color: var(--primary);
      padding: 14px 32px;
      border-radius: 999px;
      font-weight: 600;
      transition: transform 0.15s ease;
    }
    .cta-btn:hover { transform: translateY(-2px); text-decoration: none; }
    .help-also {
      margin-top: 28px;
      color: rgba(250, 247, 242, 0.78);
      font-size: 0.92rem;
    }
    .help-also a { color: var(--bg); text-decoration: underline; }

    /* Contact form */
    .contact-form {
      max-width: 520px;
      margin: 0 auto;
      text-align: left;
      display: grid;
      gap: 12px;
    }
    .contact-form label {
      display: block;
      font-size: 0.88rem;
      color: rgba(250, 247, 242, 0.9);
      margin-bottom: 4px;
      font-weight: 500;
    }
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
      width: 100%;
      padding: 12px 14px;
      border-radius: 10px;
      border: 1px solid rgba(250, 247, 242, 0.25);
      background: rgba(250, 247, 242, 0.95);
      color: #1a1a1a;
      font-size: 1rem;
      font-family: inherit;
      box-sizing: border-box;
    }
    .contact-form textarea {
      min-height: 130px;
      resize: vertical;
    }
    .contact-form input:focus,
    .contact-form select:focus,
    .contact-form textarea:focus {
      outline: 2px solid var(--bg);
      outline-offset: 1px;
    }
    .contact-form .honeypot {
      position: absolute;
      left: -10000px;
      width: 1px;
      height: 1px;
      overflow: hidden;
    }
    .contact-form button {
      background: var(--bg);
      color: var(--primary);
      padding: 14px 32px;
      border-radius: 999px;
      font-weight: 600;
      font-size: 1rem;
      border: none;
      cursor: pointer;
      transition: transform 0.15s ease;
      justify-self: center;
      margin-top: 4px;
    }
    .contact-form button:hover { transform: translateY(-2px); }
    .sent-banner {
      max-width: 520px;
      margin: 0 auto 24px;
      padding: 14px 18px;
      background: rgba(250, 247, 242, 0.15);
      border: 1px solid rgba(250, 247, 242, 0.35);
      border-radius: 12px;
      color: var(--bg);
    }

    /* Footer (cloned from public/index.html) */
    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: 56px 24px 48px; }
      .faq-item summary { padding: 16px 48px 16px 20px; font-size: 1rem; }
      .faq-answer { padding: 16px 20px; }
    }
  

/* state (extracted from inline style= / JS .style.display) */
.is-hidden { display: none; }
