:root {
      --sl-blue-950: #061536;
      --sl-blue-900: #0b1f4d;
      --sl-blue-800: #12337a;
      --sl-blue-700: #1d4ed8;
      --sl-blue-600: #2563eb;
      --sl-blue-500: #3b82f6;
      --sl-cyan-400: #22d3ee;
      --sl-violet-500: #7c3aed;
      --sl-emerald-500: #10b981;
      --sl-amber-500: #f59e0b;
      --sl-rose-500: #f43f5e;
      --sl-ink: #101827;
      --sl-muted: #607089;
      --sl-soft: #f3f7fc;
      --sl-soft-2: #e8f0fb;
      --sl-white: #ffffff;
      --sl-border: rgba(15, 23, 42, 0.10);
      --sl-border-strong: rgba(15, 23, 42, 0.16);
      --sl-shadow-xs: 0 1px 2px rgba(7, 18, 43, 0.08);
      --sl-shadow-sm: 0 8px 24px rgba(9, 30, 66, 0.10);
      --sl-shadow-md: 0 20px 50px rgba(9, 30, 66, 0.14);
      --sl-shadow-lg: 0 28px 80px rgba(9, 30, 66, 0.22);
      --sl-radius-sm: 12px;
      --sl-radius-md: 18px;
      --sl-radius-lg: 28px;
      --sl-radius-xl: 36px;
      --sl-container: 1400px;
      --sl-transition: 220ms ease;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      min-height: 100vh;
      color: var(--sl-ink);
      background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.20), transparent 34rem),
        radial-gradient(circle at 85% 8%, rgba(124, 58, 237, 0.14), transparent 28rem),
        linear-gradient(180deg, #f8fbff 0%, #eef5ff 42%, #f8fbff 100%);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      line-height: 1.55;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input,
    select {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    img,
    svg {
      display: block;
      max-width: 100%;
    }

    .sl-page {
      overflow: clip;
    }

    .sl-container {
      width: min(var(--sl-container), calc(100% - 40px));
      margin: 0 auto;
    }

    .sl-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      width: fit-content;
      padding: 8px 13px;
      border: 1px solid rgba(255, 255, 255, 0.28);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.12);
      color: rgba(255, 255, 255, 0.92);
      font-size: 13px;
      font-weight: 750;
      letter-spacing: 0.02em;
      backdrop-filter: blur(16px);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
    }

    .sl-eyebrow--light {
      color: var(--sl-blue-800);
      background: rgba(37, 99, 235, 0.08);
      border-color: rgba(37, 99, 235, 0.15);
      box-shadow: none;
    }

    .sl-section-title {
      max-width: 790px;
      font-size: clamp(34px, 5vw, 62px);
      line-height: 0.98;
      letter-spacing: -0.055em;
      font-weight: 850;
      color: var(--sl-ink);
    }

    .sl-section-copy {
      max-width: 680px;
      color: var(--sl-muted);
      font-size: clamp(16px, 1.35vw, 19px);
      line-height: 1.75;
    }

    .sl-btn {
      min-height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border: 0;
      border-radius: 14px;
      padding: 13px 20px;
      font-size: 15px;
      font-weight: 800;
      transition: transform var(--sl-transition), box-shadow var(--sl-transition), background var(--sl-transition), color var(--sl-transition), border-color var(--sl-transition);
      white-space: nowrap;
    }

    .sl-btn:hover {
      transform: translateY(-2px);
    }

    .sl-btn:focus-visible,
    .sl-card:focus-visible,
    .sl-filter:focus-visible,
    .sl-modal-close:focus-visible {
      outline: 4px solid rgba(59, 130, 246, 0.36);
      outline-offset: 3px;
    }

    .sl-btn-primary {
      color: #fff;
      background: linear-gradient(135deg, var(--sl-blue-700), var(--sl-blue-500));
      box-shadow: 0 16px 34px rgba(37, 99, 235, 0.28);
    }

    .sl-btn-primary:hover {
      box-shadow: 0 20px 42px rgba(37, 99, 235, 0.34);
    }

    .sl-btn-dark {
      color: #fff;
      background: rgba(2, 6, 23, 0.92);
      box-shadow: 0 14px 30px rgba(2, 6, 23, 0.24);
    }

    .sl-btn-ghost {
      color: var(--sl-blue-800);
      background: rgba(255, 255, 255, 0.82);
      border: 1px solid rgba(37, 99, 235, 0.16);
      box-shadow: var(--sl-shadow-xs);
    }

    .sl-btn-outline {
      color: var(--sl-blue-800);
      background: transparent;
      border: 1px solid rgba(37, 99, 235, 0.22);
    }

    .sl-btn-outline:hover {
      background: rgba(37, 99, 235, 0.08);
    }

    .sl-hero {
      position: relative;
      padding: 44px 0 72px;
      background:
        linear-gradient(135deg, rgba(7, 20, 55, 0.98) 0%, rgba(18, 51, 122, 0.98) 45%, rgba(37, 99, 235, 0.94) 100%);
      color: #fff;
      isolation: isolate;
    }

    .sl-hero::before,
    .sl-hero::after {
      content: "";
      position: absolute;
      z-index: -1;
      border-radius: 999px;
      pointer-events: none;
    }

    .sl-hero::before {
      width: 52rem;
      height: 52rem;
      right: -16rem;
      top: -23rem;
      background: radial-gradient(circle, rgba(34, 211, 238, 0.28), rgba(34, 211, 238, 0) 68%);
    }

    .sl-hero::after {
      width: 34rem;
      height: 34rem;
      left: -15rem;
      bottom: -14rem;
      background: radial-gradient(circle, rgba(124, 58, 237, 0.30), rgba(124, 58, 237, 0) 66%);
    }

    .sl-nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 72px;
    }

    .sl-brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: #fff;
      font-weight: 850;
      letter-spacing: -0.02em;
    }

    .sl-brand-mark {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 14px;
      background: linear-gradient(135deg, #fff, rgba(255,255,255,0.72));
      color: var(--sl-blue-800);
      box-shadow: 0 18px 40px rgba(0,0,0,0.22);
      font-weight: 900;
    }



    .sl-brand-logo {
      width: 318px;
      height: auto;
      flex: 0 1 auto;
      filter: drop-shadow(0 14px 24px rgba(2, 6, 23, 0.18));
    }

    .sl-footer-main {
      display: grid;
      gap: 12px;
      min-width: 0;
    }

    .sl-footer-logo {
      width: 260px;
      height: auto;
    }

    .sl-nav-links {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 6px;
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: 999px;
      background: rgba(255,255,255,0.08);
      backdrop-filter: blur(18px);
    }

    .sl-nav-links a {
      display: inline-flex;
      align-items: center;
      min-height: 38px;
      padding: 8px 14px;
      border-radius: 999px;
      color: rgba(255,255,255,0.82);
      font-size: 14px;
      font-weight: 750;
      transition: background var(--sl-transition), color var(--sl-transition);
    }

    .sl-nav-links a:hover {
      color: #fff;
      background: rgba(255,255,255,0.12);
    }

    .sl-hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
      gap: 56px;
      align-items: center;
    }

    .sl-hero-content {
      display: grid;
      gap: 24px;
    }

    .sl-hero h1 {
      max-width: 750px;
      font-size: clamp(48px, 7vw, 86px);
      line-height: 0.95;
      letter-spacing: -0.07em;
      font-weight: 900;
    }

    .sl-hero p {
      max-width: 650px;
      color: rgba(255,255,255,0.82);
      font-size: clamp(17px, 1.5vw, 21px);
      line-height: 1.72;
    }

    .sl-hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      padding-top: 6px;
    }

    .sl-hero-proof {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      max-width: 720px;
      margin-top: 14px;
    }

    .sl-proof-pill {
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 18px;
      background: rgba(255,255,255,0.08);
      padding: 16px;
      backdrop-filter: blur(18px);
    }

    .sl-proof-value {
      display: block;
      color: #fff;
      font-size: 22px;
      font-weight: 900;
      letter-spacing: -0.04em;
    }

    .sl-proof-label {
      display: block;
      margin-top: 2px;
      color: rgba(255,255,255,0.72);
      font-size: 12px;
      font-weight: 750;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .sl-hero-visual {
      position: relative;
      min-height: 520px;
    }

    .sl-market-panel {
      position: relative;
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 32px;
      background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.10));
      box-shadow: 0 40px 100px rgba(2, 6, 23, 0.42);
      backdrop-filter: blur(24px);
      overflow: hidden;
      padding: 18px;
    }

    .sl-market-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 15% 15%, rgba(34, 211, 238, 0.22), transparent 26%),
        radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.18), transparent 22%);
      pointer-events: none;
    }

    .sl-panel-topbar {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 16px;
    }

    .sl-window-dots {
      display: flex;
      gap: 8px;
    }

    .sl-window-dots span {
      width: 11px;
      height: 11px;
      border-radius: 50%;
      background: rgba(255,255,255,0.6);
    }

    .sl-panel-label {
      color: rgba(255,255,255,0.76);
      font-size: 12px;
      font-weight: 850;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .sl-ui-preview {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 14px;
      padding: 18px;
      border-radius: 24px;
      background: rgba(255,255,255,0.92);
      color: var(--sl-ink);
      box-shadow: inset 0 1px 0 #fff;
    }

    .sl-ui-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      padding-bottom: 14px;
      border-bottom: 1px solid var(--sl-border);
    }

    .sl-ui-title {
      font-size: 18px;
      font-weight: 900;
      letter-spacing: -0.035em;
    }

    .sl-ui-status {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #047857;
      background: rgba(16, 185, 129, 0.10);
      padding: 7px 10px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 850;
    }

    .sl-ui-status::before {
      content: "";
      width: 8px;
      height: 8px;
      background: var(--sl-emerald-500);
      border-radius: 999px;
    }

    .sl-ui-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .sl-mini-product {
      min-height: 148px;
      display: grid;
      align-content: space-between;
      gap: 18px;
      padding: 16px;
      border: 1px solid rgba(15, 23, 42, 0.08);
      border-radius: 20px;
      background: linear-gradient(180deg, #fff, #f7fbff);
      box-shadow: var(--sl-shadow-xs);
    }

    .sl-mini-product:nth-child(2) {
      transform: translateY(18px);
    }

    .sl-mini-product:nth-child(3) {
      transform: translateY(-6px);
    }

    .sl-mini-icon {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 14px;
      color: #fff;
      font-weight: 900;
      background: linear-gradient(135deg, var(--sl-blue-700), var(--sl-cyan-400));
      box-shadow: 0 12px 28px rgba(37, 99, 235, 0.22);
    }

    .sl-mini-product:nth-child(2) .sl-mini-icon {
      background: linear-gradient(135deg, var(--sl-violet-500), var(--sl-blue-500));
    }

    .sl-mini-product:nth-child(3) .sl-mini-icon {
      background: linear-gradient(135deg, var(--sl-emerald-500), var(--sl-cyan-400));
    }

    .sl-mini-product:nth-child(4) .sl-mini-icon {
      background: linear-gradient(135deg, #fb7185, var(--sl-amber-500));
    }

    .sl-mini-title {
      font-size: 14px;
      font-weight: 900;
    }

    .sl-mini-line {
      width: 100%;
      height: 7px;
      border-radius: 999px;
      background: #e7eef8;
      overflow: hidden;
    }

    .sl-mini-line span {
      display: block;
      height: 100%;
      width: 72%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--sl-blue-600), var(--sl-cyan-400));
    }

    .sl-float-card {
      position: absolute;
      z-index: 2;
      right: -12px;
      bottom: 34px;
      max-width: 264px;
      border: 1px solid rgba(255,255,255,0.22);
      border-radius: 24px;
      background: rgba(255,255,255,0.92);
      color: var(--sl-ink);
      padding: 18px;
      box-shadow: 0 28px 70px rgba(2, 6, 23, 0.30);
      backdrop-filter: blur(18px);
    }

    .sl-float-card strong {
      display: block;
      font-size: 15px;
      letter-spacing: -0.02em;
      margin-bottom: 8px;
    }

    .sl-float-card span {
      color: var(--sl-muted);
      font-size: 13px;
      line-height: 1.55;
    }

    .sl-section {
      padding: 88px 0;
    }

    .sl-section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 30px;
      margin-bottom: 34px;
    }

    .sl-section-head .sl-section-copy {
      max-width: 520px;
    }

    .sl-value-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
    }

    .sl-value-card {
      padding: 24px;
      border: 1px solid var(--sl-border);
      border-radius: 24px;
      background: rgba(255,255,255,0.78);
      box-shadow: var(--sl-shadow-sm);
      backdrop-filter: blur(18px);
    }

    .sl-value-icon {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border-radius: 15px;
      color: #fff;
      background: linear-gradient(135deg, var(--sl-blue-700), var(--sl-cyan-400));
      box-shadow: 0 14px 26px rgba(37,99,235,0.22);
      margin-bottom: 18px;
      font-weight: 900;
    }

    .sl-value-card h3 {
      margin-bottom: 8px;
      font-size: 18px;
      font-weight: 900;
      letter-spacing: -0.035em;
    }

    .sl-value-card p {
      color: var(--sl-muted);
      font-size: 14px;
      line-height: 1.72;
    }

    .sl-marketplace {
      padding-top: 28px;
    }

    .sl-toolbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 28px;
      padding: 14px;
      border: 1px solid var(--sl-border);
      border-radius: 22px;
      background: rgba(255,255,255,0.78);
      box-shadow: var(--sl-shadow-sm);
      backdrop-filter: blur(18px);
    }

    .sl-filters {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .sl-filter {
      min-height: 42px;
      padding: 10px 15px;
      border: 1px solid rgba(37, 99, 235, 0.14);
      border-radius: 999px;
      color: var(--sl-muted);
      background: #fff;
      font-size: 14px;
      font-weight: 850;
      transition: background var(--sl-transition), color var(--sl-transition), border-color var(--sl-transition), box-shadow var(--sl-transition);
    }

    .sl-filter:hover,
    .sl-filter.is-active {
      color: #fff;
      border-color: transparent;
      background: linear-gradient(135deg, var(--sl-blue-700), var(--sl-blue-500));
      box-shadow: 0 12px 26px rgba(37,99,235,0.22);
    }

    .sl-toolbar-note {
      color: var(--sl-muted);
      font-size: 13px;
      font-weight: 750;
    }

    .sl-products-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 26px;
    }

    .sl-card {
      position: relative;
      display: grid;
      grid-template-columns: minmax(210px, 0.76fr) minmax(0, 1fr);
      gap: 0;
      min-height: 390px;
      overflow: hidden;
      border: 1px solid var(--sl-border);
      border-radius: 30px;
      background: #fff;
      box-shadow: var(--sl-shadow-md);
      transition: transform var(--sl-transition), box-shadow var(--sl-transition), border-color var(--sl-transition);
    }

    .sl-card:hover {
      transform: translateY(-7px);
      border-color: rgba(37,99,235,0.24);
      box-shadow: var(--sl-shadow-lg);
    }

    .sl-card-visual {
      position: relative;
      display: grid;
      align-content: space-between;
      gap: 18px;
      min-height: 100%;
      padding: 24px;
      color: #fff;
      background:
        radial-gradient(circle at 18% 12%, rgba(255,255,255,0.25), transparent 28%),
        linear-gradient(135deg, var(--card-from, #12337a), var(--card-to, #2563eb));
      overflow: hidden;
    }

    .sl-card-visual::before {
      content: "";
      position: absolute;
      inset: auto -46px -70px auto;
      width: 210px;
      height: 210px;
      border-radius: 50%;
      background: rgba(255,255,255,0.14);
    }

    .sl-product-labels {
      position: relative;
      z-index: 1;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .sl-chip {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      width: fit-content;
      min-height: 30px;
      padding: 6px 10px;
      border-radius: 999px;
      color: rgba(255,255,255,0.92);
      background: rgba(255,255,255,0.14);
      border: 1px solid rgba(255,255,255,0.20);
      font-size: 12px;
      font-weight: 850;
      backdrop-filter: blur(16px);
    }

    .sl-product-mark {
      position: relative;
      z-index: 1;
      width: 76px;
      height: 76px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255,255,255,0.20);
      border-radius: 24px;
      background: rgba(255,255,255,0.16);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.24), 0 22px 44px rgba(0,0,0,0.14);
      font-size: 34px;
      font-weight: 900;
    }

    .sl-visual-lines {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 10px;
    }

    .sl-visual-lines span {
      display: block;
      height: 10px;
      border-radius: 999px;
      background: rgba(255,255,255,0.24);
    }

    .sl-visual-lines span:nth-child(1) { width: 92%; }
    .sl-visual-lines span:nth-child(2) { width: 68%; }
    .sl-visual-lines span:nth-child(3) { width: 82%; }

    .sl-card-body {
      display: flex;
      flex-direction: column;
      padding: 28px;
    }

    .sl-card-kicker {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 14px;
    }

    .sl-product-category {
      color: var(--sl-blue-700);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .sl-version {
      color: var(--sl-muted);
      background: var(--sl-soft);
      border: 1px solid var(--sl-border);
      border-radius: 999px;
      padding: 5px 9px;
      font-size: 12px;
      font-weight: 850;
    }

    .sl-card h3 {
      margin-bottom: 10px;
      font-size: clamp(24px, 2vw, 31px);
      line-height: 1.04;
      font-weight: 900;
      letter-spacing: -0.05em;
    }

    .sl-card p {
      margin-bottom: 18px;
      color: var(--sl-muted);
      font-size: 15px;
      line-height: 1.75;
    }

    .sl-download-count {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      width: fit-content;
      margin: 0 0 18px;
      padding: 8px 11px;
      border: 1px solid rgba(16,185,129,0.18);
      border-radius: 999px;
      color: #047857;
      background: rgba(16,185,129,0.08);
      font-size: 13px;
      font-weight: 850;
      line-height: 1.2;
    }

    .sl-download-count strong {
      color: #065f46;
      font-weight: 950;
    }

    .sl-card-points {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 9px;
      margin-bottom: 22px;
      list-style: none;
    }

    .sl-card-points li {
      display: flex;
      align-items: center;
      gap: 7px;
      color: #344054;
      font-size: 13px;
      font-weight: 750;
    }

    .sl-card-points li::before {
      content: "";
      width: 7px;
      height: 7px;
      flex: 0 0 auto;
      border-radius: 999px;
      background: var(--sl-emerald-500);
      box-shadow: 0 0 0 4px rgba(16,185,129,0.12);
    }

    .sl-card-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-top: auto;
      padding-top: 18px;
      border-top: 1px solid var(--sl-border);
    }

    .sl-free-pro {
      display: flex;
      align-items: center;
      gap: 8px;
      color: #475467;
      font-size: 12px;
      font-weight: 850;
    }

    .sl-free-pro span {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 5px 9px;
      border-radius: 999px;
      background: var(--sl-soft);
      border: 1px solid var(--sl-border);
    }

    .sl-fit {
      background:
        linear-gradient(135deg, rgba(7, 20, 55, 0.96), rgba(18, 51, 122, 0.94)),
        radial-gradient(circle at 80% 10%, rgba(34, 211, 238, 0.20), transparent 36rem);
      color: #fff;
    }

    .sl-fit .sl-section-title {
      color: #fff;
    }

    .sl-fit .sl-section-copy {
      color: rgba(255,255,255,0.74);
    }

    .sl-fit-grid {
      display: grid;
      grid-template-columns: 0.86fr 1.14fr;
      gap: 30px;
      align-items: start;
    }

    .sl-fit-panel {
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: 30px;
      background: rgba(255,255,255,0.08);
      padding: 28px;
      box-shadow: 0 24px 70px rgba(2, 6, 23, 0.28);
      backdrop-filter: blur(20px);
    }

    .sl-fit-panel h2 {
      margin: 18px 0 14px;
    }

    .sl-fit-table {
      display: grid;
      gap: 12px;
    }

    .sl-fit-row {
      display: grid;
      grid-template-columns: 0.72fr 1fr;
      gap: 18px;
      padding: 18px;
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 20px;
      background: rgba(255,255,255,0.08);
    }

    .sl-fit-row strong {
      font-size: 16px;
      letter-spacing: -0.02em;
    }

    .sl-fit-row span {
      color: rgba(255,255,255,0.72);
      font-size: 14px;
      line-height: 1.65;
    }

    .sl-faq-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .sl-faq-card {
      padding: 24px;
      border: 1px solid var(--sl-border);
      border-radius: 22px;
      background: rgba(255,255,255,0.80);
      box-shadow: var(--sl-shadow-sm);
    }

    .sl-faq-card h3 {
      margin-bottom: 8px;
      font-size: 17px;
      font-weight: 900;
      letter-spacing: -0.025em;
    }

    .sl-faq-card p {
      color: var(--sl-muted);
      font-size: 14px;
      line-height: 1.72;
    }

    .sl-cta {
      padding: 92px 0;
    }

    .sl-cta-panel {
      position: relative;
      overflow: hidden;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 30px;
      align-items: center;
      padding: 46px;
      border-radius: 34px;
      color: #fff;
      background:
        radial-gradient(circle at 82% 20%, rgba(34, 211, 238, 0.28), transparent 26rem),
        linear-gradient(135deg, var(--sl-blue-950), var(--sl-blue-700));
      box-shadow: 0 34px 90px rgba(13, 42, 103, 0.32);
    }

    .sl-cta-panel h2 {
      max-width: 720px;
      margin-bottom: 12px;
      font-size: clamp(34px, 4.8vw, 58px);
      line-height: 1;
      letter-spacing: -0.055em;
      font-weight: 900;
    }

    .sl-cta-panel p {
      max-width: 720px;
      color: rgba(255,255,255,0.76);
      font-size: 17px;
      line-height: 1.72;
    }

    .sl-cta-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .sl-footer {
      padding: 34px 0;
      color: #64748b;
      background: #fff;
      border-top: 1px solid var(--sl-border);
    }

    .sl-footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      align-items: center;
      font-size: 14px;
    }

    .sl-footer-links {
      display: flex;
      gap: 14px;
      font-weight: 750;
      color: var(--sl-blue-800);
    }

    .sl-modal {
      position: fixed;
      inset: 0;
      z-index: 999;
      display: none;
      padding: 26px;
      background: rgba(2, 6, 23, 0.62);
      backdrop-filter: blur(16px);
      overflow: auto;
    }

    .sl-modal.is-active {
      display: grid;
      place-items: center;
      animation: slFadeIn 180ms ease-out both;
    }

    @keyframes slFadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes slModalIn {
      from { opacity: 0; transform: translateY(18px) scale(0.985); }
      to { opacity: 1; transform: translateY(0) scale(1); }
    }

    .sl-modal-shell {
      width: min(1180px, 100%);
      max-height: min(92vh, 980px);
      display: flex;
      flex-direction: column;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.20);
      border-radius: 34px;
      background: #fff;
      box-shadow: 0 36px 110px rgba(0,0,0,0.38);
      animation: slModalIn 240ms ease-out both;
    }

    .sl-modal-hero {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
      gap: 30px;
      padding: 34px;
      color: #fff;
      background:
        radial-gradient(circle at 82% 20%, rgba(255,255,255,0.22), transparent 22rem),
        linear-gradient(135deg, var(--modal-from, #0b1f4d), var(--modal-to, #2563eb));
      isolation: isolate;
    }

    .sl-modal-hero::before {
      content: "";
      position: absolute;
      inset: auto -7rem -12rem auto;
      width: 28rem;
      height: 28rem;
      z-index: -1;
      border-radius: 50%;
      background: rgba(255,255,255,0.12);
    }

    .sl-modal-close {
      position: absolute;
      z-index: 2;
      top: 20px;
      right: 20px;
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 999px;
      background: rgba(255,255,255,0.15);
      color: #fff;
      font-size: 25px;
      line-height: 1;
      transition: transform var(--sl-transition), background var(--sl-transition);
    }

    .sl-modal-close:hover {
      transform: rotate(90deg);
      background: rgba(255,255,255,0.22);
    }

    .sl-modal-title-wrap {
      display: grid;
      align-content: center;
      gap: 18px;
      padding-right: 28px;
    }

    .sl-modal-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
    }

    .sl-modal-badge {
      display: inline-flex;
      width: fit-content;
      min-height: 32px;
      align-items: center;
      padding: 7px 10px;
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 999px;
      background: rgba(255,255,255,0.13);
      color: rgba(255,255,255,0.90);
      font-size: 12px;
      font-weight: 850;
      backdrop-filter: blur(18px);
    }

    .sl-modal-title {
      font-size: clamp(38px, 5vw, 68px);
      line-height: 0.96;
      letter-spacing: -0.065em;
      font-weight: 900;
    }

    .sl-modal-subtitle {
      max-width: 720px;
      color: rgba(255,255,255,0.78);
      font-size: 17px;
      line-height: 1.72;
    }

    .sl-modal-snapshot {
      align-self: stretch;
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 28px;
      background: rgba(255,255,255,0.13);
      padding: 16px;
      backdrop-filter: blur(18px);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.16), 0 22px 50px rgba(0,0,0,0.18);
    }

    .sl-snapshot-card {
      height: 100%;
      min-height: 268px;
      display: grid;
      align-content: space-between;
      gap: 14px;
      padding: 18px;
      border-radius: 22px;
      background: rgba(255,255,255,0.92);
      color: var(--sl-ink);
    }

    .sl-snapshot-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 14px;
    }

    .sl-snapshot-mark {
      width: 54px;
      height: 54px;
      display: grid;
      place-items: center;
      border-radius: 18px;
      color: #fff;
      background: linear-gradient(135deg, var(--modal-from, #12337a), var(--modal-to, #2563eb));
      box-shadow: 0 14px 30px rgba(37,99,235,0.22);
      font-size: 26px;
      font-weight: 900;
    }

    .sl-snapshot-status {
      color: #047857;
      background: rgba(16,185,129,0.10);
      border: 1px solid rgba(16,185,129,0.14);
      border-radius: 999px;
      padding: 7px 10px;
      font-size: 12px;
      font-weight: 850;
    }

    .sl-snapshot-lines {
      display: grid;
      gap: 10px;
    }

    .sl-snapshot-lines span {
      display: block;
      height: 11px;
      border-radius: 999px;
      background: #e5edf7;
    }

    .sl-snapshot-lines span:nth-child(1) { width: 92%; }
    .sl-snapshot-lines span:nth-child(2) { width: 68%; }
    .sl-snapshot-lines span:nth-child(3) { width: 84%; }

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

    .sl-snapshot-metric {
      padding: 12px;
      border: 1px solid var(--sl-border);
      border-radius: 16px;
      background: linear-gradient(180deg, #fff, #f8fbff);
    }

    .sl-snapshot-metric strong {
      display: block;
      font-size: 18px;
      font-weight: 900;
      letter-spacing: -0.04em;
    }

    .sl-snapshot-metric span {
      display: block;
      margin-top: 2px;
      color: var(--sl-muted);
      font-size: 11px;
      font-weight: 850;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .sl-modal-body {
      overflow: auto;
      background:
        radial-gradient(circle at 8% 4%, rgba(59, 130, 246, 0.07), transparent 24rem),
        #fff;
    }

    .sl-modal-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 320px;
      gap: 28px;
      padding: 30px 34px 34px;
    }

    .sl-modal-main {
      display: grid;
      gap: 24px;
    }

    .sl-modal-sidebar {
      display: grid;
      gap: 16px;
      align-content: start;
      position: sticky;
      top: 24px;
    }

    .sl-detail-card {
      border: 1px solid var(--sl-border);
      border-radius: 24px;
      background: rgba(255,255,255,0.88);
      padding: 24px;
      box-shadow: var(--sl-shadow-sm);
    }

    .sl-detail-card h3 {
      margin-bottom: 12px;
      color: var(--sl-ink);
      font-size: 20px;
      line-height: 1.2;
      font-weight: 900;
      letter-spacing: -0.035em;
    }

    .sl-detail-card p {
      color: var(--sl-muted);
      font-size: 15px;
      line-height: 1.76;
    }

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

    .sl-highlight {
      min-height: 120px;
      padding: 18px;
      border: 1px solid var(--sl-border);
      border-radius: 20px;
      background: linear-gradient(180deg, #fff, #f8fbff);
    }

    .sl-highlight strong {
      display: block;
      margin-bottom: 8px;
      color: var(--sl-ink);
      font-size: 15px;
      font-weight: 900;
    }

    .sl-highlight span {
      color: var(--sl-muted);
      font-size: 13px;
      line-height: 1.62;
    }

    .sl-feature-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
      list-style: none;
    }

    .sl-feature-list li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      padding: 13px;
      border: 1px solid var(--sl-border);
      border-radius: 16px;
      color: #344054;
      background: #fff;
      font-size: 14px;
      line-height: 1.55;
      font-weight: 650;
    }

    .sl-feature-list li::before {
      content: "✓";
      display: grid;
      place-items: center;
      width: 22px;
      height: 22px;
      flex: 0 0 auto;
      color: #047857;
      background: rgba(16,185,129,0.11);
      border-radius: 999px;
      font-size: 13px;
      font-weight: 950;
    }

    .sl-two-col {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }

    .sl-tier-card {
      border: 1px solid var(--sl-border);
      border-radius: 22px;
      overflow: hidden;
      background: #fff;
    }

    .sl-tier-head {
      padding: 18px;
      background: var(--sl-soft);
      border-bottom: 1px solid var(--sl-border);
    }

    .sl-tier-head strong {
      display: block;
      font-size: 17px;
      font-weight: 900;
      letter-spacing: -0.025em;
    }

    .sl-tier-head span {
      display: block;
      margin-top: 3px;
      color: var(--sl-muted);
      font-size: 13px;
      font-weight: 700;
    }

    .sl-tier-card ul {
      display: grid;
      gap: 10px;
      padding: 18px;
      list-style: none;
    }

    .sl-tier-card li {
      color: #344054;
      font-size: 14px;
      line-height: 1.55;
    }

    .sl-side-card {
      padding: 20px;
      border: 1px solid var(--sl-border);
      border-radius: 22px;
      background: #fff;
      box-shadow: var(--sl-shadow-sm);
    }

    .sl-side-card h4 {
      margin-bottom: 12px;
      font-size: 15px;
      font-weight: 900;
      letter-spacing: -0.02em;
    }

    .sl-meta-list {
      display: grid;
      gap: 10px;
      list-style: none;
    }

    .sl-meta-list li {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 11px 0;
      border-bottom: 1px solid var(--sl-border);
      font-size: 13px;
    }

    .sl-meta-list li:last-child {
      border-bottom: 0;
      padding-bottom: 0;
    }

    .sl-meta-list span {
      color: var(--sl-muted);
      font-weight: 750;
    }

    .sl-meta-list strong {
      color: var(--sl-ink);
      font-weight: 900;
      text-align: right;
    }

    .sl-usecase-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .sl-usecase-tags span {
      display: inline-flex;
      min-height: 30px;
      align-items: center;
      padding: 6px 10px;
      border: 1px solid rgba(37,99,235,0.13);
      border-radius: 999px;
      color: var(--sl-blue-800);
      background: rgba(37,99,235,0.07);
      font-size: 12px;
      font-weight: 850;
    }

    .sl-side-cta {
      display: grid;
      gap: 10px;
    }

    .sl-side-cta .sl-btn {
      width: 100%;
    }

    .sl-muted-small {
      color: var(--sl-muted);
      font-size: 12px;
      line-height: 1.6;
      text-align: center;
    }

    .sl-modal-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      padding-top: 4px;
    }

    .sl-sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      clip-path: inset(50%);
      border: 0;
    }

    @media (max-width: 1180px) {
      .sl-hero-grid,
      .sl-fit-grid,
      .sl-modal-hero,
      .sl-modal-grid {
        grid-template-columns: 1fr;
      }

      .sl-hero-visual {
        min-height: auto;
      }

      .sl-float-card {
        right: 18px;
      }

      .sl-modal-sidebar {
        position: static;
      }

      .sl-products-grid,
      .sl-value-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .sl-cta-panel {
        grid-template-columns: 1fr;
      }

      .sl-cta-actions {
        justify-content: flex-start;
      }
    }

    @media (max-width: 820px) {
      .sl-container {
        width: min(100% - 28px, var(--sl-container));
      }

      .sl-nav {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 52px;
      }

      .sl-nav-links {
        width: 100%;
        overflow-x: auto;
        justify-content: flex-start;
      }

      .sl-hero {
        padding-bottom: 54px;
      }

      .sl-hero h1 {
        font-size: clamp(44px, 14vw, 64px);
      }

      .sl-hero-proof,
      .sl-ui-grid,
      .sl-products-grid,
      .sl-value-grid,
      .sl-faq-grid,
      .sl-feature-list,
      .sl-two-col,
      .sl-highlight-grid,
      .sl-snapshot-metrics {
        grid-template-columns: 1fr;
      }

      .sl-card {
        grid-template-columns: 1fr;
      }

      .sl-card-visual {
        min-height: 230px;
      }

      .sl-card-points {
        grid-template-columns: 1fr;
      }

      .sl-toolbar,
      .sl-section-head,
      .sl-footer-inner {
        align-items: flex-start;
        flex-direction: column;
      }

      .sl-toolbar-note {
        order: -1;
      }

      .sl-modal {
        padding: 12px;
      }

      .sl-modal-shell {
        border-radius: 24px;
        max-height: 94vh;
      }

      .sl-modal-hero,
      .sl-modal-grid {
        padding: 24px;
      }

      .sl-modal-title-wrap {
        padding-right: 46px;
      }

      .sl-modal-close {
        top: 16px;
        right: 16px;
      }

      .sl-section,
      .sl-cta {
        padding: 64px 0;
      }

      .sl-cta-panel {
        padding: 30px;
        border-radius: 26px;
      }

      .sl-btn,
      .sl-card-footer,
      .sl-modal-actions {
        width: 100%;
      }

      .sl-card-footer {
        align-items: stretch;
        flex-direction: column;
      }

      .sl-free-pro {
        flex-wrap: wrap;
      }
    }

    @media (max-width: 520px) {
      .sl-hero-actions,
      .sl-cta-actions {
        width: 100%;
        flex-direction: column;
      }

      .sl-btn {
        width: 100%;
      }

      .sl-float-card {
        position: static;
        margin-top: 14px;
      }

      .sl-market-panel {
        padding: 12px;
        border-radius: 24px;
      }

      .sl-ui-preview {
        padding: 14px;
      }

      .sl-card-body,
      .sl-card-visual,
      .sl-detail-card,
      .sl-side-card {
        padding: 20px;
      }

      .sl-modal-hero,
      .sl-modal-grid {
        padding: 18px;
      }
    }



    /* ===== PREMIUM TYPOGRAPHY, ACCESSIBILITY, AND RESPONSIVE REFINEMENT ===== */
    :root {
      --sl-muted: #475569;
      --sl-accessible-blue: #1d4ed8;
      --sl-focus-ring: rgba(29, 78, 216, 0.42);
      --sl-banner-heading-desktop: 65px;
      --sl-banner-heading-tablet: 50px;
      --sl-banner-heading-mobile: 40px;
      --sl-content-heading-desktop: 50px;
      --sl-content-heading-tablet: 40px;
      --sl-content-heading-mobile: 30px;
      --sl-content-text: 18px;
      --sl-accent-text: 16px;
    }

    body {
      color: #101827;
      font-size: var(--sl-content-text);
    }

    .sl-hero h1 {
      font-size: var(--sl-banner-heading-desktop);
      font-weight: 700;
      line-height: 1.02;
      letter-spacing: -0.045em;
      max-width: 780px;
    }

    .sl-section-title,
    .sl-cta-panel h2,
    .sl-modal-title {
      font-size: var(--sl-content-heading-desktop);
      font-weight: 700;
      line-height: 1.08;
      letter-spacing: -0.035em;
    }

    .sl-section-copy,
    .sl-hero p,
    .sl-card p,
    .sl-value-card p,
    .sl-fit-row span,
    .sl-faq-card p,
    .sl-cta-panel p,
    .sl-detail-card p,
    .sl-highlight span,
    .sl-feature-list li,
    .sl-tier-card li,
    .sl-modal-subtitle,
    .sl-muted-small {
      font-size: var(--sl-content-text);
      line-height: 1.72;
    }

    .sl-eyebrow,
    .sl-nav-links a,
    .sl-btn,
    .sl-filter,
    .sl-toolbar-note,
    .sl-product-category,
    .sl-version,
    .sl-chip,
    .sl-free-pro,
    .sl-card-points li,
    .sl-modal-badge,
    .sl-snapshot-status,
    .sl-snapshot-metric span,
    .sl-tier-head span,
    .sl-meta-list li,
    .sl-usecase-tags span,
    .sl-proof-label,
    .sl-footer-inner,
    .sl-footer-links {
      font-size: var(--sl-accent-text);
    }

    .sl-brand,
    .sl-brand-mark,
    .sl-nav-links a,
    .sl-eyebrow,
    .sl-btn,
    .sl-filter,
    .sl-card h3,
    .sl-value-card h3,
    .sl-faq-card h3,
    .sl-detail-card h3,
    .sl-highlight strong,
    .sl-tier-head strong,
    .sl-side-card h4,
    .sl-meta-list strong,
    .sl-proof-value,
    .sl-product-mark,
    .sl-snapshot-mark,
    .sl-snapshot-metric strong {
      font-weight: 700;
    }

    .sl-card h3 {
      font-size: 30px;
      line-height: 1.12;
      letter-spacing: -0.03em;
    }

    .sl-detail-card h3 {
      font-size: 24px;
      line-height: 1.18;
      letter-spacing: -0.025em;
    }

    .sl-value-card h3,
    .sl-faq-card h3,
    .sl-highlight strong,
    .sl-tier-head strong {
      font-size: 20px;
      line-height: 1.25;
    }

    .sl-side-card h4 {
      font-size: 18px;
      line-height: 1.25;
    }

    .sl-hero p,
    .sl-fit .sl-section-copy,
    .sl-fit-row span,
    .sl-cta-panel p,
    .sl-modal-subtitle,
    .sl-proof-label {
      color: rgba(255, 255, 255, 0.92);
    }

    .sl-section-copy,
    .sl-card p,
    .sl-value-card p,
    .sl-faq-card p,
    .sl-detail-card p,
    .sl-highlight span,
    .sl-tier-head span,
    .sl-float-card span,
    .sl-muted-small,
    .sl-toolbar-note,
    .sl-version,
    .sl-meta-list span {
      color: #475569;
    }

    .sl-product-category,
    .sl-footer-links,
    .sl-btn-outline,
    .sl-btn-ghost,
    .sl-usecase-tags span {
      color: #12337a;
    }

    .sl-card-visual {
      background:
        radial-gradient(circle at 18% 12%, rgba(255,255,255,0.22), transparent 28%),
        linear-gradient(135deg, rgba(2,6,23,0.18), rgba(2,6,23,0.30)),
        linear-gradient(135deg, var(--card-from, #12337a), var(--card-to, #2563eb));
    }

    .sl-market-panel,
    .sl-modal-hero {
      background:
        radial-gradient(circle at 82% 20%, rgba(255,255,255,0.18), transparent 22rem),
        linear-gradient(135deg, rgba(2,6,23,0.18), rgba(2,6,23,0.24)),
        linear-gradient(135deg, var(--modal-from, #0b1f4d), var(--modal-to, #2563eb));
    }

    .sl-chip,
    .sl-modal-badge {
      color: #ffffff;
      background: rgba(2, 6, 23, 0.24);
      border-color: rgba(255, 255, 255, 0.34);
    }

    .sl-feature-list li,
    .sl-tier-card li,
    .sl-card-points li {
      color: #263244;
    }

    .sl-filter {
      color: #334155;
      border-color: rgba(18, 51, 122, 0.20);
    }

    .sl-filter:hover,
    .sl-filter.is-active {
      color: #ffffff;
      background: linear-gradient(135deg, #12337a, #1d4ed8);
    }

    .sl-btn:focus-visible,
    .sl-card:focus-visible,
    .sl-filter:focus-visible,
    .sl-modal-close:focus-visible,
    .sl-nav-links a:focus-visible {
      outline: 4px solid var(--sl-focus-ring);
      outline-offset: 4px;
    }

    .sl-modal-shell {
      width: min(1240px, calc(100vw - 32px));
      max-height: min(94vh, 1040px);
    }

    .sl-modal-grid {
      grid-template-columns: minmax(0, 1fr) 360px;
      gap: 32px;
      padding: 34px 38px 38px;
    }

    .sl-modal-hero {
      grid-template-columns: minmax(0, 1fr) minmax(360px, 440px);
      padding: 38px;
    }

    .sl-products-grid {
      gap: 30px;
    }

    .sl-card {
      min-height: 420px;
    }

    @media (max-width: 1180px) {
      .sl-hero-grid,
      .sl-fit-grid,
      .sl-modal-hero,
      .sl-modal-grid {
        grid-template-columns: 1fr;
      }

      .sl-products-grid {
        grid-template-columns: 1fr;
      }

      .sl-modal-sidebar {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .sl-side-card:last-child {
        grid-column: 1 / -1;
      }
    }

    @media (max-width: 1024px) {
      .sl-hero h1 {
        font-size: var(--sl-banner-heading-tablet);
        line-height: 1.06;
        letter-spacing: -0.04em;
      }

      .sl-section-title,
      .sl-cta-panel h2,
      .sl-modal-title {
        font-size: var(--sl-content-heading-tablet);
        line-height: 1.12;
      }

      .sl-section {
        padding: 76px 0;
      }

      .sl-hero-grid {
        gap: 42px;
      }

      .sl-hero-visual {
        max-width: 760px;
      }

      .sl-modal-snapshot {
        max-width: 640px;
      }
    }

    @media (max-width: 820px) {
      .sl-container {
        width: min(100% - 28px, var(--sl-container));
      }

      .sl-nav-links {
        padding-bottom: 8px;
      }

      .sl-products-grid,
      .sl-value-grid,
      .sl-faq-grid,
      .sl-feature-list,
      .sl-two-col,
      .sl-highlight-grid,
      .sl-snapshot-metrics,
      .sl-modal-sidebar {
        grid-template-columns: 1fr;
      }

      .sl-section-head {
        gap: 18px;
      }

      .sl-toolbar {
        padding: 16px;
      }

      .sl-card {
        min-height: 0;
      }

      .sl-card-visual {
        min-height: 250px;
      }

      .sl-modal-shell {
        width: min(100%, calc(100vw - 20px));
        max-height: 95vh;
        border-radius: 26px;
      }

      .sl-modal-hero,
      .sl-modal-grid {
        padding: 24px;
      }
    }

    @media (max-width: 640px) {
      body {
        font-size: 16px;
      }

      .sl-hero {
        padding-top: 30px;
      }

      .sl-hero h1 {
        font-size: var(--sl-banner-heading-mobile);
        line-height: 1.08;
        letter-spacing: -0.035em;
      }

      .sl-section-title,
      .sl-cta-panel h2,
      .sl-modal-title {
        font-size: var(--sl-content-heading-mobile);
        line-height: 1.16;
        letter-spacing: -0.025em;
      }

      .sl-section-copy,
      .sl-hero p,
      .sl-card p,
      .sl-value-card p,
      .sl-fit-row span,
      .sl-faq-card p,
      .sl-cta-panel p,
      .sl-detail-card p,
      .sl-highlight span,
      .sl-feature-list li,
      .sl-tier-card li,
      .sl-modal-subtitle,
      .sl-muted-small {
        font-size: 16px;
        line-height: 1.68;
      }

      .sl-eyebrow,
      .sl-nav-links a,
      .sl-btn,
      .sl-filter,
      .sl-product-category,
      .sl-card-points li,
      .sl-modal-badge,
      .sl-usecase-tags span,
      .sl-meta-list li {
        font-size: 15px;
      }

      .sl-hero-proof {
        grid-template-columns: 1fr;
      }

      .sl-card h3 {
        font-size: 26px;
      }

      .sl-detail-card h3 {
        font-size: 22px;
      }

      .sl-modal-hero,
      .sl-modal-grid,
      .sl-card-body,
      .sl-card-visual,
      .sl-detail-card,
      .sl-side-card,
      .sl-cta-panel,
      .sl-fit-panel,
      .sl-value-card,
      .sl-faq-card {
        padding: 20px;
      }

      .sl-card,
      .sl-cta-panel,
      .sl-fit-panel {
        border-radius: 24px;
      }

      .sl-modal-title-wrap {
        padding-right: 44px;
      }
    }

    @media (max-width: 420px) {
      .sl-container {
        width: min(100% - 22px, var(--sl-container));
      }

      .sl-brand {
        font-size: 16px;
      }

      .sl-brand-mark {
        width: 38px;
        height: 38px;
      }

      .sl-brand-logo {
        width: min(232px, calc(100vw - 96px));
      }

      .sl-footer-logo {
        width: min(230px, 100%);
      }


      .sl-card-visual {
        min-height: 220px;
      }

      .sl-snapshot-header {
        align-items: flex-start;
        flex-direction: column;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
      }
    }


    /* ===== MOBILE QA FIXES: BURGER MENU, BUTTON RHYTHM, CARD STACKING ===== */
    .sl-btn,
    .sl-filter,
    .sl-nav-links a,
    .sl-nav-toggle {
      line-height: 1.15;
    }

    .sl-fit-row strong,
    .sl-fit-row span,
    .sl-mini-title,
    .sl-card h3,
    .sl-card p {
      overflow-wrap: anywhere;
    }

    .sl-fit-row strong {
      line-height: 1.35;
    }

    .sl-fit-row span {
      line-height: 1.5;
    }

    .sl-nav-toggle {
      display: none;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      width: 48px;
      height: 48px;
      flex: 0 0 48px;
      border: 1px solid rgba(255,255,255,0.22);
      border-radius: 16px;
      color: #fff;
      background: rgba(255,255,255,0.12);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 14px 34px rgba(2,6,23,0.20);
      backdrop-filter: blur(18px);
      transition: background var(--sl-transition), border-color var(--sl-transition), transform var(--sl-transition);
    }

    .sl-nav-toggle:hover {
      background: rgba(255,255,255,0.18);
      border-color: rgba(255,255,255,0.34);
      transform: translateY(-1px);
    }

    .sl-nav-toggle:focus-visible {
      outline: 4px solid var(--sl-focus-ring);
      outline-offset: 4px;
    }

    .sl-nav-line {
      width: 20px;
      height: 2px;
      border-radius: 999px;
      background: currentColor;
      transition: transform var(--sl-transition), opacity var(--sl-transition);
    }

    .sl-nav-toggle[aria-expanded="true"] .sl-nav-line:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .sl-nav-toggle[aria-expanded="true"] .sl-nav-line:nth-child(2) {
      opacity: 0;
    }

    .sl-nav-toggle[aria-expanded="true"] .sl-nav-line:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    @media (max-width: 820px) {
      .sl-nav {
        position: relative;
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
        gap: 14px;
        margin-bottom: 48px;
      }

      .sl-brand {
        min-width: 0;
      }

      .sl-brand-logo {
        width: min(278px, calc(100vw - 104px));
      }


      .sl-brand span:last-child {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
      }

      .sl-nav-toggle {
        display: inline-flex;
      }

      .sl-nav-links {
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        z-index: 30;
        display: none;
        width: 100%;
        overflow: visible;
        align-items: stretch;
        flex-direction: column;
        gap: 8px;
        padding: 12px;
        border: 1px solid rgba(255,255,255,0.22);
        border-radius: 24px;
        background: rgba(8, 24, 61, 0.96);
        box-shadow: 0 24px 70px rgba(2,6,23,0.35);
        backdrop-filter: blur(20px);
      }

      .sl-nav.is-open .sl-nav-links {
        display: flex;
      }

      .sl-nav-links a {
        width: 100%;
        min-height: 48px;
        justify-content: space-between;
        padding: 13px 14px;
        color: #fff;
        border-radius: 16px;
        background: rgba(255,255,255,0.08);
        border: 1px solid rgba(255,255,255,0.10);
        white-space: normal;
      }

      .sl-nav-links a::after {
        content: "→";
        opacity: 0.78;
      }

      .sl-ui-grid {
        grid-template-columns: 1fr;
        gap: 12px;
      }

      .sl-mini-product,
      .sl-mini-product:nth-child(2),
      .sl-mini-product:nth-child(3) {
        transform: none;
      }

      .sl-mini-product {
        min-height: 0;
        align-content: start;
        gap: 14px;
      }

      .sl-card {
        display: flex;
        flex-direction: column;
        min-height: 0;
      }

      .sl-card-visual {
        order: 0;
        min-height: 220px;
      }

      .sl-card-body {
        order: 1;
      }

      .sl-fit-row {
        grid-template-columns: 1fr;
        gap: 9px;
        padding: 20px;
      }

      .sl-fit-row strong,
      .sl-fit-row span {
        display: block;
      }

      .sl-fit-row span {
        font-size: 18px;
        line-height: 1.5;
      }

      .sl-btn {
        min-height: 46px;
        padding-top: 12px;
        padding-bottom: 12px;
      }
    }

    @media (max-width: 640px) {
      .sl-hero-visual {
        min-height: auto;
      }

      .sl-market-panel {
        overflow: visible;
      }

      .sl-ui-preview {
        gap: 12px;
      }

      .sl-mini-icon {
        width: 54px;
        height: 54px;
        border-radius: 16px;
      }

      .sl-mini-title {
        font-size: 16px;
        line-height: 1.2;
      }

      .sl-mini-line {
        height: 8px;
      }

      .sl-fit-row {
        border-radius: 20px;
      }

      .sl-fit-row strong {
        font-size: 18px;
        line-height: 1.35;
      }

      .sl-fit-row span {
        font-size: 18px;
        line-height: 1.5;
      }
    }

    @media (max-width: 420px) {
      .sl-nav {
        margin-bottom: 42px;
      }

      .sl-brand span:last-child {
        max-width: 190px;
      }

      .sl-ui-head {
        align-items: flex-start;
        flex-direction: column;
      }

      .sl-mini-product {
        padding: 18px;
        border-radius: 22px;
      }
    }

  

    /* ===== MODAL FULL-SCREEN SCROLL FIX =====
       The product detail window now scrolls as one complete surface.
       The modal hero/banner is no longer held in place while the lower content scrolls. */
    .sl-modal {
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
    }

    .sl-modal.is-active {
      display: block;
      place-items: initial;
    }

    .sl-modal-shell {
      height: auto !important;
      max-height: none !important;
      overflow: visible !important;
      margin: clamp(14px, 3vw, 32px) auto;
    }

    .sl-modal-body {
      overflow: visible !important;
    }

    .sl-modal-sidebar {
      position: static !important;
      top: auto !important;
    }

    @media (max-width: 820px) {
      .sl-modal-shell {
        max-height: none !important;
      }
    }

    @media (max-width: 640px) {
      .sl-modal {
        padding: 10px;
      }

      .sl-modal-shell {
        width: 100%;
        max-height: none !important;
        margin: 10px auto;
      }
    }


    /* ===== CONTENT DENSITY, MOBILE WIDTH, AND PREMIUM CARD POLISH FIX ===== */
    .sl-card p {
      line-height: 1.56;
      margin-bottom: 16px;
    }

    .sl-card-points {
      gap: 8px 14px;
      margin-bottom: 16px;
    }

    .sl-card-footer {
      align-items: center;
      gap: 14px;
      padding-top: 14px;
    }

    .sl-free-pro {
      flex: 0 1 auto;
      gap: 8px;
      line-height: 1;
    }

    .sl-free-pro span {
      min-height: 34px;
      justify-content: center;
      padding: 7px 12px;
      white-space: nowrap;
      line-height: 1;
      border-radius: 999px;
    }

    .sl-side-cta {
      gap: 12px;
    }

    .sl-side-cta .sl-muted-small {
      display: none;
    }

    .sl-fit-row span {
      line-height: 1.46;
    }

    @media (max-width: 820px) {
      .sl-container {
        width: 100%;
        padding-left: 16px;
        padding-right: 16px;
      }

      .sl-products-grid,
      .sl-value-grid,
      .sl-faq-grid,
      .sl-fit-table,
      .sl-modal-main,
      .sl-modal-sidebar {
        width: 100%;
      }

      .sl-products-grid {
        gap: 22px;
      }

      .sl-card,
      .sl-value-card,
      .sl-faq-card,
      .sl-fit-panel,
      .sl-fit-row,
      .sl-detail-card,
      .sl-side-card {
        width: 100%;
        max-width: none;
      }

      .sl-card-body {
        padding: 24px;
      }

      .sl-card-visual {
        min-height: 210px;
      }

      .sl-card-footer {
        display: grid;
        grid-template-columns: 1fr;
        align-items: stretch;
        gap: 12px;
        width: 100%;
      }

      .sl-free-pro {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        overflow: visible;
      }

      .sl-free-pro span {
        width: 100%;
        text-align: center;
      }

      .sl-card-footer .sl-btn {
        width: 100%;
      }

      .sl-fit-row {
        grid-template-columns: 1fr;
        gap: 10px;
      }

      .sl-fit-row span {
        line-height: 1.42;
      }
    }

    @media (max-width: 640px) {
      body {
        overflow-x: hidden;
      }

      .sl-container {
        width: 100%;
        padding-left: 12px;
        padding-right: 12px;
      }

      .sl-section,
      .sl-cta {
        padding: 56px 0;
      }

      .sl-marketplace {
        padding-top: 16px;
      }

      .sl-market-panel {
        margin-left: -12px;
        margin-right: -12px;
        border-left: 0;
        border-right: 0;
        border-radius: 0;
      }

      .sl-toolbar {
        border-radius: 20px;
      }

      .sl-card {
        border-radius: 22px;
      }

      .sl-card-body,
      .sl-card-visual {
        padding: 20px;
      }

      .sl-card-visual {
        min-height: 180px;
      }

      .sl-card h3 {
        font-size: 26px;
        line-height: 1.12;
        margin-bottom: 8px;
      }

      .sl-card p {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 14px;
      }

      .sl-card-points {
        grid-template-columns: 1fr;
        gap: 9px;
        margin-bottom: 14px;
      }

      .sl-card-footer {
        padding-top: 14px;
      }

      .sl-free-pro span {
        min-height: 38px;
        padding: 8px 8px;
        font-size: 14px;
      }

      .sl-fit-panel,
      .sl-fit-row,
      .sl-cta-panel {
        border-radius: 22px;
      }

      .sl-fit-row span {
        font-size: 16px;
        line-height: 1.42;
      }

      .sl-modal {
        padding: 0 !important;
        background: #ffffff;
        backdrop-filter: none;
      }

      .sl-modal-shell {
        width: 100vw !important;
        min-height: 100vh;
        margin: 0 !important;
        border: 0;
        border-radius: 0 !important;
        box-shadow: none;
      }

      .sl-modal-hero,
      .sl-modal-grid {
        padding-left: 16px;
        padding-right: 16px;
      }

      .sl-modal-hero {
        padding-top: 24px;
      }

      .sl-modal-grid {
        gap: 18px;
        padding-bottom: 24px;
      }

      .sl-modal-snapshot,
      .sl-detail-card,
      .sl-side-card {
        width: 100%;
        max-width: none;
      }

      .sl-detail-card,
      .sl-side-card {
        border-radius: 20px;
      }

      .sl-modal-body {
        background: #ffffff;
      }
    }

    @media (max-width: 420px) {
      .sl-container {
        padding-left: 10px;
        padding-right: 10px;
      }

      .sl-market-panel {
        margin-left: -10px;
        margin-right: -10px;
      }

      .sl-card {
        border-radius: 20px;
      }

      .sl-free-pro {
        gap: 7px;
      }

      .sl-free-pro span {
        min-height: 36px;
        padding: 7px 6px;
        font-size: 13px;
      }

      .sl-modal-hero,
      .sl-modal-grid {
        padding-left: 12px;
        padding-right: 12px;
      }

      .sl-modal-close {
        top: 12px;
        right: 12px;
      }
    }


  

    /* ===== CARD ACTION FIT + MOBILE MODAL SNAPSHOT FULL-WIDTH FIX =====
       1) Keeps product card actions inside every desktop/tablet card.
       2) Removes the extra colored snapshot container only on mobile so the preview card becomes full width. */
    .sl-products-grid {
      grid-template-columns: repeat(auto-fit, minmax(min(100%, 640px), 1fr));
    }

    .sl-card {
      grid-template-columns: minmax(190px, 0.66fr) minmax(0, 1fr);
    }

    .sl-card-body {
      min-width: 0;
    }

    .sl-card-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      min-width: 0;
      overflow: visible;
    }

    .sl-free-pro {
      flex: 0 1 auto;
      min-width: 0;
      gap: 7px;
      font-size: 12px;
      font-weight: 650;
      letter-spacing: 0;
      line-height: 1.15;
    }

    .sl-free-pro span {
      min-width: 0;
      min-height: 32px;
      padding: 6px 10px;
      font-weight: 650;
      letter-spacing: 0;
      line-height: 1.1;
      white-space: nowrap;
    }

    .sl-card-footer .sl-btn {
      flex: 0 0 auto;
      min-height: 44px;
      padding: 11px 16px;
      font-size: 14px;
      line-height: 1.1;
      white-space: nowrap;
    }

    @media (max-width: 1320px) and (min-width: 821px) {
      .sl-products-grid {
        grid-template-columns: 1fr;
      }

      .sl-card {
        grid-template-columns: minmax(240px, 0.62fr) minmax(0, 1fr);
      }
    }

    @media (max-width: 980px) and (min-width: 821px) {
      .sl-card {
        grid-template-columns: minmax(220px, 0.56fr) minmax(0, 1fr);
      }
    }

    @media (max-width: 820px) {
      .sl-products-grid {
        grid-template-columns: 1fr;
      }

      .sl-card-footer {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        align-items: stretch;
      }

      .sl-free-pro {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        gap: 8px;
      }

      .sl-free-pro span,
      .sl-card-footer .sl-btn {
        width: 100%;
        justify-content: center;
        text-align: center;
      }
    }

    @media (max-width: 640px) {
      .sl-modal {
        padding: 0 !important;
        background: #ffffff !important;
        backdrop-filter: none !important;
      }

      .sl-modal-shell {
        width: 100vw !important;
        min-height: 100vh;
        margin: 0 !important;
        border: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
      }

      .sl-modal-hero {
        display: block;
        padding: 0 !important;
        color: var(--sl-ink);
        background: #ffffff !important;
      }

      .sl-modal-hero::before {
        display: none !important;
      }

      .sl-modal-title-wrap {
        padding: 24px 16px 18px !important;
        color: var(--sl-ink);
      }

      .sl-modal-badge {
        color: var(--sl-blue-800);
        background: rgba(37, 99, 235, 0.08);
        border-color: rgba(37, 99, 235, 0.14);
      }

      .sl-modal-title {
        color: var(--sl-ink);
      }

      .sl-modal-subtitle {
        color: #475569;
      }

      .sl-modal-title-wrap .sl-btn-ghost {
        color: var(--sl-blue-800);
        background: #eef4ff;
        border-color: rgba(37, 99, 235, 0.16);
      }

      .sl-modal-close {
        top: 14px !important;
        right: 14px !important;
        color: #0f172a;
        background: rgba(255, 255, 255, 0.92);
        border-color: rgba(15, 23, 42, 0.12);
        box-shadow: 0 10px 24px rgba(15, 23, 42, 0.14);
      }

      .sl-modal-snapshot {
        width: 100% !important;
        max-width: none !important;
        padding: 0 !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
      }

      .sl-snapshot-card {
        width: 100%;
        min-height: 0;
        padding: 24px 16px 26px;
        border-radius: 0;
        border-top: 1px solid rgba(15, 23, 42, 0.08);
        border-bottom: 1px solid rgba(15, 23, 42, 0.08);
        background: #ffffff;
        box-shadow: none;
      }

      .sl-snapshot-header {
        flex-direction: row;
        align-items: center;
      }

      .sl-snapshot-metrics {
        grid-template-columns: 1fr;
        gap: 10px;
      }

      .sl-snapshot-metric {
        min-height: 82px;
        display: grid;
        align-content: center;
        padding: 15px 16px;
        border-radius: 18px;
      }

      .sl-modal-grid {
        padding-left: 16px !important;
        padding-right: 16px !important;
      }
    }

    @media (max-width: 420px) {
      .sl-modal-title-wrap {
        padding-left: 12px !important;
        padding-right: 12px !important;
      }

      .sl-snapshot-card {
        padding-left: 12px;
        padding-right: 12px;
      }

      .sl-modal-grid {
        padding-left: 12px !important;
        padding-right: 12px !important;
      }
    }
/* ===== v1.0.3 LANDING-PAGE ISOLATION + TYPOGRAPHY LOCKDOWN =====
   Keeps the marketplace visually matched to the approved standalone HTML even
   when WordPress/theme CSS is aggressive. Selected-page rendering hides theme
   chrome, theme footers, and theme dark/light toggles. */
body.spm-landing-page,
.sl-page,
.sl-page button,
.sl-page input,
.sl-page select,
.sl-page textarea {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

body.spm-landing-page {
  margin: 0 !important;
  min-height: 100vh;
  color: #101827 !important;
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.20), transparent 34rem),
    radial-gradient(circle at 85% 8%, rgba(124, 58, 237, 0.14), transparent 28rem),
    linear-gradient(180deg, #f8fbff 0%, #eef5ff 42%, #f8fbff 100%) !important;
}

body.spm-landing-page > :not(.sl-page):not(.spm-home-premium-page):not(.sl-modal):not(script):not(style):not(link):not(noscript) {
  display: none !important;
  visibility: hidden !important;
}

html.spm-selected-landing-active,
body.spm-selected-landing-active {
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.20), transparent 34rem),
    radial-gradient(circle at 85% 8%, rgba(124, 58, 237, 0.14), transparent 28rem),
    linear-gradient(180deg, #f8fbff 0%, #eef5ff 42%, #f8fbff 100%) !important;
}

body:has(.spm-selected-landing) .site-header,
body:has(.spm-selected-landing) .site-footer:not(.spm-home-footer),
body:has(.spm-selected-landing) .theme-header,
body:has(.spm-selected-landing) .theme-footer,
body:has(.spm-selected-landing) .main-header,
body:has(.spm-selected-landing) .main-footer,
body:has(.spm-selected-landing) #masthead,
body:has(.spm-selected-landing) #colophon,
body:has(.spm-selected-landing) #site-header,
body:has(.spm-selected-landing) #site-footer,
body:has(.spm-selected-landing) .wp-site-blocks > header,
body:has(.spm-selected-landing) .wp-site-blocks > footer,
body:has(.spm-selected-landing) header:not(.sl-hero):not(.sl-modal-hero):not(.spm-home-header),
body:has(.spm-selected-landing) footer:not(.sl-footer):not(.spm-home-footer) {
  display: none !important;
  visibility: hidden !important;
}

body:has(.spm-selected-landing) .wp-dark-mode-switcher,
body:has(.spm-selected-landing) .wp-dark-mode-floating,
body:has(.spm-selected-landing) .wp-dark-mode-toggle,
body:has(.spm-selected-landing) .darkmode-toggle,
body:has(.spm-selected-landing) .dark-mode-toggle,
body:has(.spm-selected-landing) .theme-toggle,
body:has(.spm-selected-landing) .color-scheme-toggle,
body:has(.spm-selected-landing) .mode-toggle,
body:has(.spm-selected-landing) .dark-light-toggle,
body:has(.spm-selected-landing) .light-dark-toggle {
  display: none !important;
  visibility: hidden !important;
}

.sl-page {
  width: 100% !important;
  min-height: 100vh;
  color: #101827 !important;
  font-size: 18px;
  line-height: 1.55;
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.20), transparent 34rem),
    radial-gradient(circle at 85% 8%, rgba(124, 58, 237, 0.14), transparent 28rem),
    linear-gradient(180deg, #f8fbff 0%, #eef5ff 42%, #f8fbff 100%) !important;
}

.sl-page *,
.sl-page *::before,
.sl-page *::after {
  box-sizing: border-box;
}

.sl-page h1,
.sl-page h2,
.sl-page h3,
.sl-page h4,
.sl-page h5,
.sl-page h6,
.sl-page p,
.sl-page a,
.sl-page span,
.sl-page li,
.sl-page button {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

.sl-page .sl-hero h1 {
  font-size: 65px !important;
  font-weight: 700 !important;
  line-height: 1.02 !important;
  letter-spacing: -0.045em !important;
  color: #ffffff !important;
}

.sl-page .sl-section-title,
.sl-page .sl-cta-panel h2,
.sl-page .sl-modal-title {
  font-size: 50px !important;
  font-weight: 700 !important;
  line-height: 1.08 !important;
  letter-spacing: -0.035em !important;
}

.sl-page .sl-section-copy,
.sl-page .sl-hero p,
.sl-page .sl-card p,
.sl-page .sl-value-card p,
.sl-page .sl-fit-row span,
.sl-page .sl-faq-card p,
.sl-page .sl-cta-panel p,
.sl-page .sl-detail-card p,
.sl-page .sl-highlight span,
.sl-page .sl-feature-list li,
.sl-page .sl-tier-card li,
.sl-page .sl-modal-subtitle,
.sl-page .sl-muted-small {
  font-size: 18px !important;
}

.sl-page .sl-eyebrow,
.sl-page .sl-nav-links a,
.sl-page .sl-btn,
.sl-page .sl-filter,
.sl-page .sl-product-category,
.sl-page .sl-version,
.sl-page .sl-chip,
.sl-page .sl-free-pro,
.sl-page .sl-card-points li,
.sl-page .sl-modal-badge,
.sl-page .sl-usecase-tags span,
.sl-page .sl-meta-list li,
.sl-page .sl-toolbar-note {
  font-size: 16px !important;
}

/* Remove hover colour changes from frontend buttons and button-like controls. */
.sl-page .sl-btn:hover,
.sl-page .sl-filter:hover,
.sl-page .sl-nav-toggle:hover,
.sl-page .sl-modal-close:hover {
  transform: none !important;
}

.sl-page .sl-btn-primary:hover {
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--sl-blue-700), var(--sl-blue-500)) !important;
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.28) !important;
}

.sl-page .sl-btn-dark:hover {
  color: #ffffff !important;
  background: rgba(2, 6, 23, 0.92) !important;
  box-shadow: 0 14px 30px rgba(2, 6, 23, 0.24) !important;
}

.sl-page .sl-btn-ghost:hover {
  color: var(--sl-blue-800) !important;
  background: rgba(255, 255, 255, 0.82) !important;
  border-color: rgba(37, 99, 235, 0.16) !important;
}

.sl-page .sl-btn-outline:hover {
  color: var(--sl-blue-800) !important;
  background: transparent !important;
  border-color: rgba(37, 99, 235, 0.22) !important;
}

.sl-page .sl-filter:hover:not(.is-active) {
  color: #334155 !important;
  background: #ffffff !important;
  border-color: rgba(18, 51, 122, 0.20) !important;
  box-shadow: none !important;
}

.sl-page .sl-filter.is-active:hover {
  color: #ffffff !important;
  background: linear-gradient(135deg, #12337a, #1d4ed8) !important;
  border-color: transparent !important;
  box-shadow: 0 12px 26px rgba(37,99,235,0.22) !important;
}

.sl-page .sl-nav-toggle:hover {
  color: #ffffff !important;
  background: rgba(255,255,255,0.12) !important;
  border-color: rgba(255,255,255,0.22) !important;
}

.sl-page .sl-modal-close:hover {
  color: #ffffff !important;
  background: rgba(255,255,255,0.15) !important;
  border-color: rgba(255,255,255,0.18) !important;
}

@media (max-width: 1024px) {
  .sl-page .sl-hero h1 {
    font-size: 50px !important;
    line-height: 1.06 !important;
  }

  .sl-page .sl-section-title,
  .sl-page .sl-cta-panel h2,
  .sl-page .sl-modal-title {
    font-size: 40px !important;
    line-height: 1.12 !important;
  }
}

@media (max-width: 640px) {
  .sl-page .sl-hero h1 {
    font-size: 40px !important;
    line-height: 1.08 !important;
  }

  .sl-page .sl-section-title,
  .sl-page .sl-cta-panel h2,
  .sl-page .sl-modal-title {
    font-size: 30px !important;
    line-height: 1.16 !important;
  }

  .sl-page .sl-section-copy,
  .sl-page .sl-hero p,
  .sl-page .sl-card p,
  .sl-page .sl-value-card p,
  .sl-page .sl-fit-row span,
  .sl-page .sl-faq-card p,
  .sl-page .sl-cta-panel p,
  .sl-page .sl-detail-card p,
  .sl-page .sl-highlight span,
  .sl-page .sl-feature-list li,
  .sl-page .sl-tier-card li,
  .sl-page .sl-modal-subtitle,
  .sl-page .sl-muted-small {
    font-size: 16px !important;
  }
}

.sl-page .sl-nav-links a:hover {
  color: rgba(255,255,255,0.82) !important;
  background: transparent !important;
}

@media (max-width: 820px) {
  .sl-page .sl-nav-links a:hover {
    color: #ffffff !important;
    background: rgba(255,255,255,0.08) !important;
    border-color: rgba(255,255,255,0.10) !important;
  }
}

/* ===== v1.0.4 LANDING TAKEOVER + BUTTON CONTRACT =====
   Keep the marketplace page as a true landing page even when rendered through
   shortcode/page-builder content, and lock button colours to the approved design. */
html.spm-marketplace-active,
body.spm-marketplace-active {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  min-height: 100vh !important;
  overflow-x: hidden !important;
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.20), transparent 34rem),
    radial-gradient(circle at 85% 8%, rgba(124, 58, 237, 0.14), transparent 28rem),
    linear-gradient(180deg, #f8fbff 0%, #eef5ff 42%, #f8fbff 100%) !important;
}

body.spm-marketplace-active [data-spm-hidden-theme-chrome="true"],
body.spm-marketplace-active [data-spm-hidden-theme-toggle="true"],
body.spm-marketplace-active [data-spm-hidden-theme-section="true"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 0 !important;
  height: 0 !important;
  min-width: 0 !important;
  min-height: 0 !important;
  max-width: 0 !important;
  max-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
}

body.spm-marketplace-active .sl-page {
  position: relative !important;
  z-index: 1 !important;
  width: 100vw !important;
  max-width: 100vw !important;
  margin: 0 !important;
}

body.spm-marketplace-active .sl-modal {
  z-index: 999999 !important;
}

/* Button colour contract: primary buttons are blue with white text; secondary
   buttons use black text and do not change colour on hover. */
.sl-page .sl-btn-primary,
.sl-page button.sl-btn-primary,
.sl-page a.sl-btn-primary,
.sl-page .sl-filter.is-active {
  color: #ffffff !important;
  background: linear-gradient(135deg, #12337a, #2563eb) !important;
  border-color: transparent !important;
}

.sl-page .sl-btn-ghost,
.sl-page .sl-btn-dark,
.sl-page .sl-btn-outline,
.sl-page a.sl-btn-ghost,
.sl-page a.sl-btn-dark,
.sl-page a.sl-btn-outline,
.sl-page button.sl-btn-ghost,
.sl-page button.sl-btn-dark,
.sl-page button.sl-btn-outline {
  color: #101827 !important;
  background: #ffffff !important;
  border: 1px solid rgba(15, 23, 42, 0.14) !important;
  box-shadow: var(--sl-shadow-xs) !important;
}

.sl-page .sl-btn-primary:hover,
.sl-page button.sl-btn-primary:hover,
.sl-page a.sl-btn-primary:hover,
.sl-page .sl-filter.is-active:hover {
  color: #ffffff !important;
  background: linear-gradient(135deg, #12337a, #2563eb) !important;
  border-color: transparent !important;
  transform: none !important;
}

.sl-page .sl-btn-ghost:hover,
.sl-page .sl-btn-dark:hover,
.sl-page .sl-btn-outline:hover,
.sl-page a.sl-btn-ghost:hover,
.sl-page a.sl-btn-dark:hover,
.sl-page a.sl-btn-outline:hover,
.sl-page button.sl-btn-ghost:hover,
.sl-page button.sl-btn-dark:hover,
.sl-page button.sl-btn-outline:hover {
  color: #101827 !important;
  background: #ffffff !important;
  border-color: rgba(15, 23, 42, 0.14) !important;
  box-shadow: var(--sl-shadow-xs) !important;
  transform: none !important;
}

/* ===== v1.0.5 MODAL RADIUS + HERO/CTA CONTRAST FIX =====
   Restore the approved HTML modal shape while keeping the whole modal page
   scrollable. Lock hero/banner and CTA heading colours against theme overrides. */
body.spm-marketplace-active .sl-modal,
.sl-modal {
  padding: clamp(18px, 3vw, 32px) !important;
  background: rgba(2, 6, 23, 0.62) !important;
  backdrop-filter: blur(16px) !important;
}

body.spm-marketplace-active .sl-modal-shell,
.sl-modal-shell {
  width: min(1240px, calc(100vw - 32px)) !important;
  max-height: none !important;
  height: auto !important;
  margin: clamp(14px, 3vw, 32px) auto !important;
  overflow: hidden !important;
  border: 1px solid rgba(255, 255, 255, 0.20) !important;
  border-radius: 34px !important;
  background: #ffffff !important;
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.38) !important;
}

.sl-modal-shell .sl-modal-hero {
  border-radius: 34px 34px 0 0 !important;
  overflow: hidden !important;
}

.sl-modal-shell .sl-modal-body {
  overflow: visible !important;
}

.sl-modal-shell .sl-modal-close,
.sl-modal-close {
  top: 22px !important;
  right: 22px !important;
  width: 46px !important;
  height: 46px !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255, 255, 255, 0.24) !important;
  background: rgba(255, 255, 255, 0.16) !important;
  color: #ffffff !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 12px 28px rgba(2, 6, 23, 0.18) !important;
  line-height: 1 !important;
  transform: none !important;
}

.sl-modal-shell .sl-modal-close:hover,
.sl-modal-close:hover {
  border-color: rgba(255, 255, 255, 0.24) !important;
  background: rgba(255, 255, 255, 0.16) !important;
  color: #ffffff !important;
  transform: none !important;
}

.sl-page .sl-hero h1,
.sl-page .sl-hero .sl-hero-content h1 {
  color: #ffffff !important;
}

.sl-modal-shell .sl-modal-hero,
.sl-modal-shell .sl-modal-title-wrap,
.sl-modal-shell .sl-modal-title-wrap .sl-modal-title,
.sl-modal-shell .sl-modal-title-wrap .sl-modal-subtitle,
.sl-modal-shell .sl-modal-title-wrap .sl-modal-badge {
  color: #ffffff !important;
}

.sl-modal-shell .sl-modal-title-wrap .sl-modal-subtitle {
  color: rgba(255, 255, 255, 0.90) !important;
}

.sl-modal-shell .sl-modal-title-wrap .sl-modal-badge {
  background: rgba(2, 6, 23, 0.24) !important;
  border-color: rgba(255, 255, 255, 0.34) !important;
}

.sl-page .sl-cta-panel,
.sl-page .sl-cta-panel h2,
.sl-page .sl-cta-panel p {
  color: #ffffff !important;
}

.sl-page .sl-cta-panel p {
  color: rgba(255, 255, 255, 0.92) !important;
}

@media (max-width: 640px) {
  body.spm-marketplace-active .sl-modal,
  .sl-modal {
    padding: 0 !important;
    background: #ffffff !important;
    backdrop-filter: none !important;
  }

  body.spm-marketplace-active .sl-modal-shell,
  .sl-modal-shell {
    width: 100vw !important;
    min-height: 100vh !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  .sl-modal-shell .sl-modal-hero {
    border-radius: 0 !important;
  }

  .sl-modal-shell .sl-modal-close,
  .sl-modal-close {
    top: 14px !important;
    right: 14px !important;
    color: #101827 !important;
    background: rgba(255, 255, 255, 0.94) !important;
    border-color: rgba(15, 23, 42, 0.12) !important;
  }

  .sl-modal-shell .sl-modal-close:hover,
  .sl-modal-close:hover {
    color: #101827 !important;
    background: rgba(255, 255, 255, 0.94) !important;
    border-color: rgba(15, 23, 42, 0.12) !important;
  }
}


/* ===== v1.0.6 CTA SHORTCODE FORM SUPPORT ===== */
.sl-cta-panel.has-form {
  grid-template-columns: 1fr;
  align-items: stretch;
}

.sl-cta-panel.has-form .sl-cta-actions {
  justify-content: flex-start;
}

.sl-cta-form-wrap {
  width: 100%;
  margin-top: 8px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.sl-cta-form-wrap,
.sl-cta-form-wrap p,
.sl-cta-form-wrap label,
.sl-cta-form-wrap legend,
.sl-cta-form-wrap .form-label {
  color: #ffffff;
}

.sl-cta-form-wrap input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=button]),
.sl-cta-form-wrap textarea,
.sl-cta-form-wrap select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 14px;
  background: #ffffff;
  color: #101827;
}

.sl-cta-form-wrap textarea {
  min-height: 120px;
}

.sl-cta-form-wrap input[type=submit],
.sl-cta-form-wrap button[type=submit],
.sl-cta-form-wrap .button,
.sl-cta-form-wrap .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 14px;
  background: #1d4ed8;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.15;
}

.sl-cta-form-wrap input[type=submit]:hover,
.sl-cta-form-wrap button[type=submit]:hover,
.sl-cta-form-wrap .button:hover,
.sl-cta-form-wrap .wp-block-button__link:hover {
  background: #1d4ed8;
  color: #ffffff;
}

@media (max-width: 640px) {
  .sl-cta-form-wrap {
    padding: 18px;
    border-radius: 20px;
  }
}

/* ===== v1.0.7 CTA MODAL FORM SUPPORT ===== */
.sl-cta-panel.has-form-modal {
  grid-template-columns: 1fr auto;
}

.sl-cta-actions button.sl-btn {
  border: 0;
}

.sl-cta-modal {
  position: fixed;
  inset: 0;
  z-index: 1001;
  display: none;
  padding: 24px;
  overflow-y: auto;
  background: rgba(2, 6, 23, 0.64);
  backdrop-filter: blur(16px);
  -webkit-overflow-scrolling: touch;
}

.sl-cta-modal.is-active {
  display: grid;
  place-items: center;
  animation: slFadeIn 180ms ease-out both;
}

.sl-cta-modal-shell {
  position: relative;
  width: min(780px, 100%);
  margin: 24px auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 34px;
  background: #ffffff;
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.38);
  animation: slModalIn 240ms ease-out both;
}

.sl-cta-modal-head {
  position: relative;
  padding: 34px 38px 28px;
  color: #ffffff;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.20), transparent 22rem),
    linear-gradient(135deg, #061536, #1d4ed8);
}

.sl-cta-modal-head .sl-eyebrow {
  margin-bottom: 16px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.sl-cta-modal-head h2 {
  margin: 0 56px 12px 0;
  color: #ffffff !important;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.sl-cta-modal-head p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 18px;
  line-height: 1.72;
}

.sl-cta-modal-close {
  position: absolute;
  z-index: 2;
  top: 20px;
  right: 20px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 25px;
  line-height: 1;
  transition: none;
}

.sl-cta-modal-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  transform: none;
}

.sl-cta-modal-close:focus-visible {
  outline: 4px solid var(--sl-focus-ring);
  outline-offset: 4px;
}

.sl-cta-modal .sl-cta-form-wrap {
  margin: 0;
  padding: 32px 38px 38px;
  border: 0;
  border-radius: 0;
  background: #ffffff;
  color: #101827;
  box-shadow: none;
}

.sl-cta-modal .sl-cta-form-wrap,
.sl-cta-modal .sl-cta-form-wrap p,
.sl-cta-modal .sl-cta-form-wrap label,
.sl-cta-modal .sl-cta-form-wrap legend,
.sl-cta-modal .sl-cta-form-wrap .form-label {
  color: #101827;
}

.sl-cta-modal .sl-cta-form-wrap input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=button]),
.sl-cta-modal .sl-cta-form-wrap textarea,
.sl-cta-modal .sl-cta-form-wrap select {
  border-color: rgba(15, 23, 42, 0.16);
  background: #f8fbff;
  color: #101827;
}

.sl-cta-modal .sl-cta-form-wrap input[type=submit],
.sl-cta-modal .sl-cta-form-wrap button[type=submit],
.sl-cta-modal .sl-cta-form-wrap .button,
.sl-cta-modal .sl-cta-form-wrap .wp-block-button__link {
  background: #1d4ed8;
  color: #ffffff;
}

.sl-cta-modal .sl-cta-form-wrap input[type=submit]:hover,
.sl-cta-modal .sl-cta-form-wrap button[type=submit]:hover,
.sl-cta-modal .sl-cta-form-wrap .button:hover,
.sl-cta-modal .sl-cta-form-wrap .wp-block-button__link:hover {
  background: #1d4ed8;
  color: #ffffff;
}

@media (max-width: 820px) {
  .sl-cta-panel.has-form-modal {
    grid-template-columns: 1fr;
  }

  .sl-cta-modal {
    padding: 12px;
  }

  .sl-cta-modal-shell {
    border-radius: 26px;
    margin: 12px auto;
  }

  .sl-cta-modal-head,
  .sl-cta-modal .sl-cta-form-wrap {
    padding: 24px;
  }

  .sl-cta-modal-head h2 {
    font-size: 40px;
    line-height: 1.12;
  }
}

@media (max-width: 640px) {
  .sl-cta-modal {
    padding: 0;
  }

  .sl-cta-modal.is-active {
    display: block;
  }

  .sl-cta-modal-shell {
    width: 100%;
    min-height: 100vh;
    margin: 0;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .sl-cta-modal-head,
  .sl-cta-modal .sl-cta-form-wrap {
    padding: 20px;
  }

  .sl-cta-modal-head h2 {
    font-size: 30px;
    margin-right: 52px;
  }

  .sl-cta-modal-head p {
    font-size: 16px;
    line-height: 1.68;
  }
}

/* ===== v1.0.8 CTA FORM RENDERING + MODAL CLOSE POLISH ===== */
.sl-modal-shell,
.sl-cta-modal-shell {
  border-radius: 34px !important;
  overflow: hidden !important;
}

.sl-modal-hero,
.sl-cta-modal-head {
  padding-right: 104px !important;
}

.sl-modal-close,
.sl-cta-modal-close,
.sl-modal-shell .sl-modal-close {
  position: absolute !important;
  top: 26px !important;
  right: 26px !important;
  z-index: 20 !important;
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  display: grid !important;
  place-items: center !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.16) !important;
  color: transparent !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.20), 0 12px 28px rgba(2, 6, 23, 0.16) !important;
  line-height: 1 !important;
  text-indent: -9999px !important;
  overflow: hidden !important;
  transform: none !important;
  transition: none !important;
}

.sl-modal-close::before,
.sl-modal-close::after,
.sl-cta-modal-close::before,
.sl-cta-modal-close::after {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  width: 16px !important;
  height: 2px !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  transform-origin: center !important;
}

.sl-modal-close::before,
.sl-cta-modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg) !important;
}

.sl-modal-close::after,
.sl-cta-modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg) !important;
}

.sl-modal-close:hover,
.sl-modal-close:active,
.sl-modal-close:focus,
.sl-cta-modal-close:hover,
.sl-cta-modal-close:active,
.sl-cta-modal-close:focus,
.sl-modal-shell .sl-modal-close:hover,
.sl-modal-shell .sl-modal-close:active,
.sl-modal-shell .sl-modal-close:focus {
  background: rgba(255, 255, 255, 0.16) !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
  color: transparent !important;
  transform: none !important;
}

.sl-cta-modal .sl-cta-form-wrap .slf-inline-embed:empty {
  min-height: 180px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(37, 99, 235, 0.20);
  border-radius: 18px;
  background: #f8fbff;
}

.sl-cta-modal .sl-cta-form-wrap .slf-inline-embed:empty::before {
  content: "Loading form…";
  color: #475569;
  font-size: 15px;
  font-weight: 700;
}

.spm-shortcode-warning {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(245, 158, 11, 0.32);
  border-radius: 18px;
  background: #fffbeb;
  color: #78350f;
  font-size: 15px;
  line-height: 1.55;
}

.spm-shortcode-warning strong {
  color: #78350f;
  font-size: 16px;
  font-weight: 700;
}

.spm-shortcode-warning span {
  color: #92400e;
}

.spm-shortcode-warning code {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  overflow-wrap: anywhere;
  padding: 6px 8px;
  border-radius: 8px;
  background: rgba(120, 53, 15, 0.08);
  color: #78350f;
  font-size: 13px;
}

@media (max-width: 820px) {
  .sl-modal-hero,
  .sl-cta-modal-head {
    padding-right: 86px !important;
  }

  .sl-modal-close,
  .sl-cta-modal-close,
  .sl-modal-shell .sl-modal-close {
    top: 20px !important;
    right: 20px !important;
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
  }
}

@media (max-width: 640px) {
  .sl-modal-shell,
  .sl-cta-modal-shell {
    border-radius: 0 !important;
  }

  .sl-modal-hero,
  .sl-cta-modal-head {
    padding-right: 72px !important;
  }

  .sl-modal-close,
  .sl-cta-modal-close,
  .sl-modal-shell .sl-modal-close {
    top: 16px !important;
    right: 16px !important;
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    background: rgba(255, 255, 255, 0.94) !important;
    border-color: rgba(15, 23, 42, 0.12) !important;
  }

  .sl-modal-close::before,
  .sl-modal-close::after,
  .sl-cta-modal-close::before,
  .sl-cta-modal-close::after {
    background: #101827 !important;
  }
}

/* ===== v1.1.0 Commerce buttons, yearly pricing, and Support section ===== */
.sl-btn-secondary {
  color: #101827;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.16);
  box-shadow: var(--sl-shadow-xs);
}

.sl-btn-primary:hover,
.sl-btn-secondary:hover,
.sl-btn-ghost:hover,
.sl-btn-outline:hover,
.sl-btn-dark:hover {
  color: inherit;
  background: inherit;
  border-color: inherit;
}

.sl-btn-primary:hover {
  color: #ffffff;
  background: linear-gradient(135deg, var(--sl-blue-700), var(--sl-blue-500));
}

.sl-card-commerce {
  display: grid;
  gap: 13px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--sl-border);
}

.sl-card-commerce .sl-price-row {
  position: relative;
  display: grid;
  gap: 7px;
  padding: 15px 16px;
  border: 1px solid rgba(29, 78, 216, 0.14);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(34, 211, 238, 0.13), transparent 52%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: inset 0 1px 0 #ffffff, 0 10px 24px rgba(9, 30, 66, 0.07);
}

.sl-card-commerce .sl-price-row::before {
  content: "Annual Pro";
  width: fit-content;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border: 1px solid rgba(29, 78, 216, 0.13);
  border-radius: 999px;
  color: #12337a;
  background: rgba(29, 78, 216, 0.07);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sl-card-commerce .sl-price-row strong,
.sl-side-price strong {
  color: #101827;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.sl-card-commerce .sl-price-row span,
.sl-side-price span {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border: 1px solid rgba(4, 120, 87, 0.15);
  border-radius: 999px;
  color: #047857;
  background: rgba(16, 185, 129, 0.10);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.1;
}

.sl-card-commerce .sl-price-row span::before,
.sl-side-price span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #10b981;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
}

.sl-card-actions,
.sl-card-secondary-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.sl-card-actions .sl-btn,
.sl-card-secondary-actions .sl-btn {
  min-height: 44px;
  padding: 11px 12px;
  font-size: 14px;
  line-height: 1.15;
  white-space: normal;
  text-align: center;
}

.sl-card-free-link {
  width: 100%;
  justify-content: center;
  font-weight: 700;
  text-decoration: none;
}

.sl-card-free-link:hover {
  color: var(--sl-blue-800);
  text-decoration: none;
}

.sl-card-learn {
  color: var(--sl-blue-800);
  background: #ffffff;
}

.sl-side-price {
  position: relative;
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  padding: 18px;
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(34, 211, 238, 0.12), transparent 50%),
    linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: inset 0 1px 0 #ffffff, 0 10px 24px rgba(9, 30, 66, 0.08);
}

.sl-modal-actions {
  align-items: center;
}

.sl-modal-actions .sl-btn {
  min-width: 170px;
}

.sl-commerce-side-card .sl-side-cta {
  margin-bottom: 12px;
}

.sl-commerce-side-card .sl-side-cta .sl-btn {
  width: 100%;
}

.sl-support {
  position: relative;
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 18%, rgba(34, 211, 238, 0.18), transparent 28rem),
    radial-gradient(circle at 86% 16%, rgba(124, 58, 237, 0.16), transparent 30rem),
    linear-gradient(135deg, #061536 0%, #0b1f4d 50%, #12337a 100%);
  overflow: hidden;
}

.sl-support::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.92), rgba(0,0,0,0.28));
}

.sl-support .sl-container {
  position: relative;
  z-index: 1;
}

.sl-support-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  gap: 34px;
  align-items: stretch;
}

.sl-support-panel,
.sl-support-ticket,
.sl-support-card {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 26px 76px rgba(2, 6, 23, 0.28);
  backdrop-filter: blur(20px);
}

.sl-support-panel {
  display: grid;
  align-content: center;
  gap: 22px;
  min-height: 560px;
  padding: 34px;
  border-radius: 32px;
}

.sl-support-panel .sl-section-title {
  color: #ffffff;
}

.sl-support-panel .sl-section-copy {
  color: rgba(255, 255, 255, 0.82);
}

.sl-support-steps {
  display: grid;
  gap: 12px;
  margin-top: 4px;
}

.sl-support-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
}

.sl-support-step strong {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--sl-blue-700), var(--sl-cyan-400));
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.26);
}

.sl-support-step span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 650;
}

.sl-support-stack {
  display: grid;
  gap: 18px;
  align-content: stretch;
}

.sl-support-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.sl-support-card {
  min-height: 220px;
  padding: 22px;
  border-radius: 26px;
}

.sl-support-card.is-featured {
  background:
    radial-gradient(circle at 90% 0%, rgba(34, 211, 238, 0.18), transparent 44%),
    rgba(255, 255, 255, 0.13);
  border-color: rgba(96, 165, 250, 0.34);
}

.sl-support-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--sl-blue-700), var(--sl-violet-500));
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.30);
}

.sl-support-card h3,
.sl-support-ticket h3 {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.sl-support-card p {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.62;
}

.sl-support-ticket {
  padding: 24px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 92% 8%, rgba(34, 211, 238, 0.14), transparent 38%),
    rgba(255, 255, 255, 0.10);
}

.sl-ticket-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  margin-bottom: 18px;
}

.sl-ticket-label {
  display: block;
  margin-bottom: 6px;
  color: var(--sl-cyan-400);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sl-ticket-badge {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border: 1px solid rgba(16, 185, 129, 0.22);
  border-radius: 999px;
  color: #bbf7d0;
  background: rgba(16, 185, 129, 0.13);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.sl-ticket-note {
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  font-size: 16px;
  line-height: 1.62;
}

.sl-ticket-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

@media (max-width: 1180px) {
  .sl-support-grid {
    grid-template-columns: 1fr;
  }

  .sl-support-panel {
    min-height: 0;
  }
}

@media (max-width: 820px) {
  .sl-card-actions,
  .sl-card-secondary-actions,
  .sl-support-cards,
  .sl-modal-actions .sl-btn {
    min-width: 0;
  }

  .sl-support-panel,
  .sl-support-ticket,
  .sl-support-card {
    border-radius: 24px;
  }
}

@media (max-width: 640px) {
  .sl-support-panel,
  .sl-support-ticket,
  .sl-support-card {
    padding: 20px;
  }

  .sl-support-step {
    grid-template-columns: 1fr;
  }

  .sl-ticket-head {
    flex-direction: column;
  }
}

/* ===== v1.1.1 CTA MODAL VIEWPORT + PRODUCT MODAL BUY BUTTON FIX =====
   Keep tall CTA forms anchored from the top of the viewport so the first
   form rows are reachable, and make product-modal Buy Pro actions readable
   with white text without changing card-level secondary button rules. */
.sl-cta-modal {
  align-items: initial !important;
  justify-items: initial !important;
  place-items: initial !important;
  padding: clamp(18px, 3vw, 32px) !important;
  overflow-y: auto !important;
  overscroll-behavior: contain;
}

.sl-cta-modal.is-active {
  display: block !important;
  place-items: initial !important;
}

.sl-cta-modal-shell {
  margin: 0 auto clamp(18px, 3vw, 32px) !important;
}

.sl-cta-modal-head {
  padding-top: 44px !important;
  padding-right: 110px !important;
}

.sl-cta-modal-close,
.sl-modal-close,
.sl-modal-shell .sl-modal-close {
  top: 24px !important;
  right: 24px !important;
}

.sl-modal [data-modal-buy],
.sl-modal .sl-modal-actions .sl-btn-dark {
  color: #ffffff !important;
  background: rgba(2, 6, 23, 0.92) !important;
  border-color: rgba(2, 6, 23, 0.92) !important;
}

.sl-modal [data-modal-side-buy] {
  color: #ffffff !important;
}

.sl-modal [data-modal-buy]:hover,
.sl-modal [data-modal-buy]:focus,
.sl-modal .sl-modal-actions .sl-btn-dark:hover,
.sl-modal .sl-modal-actions .sl-btn-dark:focus {
  color: #ffffff !important;
  background: rgba(2, 6, 23, 0.92) !important;
  border-color: rgba(2, 6, 23, 0.92) !important;
  transform: none !important;
}

.sl-modal [data-modal-side-buy]:hover,
.sl-modal [data-modal-side-buy]:focus {
  color: #ffffff !important;
  transform: none !important;
}

@media (max-width: 820px) {
  .sl-cta-modal-head {
    padding-top: 38px !important;
    padding-right: 92px !important;
  }

  .sl-cta-modal-close,
  .sl-modal-close,
  .sl-modal-shell .sl-modal-close {
    top: 20px !important;
    right: 20px !important;
  }
}

@media (max-width: 640px) {
  .sl-cta-modal {
    padding: 0 !important;
  }

  .sl-cta-modal-shell {
    margin: 0 !important;
  }

  .sl-cta-modal-head {
    padding-top: 56px !important;
    padding-right: 72px !important;
  }

  .sl-cta-modal-close,
  .sl-modal-close,
  .sl-modal-shell .sl-modal-close {
    top: 16px !important;
    right: 16px !important;
  }
}

/* Customer Dashboard Foundation */
.spm-customer-dashboard {
  --spm-dashboard-bg: #f6f8fc;
  --spm-dashboard-card: #ffffff;
  --spm-dashboard-ink: #0f172a;
  --spm-dashboard-muted: #64748b;
  --spm-dashboard-border: rgba(15, 23, 42, 0.1);
  --spm-dashboard-blue: #2563eb;
  --spm-dashboard-navy: #0b1f4d;
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 22px;
  color: var(--spm-dashboard-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.spm-dashboard-hero {
  border-radius: 30px;
  padding: clamp(30px, 5vw, 56px);
  background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.22), transparent 34%), linear-gradient(135deg, #081832 0%, #0b1f4d 46%, #2563eb 100%);
  color: #ffffff;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.24);
  margin-bottom: 28px;
}
.spm-dashboard-kicker,
.spm-dashboard-mini {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.spm-dashboard-kicker {
  color: #bfdbfe;
}
.spm-dashboard-hero h1 {
  max-width: 820px;
  margin: 14px 0 14px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}
.spm-dashboard-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.75;
}
.spm-dashboard-panel,
.spm-dashboard-license-card,
.spm-dashboard-summary-card {
  border: 1px solid var(--spm-dashboard-border);
  border-radius: 24px;
  background: var(--spm-dashboard-card);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}
.spm-dashboard-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
}
.spm-dashboard-panel h2,
.spm-dashboard-license-card h2 {
  margin: 7px 0 8px;
  font-size: 24px;
  line-height: 1.18;
  letter-spacing: -0.03em;
}
.spm-dashboard-panel p {
  max-width: 660px;
  margin: 0;
  color: var(--spm-dashboard-muted);
  line-height: 1.7;
}
.spm-dashboard-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 22px;
}
.spm-dashboard-summary-card {
  padding: 22px;
}
.spm-dashboard-summary-card span {
  display: block;
  color: var(--spm-dashboard-muted);
  font-size: 13px;
  font-weight: 700;
}
.spm-dashboard-summary-card strong {
  display: block;
  margin-top: 8px;
  font-size: 28px;
  letter-spacing: -0.04em;
}
.spm-dashboard-license-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.spm-dashboard-license-card {
  padding: 24px;
}
.spm-dashboard-license-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.spm-dashboard-mini {
  color: var(--spm-dashboard-blue);
}
.spm-dashboard-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}
.spm-dashboard-status.is-payment_failed,
.spm-dashboard-status.is-cancelled,
.spm-dashboard-status.is-expired,
.spm-dashboard-status.is-disabled {
  background: #fef2f2;
  color: #b91c1c;
}
.spm-dashboard-details {
  display: grid;
  gap: 12px;
  margin: 0 0 20px;
}
.spm-dashboard-details div {
  display: grid;
  gap: 5px;
  padding: 12px 0;
  border-top: 1px solid var(--spm-dashboard-border);
}
.spm-dashboard-details dt {
  color: var(--spm-dashboard-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.spm-dashboard-details dd {
  margin: 0;
  font-weight: 700;
}
.spm-dashboard-details code {
  display: inline-block;
  max-width: 100%;
  padding: 6px 9px;
  border-radius: 10px;
  background: #f1f5f9;
  color: #0f172a;
  white-space: normal;
  word-break: break-word;
}
.spm-dashboard-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.spm-dashboard-button,
.spm-dashboard-support summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--spm-dashboard-blue);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}
.spm-dashboard-button.ghost {
  background: #eef4ff;
  color: var(--spm-dashboard-blue);
  border-color: rgba(37, 99, 235, 0.16);
}
.spm-dashboard-support details {
  position: relative;
}
.spm-dashboard-support summary {
  list-style: none;
  background: var(--spm-dashboard-navy);
}
.spm-dashboard-support summary::-webkit-details-marker {
  display: none;
}
.spm-dashboard-support-form {
  width: min(680px, 90vw);
  margin-top: 14px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--spm-dashboard-border);
  background: #ffffff;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.12);
}
.spm-dashboard-muted {
  color: var(--spm-dashboard-muted);
  font-size: 14px;
  font-weight: 700;
}
.spm-dashboard-license-card.is-access-warning {
  border-color: rgba(245, 158, 11, 0.34);
}
.spm-dashboard-license-card.is-access-locked {
  border-color: rgba(239, 68, 68, 0.28);
  background: linear-gradient(180deg, #ffffff 0%, #fff7f7 100%);
}
.spm-dashboard-entitlement {
  display: grid;
  gap: 4px;
  margin: 0 0 18px;
  padding: 13px 14px;
  border-radius: 16px;
  border: 1px solid rgba(37, 99, 235, 0.15);
  background: #eff6ff;
  color: #1e3a8a;
}
.spm-dashboard-entitlement strong {
  font-size: 13px;
  font-weight: 900;
}
.spm-dashboard-entitlement span {
  font-size: 13px;
  line-height: 1.55;
}
.spm-dashboard-entitlement.is-success {
  border-color: rgba(16, 185, 129, 0.24);
  background: #ecfdf5;
  color: #065f46;
}
.spm-dashboard-entitlement.is-warning {
  border-color: rgba(245, 158, 11, 0.28);
  background: #fffbeb;
  color: #92400e;
}
.spm-dashboard-entitlement.is-locked {
  border-color: rgba(239, 68, 68, 0.24);
  background: #fef2f2;
  color: #991b1b;
}
.spm-dashboard-cta-row {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.spm-dashboard-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #ffffff;
  color: #0f172a;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}
@media (max-width: 860px) {
  .spm-dashboard-summary-grid,
  .spm-dashboard-license-grid {
    grid-template-columns: 1fr;
  }
  .spm-dashboard-panel,
  .spm-dashboard-license-top {
    align-items: stretch;
    flex-direction: column;
  }
}
@media (max-width: 560px) {
  .spm-customer-dashboard {
    padding: 28px 14px;
  }
  .spm-dashboard-hero,
  .spm-dashboard-panel,
  .spm-dashboard-license-card {
    border-radius: 20px;
  }
  .spm-dashboard-actions,
  .spm-dashboard-button,
  .spm-dashboard-support summary {
    width: 100%;
  }
}
.spm-license-verifier {
  --spm-dashboard-card: #ffffff;
  --spm-dashboard-ink: #0f172a;
  --spm-dashboard-muted: #64748b;
  --spm-dashboard-border: rgba(15, 23, 42, 0.1);
  --spm-dashboard-blue: #2563eb;
  --spm-dashboard-navy: #0b1f4d;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: 18px;
  align-items: center;
  margin: 0 0 22px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid var(--spm-dashboard-border);
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}
.spm-license-verifier.is-standalone {
  max-width: 960px;
  margin: 32px auto;
}
.spm-license-verifier h2 {
  margin: 4px 0 8px;
  color: var(--spm-dashboard-ink);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
}
.spm-license-verifier p {
  margin: 0;
  color: var(--spm-dashboard-muted);
  line-height: 1.65;
}
.spm-license-verifier-form {
  display: grid;
  gap: 10px;
}
.spm-license-verifier-form input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--spm-dashboard-border);
  background: #f8fafc;
  color: var(--spm-dashboard-ink);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.spm-license-verifier-form button,
.spm-dashboard-copy-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  background: var(--spm-dashboard-navy);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}
.spm-license-verifier-form button {
  min-height: 46px;
  padding: 12px 18px;
}
.spm-dashboard-code-wrap {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.spm-dashboard-copy-code {
  padding: 8px 12px;
  background: #e0ecff;
  color: var(--spm-dashboard-blue);
}
.spm-dashboard-license-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
  font-size: 12px;
  font-weight: 900;
}
.spm-dashboard-license-badge.is-payment_failed,
.spm-dashboard-license-badge.is-cancelled {
  background: #fffbeb;
  color: #92400e;
}
.spm-dashboard-license-badge.is-expired,
.spm-dashboard-license-badge.is-disabled {
  background: #fef2f2;
  color: #991b1b;
}
.spm-dashboard-support-prefill {
  margin: 10px 0 0;
  color: var(--spm-dashboard-muted);
  font-size: 13px;
  line-height: 1.55;
}
.spm-support-verification-result {
  grid-column: 1 / -1;
  display: grid;
  gap: 4px;
  padding: 14px 15px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #f8fafc;
  color: var(--spm-dashboard-ink);
}
.spm-support-verification-result strong {
  font-size: 14px;
  font-weight: 900;
}
.spm-support-verification-result span,
.spm-support-verification-result em {
  font-size: 13px;
  line-height: 1.55;
}
.spm-support-verification-result.is-valid_pro_license {
  border-color: rgba(16, 185, 129, 0.24);
  background: #ecfdf5;
  color: #065f46;
}
.spm-support-verification-result.is-expired_license {
  border-color: rgba(245, 158, 11, 0.28);
  background: #fffbeb;
  color: #92400e;
}
.spm-support-verification-result.is-unknown_activation_code {
  border-color: rgba(239, 68, 68, 0.24);
  background: #fef2f2;
  color: #991b1b;
}
@media (max-width: 760px) {
  .spm-license-verifier {
    grid-template-columns: 1fr;
  }
}

/* v1.7.1 Customer Dashboard + Account Visual Polish */
.spm-customer-dashboard-page.spm-customer-dashboard-active {
  background:
    radial-gradient(circle at 12% 4%, rgba(37, 99, 235, 0.16), transparent 28rem),
    radial-gradient(circle at 88% 10%, rgba(124, 58, 237, 0.12), transparent 30rem),
    linear-gradient(180deg, #f8fbff 0%, #eef5ff 48%, #f8fbff 100%);
}

.spm-customer-dashboard {
  width: min(1180px, calc(100% - 40px));
  padding: 64px 0;
}

.spm-customer-dashboard .spm-dashboard-hero {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.spm-customer-dashboard .spm-dashboard-hero::after {
  content: "";
  position: absolute;
  width: 25rem;
  height: 25rem;
  right: -8rem;
  top: -11rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.20), transparent 68%);
  pointer-events: none;
}

.spm-customer-dashboard .spm-dashboard-hero h1 {
  position: relative;
  z-index: 1;
  color: #ffffff;
  text-shadow: 0 12px 32px rgba(2, 6, 23, 0.22);
}

.spm-customer-dashboard .spm-dashboard-hero p,
.spm-customer-dashboard .spm-dashboard-kicker {
  position: relative;
  z-index: 1;
}

.spm-dashboard-logged-out,
.spm-dashboard-empty {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: clamp(26px, 4vw, 38px);
}

.spm-dashboard-panel,
.spm-license-verifier,
.spm-dashboard-summary-card,
.spm-dashboard-license-card {
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.09);
}

.spm-license-verifier {
  padding: clamp(22px, 3vw, 32px);
}

.spm-license-verifier-form input:focus,
.spm-customer-account-page .woocommerce form.login input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="submit"]):focus,
.spm-customer-account-page .woocommerce form.register input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="submit"]):focus,
.spm-customer-account-page .woocommerce form.lost_reset_password input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="submit"]):focus {
  border-color: rgba(37, 99, 235, 0.46);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
  outline: none;
}

.spm-dashboard-button:hover,
.spm-dashboard-support summary:hover,
.spm-dashboard-link:hover,
.spm-dashboard-copy-code:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.16);
}

.spm-customer-account-page {
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.14), transparent 30rem),
    linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}

.spm-customer-account-page .entry-content,
.spm-customer-account-page .site-main,
.spm-customer-account-page main {
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
}

.spm-account-hero {
  margin: 38px auto 26px;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 30px;
  background: linear-gradient(135deg, #081832 0%, #12337a 56%, #2563eb 100%);
  color: #ffffff;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.22);
}

.spm-account-hero span {
  display: inline-flex;
  margin-bottom: 14px;
  color: #bfdbfe;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spm-account-hero h1 {
  max-width: 760px;
  margin: 0 0 12px;
  color: #ffffff;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.spm-account-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.72;
}

.spm-account-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.spm-account-benefits strong {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  color: #ffffff;
  font-size: 13px;
  font-weight: 850;
}

.spm-customer-account-page .woocommerce form.login,
.spm-customer-account-page .woocommerce form.register,
.spm-customer-account-page .woocommerce form.lost_reset_password {
  margin: 0 0 48px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.09);
}

.spm-customer-account-page .woocommerce form.login label,
.spm-customer-account-page .woocommerce form.register label,
.spm-customer-account-page .woocommerce form.lost_reset_password label {
  display: block;
  margin-bottom: 8px;
  color: #0f172a;
  font-size: 14px;
  font-weight: 850;
}

.spm-customer-account-page .woocommerce form.login input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="submit"]),
.spm-customer-account-page .woocommerce form.register input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="submit"]),
.spm-customer-account-page .woocommerce form.lost_reset_password input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="submit"]) {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(15, 23, 42, 0.16);
  border-radius: 14px;
  background: #f8fafc;
  color: #0f172a;
}

.spm-customer-account-page .woocommerce button.button,
.spm-customer-account-page .woocommerce a.button {
  min-height: 46px;
  padding: 12px 20px;
  border: 0;
  border-radius: 999px;
  background: #2563eb;
  color: #ffffff;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.24);
}

.spm-customer-account-page .woocommerce-LostPassword a,
.spm-customer-account-page .woocommerce form.login a {
  color: #2563eb;
  font-weight: 800;
}

@media (max-width: 860px) {
  .spm-dashboard-logged-out,
  .spm-dashboard-empty {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .spm-customer-dashboard {
    width: min(100% - 28px, 1180px);
    padding: 34px 0;
  }

  .spm-account-hero {
    border-radius: 22px;
  }
}


/* v1.7.2 Customer Account Form Layout Fixes */
.spm-customer-account-page .woocommerce > h2,
.spm-customer-account-page .woocommerce #customer_login > h2,
.spm-customer-account-page .woocommerce #customer_login .u-column1 > h2,
.spm-customer-account-page .woocommerce #customer_login .u-column2 > h2,
.spm-customer-account-page .entry-header .entry-title,
.spm-customer-account-page .page-header .page-title {
  display: none;
}

.spm-customer-account-page .woocommerce {
  width: min(100%, 700px);
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
}

.spm-customer-account-page .woocommerce form.login,
.spm-customer-account-page .woocommerce form.register,
.spm-customer-account-page .woocommerce form.lost_reset_password {
  width: 100%;
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
}

.spm-customer-account-page .woocommerce form.login .form-row,
.spm-customer-account-page .woocommerce form.register .form-row,
.spm-customer-account-page .woocommerce form.lost_reset_password .form-row {
  margin-bottom: 18px;
}

.spm-customer-account-page .woocommerce form.login .woocommerce-form-login__rememberme,
.spm-customer-account-page .woocommerce form.login label.woocommerce-form__label-for-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: auto;
  min-height: 0;
  margin: 4px 0 18px;
  color: #0f172a;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.spm-customer-account-page .woocommerce form.login input[type="checkbox"],
.spm-customer-account-page .woocommerce form.register input[type="checkbox"],
.spm-customer-account-page .woocommerce form.lost_reset_password input[type="checkbox"] {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  max-width: 18px;
  max-height: 18px;
  margin: 0;
  padding: 0;
  border-radius: 5px;
  box-shadow: none;
}

.spm-customer-account-page .woocommerce form.login input[type="checkbox"]:focus,
.spm-customer-account-page .woocommerce form.register input[type="checkbox"]:focus,
.spm-customer-account-page .woocommerce form.lost_reset_password input[type="checkbox"]:focus {
  outline: 2px solid rgba(37, 99, 235, 0.30);
  outline-offset: 2px;
  box-shadow: none;
}

.spm-customer-account-page .woocommerce form.login .woocommerce-form-login__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}

@media (max-width: 760px) {
  .spm-customer-account-page .woocommerce {
    width: 100%;
    max-width: 100%;
  }
}

/* v1.7.3 Customer Account Banner Width Correction */
.spm-customer-account-page .woocommerce {
  width: 100%;
  max-width: none;
  margin-right: 0;
  margin-left: 0;
}

.spm-customer-account-page .spm-account-hero {
  width: min(1120px, calc(100% - 40px));
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
}

.spm-customer-account-page .woocommerce #customer_login,
.spm-customer-account-page .woocommerce form.login,
.spm-customer-account-page .woocommerce form.register,
.spm-customer-account-page .woocommerce form.lost_reset_password {
  width: min(100%, 700px);
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
}

.spm-customer-account-page .woocommerce #customer_login .u-column1,
.spm-customer-account-page .woocommerce #customer_login .u-column2 {
  float: none;
  width: 100%;
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
}

.spm-customer-account-page .woocommerce button.button,
.spm-customer-account-page .woocommerce a.button,
.spm-customer-account-page .woocommerce form.login .woocommerce-form-login__submit {
  font-weight: 500;
}

.spm-customer-account-page .woocommerce-LostPassword a,
.spm-customer-account-page .woocommerce form.login a {
  font-weight: 500;
}

@media (max-width: 760px) {
  .spm-customer-account-page .spm-account-hero {
    width: min(100% - 28px, 1120px);
  }
}

/* v2.4.5 Customer Portal Banner Width Polish */
.spm-customer-dashboard {
  --spm-customer-dashboard-edge-gap: clamp(28px, 4vw, 72px);
}

.spm-customer-dashboard .spm-dashboard-hero {
  width: calc(100vw - (var(--spm-customer-dashboard-edge-gap) * 2));
  max-width: none;
  margin-right: calc(50% - 50vw + var(--spm-customer-dashboard-edge-gap));
  margin-left: calc(50% - 50vw + var(--spm-customer-dashboard-edge-gap));
}

@media (max-width: 560px) {
  .spm-customer-dashboard {
    --spm-customer-dashboard-edge-gap: 14px;
  }

  .spm-customer-dashboard .spm-dashboard-hero {
    width: min(100% - 28px, 1180px);
    margin-right: auto;
    margin-left: auto;
  }
}

/* v2.5.24: marketplace card variable price containment */
.sl-card-commerce .sl-price-row {
  max-width: 100%;
  overflow: hidden;
}

.sl-card-commerce .sl-price-row strong {
  max-width: 100%;
  font-size: clamp(24px, 2.25vw, 28px);
  overflow-wrap: anywhere;
  word-break: normal;
}

/* v2.5.26: clean discount pricing display */
.sl-card-commerce .sl-price-row.has-discount {
  gap: 8px;
}

.sl-card-commerce .sl-price-regular {
  width: fit-content;
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.sl-card-commerce .sl-price-save {
  width: fit-content;
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border: 1px solid rgba(180, 83, 9, 0.18);
  border-radius: 999px;
  background: rgba(251, 191, 36, 0.14);
  color: #b45309;
  font-size: 12.5px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

/* v2.5.57 premium homepage source-of-truth rebuild */
body.spm-landing-page{margin:0;color:#f8fbff;background:linear-gradient(135deg,#0f172a 0%,#1a2949 100%);font-family:'Inter',ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;line-height:1.6;-webkit-font-smoothing:antialiased}
body.spm-landing-page:before{content:'';position:fixed;inset:0;z-index:-2;pointer-events:none;background:radial-gradient(circle at 82% 8%,rgba(59,130,246,.16) 0%,transparent 42%),radial-gradient(circle at 8% 48%,rgba(16,185,129,.07) 0%,transparent 38%),radial-gradient(circle at 70% 92%,rgba(124,58,237,.10) 0%,transparent 42%)}
.spm-home-premium-page{--ink:#060d1e;--ink-2:#0f172a;--ink-3:#1a2949;--text:#f8fbff;--muted:#cbd5e1;--soft:#93a4bb;--line:rgba(255,255,255,.10);--line-strong:rgba(96,165,250,.32);--card:rgba(30,41,59,.58);--card-2:rgba(51,65,85,.35);--blue:#38bdf8;--blue-2:#2563eb;--indigo:#5b5fe8;--violet:#7c3aed;--mint:#10b981;--amber:#f59e0b;--danger:#ef4444;--radius-sm:12px;--radius-md:20px;--radius-lg:28px;--radius-xl:36px;--serif:'Instrument Serif',Georgia,serif;--sans:'Inter',ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;--ease:cubic-bezier(.22,1,.36,1);margin:0;font-family:var(--sans);color:var(--text)!important;background:radial-gradient(circle at 82% 8%,rgba(59,130,246,.16) 0%,transparent 42%),radial-gradient(circle at 8% 48%,rgba(16,185,129,.07) 0%,transparent 38%),radial-gradient(circle at 70% 92%,rgba(124,58,237,.10) 0%,transparent 42%),linear-gradient(135deg,var(--ink-2) 0%,var(--ink-3) 100%)!important;min-height:100vh;line-height:1.6;-webkit-font-smoothing:antialiased;overflow:clip}
.spm-home-premium-page *{box-sizing:border-box}.spm-home-premium-page a{color:inherit;text-decoration:none}.spm-home-premium-page img,.spm-home-premium-page svg{display:block;max-width:100%}.spm-home-premium-page .wrap{width:min(1400px,calc(100% - 56px));margin:0 auto}.spm-home-premium-page .sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.spm-home-premium-page .reveal{opacity:1;transform:none}.spm-home-premium-page .nav-bar{position:sticky;top:0;z-index:80;border-bottom:1px solid rgba(255,255,255,.10);background:rgba(15,23,42,.92);backdrop-filter:blur(22px);-webkit-backdrop-filter:blur(22px)}.spm-home-premium-page .nav-inner{display:flex;align-items:center;justify-content:space-between;min-height:74px;gap:20px}.spm-home-premium-page .brand{display:inline-flex;align-items:center;min-width:0;flex:0 0 auto}.spm-home-premium-page .brand img{width:318px!important;height:auto!important;max-width:318px!important;object-fit:contain!important;object-position:left center!important}.spm-home-premium-page .nav-links{display:flex;align-items:center;gap:28px;font-size:14px;font-weight:600;color:rgba(255,255,255,.62)}.spm-home-premium-page .nav-links a:hover,.spm-home-premium-page .nav-links a:focus{color:#fff;outline:none}.spm-home-premium-page .nav-actions{display:flex;align-items:center;gap:10px}.spm-home-premium-page .nav-toggle{display:none;width:40px;height:40px;border-radius:999px;border:1px solid rgba(255,255,255,.16);background:rgba(255,255,255,.04);color:#fff}.spm-home-premium-page .btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;border-radius:999px;border:1px solid transparent;white-space:nowrap;transition:transform .18s var(--ease),box-shadow .18s,border-color .18s,background .18s,color .18s}.spm-home-premium-page .btn:hover{transform:translateY(-2px)}.spm-home-premium-page .btn-sm{height:40px;padding:0 18px;font-size:13px;font-weight:700}.spm-home-premium-page .btn-lg{height:54px;padding:0 28px;font-size:15px;font-weight:700}.spm-home-premium-page .btn-primary{background:linear-gradient(135deg,#5b5fe8,#2563eb);color:#fff;box-shadow:0 0 0 1px rgba(91,95,232,.48),0 12px 32px rgba(37,99,235,.32)}.spm-home-premium-page .btn-ghost{border-color:rgba(255,255,255,.16);color:rgba(255,255,255,.78);background:rgba(255,255,255,.04)}.spm-home-premium-page .btn-soft{background:rgba(56,189,248,.10);border-color:rgba(56,189,248,.22);color:#93c5fd}.spm-home-premium-page .btn-pro{background:linear-gradient(135deg,#7c3aed,#2563eb);color:#fff;border-color:rgba(147,197,253,.34);box-shadow:0 10px 26px rgba(124,58,237,.24)}
.spm-home-premium-page .eyebrow{display:inline-flex;align-items:center;gap:8px;height:30px;padding:0 13px;border-radius:999px;border:1px solid rgba(96,165,250,.30);background:rgba(59,130,246,.10);color:#7CC3FF;font-size:11px;font-weight:800;letter-spacing:.075em;text-transform:uppercase;margin-bottom:22px}.spm-home-premium-page .eyebrow:before{content:"";width:7px;height:7px;border-radius:50%;background:#60A5FA;box-shadow:0 0 0 5px rgba(96,165,250,.13)}.spm-home-premium-page .eyebrow .dot{display:none}.spm-home-premium-page h1,.spm-home-premium-page h2{font-family:var(--serif);font-weight:400;letter-spacing:-.04em}.spm-home-premium-page .hero h1 em,.spm-home-premium-page .section-title em,.spm-home-premium-page .cta-card h2 em{color:#93c5fd;font-style:italic}.spm-home-premium-page .hero{position:relative;overflow:hidden;padding:104px 0 92px;border-bottom:1px solid rgba(255,255,255,.06)}.spm-home-premium-page .hero:before{content:'';position:absolute;inset:0;pointer-events:none;background:radial-gradient(ellipse 900px 560px at 74% -10%,rgba(59,130,246,.18),transparent 65%),radial-gradient(ellipse 660px 420px at 10% 90%,rgba(124,58,237,.14),transparent 60%)}.spm-home-premium-page .grid-lines{position:absolute;inset:0;pointer-events:none;opacity:.75;background-image:linear-gradient(rgba(255,255,255,.026) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.026) 1px,transparent 1px);background-size:64px 64px;mask-image:radial-gradient(ellipse 80% 60% at 50% 0%,black 0%,transparent 100%)}.spm-home-premium-page .hero-inner{position:relative;z-index:2;display:grid;grid-template-columns:1fr 480px;gap:64px;align-items:center}.spm-home-premium-page .hero h1{margin:0 0 24px;color:#fff!important;font-family:var(--serif)!important;font-weight:400!important;letter-spacing:-.04em;font-size:clamp(46px,5.7vw,78px);line-height:1;max-width:760px}.spm-home-premium-page .hero-lede{margin:0 0 34px;max-width:590px;color:rgba(255,255,255,.62);font-size:clamp(17px,1.6vw,20px);line-height:1.68}.spm-home-premium-page .hero-actions{display:flex;flex-wrap:wrap;gap:12px;align-items:center}.spm-home-premium-page .trust-row{display:flex;flex-wrap:nowrap;gap:10px;margin-top:28px;align-items:center;overflow-x:auto;scrollbar-width:none}.spm-home-premium-page .trust-row::-webkit-scrollbar{display:none}.spm-home-premium-page .trust-pill{display:inline-flex;align-items:center;gap:7px;height:34px;padding:0 13px;border-radius:999px;border:1px solid rgba(255,255,255,.10);background:rgba(255,255,255,.04);color:rgba(255,255,255,.56);font-size:12px;font-weight:650;white-space:nowrap;flex:0 0 auto}.spm-home-premium-page .trust-pill span,.spm-home-premium-page .trust-pill strong{color:#6ee7b7}
.spm-home-premium-page .market-console{border-radius:var(--radius-lg);border:1px solid rgba(255,255,255,.10);background:linear-gradient(135deg,rgba(15,23,42,.96),rgba(30,41,59,.76));box-shadow:0 40px 100px rgba(0,0,0,.44),inset 0 1px 0 rgba(255,255,255,.06);overflow:hidden}.spm-home-premium-page .console-titlebar{display:flex;align-items:center;justify-content:space-between;padding:14px 18px;border-bottom:1px solid rgba(255,255,255,.08);background:rgba(255,255,255,.03)}.spm-home-premium-page .dots{display:flex;gap:7px}.spm-home-premium-page .dot-red,.spm-home-premium-page .dot-yellow,.spm-home-premium-page .dot-green{width:9px;height:9px;border-radius:50%}.spm-home-premium-page .dot-red{background:#ff5f56}.spm-home-premium-page .dot-yellow{background:#febc2e}.spm-home-premium-page .dot-green{background:#28c840}.spm-home-premium-page .console-tab{font-size:12px;font-weight:800;color:rgba(255,255,255,.42);letter-spacing:.02em}.spm-home-premium-page .live-badge{display:flex;align-items:center;gap:6px;color:#6ee7b7;font-size:11px;font-weight:800}.spm-home-premium-page .pulse-dot{width:7px;height:7px;border-radius:50%;background:#10b981;animation:spmPulse 1.7s ease-in-out infinite}@keyframes spmPulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.4;transform:scale(.75)}}.spm-home-premium-page .console-body{padding:18px}.spm-home-premium-page .console-header{display:flex;justify-content:space-between;gap:16px;align-items:flex-start;margin-bottom:14px}.spm-home-premium-page .console-header strong{display:block;font-size:15px;line-height:1.25;color:#fff;letter-spacing:-.02em}.spm-home-premium-page .console-header span{display:block;margin-top:4px;font-size:12px;color:rgba(255,255,255,.42)}.spm-home-premium-page .mini-pill{display:inline-flex;align-items:center;height:24px;padding:0 10px;border-radius:999px;background:rgba(16,185,129,.15);color:#6ee7b7;font-size:11px;font-weight:800;white-space:nowrap}.spm-home-premium-page .mini-products{display:grid;gap:9px;margin-bottom:16px}.spm-home-premium-page .mini-product{display:grid;grid-template-columns:38px 1fr auto;align-items:center;gap:12px;padding:12px 13px;border-radius:14px;border:1px solid rgba(255,255,255,.07);background:rgba(255,255,255,.035)}.spm-home-premium-page .mini-icon{width:38px;height:38px;border-radius:12px;display:grid;place-items:center;font-size:13px;font-weight:800;line-height:1;color:#fff!important;background:linear-gradient(135deg,rgba(59,130,246,.88),rgba(124,58,237,.85));box-shadow:0 8px 22px rgba(37,99,235,.20)}.spm-home-premium-page .mini-product strong{display:block;color:#fff;font-size:13px;line-height:1.25}.spm-home-premium-page .mini-product span{display:block;margin-top:2px;color:rgba(255,255,255,.38);font-size:11px}.spm-home-premium-page .status-pill{display:inline-flex;align-items:center;height:23px;padding:0 9px;border-radius:999px;font-size:10px;font-weight:800;text-transform:uppercase;letter-spacing:.03em}.spm-home-premium-page .status-pro{background:rgba(91,95,232,.20);color:#a5a8f8}.spm-home-premium-page .status-free{background:rgba(16,185,129,.14);color:#6ee7b7}.spm-home-premium-page .console-metrics{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;padding-top:14px;border-top:1px solid rgba(255,255,255,.07)}.spm-home-premium-page .console-metric{padding:12px 8px;text-align:center;border-radius:13px;background:rgba(255,255,255,.035)}.spm-home-premium-page .console-metric strong{display:block;color:#fff;font-size:23px;line-height:1;letter-spacing:-.05em}.spm-home-premium-page .console-metric span{display:block;margin-top:6px;color:rgba(255,255,255,.38);font-size:10px;font-weight:800;text-transform:uppercase;letter-spacing:.04em}
.spm-home-premium-page .marquee{overflow:hidden;border-top:1px solid rgba(255,255,255,.06);border-bottom:1px solid rgba(255,255,255,.06);background:rgba(6,13,30,.28);padding:14px 0}.spm-home-premium-page .marquee-track{display:flex;width:max-content;min-width:max-content;animation:spmHomeMarquee 32s linear infinite;will-change:transform}@keyframes spmHomeMarquee{from{transform:translateX(0)}to{transform:translateX(-50%)}}.spm-home-premium-page .marquee-item{display:flex;align-items:center;gap:10px;padding:0 36px;color:rgba(255,255,255,.46);font-size:13px;font-weight:650;white-space:nowrap}.spm-home-premium-page .marquee-item i{width:4px;height:4px;border-radius:50%;background:rgba(96,165,250,.70);display:inline-block}.spm-home-premium-page .section{position:relative;padding:96px 0;border-top:1px solid rgba(255,255,255,.06)}.spm-home-premium-page .section:before{content:'';position:absolute;inset:0;pointer-events:none;background:radial-gradient(circle at 82% 0%,rgba(59,130,246,.08),transparent 40%),radial-gradient(circle at 10% 96%,rgba(16,185,129,.045),transparent 38%)}.spm-home-premium-page .section>.wrap{position:relative;z-index:1}.spm-home-premium-page .section-head{margin-bottom:54px}.spm-home-premium-page .section-head.center{text-align:center}.spm-home-premium-page .section-title{margin:0 0 16px;color:#fff!important;font-family:var(--serif)!important;font-weight:400!important;font-size:clamp(34px,3.8vw,56px);line-height:1.04;letter-spacing:-.04em}.spm-home-premium-page .section-copy{margin:0;color:#cbd5e1!important;font-size:17px;line-height:1.68;max-width:650px}.spm-home-premium-page .section-head.center .section-copy{margin:0 auto}.spm-home-premium-page .grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}.spm-home-premium-page .grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.spm-home-premium-page .glass-card{position:relative;overflow:hidden;border-radius:var(--radius-md);border:1px solid rgba(59,130,246,.22);background:linear-gradient(135deg,var(--card) 0%,var(--card-2) 100%);backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);transition:transform .22s var(--ease),border-color .22s,box-shadow .22s,background .22s}.spm-home-premium-page .glass-card:hover{transform:translateY(-4px);border-color:rgba(96,165,250,.50);background:linear-gradient(135deg,rgba(30,41,59,.78),rgba(51,65,85,.56));box-shadow:0 18px 52px rgba(0,0,0,.22)}.spm-home-premium-page .value-card{padding:28px 24px}.spm-home-premium-page .card-icon{width:46px;height:46px;border-radius:14px;display:grid;place-items:center;margin-bottom:20px;background:linear-gradient(135deg,#3b82f6,#2563eb);color:#fff;box-shadow:0 4px 20px rgba(59,130,246,.30);font-size:20px;font-weight:800}.spm-home-premium-page .value-card h3,.spm-home-premium-page .fit-card h3,.spm-home-premium-page .support-card h3{margin:0 0 10px;color:#fff;font-size:16px;font-weight:700;letter-spacing:-.02em;line-height:1.3}.spm-home-premium-page .value-card p,.spm-home-premium-page .fit-card p,.spm-home-premium-page .support-card p{margin:0;color:#cbd5e1;font-size:14px;line-height:1.65}.spm-home-premium-page .catalog-top{display:flex;justify-content:space-between;gap:24px;align-items:flex-end;margin-bottom:26px}.spm-home-premium-page .filters{display:flex;flex-wrap:nowrap;gap:9px;align-items:center;overflow-x:auto;scrollbar-width:none;padding-bottom:2px}.spm-home-premium-page .filter-btn{height:34px;padding:0 13px;border-radius:999px;border:1px solid rgba(255,255,255,.12);background:rgba(255,255,255,.04);color:rgba(255,255,255,.68);font-size:12px;font-weight:800;white-space:nowrap;flex:0 0 auto}.spm-home-premium-page .filter-btn.active,.spm-home-premium-page .filter-btn.is-active,.spm-home-premium-page .filter-btn:hover{color:#fff;border-color:rgba(96,165,250,.42);background:rgba(59,130,246,.14)}
.spm-home-premium-page .product-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:20px}.spm-home-premium-page .product-card{padding:24px;display:flex;flex-direction:column;min-height:590px;cursor:pointer}.spm-home-premium-page .product-top{display:flex;align-items:flex-start;justify-content:space-between;gap:14px;margin-bottom:18px}.spm-home-premium-page .product-icon{width:52px;height:52px;border-radius:16px;display:grid;place-items:center;background:linear-gradient(135deg,#3b82f6,#7c3aed);font-size:15px;font-weight:800;color:#fff;box-shadow:0 10px 26px rgba(37,99,235,.22);flex:0 0 auto}.spm-home-premium-page .tag-stack{display:flex;flex-wrap:wrap;gap:6px;justify-content:flex-end}.spm-home-premium-page .tag{display:inline-flex;align-items:center;height:22px;padding:0 8px;border-radius:999px;background:rgba(96,165,250,.12);color:#93c5fd;border:1px solid rgba(96,165,250,.18);font-size:10px;font-weight:800;text-transform:uppercase;letter-spacing:.035em}.spm-home-premium-page .product-card h3{margin:0 0 9px;color:#fff!important;font-size:18px;font-weight:700;letter-spacing:-.03em;line-height:1.25}.spm-home-premium-page .product-kicker{color:#60a5fa;font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:.05em;margin-bottom:8px}.spm-home-premium-page .product-card p{margin:0;color:#cbd5e1!important;font-size:14px;line-height:1.63}.spm-home-premium-page .download-count{display:inline-flex;align-items:center;gap:7px;margin:18px 0 16px;color:rgba(255,255,255,.56);font-size:12px;font-weight:700}.spm-home-premium-page .download-count strong,.spm-home-premium-page .download-count b{color:#6ee7b7}.spm-home-premium-page .feature-list{list-style:none;margin:18px 0 24px;padding:0;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));column-gap:18px;row-gap:9px}.spm-home-premium-page .feature-list li{display:flex;gap:8px;align-items:flex-start;color:#cbd5e1;font-size:12.5px;line-height:1.42;min-width:0}.spm-home-premium-page .feature-list li:before{content:'✓';flex:0 0 auto;color:#10b981;font-weight:800}.spm-home-premium-page .price-row{margin-top:auto;padding-top:18px;border-top:1px solid rgba(255,255,255,.08)}.spm-home-premium-page .price{display:flex;align-items:baseline;gap:6px;margin-bottom:13px;flex-wrap:wrap}.spm-home-premium-page .price strong{color:#fff;font-size:24px;letter-spacing:-.04em;line-height:1}.spm-home-premium-page .price span{color:rgba(255,255,255,.46);font-size:12px;font-weight:700}.spm-home-premium-page .price s{color:rgba(255,255,255,.36);font-size:13px}.spm-home-premium-page .save{display:inline-flex;align-items:center;height:21px;padding:0 8px;border-radius:999px;background:rgba(245,158,11,.16);color:#fcd34d;font-size:10px;font-weight:800;text-transform:uppercase}.spm-home-premium-page .card-actions{display:grid;grid-template-columns:minmax(0,1.18fr) minmax(0,.88fr) minmax(0,.88fr);gap:9px;align-items:center}.spm-home-premium-page .card-actions .btn{width:100%;height:42px;padding:0 12px;font-size:12px;font-weight:800}.spm-home-premium-page .card-actions-smtp{grid-template-columns:repeat(2,minmax(0,1fr))}
.spm-home-premium-page .workflow{display:grid;grid-template-columns:.95fr 1.05fr;gap:24px;align-items:stretch}.spm-home-premium-page .dark-panel{padding:42px;border-radius:var(--radius-xl);border:1px solid rgba(59,130,246,.24);background:linear-gradient(135deg,rgba(15,23,42,.96),rgba(30,41,59,.84));box-shadow:0 24px 72px rgba(0,0,0,.24)}.spm-home-premium-page .dark-panel h3{margin:16px 0;font-family:var(--serif);font-size:clamp(30px,3vw,40px);line-height:1.08;font-weight:400;letter-spacing:-.035em;color:#fff}.spm-home-premium-page .dark-panel p{color:#cbd5e1;font-size:15px;line-height:1.7;margin:0 0 28px}.spm-home-premium-page .check-list{list-style:none;padding:0;margin:0;display:grid;gap:12px}.spm-home-premium-page .check-list li{display:flex;align-items:flex-start;gap:12px;color:#cbd5e1;font-size:14px;line-height:1.55}.spm-home-premium-page .check-list li:before{content:'✓';display:grid;place-items:center;width:18px;height:18px;flex:0 0 18px;margin-top:2px;border-radius:50%;background:rgba(16,185,129,.16);color:#10b981;font-weight:800;font-size:12px}.spm-home-premium-page .fit-stack{display:grid;gap:14px}.spm-home-premium-page .fit-card{display:grid;grid-template-columns:52px 1fr;gap:18px;padding:22px 20px}.spm-home-premium-page .fit-num{width:52px;height:52px;border-radius:15px;display:grid;place-items:center;color:#fff;font-weight:800;font-size:13px;background:linear-gradient(135deg,#3b82f6,#2563eb);box-shadow:0 4px 20px rgba(59,130,246,.30)}.spm-home-premium-page .support-card{padding:32px 28px;min-width:0}.spm-home-premium-page .support-card h3{margin:0 0 10px;color:#fff!important;font-size:16px;font-weight:700;letter-spacing:-.02em;line-height:1.3}.spm-home-premium-page .support-card p{margin:0;color:#cbd5e1!important;font-size:14px;line-height:1.65}.spm-home-premium-page .support-meta{display:flex;align-items:center;gap:14px;margin-top:28px;padding-top:22px;border-top:1px solid rgba(255,255,255,.08)}.spm-home-premium-page .support-num{width:40px;height:40px;border-radius:50%;display:grid!important;place-items:center!important;color:#fff!important;font-size:12px;font-weight:800;line-height:1!important;text-align:center!important;background:rgba(59,130,246,.18);border:1px solid rgba(96,165,250,.20)}.spm-home-premium-page .support-meta strong{display:block;color:#fff;font-size:13px}.spm-home-premium-page .support-meta span{display:block;color:#93a4bb;font-size:12px;margin-top:1px}.spm-home-premium-page .support-ticket{margin-top:24px;padding:30px;display:grid;grid-template-columns:1fr auto;gap:22px;align-items:center}.spm-home-premium-page .support-ticket h3{margin:0 0 8px;color:#fff;font-size:22px;letter-spacing:-.035em}.spm-home-premium-page .support-ticket p{margin:0;color:#cbd5e1;font-size:14px;line-height:1.65}.spm-home-premium-page .faq-list{max-width:880px;margin:0 auto;display:grid;gap:12px}.spm-home-premium-page details{border-radius:var(--radius-md);border:1px solid rgba(59,130,246,.22);background:linear-gradient(135deg,rgba(30,41,59,.58),rgba(51,65,85,.34));overflow:hidden;backdrop-filter:blur(10px)}.spm-home-premium-page details[open]{border-color:rgba(96,165,250,.42)}.spm-home-premium-page summary{list-style:none;cursor:pointer;display:flex;justify-content:space-between;align-items:center;gap:18px;padding:20px 22px;color:#fff;font-size:15px;font-weight:800}.spm-home-premium-page summary::-webkit-details-marker{display:none}.spm-home-premium-page .faq-arrow{width:28px;height:28px;flex:0 0 28px;border-radius:50%;display:grid;place-items:center;background:rgba(96,165,250,.12);color:#60a5fa;font-size:20px;font-weight:900;line-height:1}.spm-home-premium-page .faq-arrow:before{content:'+'}.spm-home-premium-page details[open] .faq-arrow::before{content:"−"}.spm-home-premium-page details p{margin:0;padding:0 22px 22px;color:#cbd5e1;font-size:14px;line-height:1.7}.spm-home-premium-page .cta-card{position:relative;overflow:hidden;text-align:center;padding:88px 44px;border-radius:var(--radius-xl);border:1px solid rgba(96,165,250,.22);background:linear-gradient(135deg,rgba(15,23,42,.96),rgba(30,41,59,.72));box-shadow:0 28px 80px rgba(0,0,0,.26)}.spm-home-premium-page .cta-card:before{content:'';position:absolute;inset:0;pointer-events:none;background:radial-gradient(ellipse 700px 450px at 80% 0%,rgba(59,130,246,.25),transparent 62%),radial-gradient(ellipse 500px 360px at 10% 100%,rgba(124,58,237,.16),transparent 58%)}.spm-home-premium-page .cta-inner{position:relative;z-index:1}.spm-home-premium-page .cta-card h2{margin:0 0 18px;color:#fff!important;font-family:var(--serif)!important;font-weight:400!important;letter-spacing:-.04em;font-size:clamp(38px,5vw,68px);line-height:1.02}.spm-home-premium-page .cta-card p{margin:0 auto 34px;max-width:590px;color:rgba(255,255,255,.58);font-size:17px;line-height:1.65}.spm-home-premium-page .cta-actions{display:flex;justify-content:center;flex-wrap:wrap;gap:12px}.spm-home-premium-page .spm-home-source-footer{padding:42px 0;border-top:1px solid rgba(255,255,255,.06);background:rgba(6,13,30,.18)}.spm-home-premium-page .footer-inner{display:flex;justify-content:space-between;align-items:center;gap:20px;flex-wrap:wrap}.spm-home-premium-page .footer-brand{display:flex;align-items:center;gap:12px;color:rgba(255,255,255,.52);font-size:13px;font-weight:650}.spm-home-premium-page .footer-icon{width:64px!important;height:64px!important;object-fit:contain;border-radius:9px}.spm-home-premium-page .footer-links{display:flex;gap:22px;color:rgba(255,255,255,.42);font-size:13px;font-weight:600}.spm-home-premium-page .footer-links a:hover{color:rgba(255,255,255,.78)}.floating-accessibility{position:fixed;right:18px;bottom:18px;z-index:70;width:48px;height:48px;border-radius:999px;border:1px solid rgba(96,165,250,.34);background:linear-gradient(135deg,#2563eb,#7c3aed);color:#fff;box-shadow:0 14px 36px rgba(37,99,235,.36);font-size:20px}.spm-home-premium-page .sl-cta-modal .eyebrow,.spm-home-premium-page .sl-support-ticket-modal .eyebrow{margin-bottom:14px}
@media(max-width:1120px){.spm-home-premium-page .hero-inner,.spm-home-premium-page .workflow{grid-template-columns:1fr}.spm-home-premium-page .market-console{max-width:590px}.spm-home-premium-page .grid-4,.spm-home-premium-page .product-grid{grid-template-columns:repeat(2,1fr)}.spm-home-premium-page .grid-3{grid-template-columns:repeat(2,1fr)}}@media(max-width:760px){.spm-home-premium-page .wrap{width:calc(100% - 32px)}.spm-home-premium-page .brand img{width:min(278px,calc(100vw - 104px))!important;max-width:min(278px,calc(100vw - 104px))!important;height:auto!important}.spm-home-premium-page .nav-inner{min-height:66px}.spm-home-premium-page .nav-links,.spm-home-premium-page .nav-actions .btn-ghost{display:none}.spm-home-premium-page .nav-toggle{display:inline-grid;place-items:center}.spm-home-premium-page .sl-nav-links.open,.spm-home-premium-page .sl-nav.is-open .sl-nav-links,.spm-home-premium-page .nav-links.open{position:absolute;left:16px;right:16px;top:72px;display:grid;gap:0;padding:10px;border:1px solid rgba(96,165,250,.20);border-radius:18px;background:rgba(15,23,42,.98);box-shadow:0 20px 60px rgba(0,0,0,.45)}.spm-home-premium-page .nav-links.open a{padding:12px 14px}.spm-home-premium-page .hero{padding:72px 0 64px}.spm-home-premium-page .section{padding:68px 0}.spm-home-premium-page .grid-4,.spm-home-premium-page .grid-3,.spm-home-premium-page .product-grid{grid-template-columns:1fr}.spm-home-premium-page .feature-list{grid-template-columns:1fr}.spm-home-premium-page .catalog-top{align-items:flex-start;flex-direction:column}.spm-home-premium-page .card-actions{grid-template-columns:1fr}.spm-home-premium-page .support-ticket{grid-template-columns:1fr}.spm-home-premium-page .dark-panel{padding:32px 24px}.spm-home-premium-page .cta-card{padding:64px 24px}.spm-home-premium-page .footer-links{display:none}}@media(prefers-reduced-motion:reduce){.spm-home-premium-page .marquee-track,.spm-home-premium-page .pulse-dot{animation:none!important}}

@media(max-width:1120px){.spm-home-premium-page .cta-card h2{white-space:normal}}

/* v2.5.65 homepage footer visibility hardening */
.spm-home-premium-page .spm-home-footer{display:block!important;visibility:visible!important;opacity:1!important;position:relative!important;z-index:2!important;width:auto!important;height:auto!important;min-height:0!important;max-height:none!important;margin:0!important;padding:42px 0!important;border-top:1px solid rgba(255,255,255,.06)!important;overflow:visible!important;background:rgba(6,13,30,.18)!important}.spm-home-premium-page .spm-home-footer .footer-inner{display:flex!important;visibility:visible!important;opacity:1!important;justify-content:space-between!important;align-items:center!important;gap:20px!important;flex-wrap:wrap!important}.spm-home-premium-page .spm-home-footer .footer-brand,.spm-home-premium-page .spm-home-footer .footer-links{display:flex!important;visibility:visible!important;opacity:1!important}body:has(.spm-selected-landing) .spm-home-footer{display:block!important;visibility:visible!important;opacity:1!important;height:auto!important;max-height:none!important;overflow:visible!important}

/* ===== v2.5.80 support ticket modal visual hardening ===== */
body .sl-cta-modal.sl-support-ticket-modal .sl-cta-modal-shell .sl-cta-modal-head {
  padding-right: 118px !important;
}

body .sl-cta-modal.sl-support-ticket-modal .sl-cta-modal-shell .sl-cta-modal-head h2#supportTicketModalTitle {
  margin: 0 0 10px !important;
  max-width: 720px !important;
  color: #ffffff !important;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: clamp(30px, 3.1vw, 42px) !important;
  font-weight: 700 !important;
  line-height: 1.08 !important;
  letter-spacing: -0.035em !important;
  text-shadow: 0 1px 0 rgba(2, 6, 23, 0.12) !important;
}

body .sl-cta-modal.sl-support-ticket-modal .sl-cta-modal-shell .sl-cta-modal-head p#supportTicketModalDescription {
  margin: 0 !important;
  max-width: 760px !important;
  color: rgba(255, 255, 255, 0.88) !important;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 17px !important;
  font-weight: 400 !important;
  line-height: 1.56 !important;
}

body .sl-cta-modal.sl-support-ticket-modal .sl-cta-modal-close {
  position: absolute !important;
  top: 22px !important;
  right: 22px !important;
  z-index: 30 !important;
  width: 48px !important;
  height: 48px !important;
  min-width: 48px !important;
  min-height: 48px !important;
  max-width: 48px !important;
  max-height: 48px !important;
  display: grid !important;
  place-items: center !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.38) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.14) !important;
  color: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
  text-indent: -9999px !important;
  overflow: hidden !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.20), 0 12px 28px rgba(2, 6, 23, 0.18) !important;
  transform: none !important;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease !important;
}

body .sl-cta-modal.sl-support-ticket-modal .sl-cta-modal-close::before,
body .sl-cta-modal.sl-support-ticket-modal .sl-cta-modal-close::after {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  width: 17px !important;
  height: 2px !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  transform-origin: center !important;
}

body .sl-cta-modal.sl-support-ticket-modal .sl-cta-modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg) !important;
}

body .sl-cta-modal.sl-support-ticket-modal .sl-cta-modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg) !important;
}

body .sl-cta-modal.sl-support-ticket-modal .sl-cta-modal-close:hover,
body .sl-cta-modal.sl-support-ticket-modal .sl-cta-modal-close:focus,
body .sl-cta-modal.sl-support-ticket-modal .sl-cta-modal-close:active {
  border-color: rgba(255, 255, 255, 0.48) !important;
  background: rgba(255, 255, 255, 0.18) !important;
  color: transparent !important;
  outline: none !important;
  transform: none !important;
}

body .sl-cta-modal.sl-support-ticket-modal .sl-cta-modal-close:focus-visible {
  outline: 3px solid rgba(96, 165, 250, 0.55) !important;
  outline-offset: 4px !important;
}

@media (max-width: 640px) {
  body .sl-cta-modal.sl-support-ticket-modal .sl-cta-modal-shell .sl-cta-modal-head {
    padding-top: 58px !important;
    padding-right: 28px !important;
  }

  body .sl-cta-modal.sl-support-ticket-modal .sl-cta-modal-shell .sl-cta-modal-head h2#supportTicketModalTitle {
    font-size: clamp(28px, 8vw, 36px) !important;
  }

  body .sl-cta-modal.sl-support-ticket-modal .sl-cta-modal-close {
    top: 16px !important;
    right: 16px !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    max-width: 44px !important;
    max-height: 44px !important;
  }
}

/* ── v2.5.85 legal pages premium renderer ───────────────────────── */
body.spm-legal-document {
  margin: 0 !important;
  background:
    radial-gradient(circle at 84% 8%, rgba(59, 130, 246, .18) 0%, transparent 42%),
    radial-gradient(circle at 7% 42%, rgba(16, 185, 129, .08) 0%, transparent 36%),
    radial-gradient(circle at 66% 96%, rgba(124, 58, 237, .13) 0%, transparent 42%),
    linear-gradient(135deg, #0F172A 0%, #1A2949 100%) !important;
  color: #F8FBFF !important;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  overflow-x: hidden !important;
}

.spm-legal-shell,
.spm-legal-shell * {
  box-sizing: border-box;
}

.spm-legal-shell a {
  color: inherit;
  text-decoration: none;
}

.spm-legal-container {
  width: min(1400px, calc(100% - 56px));
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.spm-legal-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 23, 42, .92);
  border-bottom: 1px solid rgba(255, 255, 255, .10);
  backdrop-filter: blur(16px);
}

.spm-legal-nav-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.spm-legal-brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.spm-legal-brand img {
  width: 318px;
  max-width: min(318px, calc(100vw - 112px));
  height: auto;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.spm-legal-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.spm-legal-links a {
  color: rgba(255,255,255,.68);
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  padding: 10px 12px;
  border-radius: 999px;
  transition: background .18s ease, color .18s ease;
}

.spm-legal-links a:hover,
.spm-legal-links a:focus-visible {
  color: #FFFFFF;
  background: rgba(255,255,255,.06);
}

.spm-legal-main {
  padding: 76px 0 88px;
}

.spm-legal-hero {
  text-align: center;
  padding: 0 0 50px;
}

.spm-legal-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #60A5FA;
  background: rgba(59, 130, 246, .10);
  border: 1px solid rgba(59, 130, 246, .30);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.spm-legal-hero h1 {
  margin: 0 auto 18px !important;
  max-width: 1050px;
  color: #FFFFFF !important;
  font-family: "Instrument Serif", Georgia, serif !important;
  font-size: clamp(52px, 6vw, 88px) !important;
  line-height: .96 !important;
  letter-spacing: -.045em !important;
  font-weight: 400 !important;
}

.spm-legal-hero p {
  margin: 0 auto 20px !important;
  max-width: 760px;
  color: #CBD5E1 !important;
  font-size: 18px !important;
  line-height: 1.7 !important;
  font-weight: 400 !important;
}

.spm-legal-updated {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 13px;
  border-radius: 999px;
  color: rgba(203,213,225,.82);
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.12);
  font-size: 13px;
  font-weight: 700;
}

.spm-legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.spm-legal-toc {
  position: sticky;
  top: 102px;
  max-height: calc(100vh - 128px);
  overflow: auto;
  border: 1px solid rgba(96, 165, 250, .22);
  border-radius: 22px;
  padding: 22px;
  background: linear-gradient(135deg, rgba(30,41,59,.66) 0%, rgba(51,65,85,.34) 100%);
  box-shadow: 0 22px 60px rgba(0,0,0,.20);
}

.spm-legal-toc-title {
  color: #FFFFFF;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.spm-legal-toc ol {
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
  display: grid;
  gap: 8px;
}

.spm-legal-toc li {
  margin: 0 !important;
  padding: 0 !important;
}

.spm-legal-toc a,
.spm-legal-toc p {
  color: rgba(203,213,225,.72) !important;
  font-size: 13px !important;
  line-height: 1.45 !important;
  font-weight: 600 !important;
}

.spm-legal-toc a {
  display: block;
  padding: 8px 10px;
  border-radius: 12px;
}

.spm-legal-toc-level-3 a {
  padding-left: 22px;
  font-size: 12.5px !important;
  color: rgba(203,213,225,.60) !important;
}

.spm-legal-toc a:hover,
.spm-legal-toc a:focus-visible {
  color: #FFFFFF !important;
  background: rgba(96,165,250,.10);
}

.spm-legal-card {
  min-width: 0;
  border: 1px solid rgba(96, 165, 250, .22);
  border-radius: 28px;
  padding: clamp(28px, 4vw, 56px);
  background: linear-gradient(135deg, rgba(30,41,59,.70) 0%, rgba(51,65,85,.36) 100%);
  box-shadow: 0 34px 110px rgba(0,0,0,.34);
}

.spm-legal-card h1,
.spm-legal-card h2,
.spm-legal-card h3,
.spm-legal-card h4 {
  color: #FFFFFF !important;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: -.025em !important;
}

.spm-legal-card h2 {
  margin: 34px 0 12px !important;
  font-size: clamp(24px, 2.5vw, 34px) !important;
  line-height: 1.14 !important;
}

.spm-legal-card h2:first-child {
  margin-top: 0 !important;
}

.spm-legal-card h3 {
  margin: 26px 0 10px !important;
  font-size: 20px !important;
  line-height: 1.2 !important;
}

.spm-legal-card p,
.spm-legal-card li {
  color: rgba(226,232,240,.84) !important;
  font-size: 16px !important;
  line-height: 1.78 !important;
  font-weight: 400 !important;
}

.spm-legal-card p {
  margin: 0 0 18px !important;
}

.spm-legal-card ul,
.spm-legal-card ol {
  margin: 0 0 22px 1.35em !important;
  padding: 0 !important;
}

.spm-legal-card li {
  margin: 0 0 10px !important;
  padding-left: 4px;
}

.spm-legal-card a {
  color: #93C5FD !important;
  text-decoration: underline;
  text-decoration-color: rgba(147,197,253,.38);
  text-underline-offset: 4px;
}

.spm-legal-card hr {
  border: 0;
  border-top: 1px solid rgba(96,165,250,.22);
  margin: 34px 0;
}

.spm-legal-footer {
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 28px 0;
  color: rgba(203,213,225,.62);
  background: rgba(15,23,42,.42);
}

.spm-legal-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.spm-legal-footer span,
.spm-legal-footer a {
  color: rgba(203,213,225,.66) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}

.spm-legal-footer div {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.spm-legal-footer a:hover {
  color: #FFFFFF !important;
}

@media (max-width: 980px) {
  .spm-legal-main { padding: 56px 0 70px; }
  .spm-legal-layout { grid-template-columns: 1fr; }
  .spm-legal-toc { position: static; max-height: none; }
  .spm-legal-links { display: none; }
}

@media (max-width: 640px) {
  .spm-legal-container { width: calc(100% - 32px); }
  .spm-legal-brand img { width: min(278px, calc(100vw - 80px)); }
  .spm-legal-hero h1 { font-size: clamp(42px, 13vw, 58px) !important; }
  .spm-legal-hero p { font-size: 15.5px !important; }
  .spm-legal-card { border-radius: 22px; }
  .spm-legal-card p,
  .spm-legal-card li { font-size: 14.5px !important; }
}

/* ── v2.5.86 legal page scroll/FOUC hardening ───────────────────── */
html.spm-legal-html {
  min-height: 100%;
  background: #0F172A !important;
  scroll-behavior: auto !important;
}

html.spm-legal-html body,
html.spm-legal-html body.spm-legal-document {
  min-height: 100vh;
  background:
    radial-gradient(circle at 84% 8%, rgba(59, 130, 246, .18) 0%, transparent 42%),
    radial-gradient(circle at 7% 42%, rgba(16, 185, 129, .08) 0%, transparent 36%),
    radial-gradient(circle at 66% 96%, rgba(124, 58, 237, .13) 0%, transparent 42%),
    linear-gradient(135deg, #0F172A 0%, #1A2949 100%) !important;
  scroll-behavior: auto !important;
}

html.spm-legal-html .spm-legal-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at 84% 8%, rgba(59, 130, 246, .18) 0%, transparent 42%),
    radial-gradient(circle at 7% 42%, rgba(16, 185, 129, .08) 0%, transparent 36%),
    radial-gradient(circle at 66% 96%, rgba(124, 58, 237, .13) 0%, transparent 42%),
    linear-gradient(135deg, #0F172A 0%, #1A2949 100%) !important;
  isolation: isolate;
}

html.spm-legal-html .spm-legal-main {
  min-height: calc(100vh - 130px);
  background: transparent !important;
}

.spm-legal-card :where(.wp-block-group, .wp-block-columns, .wp-block-column, .wp-block-cover, .wp-block-media-text, .entry-content, .wp-site-blocks, main, section, div),
.spm-legal-card :where([style*="background"], [style*="background-color"]) {
  background: transparent !important;
  background-color: transparent !important;
}

.spm-legal-card :where(h2, h3, h4, h5, h6) {
  scroll-margin-top: 112px;
}

.spm-legal-links a,
.spm-legal-links a:visited {
  color: rgba(255,255,255,.68) !important;
}

.spm-legal-links a:hover,
.spm-legal-links a:focus-visible {
  color: #FFFFFF !important;
}

.spm-legal-toc a,
.spm-legal-toc a:visited {
  color: rgba(203,213,225,.72) !important;
}

.spm-legal-toc-level-3 a,
.spm-legal-toc-level-3 a:visited {
  color: rgba(203,213,225,.60) !important;
}

.spm-legal-toc a:hover,
.spm-legal-toc a:focus-visible {
  color: #FFFFFF !important;
}

.spm-legal-footer a,
.spm-legal-footer a:visited {
  color: rgba(203,213,225,.66) !important;
}

.spm-legal-footer a:hover,
.spm-legal-footer a:focus-visible {
  color: #FFFFFF !important;
}

.sl-footer a,
.sl-footer a:visited,
.spm-home-premium-page .footer-links a,
.spm-home-premium-page .footer-links a:visited,
.spm-home-premium-page .spm-home-footer .footer-links a,
.spm-home-premium-page .spm-home-footer .footer-links a:visited,
.spm-home-source-footer a,
.spm-home-source-footer a:visited,
.spm-home-footer a,
.spm-home-footer a:visited,
.sl-marketplace-footer a,
.sl-marketplace-footer a:visited {
  color: rgba(203, 213, 225, .72) !important;
}

.sl-footer a:hover,
.sl-footer a:focus-visible,
.spm-home-premium-page .footer-links a:hover,
.spm-home-premium-page .footer-links a:focus-visible,
.spm-home-premium-page .spm-home-footer .footer-links a:hover,
.spm-home-premium-page .spm-home-footer .footer-links a:focus-visible,
.spm-home-source-footer a:hover,
.spm-home-source-footer a:focus-visible,
.spm-home-footer a:hover,
.spm-home-footer a:focus-visible,
.sl-marketplace-footer a:hover,
.sl-marketplace-footer a:focus-visible {
  color: #FFFFFF !important;
}

/* v2.5.91 dashboard pending-payment manual payment details */
.spm-dashboard-payment-details {
  display: grid;
  gap: 4px;
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(146, 64, 14, 0.18);
}
.spm-dashboard-payment-details span {
  font-size: 12.5px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}
