* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      :root {
        --bg: #0c0620;
        --bg-card: rgba(60, 30, 120, 0.12);
        --border: rgba(180, 136, 255, 0.12);
        --text: #ede8f5;
        --text-muted: #8a80a8;
        --accent: #b488ff;
      }
      /* Font loading optimization */
      @font-face {
        font-family: "Sora";
        font-style: normal;
        font-weight: 300;
        font-display: swap;
        src:
          local("Sora Light"),
          local("Sora-Light"),
          url(https://fonts.gstatic.com/s/sora/v10/xMQbuFFYT72XzQspDre2.woff2)
            format("woff2");
      }
      @font-face {
        font-family: "Sora";
        font-style: normal;
        font-weight: 400;
        font-display: swap;
        src:
          local("Sora Regular"),
          local("Sora-Regular"),
          url(https://fonts.gstatic.com/s/sora/v10/xMQbuFFYT72XzQUpDre2.woff2)
            format("woff2");
      }
      @font-face {
        font-family: "Sora";
        font-style: normal;
        font-weight: 500;
        font-display: swap;
        src:
          local("Sora Medium"),
          local("Sora-Medium"),
          url(https://fonts.gstatic.com/s/sora/v10/xMQbuFFYT72XzQUbDre2.woff2)
            format("woff2");
      }
      @font-face {
        font-family: "Sora";
        font-style: normal;
        font-weight: 600;
        font-display: swap;
        src:
          local("Sora SemiBold"),
          local("Sora-SemiBold"),
          url(https://fonts.gstatic.com/s/sora/v10/xMQbuFFYT72XzQUyDre2.woff2)
            format("woff2");
      }
      @font-face {
        font-family: "Cormorant Garamond";
        font-style: normal;
        font-weight: 400;
        font-display: swap;
        src:
          local("Cormorant Garamond"),
          local("CormorantGaramond-Regular"),
          url(https://fonts.gstatic.com/s/cormorantgaramond/v10/co3bmX5slCNuHLi8bLeY9MK7whWMhyjorg.woff2)
            format("woff2");
      }
      @font-face {
        font-family: "Cormorant Garamond";
        font-style: italic;
        font-weight: 400;
        font-display: swap;
        src:
          local("Cormorant Garamond Italic"),
          local("CormorantGaramond-Italic"),
          url(https://fonts.gstatic.com/s/cormorantgaramond/v10/co3ZmX5slCNuHLi8bLeY9MK7whWMhyjYrHtK.woff2)
            format("woff2");
      }

      body {
        background: var(--bg);
        color: var(--text);
        font-family:
          "Sora",
          -apple-system,
          BlinkMacSystemFont,
          "Segoe UI",
          Roboto,
          Oxygen,
          Ubuntu,
          Cantarell,
          sans-serif;
        line-height: 1.7;
        min-height: 100vh;
        overflow-x: hidden;
      }

      /* ── Hero ── */
      .hero {
        position: relative;
        padding: 80px 24px 64px;
        text-align: center;
        overflow: hidden;
      }
      .hero-bg {
        position: absolute;
        inset: 0;
        z-index: 0;
      }
      .hero-bg::before {
        content: "";
        position: absolute;
        top: -40%;
        left: -20%;
        width: 140%;
        height: 140%;
        background:
          radial-gradient(
            ellipse at 30% 20%,
            rgba(120, 50, 220, 0.25) 0%,
            transparent 60%
          ),
          radial-gradient(
            ellipse at 70% 60%,
            rgba(160, 70, 240, 0.15) 0%,
            transparent 50%
          ),
          radial-gradient(
            ellipse at 50% 80%,
            rgba(200, 150, 60, 0.05) 0%,
            transparent 40%
          );
      }
      .hero-content {
        position: relative;
        z-index: 1;
        max-width: 600px;
        margin: 0 auto;
      }
      .hero-wordmark {
        font-size: 14px;
        letter-spacing: 5px;
        color: var(--accent);
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 32px;
        opacity: 0.8;
      }
      .hero-headline {
        font-family:
          "Cormorant Garamond", Georgia, "Times New Roman", Times, serif;
        font-size: clamp(36px, 7vw, 56px);
        font-weight: 400;
        line-height: 1.15;
        margin-bottom: 24px;
        color: var(--text);
        font-style: italic;
      }
      .hero-sub {
        font-size: 16px;
        color: var(--text-muted);
        max-width: 440px;
        margin: 0 auto 36px;
        line-height: 1.7;
      }
      .hero-cta {
        display: inline-block;
        padding: 16px 36px;
        border-radius: 14px;
        background: linear-gradient(135deg, #7c3aed, #a855f7);
        color: white;
        font-size: 15px;
        font-weight: 500;
        text-decoration: none;
        font-family: "Sora", sans-serif;
        transition: all 0.2s;
        box-shadow: 0 4px 20px rgba(140, 80, 255, 0.3);
      }
      .hero-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 30px rgba(140, 80, 255, 0.4);
        text-decoration: none;
      }
      .hero-note {
        font-size: 12px;
        color: var(--text-muted);
        margin-top: 12px;
        opacity: 0.7;
      }
      .hero-badges {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-top: 32px;
        flex-wrap: wrap;
      }
      .hero-badges img {
        height: 44px;
        transition: opacity 0.2s;
      }
      .hero-badges a:hover img {
        opacity: 0.85;
      }

      /* ── Value Props ── */
      .value-section {
        max-width: 680px;
        margin: 0 auto;
        padding: 64px 24px;
      }
      .value-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 24px;
        margin-top: 32px;
      }
      @media (max-width: 600px) {
        .value-grid {
          grid-template-columns: 1fr;
        }
      }
      .value-card {
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 28px 20px;
        text-align: center;
      }
      .value-icon {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: rgba(140, 80, 255, 0.1);
        border: 1px solid rgba(180, 136, 255, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 16px;
        font-size: 22px;
      }
      .value-title {
        font-size: 15px;
        font-weight: 500;
        margin-bottom: 8px;
      }
      .value-desc {
        font-size: 13px;
        color: var(--text-muted);
        line-height: 1.6;
      }

      /* ── Audience ── */
      .audience-section {
        max-width: 680px;
        margin: 0 auto;
        padding: 32px 24px 64px;
      }
      .audience-header {
        font-family:
          "Cormorant Garamond", Georgia, "Times New Roman", Times, serif;
        font-size: 28px;
        font-weight: 400;
        text-align: center;
        margin-bottom: 32px;
        font-style: italic;
      }
      .audience-cards {
        display: flex;
        flex-direction: column;
        gap: 16px;
      }
      .audience-card {
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 24px;
        display: flex;
        gap: 20px;
        align-items: flex-start;
      }
      @media (max-width: 500px) {
        .audience-card {
          flex-direction: column;
        }
      }
      .audience-label {
        font-size: 13px;
        font-weight: 600;
        color: var(--accent);
        letter-spacing: 2px;
        text-transform: uppercase;
        white-space: nowrap;
        padding-top: 2px;
      }
      .audience-text {
        font-size: 14px;
        color: var(--text-muted);
        line-height: 1.7;
      }

      /* ── Divider ── */
      .divider {
        width: 40px;
        height: 1px;
        background: var(--accent);
        margin: 0 auto;
        opacity: 0.3;
      }

      /* ── Container for legal sections ── */
      .container {
        max-width: 680px;
        margin: 0 auto;
        padding: 0 24px 80px;
      }
      nav {
        display: flex;
        flex-wrap: wrap;
        gap: 6px 16px;
        margin-bottom: 48px;
        padding: 24px 0;
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
      }
      nav a {
        color: var(--text-muted);
        text-decoration: none;
        font-size: 13px;
        transition: color 0.2s;
      }
      nav a:hover {
        color: var(--accent);
      }
      h2 {
        font-size: 22px;
        font-weight: 500;
        margin: 48px 0 16px;
        color: var(--text);
      }
      h2:first-of-type {
        margin-top: 0;
      }
      h3 {
        font-size: 16px;
        font-weight: 500;
        margin: 28px 0 8px;
        color: var(--text);
      }
      p,
      li {
        font-size: 14px;
        color: var(--text-muted);
        margin-bottom: 12px;
      }
      ul {
        padding-left: 20px;
        margin-bottom: 16px;
      }
      li {
        margin-bottom: 6px;
      }
      a {
        color: var(--accent);
        text-decoration: none;
      }
      a:hover {
        text-decoration: underline;
      }
      .section {
        padding: 32px 0;
        border-bottom: 1px solid var(--border);
      }
      .section:last-child {
        border-bottom: none;
      }
      .faq-item {
        margin-bottom: 20px;
      }
      .faq-q {
        font-size: 14px;
        font-weight: 500;
        color: var(--text);
        margin-bottom: 6px;
      }
      .faq-a {
        font-size: 14px;
        color: var(--text-muted);
      }
      .contact-box {
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 24px;
        margin-top: 16px;
      }
      .contact-box p {
        margin-bottom: 8px;
      }
      .footer {
        margin-top: 48px;
        padding-top: 24px;
        border-top: 1px solid var(--border);
        font-size: 12px;
        color: var(--text-muted);
        text-align: center;
      }