/* ============================================================
   Understand Our Licensing page (ulp-*)
   Page-unique components retain the ulp-* prefix.
   Generic scaffolding uses the global droid-* classes
   (droid-container / droid-banner-title), with page-scoped
   overrides below to preserve this page's look.
   ============================================================ */

.ulp-page {
  --bg: #f6f7f9; --bg-elevated: #ffffff; --bg-soft: #f0f2f5;
  --ink: #0f172a; --ink-soft: #334155; --ink-mute: #3c4959; --ink-faint: #94a3b8;
  --rule: #e2e8f0; --rule-soft: #eef1f5;
  --accent: #2563eb; --accent-deep: #1d4ed8; --accent-soft: #dbeafe; --accent-tint: #eff6ff;
  --free-ink: #0ea246; --free-mid: #10b981; --free-bg: #ecfdf5; --free-tint: #f0fdf4; --free-border: #a7f3d0;
  --std-ink: #1d4ed8; --std-mid: #3b82f6; --std-bg: #eff6ff; --std-tint: #f5f9ff; --std-border: #bfdbfe;
  --pro-ink: #6d28d9; --pro-mid: #8b5cf6; --pro-bg: #f5f3ff; --pro-tint: #faf8ff; --pro-border: #ddd6fe;
  --plus-ink: #be185d; --plus-mid: #ec4899; --plus-bg: #fdf2f8; --plus-tint: #fef7fb; --plus-border: #fbcfe8;
  font-family: work-sans-regular, Arial, Helvetica, sans-serif;
  background: var(--bg); color: var(--ink);
  font-size: 15px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  position: relative; overflow-x: hidden;
}
.ulp-page * { box-sizing: border-box; margin: 0; padding: 0; }
.ulp-page .droid-container { max-width: 1300px; margin: 0 auto; padding: 0 40px; }
/* Semantic droid wrappers are applied on top of the page's own layout classes.
   Their default spacing/width is neutralised here so this page's tuned look is
   preserved while the markup matches the repo's canonical section structure. */
.ulp-page .droid-section-outer-wrapper { text-align: inherit; }
.ulp-page .droid-main-header-wrapper { max-width: none; margin: 0; }
.ulp-page .droid-main-content-wrapper { padding: 0; text-align: inherit; }
.ulp-page .droid-section-main-title { font-family: poppins-medium, Arial, Helvetica, sans-serif; font-size: inherit; padding: 20px 0; margin-bottom: 0; }
.ulp-page .droid-section-main-title-desc { padding: 0; }

.ulp-page h1, .ulp-page h2, .ulp-page h3, .ulp-page h4 {
  color: var(--ink); letter-spacing: -0.015em; line-height: 1.2;
}
.ulp-page h1 { font-size: clamp(30px, 4vw, 44px); font-weight: 600; letter-spacing: -0.025em; line-height: 1.1; }
.ulp-page h2 { font-size: clamp(28px, 3.4vw, 32px); font-weight: 600; letter-spacing: -0.02em; }
.ulp-page h3 { font-size: 22px; font-weight: 600; }
.ulp-page h4 { font-size: 17px; font-weight: 600; }
.ulp-page p { color: var(--ink-soft); }
.ulp-page .ulp-meta {
  font-family: work-sans-semibold, Arial, Helvetica, sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  /* text-transform: uppercase; */
  color: var(--ink-mute);
}

/* Hero */
.ulp-page .ulp-banner {
  padding: 48px 0 32px; text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(180deg, #eef2ff 0%, var(--bg) 100%);
  background: linear-gradient(180deg, #eef2ff 0%, white 100%);
  border-bottom: 1px solid var(--rule);
  margin: 50px 20px 0;
}
/* .ulp-page .ulp-banner::before {
  content: ""; position: absolute; top: 200px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 530px;
  background: radial-gradient(ellipse at center, #9fc6ff 0%, transparent 60%);
  opacity: 0.5; pointer-events: none; z-index: 0;
} */
.ulp-page .ulp-banner::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(var(--rule) 1px, transparent 1px);
  background-size: 24px 24px; background-position: 12px 12px; opacity: 0.4; pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%); z-index: 0;
}
.ulp-page .ulp-banner .droid-container { position: relative; z-index: 1; }

.ulp-page .banner-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px 7px 10px; background: white; border: 1px solid var(--rule); border-radius: 100px;
  font-size: 12px; font-weight: 500; color: var(--ink-soft); margin-bottom: 28px;
  box-shadow: 0 2px 8px -2px rgba(15,23,42,0.06);
}
.ulp-page .banner-eyebrow .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  position: relative; box-shadow: 0 0 0 3px var(--accent-soft);
}
.ulp-page .banner-eyebrow .pulse::after {
  content: ""; position: absolute; inset: -2px; border-radius: 50%;
  border: 1px solid var(--accent); opacity: 0; animation: ulpPulse 2s ease-in-out infinite;
}
@keyframes ulpPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2); opacity: 0; }
}
.ulp-page .banner-eyebrow strong { color: var(--ink); font-weight: 600; }
.ulp-page .ulp-banner h1 { margin: 10px auto 20px; }
.ulp-page .ulp-banner h1 .accent-word {
  /* color: var(--accent);  */
  position: relative;
  display: inline-block; }
.ulp-page .ulp-banner h1 .accent-word::after {
  content: ""; position: absolute; bottom: -2px; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent); opacity: 0.4; border-radius: 2px;
}
.ulp-page .banner-sub {
    font-size: 16px;
    color: var(--ink-mute);
    margin: 0 10px 24px;
    line-height: 1.6;
    max-width: 65%;
    margin: auto;
  }

/* Model banner */
.ulp-page .model {
      max-width: 600px;
    margin: 0 auto;
    background: var(--bg-elevated);
    border: 1px solid var(--rule);
    border-radius: 18px;
    padding: 28px 32px 22px;
    box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 24px 48px -28px rgba(15,23,42,0.18), 0 4px 12px -8px rgba(37,99,235,0.08);
    position: relative;
    overflow: hidden;
    /* text-align: left; */
    margin-top: 40px;
}
.ulp-page .model-head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.ulp-page .model-head .ulp-meta { color: var(--ink-mute); letter-spacing: 0.14em; white-space: nowrap; }
.ulp-page .model-head::after { content: ""; flex: 1; height: 1px; background: var(--rule); }
.ulp-page .model-intro { font-size: 15px; color: var(--ink-soft); margin-bottom: 22px; font-weight: 500; font-family: 'poppins-regular', Arial, sans-serif;}
.ulp-page .model-intro strong { color: var(--ink); font-weight: 600; }
.ulp-page .model-flow { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 0px; }
.ulp-page .model-group { display: flex; flex-direction: column; padding: 10px 12px 12px; border-radius: 14px; position: relative; width: fit-content; }
.ulp-page .model-group.optional { border: 1.5px dashed #fcd34d; background: rgba(251,191,36,0.04); }
.ulp-page .model-group-label { display: flex; align-items: center; gap: 7px; padding: 2px 4px 10px; font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.ulp-page .model-group.required .model-group-label { color: var(--accent); }
.ulp-page .model-group.optional .model-group-label { color: #b45309; }
.ulp-page .model-group-mark { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.ulp-page .model-group.required .model-group-mark { background: var(--accent); }
.ulp-page .model-group.optional .model-group-mark { background: transparent; border: 1.5px dashed #d97706; }
.ulp-page .model-group-inner { display: flex; align-items: center; gap: 10px; }
.ulp-page .model-plus-divider { display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 300; color: var(--ink-faint); flex-shrink: 0; padding: 0 4px; }
.ulp-page .model-step {
    flex: 1 1 0;
    padding: 12px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #2563eb26;
}
/* .ulp-page .model-step:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -10px rgba(37,99,235,0.42); } */
.ulp-page .model-step.add-on { background: white; border: 1.5px dashed #fbbf24; color: var(--ink); flex: 1; }
/* .ulp-page .model-step.add-on:hover { border-color: #d97706; background: #fffbeb; box-shadow: 0 14px 28px -10px rgba(217,119,6,0.18); } */
.ulp-page .model-num {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgb(37 99 235);
    border: 1.5px solid rgba(255,255,255,0.22);
    color: white;
    font-family: poppins-semibold, Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ulp-page .model-step.add-on .model-num { background: white; color: #b45309; border: 1.5px dashed #d97706; font-size: 16px; font-weight: 500; }
.ulp-page .model-text .main { font-family: poppins-semibold, Arial, Helvetica, sans-serif; font-size: 14px; font-weight: 600; letter-spacing: -0.005em; line-height: 1.2; text-align: center; white-space: nowrap; }
.ulp-page .model-text .msub { margin: 0; font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.62); line-height: 1.2; white-space: nowrap; text-align: center; }
.ulp-page .model-step.add-on .model-text .msub { color: var(--ink-mute); }
.ulp-page .model-connector { display: flex; align-items: center; justify-content: center; width: 24px; flex-shrink: 0; color: var(--ink-faint); }
.ulp-page .model-footer { padding-top: 16px; border-top: 1px dashed var(--rule); display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; }
.ulp-page .legend { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.ulp-page .legend-item { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); }
.ulp-page .legend-mark { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.ulp-page .legend-mark.mark-required { background: var(--accent); }
.ulp-page .legend-mark.mark-optional { background: transparent; border: 1.5px dashed #d97706; }
.ulp-page .model-caption { font-size: 13.5px; color: var(--ink-mute); font-weight: 400; display: inline-flex; align-items: center; gap: 4px; }
.ulp-page .model-caption em { font-style: italic; }
.ulp-page .model-caption strong { color: var(--ink-soft); font-weight: 600; }
.ulp-page .model-caption .plus { color: var(--ink-faint); font-weight: 300; font-size: 16px; margin-right: 2px; }

/* Products */
.ulp-page .ulp-products { padding: 36px 0 16px; position: relative; }
.ulp-page .ulp-products::before { content: ""; position: absolute; top: 40px; left: 50%; transform: translateX(-50%); width: 1px; height: 24px; background: linear-gradient(to bottom, transparent, var(--rule)); }
.ulp-page .products-head { text-align: center; margin-bottom: 12px; }
.ulp-page .products-head .ulp-meta { display: inline-block; padding: 5px 12px; background: white; border: 1px solid var(--rule); border-radius: 100px; color: var(--ink-soft); }
.ulp-page .products-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ulp-page .product-card {
  background: var(--bg-elevated); border: 1.5px solid var(--rule); border-radius: 14px;
  padding: 22px 24px; cursor: pointer; transition: all 0.2s ease; position: relative;
  text-align: left; font-family: work-sans-regular, Arial, Helvetica, sans-serif;
  display: flex; gap: 18px; align-items: flex-start; overflow: hidden;
  appearance: none; -webkit-appearance: none;
}
.ulp-page .product-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, var(--accent-tint), transparent 50%); opacity: 0; transition: opacity 0.2s; pointer-events: none; }
.ulp-page .product-card:hover { border-color: var(--ink-faint); transform: translateY(-1px); box-shadow: 0 12px 24px -16px rgba(15,23,42,0.18); }
.ulp-page .product-card.selected { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft), 0 12px 24px -16px rgba(37,99,235,0.25); }
.ulp-page .product-card.selected::before { opacity: 0.6; }
.ulp-page .product-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--bg-soft); border: 1px solid var(--rule); display: flex; align-items: center; justify-content: center; flex-shrink: 0; position: relative; z-index: 1; }
.ulp-page .product-card.selected .product-icon { background: white; border-color: var(--accent-soft); box-shadow: 0 4px 10px -4px rgba(37,99,235,0.2); }
.ulp-page .product-body { flex: 1; min-width: 0; position: relative; z-index: 1; }
.ulp-page .product-name { font-family: poppins-semibold, Arial, Helvetica, sans-serif; font-size: 16px; font-weight: 600; color: var(--ink); margin-bottom: 4px; letter-spacing: -0.01em; }
.ulp-page .product-desc { font-size: 13.5px; color: var(--ink-mute); line-height: 1.55; }
.ulp-page .product-check { position: absolute; top: 14px; right: 14px; width: 24px; height: 24px; border-radius: 50%; background: var(--accent); color: white; display: none; align-items: center; justify-content: center; z-index: 2; box-shadow: 0 4px 10px -2px rgba(37,99,235,0.5); }
.ulp-page .product-card.selected .product-check { display: flex; }

/* Timeline */
.ulp-page .ulp-timeline { position: relative; padding: 20px 0 40px; }
.ulp-page .ulp-timeline::before { content: ""; position: absolute; left: 39px; top: 36px; bottom: 40px; width: 2px; background-image: repeating-linear-gradient(to bottom, var(--rule) 0, var(--rule) 4px, transparent 4px, transparent 8px); z-index: 0; }
.ulp-page .ulp-step { position: relative; padding: 16px 0 16px 96px; z-index: 1; }
.ulp-page .ulp-step + .ulp-step { padding-top: 24px; }
.ulp-page .step-marker { position: absolute; left: 33px; top: 28px; width: 14px; height: 14px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 5px var(--bg), 0 0 0 7px var(--accent-soft); z-index: 2; }
.ulp-page .ulp-step + .ulp-step .step-marker { top: 40px; }
.ulp-page .step-pill { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 12px; background: var(--accent-soft); color: var(--accent-deep); border-radius: 100px; margin-bottom: 8px; }
.ulp-page .ulp-step h2 { margin: 0 0 14px; }
/* .ulp-page .ulp-step h2 .emph { color: var(--accent); } */

/* Capabilities */
.ulp-page .capabilities { background: var(--bg-elevated); border: 1px solid var(--rule); border-radius: 16px; overflow: hidden; box-shadow: 0 1px 0 white inset, 0 18px 36px -28px rgba(15,23,42,0.1); }
.ulp-page .cap-head { padding: 18px 24px; border-bottom: 1px solid var(--accent-soft); display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.ulp-page .cap-head .ulp-meta { color: var(--accent); }
.ulp-page .cap-product-pill { display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border: 1.5px solid var(--accent-soft); border-radius: 8px; font-size: 13px; font-weight: 600; color: var(--accent-deep); cursor: pointer; transition: all 0.15s; box-shadow: 0 2px 8px -3px rgba(37,99,235,0.14);border-color: var(--accent); }
.ulp-page .cap-product-pill:hover { border-color: var(--accent); }
.ulp-page .cap-list { padding: 8px; }
.ulp-page .cap-card { display: flex; gap: 12px; padding: 22px 24px; border-radius: 12px; align-items: flex-start; transition: background 0.15s; }
.ulp-page .cap-card + .cap-card { border-top: 1px solid var(--rule-soft); }
.ulp-page .cap-card:hover { background: var(--bg-soft); }
.ulp-page .cap-dot {     width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 9px;
    background: #5b51fc !important;}
/* .ulp-page .cap-dot.insights { background: var(--accent); } */
/* .ulp-page .cap-dot.management { background: var(--accent); } */
/* .ulp-page .cap-dot.reports { background: var(--accent); } */
/* .ulp-page .cap-dot.audit { background: var(--accent); } */
.ulp-page .cap-list.hidden { display: none; }
.ulp-page .cap-selector { position: relative; }
.ulp-page .cap-menu { position: absolute; top: calc(100% + 6px); left: 0; min-width: 220px; background: white; border: 1px solid var(--rule); border-radius: 10px; padding: 6px; box-shadow: 0 24px 48px -16px rgba(15,23,42,0.18), 0 4px 12px -4px rgba(15,23,42,0.08); z-index: 20; opacity: 0; visibility: hidden; transform: translateY(-4px); transition: opacity 0.15s, transform 0.15s, visibility 0.15s; }
.ulp-page .cap-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.ulp-page .cap-menu button { width: 100%; display: flex; align-items: center; gap: 10px; padding: 9px 10px; background: transparent; border: none; border-radius: 7px; cursor: pointer; font-size: 13.5px; font-weight: 500; color: var(--ink); text-align: left; transition: background 0.12s; }
.ulp-page .cap-menu button:hover { background: var(--bg-soft); }
.ulp-page .cap-menu button span { flex: 1; }
.ulp-page .cap-menu button .check { color: var(--accent); opacity: 0; }
.ulp-page .cap-menu button.active .check { opacity: 1; }
.ulp-page .cap-menu button.active { background: var(--accent-tint); color: var(--accent-deep); }
.ulp-page .cap-count { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-left: auto; padding: 4px 10px; background: white; border: 1px solid var(--accent-soft); border-radius: 100px; }
.ulp-page .cap-body { flex: 1; }
.ulp-page .cap-name { font-family: poppins-semibold, Arial, Helvetica, sans-serif; font-size: 17px; font-weight: 600; color: var(--ink); margin-bottom: 4px; letter-spacing: -0.01em; }
.ulp-page .cap-desc { font-size: 14px; color: var(--ink-soft); line-height: 1.6; max-width: 720px; }
.ulp-page .cap-footer { padding: 16px 24px; border-top: 1px solid var(--accent-soft);  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.ulp-page .cap-link { font-size: 13px; color: var(--accent); font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; background: white; border: 1px solid var(--accent-soft); border-radius: 8px; transition: all 0.15s; box-shadow: 0 1px 2px rgba(37,99,235,0.06); }
.ulp-page .cap-link:hover { background: var(--accent-tint); gap: 10px; box-shadow: 0 4px 10px -2px rgba(37,99,235,0.18); }

/* Plans */
.ulp-page .plan-free { background: linear-gradient(135deg, var(--free-tint), var(--free-bg)); border: 1px solid var(--free-border); border-radius: 16px; padding: 26px 30px; margin-bottom: 16px; position: relative; overflow: hidden; box-shadow: 0 18px 36px -28px rgba(4,120,87,0.18); background: linear-gradient(
187deg, var(--free-tint), #ffffff);}
/* .ulp-page .plan-free::before { content: ""; position: absolute; top: 0; left: 0; bottom: 0; width: 4px; background: var(--free-mid); } */
.ulp-page .plan-free::after { content: ""; position: absolute; top: -40px; right: -40px; width: 160px; height: 160px; background: radial-gradient(circle, var(--free-mid) 0%, transparent 60%); opacity: 0.08; }
.ulp-page .plan-free-tag { position: absolute; top: 22px; right: 26px; font-size: 10px; letter-spacing: 0.12em; font-weight: 600; text-transform: uppercase; padding: 5px 11px; background: var(--free-ink); color: white; border-radius: 100px; z-index: 1; }
.ulp-page .plan-free h3 { color: var(--free-ink); font-size: 22px; margin-bottom: 10px; position: relative; z-index: 1; }
.ulp-page .plan-free p { font-size: 14.5px; max-width: 720px; line-height: 1.6; position: relative; z-index: 1; }
.ulp-page .plan-free p + p { margin-top: 6px; }
.ulp-page .plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.ulp-page .plan { background: var(--bg-elevated); border: 1px solid var(--rule); border-radius: 16px; padding: 24px; position: relative; display: flex; flex-direction: column; transition: transform 0.25s, box-shadow 0.25s; overflow: hidden; }
/* .ulp-page .plan::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; } */
.ulp-page .plan-dots { position: absolute; top: 14px; right: 14px; display: flex; gap: 4px; }
.ulp-page .plan-dots span { width: 6px; height: 6px; border-radius: 50%; background: var(--rule); }
.ulp-page .plan:hover { transform: translateY(-3px); }
.ulp-page .plan h3 { font-size: 22px; margin-bottom: 4px; }
.ulp-page .plan-tag { font-size: 14px; font-weight: 500; margin-bottom: 0; font-family: 'work-sans-medium', Arial, sans-serif; }
.ulp-page .plan-desc { font-size: 13.5px; color: var(--ink-mute); line-height: 1.6; margin-top: 10px; }
.ulp-page .plan.standard { background: linear-gradient(180deg, var(--std-tint) 0%, var(--bg-elevated) 50%); border-color: var(--std-border); }
.ulp-page .plan.standard::before { background: var(--std-mid); }
.ulp-page .plan.standard h3 { color: var(--std-ink); }
.ulp-page .plan.standard .plan-tag { color: var(--std-ink); }
.ulp-page .plan.standard:hover { box-shadow: 0 22px 44px -22px rgba(59,130,246,0.32); }
.ulp-page .plan.standard .plan-dots span:nth-child(-n+1) { background: var(--std-mid); }
.ulp-page .plan.pro { background: linear-gradient(180deg, var(--pro-tint) 0%, var(--bg-elevated) 50%); border-color: var(--pro-border); }
.ulp-page .plan.pro::before { background: var(--pro-mid); }
.ulp-page .plan.pro h3 { color: var(--pro-ink); }
.ulp-page .plan.pro .plan-tag { color: var(--pro-ink); }
.ulp-page .plan.pro:hover { box-shadow: 0 22px 44px -22px rgba(139,92,246,0.32); }
.ulp-page .plan.pro .plan-dots span:nth-child(-n+2) { background: var(--pro-mid); }
.ulp-page .plan.proplus { background: linear-gradient(180deg, var(--plus-tint) 0%, var(--bg-elevated) 50%); border-color: var(--plus-border); }
.ulp-page .plan.proplus::before { background: var(--plus-mid); }
.ulp-page .plan.proplus h3 { color: var(--plus-ink); }
.ulp-page .plan.proplus .plan-tag { color: var(--plus-ink); }
.ulp-page .plan.proplus:hover { box-shadow: 0 22px 44px -22px rgba(236,72,153,0.32); }
.ulp-page .plan.proplus .plan-dots span { background: var(--plus-mid); }

/* Add-ons */
.ulp-page .ulp-addons { padding: 48px 0; background: #e7ebf2; border-top: 1px solid #d6dbe5; border-bottom: 1px solid #d6dbe5; position: relative; overflow: hidden; }
.ulp-page .ulp-addons::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(80,100,140,0.18) 1px, transparent 1px); background-size: 32px 32px; opacity: 0.55; pointer-events: none; mask-image: linear-gradient(180deg, black, transparent 70%); -webkit-mask-image: linear-gradient(180deg, black, transparent 70%); }
.ulp-page .ulp-addons .droid-container { position: relative; z-index: 1; }
.ulp-page .addons-head { text-align: center; margin-bottom: 0; }
.ulp-page .addons-head .ulp-meta { display: inline-block; padding: 5px 12px; background: white; border: 1px solid #fcd34d; border-radius: 100px; margin-top: 10px; color: #b45309; }
.ulp-page .addons-head h2 { margin: 0 auto; }
.ulp-page .addons-sub { font-size: 16px; color: var(--ink-mute); line-height: 1.6; max-width: 820px; margin: 0 auto; }
/* .ulp-page .addons-head h2 .emph { color: #b45309; } */
.ulp-page .addons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 880px; margin: 0 auto 28px; }
.ulp-page .addon-card { background: var(--bg-elevated); border: 1px solid var(--rule); border-radius: 14px; padding: 26px 26px 24px; position: relative; box-shadow: 0 1px 0 white inset, 0 12px 28px -20px rgba(15,23,42,0.12); }
.ulp-page .addon-card::before { content: ""; position: absolute; top: 0; left: 24px; width: 50px; height: 3px; background: var(--accent); border-radius: 0 0 3px 3px; }
.ulp-page .token-viz { position: absolute; top: 20px; right: 20px; display: flex; align-items: center; justify-content: center; filter: drop-shadow(0 4px 8px rgba(251,133,0,0.25)); transition: transform 0.25s; }
.ulp-page .addon-card:hover .token-viz { transform: translateY(-3px) rotate(-6deg); }
.ulp-page .addon-card h4 { font-size: 17px; margin-bottom: 10px; color: var(--ink); padding-right: 56px; }
.ulp-page .addon-card:nth-child(2) h4 { padding-right: 0; }
.ulp-page .addon-card p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; }
.ulp-page .tokens-word { color: var(--accent); font-weight: 600; background: var(--accent-tint); padding: 1px 6px; border-radius: 4px; }
.ulp-page .addons-link-wrap { text-align: center; }
.ulp-page .addons-link { display: inline-flex; align-items: center; gap: 8px; padding: 11px 22px; background: var(--accent); border: 1px solid var(--accent); border-radius: 100px; font-size: 13.5px; font-weight: 600; color: white; text-decoration: none; transition: all 0.15s; box-shadow: 0 8px 20px -8px rgba(37,99,235,0.5); }
.ulp-page .addons-link:hover { background: var(--accent-deep); transform: translateY(-1px); box-shadow: 0 12px 24px -8px rgba(37,99,235,0.6); }

/* What's next */
.ulp-page .ulp-next { padding: 35px 0 45px; text-align: center; }
.ulp-page .ulp-next h2 { margin-bottom: 30px; }
.ulp-page .next-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 820px; margin: 0 auto; text-align: left; }
.ulp-page .next-card { background: var(--bg-elevated); border: 1px solid var(--rule); border-radius: 16px; padding: 28px; display: flex; flex-direction: column; transition: transform 0.25s, box-shadow 0.25s; position: relative; overflow: hidden; }
.ulp-page .next-card::before { content: ""; position: absolute; top: -50px; right: -50px; width: 150px; height: 150px; border-radius: 50%; opacity: 0.08; pointer-events: none; }
.ulp-page .next-card:hover { transform: translateY(-3px); box-shadow: 0 22px 44px -22px rgba(15,23,42,0.22); }
.ulp-page .next-card.trial { background: linear-gradient(180deg, var(--free-tint) 0%, white 60%); border-color: var(--free-border); }
.ulp-page .next-card.trial::before { background: var(--free-mid); }
.ulp-page .next-card.buy { background: linear-gradient(180deg, var(--accent-tint) 0%, white 60%); border-color: var(--accent-soft); }
.ulp-page .next-card.buy::before { background: var(--accent); }
.ulp-page .next-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; position: relative; z-index: 1; }
.ulp-page .next-icon { width: 44px; height: 44px; border-radius: 11px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ulp-page .next-card.trial .next-icon { background: var(--free-bg); color: var(--free-ink); border: 1px solid var(--free-border); }
.ulp-page .next-card.buy .next-icon { background: var(--accent-soft); color: var(--accent-deep); border: 1px solid var(--accent-soft); }
.ulp-page .next-card h3 { font-size: 20px; margin-bottom: 0; position: relative; z-index: 1; }
.ulp-page .next-card p { font-size: 14px; color: var(--ink-mute); margin-bottom: 22px; line-height: 1.55; flex-grow: 1; position: relative; z-index: 1; }
.ulp-page .ulp-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 11px 20px; border-radius: 9px; font-size: 14px; font-weight: 600; border: 1px solid transparent; cursor: pointer; text-decoration: none; transition: all 0.15s; width: fit-content; position: relative; z-index: 1; }
.ulp-page .btn-trial { background: var(--free-ink); color: white; box-shadow: 0 6px 14px -4px rgba(4,120,87,0.4); }
.ulp-page .btn-trial:hover { background: #036046; transform: translateY(-1px); box-shadow: 0 10px 22px -6px rgba(4,120,87,0.5); }
.ulp-page .btn-buy { background: var(--accent); color: white; box-shadow: 0 6px 14px -4px rgba(37,99,235,0.4); }
.ulp-page .btn-buy:hover { background: var(--accent-deep); transform: translateY(-1px); box-shadow: 0 10px 22px -6px rgba(37,99,235,0.5); }
.ulp-page .next-aside { margin-top: 16px; padding-top: 14px; border-top: 1px dashed var(--rule); font-size: 13px; color: var(--ink-mute); position: relative; z-index: 1; }
.ulp-page .next-aside a { color: var(--accent); font-weight: 600; text-decoration: none; }
.ulp-page .next-aside a:hover { text-decoration: underline; }
.ulp-page .next-cta-wrap { display: flex; align-items: center; gap: 24px; justify-content: center; flex-wrap: wrap; margin-bottom: 14px; }
.ulp-page .next-plain-link { font-size: 14px; font-weight: 600; color: var(--accent); text-decoration: none; }
.ulp-page .next-plain-link:hover { text-decoration: underline; }
.ulp-page .next-foot { font-size: 13px; color: var(--ink-mute); }
.ulp-page .next-foot a { color: var(--accent); font-weight: 600; text-decoration: none; }
.ulp-page .next-foot a:hover { text-decoration: underline; }

/* Animations */
@keyframes ulpRise {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ulp-page .reveal { animation: ulpRise 0.6s cubic-bezier(.2,.7,.3,1) both; }
.ulp-page .reveal-1 { animation-delay: 0.05s; }
.ulp-page .reveal-2 { animation-delay: 0.12s; }
.ulp-page .reveal-3 { animation-delay: 0.22s; }
.ulp-page .reveal-4 { animation-delay: 0.32s; }

/* Responsive */
@media (max-width: 920px) {
  .ulp-page .droid-container { padding: 0 20px; }
  .ulp-page .ulp-banner { padding: 48px 0 36px; }
  .ulp-page .products-grid { grid-template-columns: 1fr; }
  .ulp-page .plans-grid { grid-template-columns: 1fr; }
  .ulp-page .addons-grid { grid-template-columns: 1fr; }
  .ulp-page .next-grid { grid-template-columns: 1fr; }
  .ulp-page .model { padding: 14px 12px 12px; }
  .ulp-page .model-intro { font-size: 13.5px; margin-bottom: 14px; }
  .ulp-page .model-flow { flex-direction: column; gap: 8px; }
  .ulp-page .model-group { padding: 8px 10px 10px; }
  .ulp-page .model-group-label { padding: 0 2px 8px; font-size: 9px; }
  .ulp-page .model-group-inner { flex-direction: column; gap: 6px; }
  .ulp-page .model-step { flex: 0 0 auto; width: auto; padding: 10px 20px; }
  .ulp-page .model-num { width: 24px; height: 24px; font-size: 10px; }
  .ulp-page .model-text .main { font-size: 13px; }
  .ulp-page .model-text .msub { display: none; }
  .ulp-page .model-connector { transform: rotate(90deg); width: 100%; height: 16px; }
  .ulp-page .model-plus-divider { padding: 2px 0; font-size: 18px; }
  .ulp-page .model-footer { padding-top: 10px; }
  .ulp-page .model-step.add-on .model-num { width: 24px; height: 24px; font-size: 14px; }
  .ulp-page .ulp-addons { padding: 32px 0; }
  .ulp-page .ulp-next { padding: 32px 0; }
  .ulp-page .ulp-timeline { padding: 16px 0 32px; }
  .ulp-page .ulp-timeline::before { display: none; }
  .ulp-page .step-marker { display: none; }
  .ulp-page .ulp-step { padding: 20px 0; }
  .ulp-page .ulp-step + .ulp-step { padding-top: 16px; }
  .ulp-page .plan-free { padding: 14px 16px; margin-bottom: 10px; }
  .ulp-page .plan-free h3 { font-size: 18px; margin-bottom: 6px; }
  .ulp-page .plan-free p { font-size: 13.5px; }
  .ulp-page .plan-free-tag { top: 14px; right: 16px; font-size: 9px; padding: 4px 9px; }
  .ulp-page .next-card { padding: 20px; }
  .ulp-page .addon-card h4 { padding-right: 0; }
  .ulp-page .token-viz { position: static; margin-bottom: 12px; }
}
