:root {
      --ink: #15161b;
      --ink-soft: #3a3d49;
      --bg: #ffffff;
      --bg-soft: #f6f5f1;
      --gold: #8668f2;
      --gold-2: #a78bfa;
      --gold-soft: #ece7fd;
      --gold-deep: #5b43c4;
      --muted: #5c5f6b;
      --muted-2: #7a7e8a;
      --line: rgba(255, 255, 255, 0.14);
      --btn-gold-text: #ffffff;
      --maxw: 1200px;
      --shadow: 0 18px 50px -22px rgba(20, 22, 30, 0.28);
    }

    html.dark body,
    body.dark-mode,
    body.dark-theme,
    body.dark {
      --ink: #ededf2;
      --ink-soft: #a5a9b8;
      --bg: #0f1015;
      --bg-soft: #181920;
      --gold: #9f83ff;
      --gold-2: #a78bfa;
      --gold-soft: #2c244c;
      --gold-deep: #ece7fd;
      --muted: #9ca3af;
      --muted-2: #6b7280;
      --line: rgba(255, 255, 255, 0.12);
      --btn-gold-text: #0f1015;
      --shadow: 0 18px 50px -22px rgba(0, 0, 0, 0.6);
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: Inter, system-ui, sans-serif;
      color: var(--ink);
      background: var(--bg);
      line-height: 1.6;
      transition: background-color 0.3s ease, color 0.3s ease;
    }
    h1, h2, h3, h4 {
      margin: 0 0 0.4em;
      font-family: Sora, Inter, sans-serif;
      line-height: 1.1;
      letter-spacing: -0.02em;
    }
    p { margin: 0 0 1rem; }
    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }

    .wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
    .section { padding: 88px 0; }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      padding: 7px 14px;
      border: 1px solid var(--gold);
      border-radius: 999px;
      background: var(--gold-soft);
      color: var(--gold-deep);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }
    .lead { color: var(--muted); font-size: 1.12rem; }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      padding: 15px 26px;
      border: 2px solid transparent;
      border-radius: 999px;
      font-size: 1rem;
      font-weight: 700;
      line-height: 1;
      cursor: pointer;
      white-space: nowrap;
      transition: transform .15s, background .2s, color .2s;
    }
    .btn--gold {
      background: var(--gold);
      color: var(--btn-gold-text);
    }
    .btn--gold:hover { background: var(--gold-2); transform: translateY(-2px); }
    .btn--ghost {
      background: transparent;
      color: var(--ink);
      border-color: var(--ink);
    }
    .btn--ghost:hover { background: var(--ink); color: var(--bg); }

    .subhero {
      overflow: hidden;
      padding: 56px 0 0;
      text-align: center;
      background: radial-gradient(1200px 500px at 50% -200px, color-mix(in srgb, var(--gold) 16%, transparent), transparent 70%), var(--bg);
    }
    .subhero h1 {
      margin: 16px 0 14px;
      font-size: clamp(2.3rem, 5.2vw, 3.7rem);
      font-weight: 800;
    }
    .subhero .lead { max-width: 620px; margin: 0 auto 26px; font-size: 1.16rem; }

    .contact-stack {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
    }
    .contact-visual {
      position: relative;
      width: 100%;
      max-width: 1000px;
      margin: -56px auto 0;
      padding-top: 0;
    }
    .portal-illustration {
      width: 100%;
      height: auto;
      filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.3));
    }
    .beehiiv-window {
      position: absolute;
      top: 23%;
      left: 22%;
      display: flex;
      justify-content: center;
      width: 35%;
      height: 90%;
      overflow-x: hidden;
      overflow-y: auto;
    }
    .beehiiv-form-host {
      display: flex;
      justify-content: center;
      width: 100%;
      height: 100%;
      transform-origin: top center;
    }
    .mascot-illustration {
      position: absolute;
      right: 23%;
      bottom: 2%;
      width: 24%;
      height: auto;
      filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.5));
      pointer-events: none;
    }

    .contact-info-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 64px 48px;
      width: 100%;
      margin-top: -6px;
      padding: 0 16px;
    }
    .cinfo__item {
      display: flex;
      gap: 14px;
      align-items: flex-start;
    }
    .cinfo__ic {
      display: grid;
      width: 46px;
      height: 46px;
      place-items: center;
      border-radius: 12px;
      background: var(--gold-soft);
      font-size: 1.2rem;
      flex: none;
    }
    .cinfo__item h3 { margin: 0 0 3px; font-size: 1.02rem; }
    .cinfo__item p { margin: 0; color: var(--muted); font-size: .93rem; line-height: 1.5; }
    .cinfo__item a { color: var(--gold-2); }
    .cinfo__item a:hover { color: var(--gold); }

    @media (max-width: 960px) {
      .subhero {
        padding-top: 48px;
      }
    }

    @media (max-width: 760px) {
      .contact-visual { display: none; }
      .contact-info-grid { grid-template-columns: 1fr; gap: 36px; padding: 0; }
      .beehiiv-window { top: 20%; left: 16%; width: 48%; height: 82%; }
      .mascot-illustration { right: 8%; bottom: 6%; width: 28%; }
    }

    @media (max-width: 560px) {
      .wrap { padding: 0 18px; }
      .section { padding: 60px 0; }
      .subhero {
        padding-top: 40px;
        padding-bottom: 0;
      }
      .contact-stack { gap: 30px; }
      .beehiiv-window { top: 18%; left: 14%; width: 52%; height: 76%; }
      .mascot-illustration { right: 2%; bottom: 8%; width: 32%; }
    }
