    :root {
      color-scheme: dark;
      --bg: #05080d;
      --surface: rgba(12, 18, 28, 0.94);
      --surface-2: rgba(21, 29, 42, 0.94);
      --ink: #f3f7ff;
      --muted: #aeb9ca;
      --soft: #dbe7f6;
      --line: rgba(190, 204, 225, 0.16);
      --line-strong: rgba(218, 229, 246, 0.28);
      --green: #4be09a;
      --amber: #f3c36d;
      --blue: #9cc7f3;
      --plum: #d6b5ff;
      --shadow: 0 24px 54px rgba(0, 0, 0, 0.35);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    html,
    body {
      margin: 0;
      padding: 0;
    }

    body {
      min-height: 100vh;
      background: var(--bg);
      color: var(--ink);
      line-height: 1.55;
    }

    a {
      color: inherit;
    }

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    .skip-link {
      position: absolute;
      left: 14px;
      top: -60px;
      z-index: 100;
      padding: 10px 12px;
      border-radius: 8px;
      background: #ffffff;
      color: #07101d;
      font-weight: 800;
    }

    .skip-link:focus {
      top: 12px;
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 40;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 16px;
      align-items: center;
      min-height: 58px;
      padding: 10px 22px;
      border-bottom: 1px solid rgba(218, 229, 246, 0.12);
      background: rgba(4, 8, 13, 0.9);
      backdrop-filter: blur(14px);
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      width: fit-content;
      color: #ffffff;
      font-weight: 900;
      text-decoration: none;
    }

    .brand-mark {
      display: grid;
      place-items: center;
      width: 32px;
      height: 32px;
      border: 1px solid var(--line-strong);
      border-radius: 8px;
      background: #111a27;
      color: var(--green);
      font-weight: 950;
    }

    .topnav {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 8px;
    }

    .topnav a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 36px;
      padding: 7px 10px;
      border: 1px solid transparent;
      border-radius: 8px;
      color: var(--soft);
      font-size: 0.86rem;
      font-weight: 780;
      text-decoration: none;
    }

    .topnav a:hover,
    .topnav a:focus-visible {
      border-color: var(--line);
      background: rgba(255, 255, 255, 0.05);
      color: #ffffff;
      outline: none;
    }

    .hero {
      min-height: min(470px, 54vh);
      display: grid;
      align-items: end;
      position: relative;
      overflow: hidden;
      border-bottom: 1px solid var(--line);
      background:
        linear-gradient(90deg, rgba(4, 8, 13, 0.98) 0%, rgba(4, 8, 13, 0.92) 52%, rgba(4, 8, 13, 0.68) 100%),
        url("/assets/AIAgents/mikesullytools-portal-lcp.webp") center / cover no-repeat;
    }

    .hero-inner {
      width: min(1180px, calc(100% - 32px));
      margin: 0 auto;
      padding: 36px 0 32px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 0 12px;
      border: 1px solid rgba(75, 224, 154, 0.32);
      border-radius: 999px;
      background: rgba(75, 224, 154, 0.12);
      color: #cdfce4;
      font-size: 0.72rem;
      font-weight: 900;
      letter-spacing: 0;
      text-transform: uppercase;
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1 {
      max-width: 16ch;
      margin: 12px 0;
      color: #ffffff;
      font-size: clamp(2.5rem, 5vw, 4.4rem);
      line-height: 1;
      font-weight: 950;
      letter-spacing: 0;
    }

    .hero p {
      max-width: 680px;
      margin-bottom: 14px;
      color: #d4deee;
      font-size: 1rem;
    }

    .hero-actions,
    .section-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 0 18px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 8px;
      background: #eaf2ff;
      color: #07101d;
      font-size: 0.92rem;
      font-weight: 900;
      text-decoration: none;
    }

    .button.secondary {
      padding-inline: 12px;
      border-color: transparent;
      background: transparent;
      color: #dbe7f6;
    }

    .button.secondary:hover,
    .button.secondary:focus-visible {
      border-color: var(--line);
      background: rgba(255, 255, 255, 0.05);
      color: #ffffff;
      outline: none;
    }

    .hero-subhead {
      margin-bottom: 6px !important;
      color: #f8fafc !important;
      font-size: clamp(1.02rem, 2vw, 1.18rem) !important;
      font-weight: 850;
    }

    .hero-detail {
      max-width: 680px;
      margin-top: 0;
      color: #b9c5d6 !important;
      font-size: 0.94rem !important;
    }

    .review-snapshot {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 8px;
      max-width: 900px;
      margin: 16px 0;
    }

    .review-snapshot-card {
      min-width: 0;
      padding: 11px 12px;
      border: 1px solid rgba(190, 204, 225, 0.2);
      border-radius: 10px;
      background: rgba(5, 8, 13, 0.62);
    }

    .review-snapshot-card strong,
    .review-snapshot-card span {
      display: block;
    }

    .review-snapshot-card strong {
      margin-bottom: 3px;
      color: #f8fafc;
      font-size: 0.82rem;
    }

    .review-snapshot-card span {
      color: #aeb9ca;
      font-size: 0.75rem;
      line-height: 1.4;
    }

    .tool-credit-path {
      padding: 0;
      border: 0;
      background: transparent;
      color: #9cdab9;
      font-size: 0.74rem;
      font-weight: 850;
      line-height: 1.35;
    }

    @media (max-width: 900px) {
      .review-snapshot {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 560px) {
      .review-snapshot {
        grid-template-columns: 1fr;
      }
    }

    main {
      width: min(1180px, calc(100% - 32px));
      margin: 0 auto;
      padding: 16px 0 28px;
    }

    .quick-nav {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin: 0 0 10px;
      padding: 6px 0 2px;
      border: 0;
      background: transparent;
    }

    .quick-nav::before {
      display: inline-flex;
      align-items: center;
      padding: 5px 4px 5px 0;
      color: #8794a7;
      content: "Jump to";
      font-size: 0.78rem;
      font-weight: 800;
    }

    .quick-nav a {
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      padding: 5px 8px;
      border: 1px solid transparent;
      border-radius: 7px;
      color: #b9c5d6;
      font-size: 0.82rem;
      font-weight: 760;
      text-decoration: none;
    }

    .quick-nav a:hover,
    .quick-nav a:focus-visible {
      border-color: var(--line);
      background: rgba(255, 255, 255, 0.04);
      color: #ffffff;
      outline: none;
    }

    .section {
      margin-top: 14px;
      padding: 20px;
      border: 1px solid var(--line);
      border-radius: 10px;
      background: rgba(12, 18, 28, 0.76);
      box-shadow: none;
    }

    .section-secondary {
      margin-top: 12px;
      border-color: rgba(190, 204, 225, 0.11);
      background: rgba(10, 15, 23, 0.46);
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 16px;
      align-items: end;
      margin-bottom: 14px;
    }

    .section-kicker {
      display: inline-flex;
      margin-bottom: 8px;
      color: var(--amber);
      font-size: 0.72rem;
      font-weight: 900;
      letter-spacing: 0;
      text-transform: uppercase;
    }

    .section h2 {
      margin-bottom: 6px;
      color: #ffffff;
      font-size: clamp(1.5rem, 2.6vw, 2.15rem);
      line-height: 1.08;
      letter-spacing: 0;
    }

    .section p {
      color: var(--muted);
    }

    .section > .section-head p {
      max-width: 850px;
      margin-bottom: 0;
    }

    .tool-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
    }

    .tool-card {
      display: grid;
      gap: 9px;
      align-content: start;
      min-height: 0;
      padding: 15px;
      border: 1px solid rgba(218, 229, 246, 0.12);
      border-radius: 10px;
      background: rgba(4, 8, 13, 0.34);
    }

    .tool-card h3 {
      margin-bottom: 0;
      color: #ffffff;
      font-size: 1.02rem;
      line-height: 1.2;
    }

    .tool-card p {
      margin-bottom: 0;
      font-size: 0.88rem;
    }

    .tool-tag {
      width: fit-content;
      padding: 3px 7px;
      border-radius: 999px;
      border: 1px solid rgba(156, 199, 243, 0.18);
      color: #bdd5ed;
      background: rgba(156, 199, 243, 0.06);
      font-size: 0.65rem;
      font-weight: 900;
      letter-spacing: 0.03em;
      text-transform: uppercase;
    }

    .tool-fit {
      padding-top: 8px;
      border-top: 1px solid rgba(218, 229, 246, 0.08);
      color: #b7c3d3;
      font-size: 0.82rem;
      line-height: 1.45;
    }

    .tool-card a {
      align-self: end;
      width: fit-content;
      min-height: 34px;
      padding: 7px 10px;
      border: 1px solid rgba(218, 229, 246, 0.2);
      border-radius: 8px;
      color: #ffffff;
      font-size: 0.82rem;
      font-weight: 850;
      text-decoration: none;
    }

    .tool-card a:hover,
    .tool-card a:focus-visible {
      border-color: rgba(75, 224, 154, 0.48);
      background: rgba(75, 224, 154, 0.1);
      outline: none;
    }

    .workflow-grid,
    .conversion-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
    }

    .workflow-card,
    .conversion-card,
    .faq-card {
      padding: 15px;
      border: 1px solid rgba(218, 229, 246, 0.11);
      border-radius: 9px;
      background: rgba(255, 255, 255, 0.025);
    }

    .workflow-card h3,
    .conversion-card h3 {
      margin-bottom: 8px;
      color: #ffffff;
      font-size: 0.98rem;
      line-height: 1.22;
    }

    .workflow-card p,
    .conversion-card p {
      margin-bottom: 0;
      font-size: 0.9rem;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 8px;
    }

    .faq-card {
      padding: 0;
      overflow: hidden;
    }

    .faq-card summary {
      position: relative;
      padding: 13px 46px 13px 15px;
      color: #f3f7ff;
      cursor: pointer;
      font-size: 0.94rem;
      font-weight: 850;
      line-height: 1.3;
      list-style: none;
    }

    .faq-card summary::-webkit-details-marker {
      display: none;
    }

    .faq-card summary::after {
      position: absolute;
      top: 50%;
      right: 15px;
      width: 22px;
      color: #9cc7f3;
      content: "+";
      font-size: 1.15rem;
      line-height: 1;
      text-align: center;
      transform: translateY(-50%);
    }

    .faq-card[open] summary::after {
      content: "−";
    }

    .faq-card summary:hover {
      background: rgba(255, 255, 255, 0.035);
    }

    .faq-card summary:focus-visible {
      background: rgba(255, 255, 255, 0.05);
      outline: 2px solid rgba(156, 199, 243, 0.5);
      outline-offset: -2px;
    }

    .faq-card p {
      max-width: 900px;
      margin: 0;
      padding: 0 15px 14px;
    }

    .workflow-card a,
    .conversion-card a {
      color: #ffffff;
      font-weight: 850;
      text-underline-offset: 3px;
    }

    .conversion-card a {
      display: inline-flex;
      margin: 4px 12px 0 0;
    }

    .note-band {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 16px;
      align-items: center;
      margin-top: 12px;
      padding: 14px;
      border: 1px solid rgba(75, 224, 154, 0.16);
      border-radius: 8px;
      background: rgba(75, 224, 154, 0.05);
    }

    .note-band p {
      margin-bottom: 0;
    }

    @media (max-width: 1100px) {
      .tool-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .workflow-grid,
      .conversion-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 760px) {
      .topbar {
        grid-template-columns: minmax(0, 1fr);
        gap: 8px;
        padding: 10px 16px 8px;
      }

      .topnav {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 2px;
        scrollbar-width: thin;
      }

      .topnav a {
        flex: 0 0 auto;
        min-height: 32px;
        padding: 6px 8px;
      }

      .hero {
        min-height: 0;
        background:
          linear-gradient(180deg, rgba(4, 8, 13, 0.98) 0%, rgba(4, 8, 13, 0.88) 62%, rgba(4, 8, 13, 0.76) 100%),
          url("/assets/AIAgents/mikesullytools-portal-lcp-mobile.webp") center / cover no-repeat;
      }

      .hero-inner {
        padding: 32px 0 26px;
      }

      .section {
        padding: 16px;
      }

      .section-head,
      .note-band {
        grid-template-columns: 1fr;
      }

      .tool-grid {
        grid-template-columns: 1fr;
      }
    }

    body[data-page="free-member-tools"] .mst-unified-footer a,
    body[data-page="free-member-tools"] .mst-unified-footer button {
      min-height: 24px !important;
      line-height: 1.2 !important;
    }
