:root {
  --black:#000;
  --surface:#0a0a0a;
  --surface-2:#111;
  --surface-3:#1a1a1a;

  --border:rgba(255,255,255,.07);
  --border-2:rgba(255,255,255,.12);

  --indigo:#6366F1;
  --indigo-dim:rgba(99,102,241,.12);
  --indigo-glow:rgba(99,102,241,.3);

  --green:#10b981;
  --green-dim:rgba(16,185,129,.12);
  --amber:#f59e0b;

  --text:#f1f5f9;
  --text-2:rgba(241,245,249,.55);
  --text-3:rgba(241,245,249,.28);

  --r:12px;
  --r-lg:20px;
  --r-xl:28px;
}

.btn-install {
    background: #7f54b3;
    color: #ffffff;
    font-weight: 600;
    border-radius: 8px;
    padding: 8px 16px;
    transition: filter 200ms ease, transform 200ms ease, background-color 200ms ease, color 200ms ease;
}

.btn-install:hover {
    color: #ffffff;
    filter: brightness(1.1);
    transform: scale(0.98);
}

.btn-install:active {
    transform: scale(0.95);
}

.btn-surface {
    background: #0e0e11;
    color: #ffffff;
    font-weight: 500;
    border-radius: 8px;
    padding: 8px 16px;
    border: 1px solid #222222;
    transition: background-color 200ms ease, border-color 200ms ease, color 200ms ease;
}

.btn-surface:hover {
    color: #ffffff;
    background: #222222;
}

.lk-cartlane a,
.lk-cartlane a:visited {
    text-decoration: none;
}

.lk-cartlane a:hover,
.lk-cartlane a:focus,
.lk-cartlane button:hover,
.lk-cartlane button:focus {
    color: inherit;
}

.lk-cartlane .btn-install,
.lk-cartlane .btn-install:visited,
.lk-cartlane .btn-install:hover,
.lk-cartlane .btn-install:focus {
    color: #ffffff !important;
}

.lk-cartlane .btn-install.bg-white,
.lk-cartlane .btn-install.bg-white:visited,
.lk-cartlane .btn-install.bg-white:hover,
.lk-cartlane .btn-install.bg-white:focus {
    color: #000000 !important;
}

.lk-cartlane .btn-surface,
.lk-cartlane .btn-surface:visited,
.lk-cartlane .btn-surface:hover,
.lk-cartlane .btn-surface:focus {
    color: #ffffff !important;
}

.kbd-key {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 6px;
    background: #0e0e11;
    border: 1px solid #222222;
    border-radius: 2px;
    color: #888888;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 12px;
    line-height: 1;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
}

.lk-cartlane .kbd-key.bg-transparent {
    background: rgba(255, 255, 255, 0.045) !important;
    border: 1px solid rgba(255, 255, 255, 0.09) !important;
    color: rgba(255, 255, 255, 0.58);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.lk-cartlane .cmd-palette .kbd-key.bg-transparent {
    background: rgba(255, 255, 255, 0.055) !important;
}

.cl-terminal-bar {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0)),
        rgba(8, 8, 12, 0.92);
}

.cl-input {
    width: 100%;
    min-height: auto;
    background: transparent;
    color: #ffffff;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 18px;
    padding: 0;
    appearance: none;
    -webkit-appearance: none;
}

.cl-terminal-line {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: 0;
    cursor: text;
    transition: color 150ms ease, box-shadow 150ms ease;
}

.cl-terminal-line:focus-visible {
    box-shadow: 0 0 0 3px rgba(127, 84, 179, 0.18);
}

.cl-terminal-prompt {
    color: #22C55E;
    text-shadow: 0 0 14px rgba(34, 197, 94, 0.35);
}

.cl-terminal-text {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    color: rgba(255, 255, 255, 0.9);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cl-terminal-text::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 1.1em;
    margin-left: 4px;
    border-radius: 2px;
    background: #a855f7;
    box-shadow: 0 0 14px rgba(168, 85, 247, 0.45);
    animation: cl-terminal-cursor 820ms steps(2, end) infinite;
}

@keyframes cl-terminal-cursor {
    0%,
    42% {
        opacity: 1;
    }

    43%,
    100% {
        opacity: 0.18;
    }
}

.cl-input::placeholder {
    color: #888899;
}

input[type="text"].cl-input,
input[type="text"].cl-input:focus,
input[type="text"].cl-input:focus-visible {
    background: transparent !important;
    border-color: transparent !important;
    outline: 0 !important;
    box-shadow: none !important;
}

.cmd-palette .flex.items-center:has(> .cl-input) {
    transition: background-color 160ms ease, border-color 160ms ease;
}

.cmd-palette .flex.items-center:has(> .cl-input:focus) {
    background: rgba(127, 84, 179, 0.06);
}

.lk-cartlane h1 {
    line-height: 1.04 !important;
    overflow: visible;
}

.lk-cartlane h1>span {
    display: inline-block;
    padding-bottom: 0.035em;
    overflow: visible;
}

.lk-cartlane h1>span:first-child {
    margin-bottom: -0.08em;
}

.cl-docs-shell {
    overflow-x: clip;
}

.cl-docs-app {
    isolation: isolate;
}

.cl-docs-menu-lock {
    overflow: hidden;
}

.cl-docs-filter[aria-pressed="true"],
.cl-docs-filter.is-active,
.cl-docs-sidebar-link.is-active,
.cl-docs-toc-link.is-active {
    border-color: rgba(127, 84, 179, 0.42);
    background: rgba(127, 84, 179, 0.14);
    color: rgb(var(--cl-text));
}

.cl-docs-sidebar-link[aria-current="true"],
.cl-docs-toc-link[aria-current="true"] {
    color: rgb(var(--cl-text));
}

.cl-docs-sidebar-link[aria-current="page"] {
    border-color: rgba(127, 84, 179, 0.42);
    background: rgba(127, 84, 179, 0.14);
    color: rgb(var(--cl-text));
}

.cl-docs-section[hidden] {
    display: none;
}

.cl-docs-page[hidden] {
    display: none;
}

.cl-docs-section {
    scroll-margin-top: 96px;
}

.cl-docs-section pre {
    white-space: pre;
}

.cl-docs-section code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.cl-docs-code-block code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

[data-cartlane-docs-copy].is-copied {
    color: rgb(var(--cl-success));
}

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

.cl-coupon-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    min-height: 48px;
    padding: 5px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.085);
    border-radius: 16px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
    transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.cl-coupon-shell:focus-within {
    background: rgba(255, 255, 255, 0.055);
    border-color: rgba(127, 84, 179, 0.5);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.055),
        0 0 0 3px rgba(127, 84, 179, 0.16);
}

#coupon-input {
    width: 100%;
    min-width: 0;
    min-height: 38px;
    background: transparent !important;
    border: 0 !important;
    border-radius: 12px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    padding: 0 10px 0 12px;
    outline: 0 !important;
    box-shadow: none !important;
    appearance: none;
    -webkit-appearance: none;
    transition: color 160ms ease;
}

#coupon-input::placeholder {
    color: rgba(148, 157, 170, 0.68);
}

#coupon-input:focus,
#coupon-input:focus-visible {
    background: transparent !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
}

#apply-coupon-btn {
    min-height: 38px;
    padding: 0 18px;
    background: #7f54b3;
    border: 0;
    border-radius: 13px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.13), 0 10px 24px rgba(127, 84, 179, 0.22);
    transition: filter 160ms ease, transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

#apply-coupon-btn:focus,
#apply-coupon-btn:focus-visible {
    outline: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.13), 0 0 0 3px rgba(127, 84, 179, 0.24);
}

#apply-coupon-btn:hover {
    background: #8b5fc2;
    color: #ffffff !important;
    filter: none;
}

#apply-coupon-btn:active {
    transform: translateY(1px) scale(0.98);
}

.lk-cartlane #checkout-button,
.lk-cartlane #checkout-button:hover,
.lk-cartlane #checkout-button:focus,
.lk-cartlane #checkout-button:focus-visible,
.lk-cartlane #checkout-preview-continue,
.lk-cartlane #checkout-preview-continue:hover,
.lk-cartlane #checkout-preview-continue:focus,
.lk-cartlane #checkout-preview-continue:focus-visible,
.lk-cartlane #apply-coupon-btn,
.lk-cartlane #apply-coupon-btn:hover,
.lk-cartlane #apply-coupon-btn:focus,
.lk-cartlane #apply-coupon-btn:focus-visible {
    color: #ffffff !important;
}

.lk-cartlane #checkout-button svg,
.lk-cartlane #checkout-button:hover svg,
.lk-cartlane #checkout-preview-continue svg,
.lk-cartlane #checkout-preview-continue:hover svg,
.lk-cartlane #apply-coupon-btn svg,
.lk-cartlane #apply-coupon-btn:hover svg {
    color: #ffffff !important;
    stroke: currentColor;
}

.lk-cartlane #checkout-preview input[type="email"],
.lk-cartlane #checkout-preview input[type="text"] {
    min-height: 40px !important;
    background: rgba(0, 0, 0, 0.35) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 12px !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 1.35 !important;
    padding: 10px 14px !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035) !important;
    outline: none !important;
    transition: background-color 150ms ease, border-color 150ms ease, box-shadow 150ms ease, color 150ms ease !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

.lk-cartlane #checkout-preview input[type="email"]::placeholder,
.lk-cartlane #checkout-preview input[type="text"]::placeholder {
    color: rgba(120, 139, 164, 0.62) !important;
    opacity: 1 !important;
}

.lk-cartlane #checkout-preview input[type="email"]:focus,
.lk-cartlane #checkout-preview input[type="email"]:focus-visible,
.lk-cartlane #checkout-preview input[type="text"]:focus,
.lk-cartlane #checkout-preview input[type="text"]:focus-visible {
    background: rgba(0, 0, 0, 0.45) !important;
    border-color: rgba(127, 84, 179, 0.62) !important;
    color: rgba(255, 255, 255, 0.92) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.045),
        0 0 0 3px rgba(127, 84, 179, 0.2) !important;
}

body {
    background-color: #000000;
    color: #FFFFFF;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.lk-landingkit.lk-cartlane {
    box-sizing: border-box;
    display: block;
    width: 100%;
    max-width: none;
    overflow-x: hidden;
}

.lk-landingkit.lk-cartlane > section {
    width: 100%;
    max-width: none !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
}

.lk-cartlane *,
.lk-cartlane *::before,
.lk-cartlane *::after {
    box-sizing: border-box;
}


.cmd-palette {
    background: rgba(26, 26, 46, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.mesh-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
    z-index: 0;
    pointer-events: none;
}

.custom-scroll::-webkit-scrollbar {
    width: 8px;
}

.custom-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.custom-scroll::-webkit-scrollbar-thumb {
    background: #33334A;
    border-radius: 10px;
}

/* Showcase Design */
.mask-image-fade-bottom {
    -webkit-mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
}

.no-scrollbar {
    scrollbar-width: none;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.cl-feature-card {
    width: 320px;
    flex-shrink: 0;
    height: 500px;
    border-radius: 20px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    background: #0b0b0e;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.cl-feature-card.is-showcase-glowing {
    border-color: rgba(168, 85, 247, 0.72);
    box-shadow:
        0 0 0 1px rgba(168, 85, 247, 0.28),
        0 0 34px rgba(168, 85, 247, 0.34),
        0 18px 70px rgba(66, 133, 244, 0.18);
    animation: cl-showcase-glow-pulse 1.8s ease both;
}

#card-cart-recovery.is-showcase-glowing {
    border-color: rgba(29, 185, 84, 0.68);
    box-shadow:
        0 0 0 1px rgba(29, 185, 84, 0.24),
        0 0 34px rgba(29, 185, 84, 0.30),
        0 18px 70px rgba(16, 185, 129, 0.16);
}

.cl-integrations-heading {
    line-height: 1.08;
}

.cl-integrations-heading-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.cl-integrations-heading-line--bottom {
    margin-top: -0.1em;
}

.cl-woo-wordmark {
    display: inline-block;
    width: min(42vw, 298px);
    height: auto;
    vertical-align: -0.08em;
}

.cl-integrations-copy {
    color: rgba(255, 255, 255, 0.62);
}

.cl-integrations-row-label {
    color: rgba(255, 255, 255, 0.78);
}

.cl-integrations-meta-label {
    color: rgba(255, 255, 255, 0.50);
}

.cl-integrations-secret {
    color: rgba(255, 255, 255, 0.78);
}

body.lk-cartlane :is(#analytics, #free-vs-pro, #pricing, #faq) :is(p, [class*="text-white/42"], [class*="text-white/44"], [class*="text-white/48"], [class*="text-white/50"], [class*="text-white/55"], [class*="text-white/58"]) {
    color: rgba(255, 255, 255, 0.64);
}

body.lk-cartlane :is(#analytics, #free-vs-pro, #pricing, #faq) :is([class*="text-white/25"], [class*="text-white/30"], [class*="text-white/32"], [class*="text-white/34"], [class*="text-white/35"], [class*="text-white/38"]) {
    color: rgba(255, 255, 255, 0.52);
}

body.lk-cartlane :is(#analytics, #free-vs-pro, #pricing, #faq) :is([class*="text-white/20"], [class*="text-white/22"], [class*="text-white/26"]) {
    color: rgba(255, 255, 255, 0.42);
}

body.lk-cartlane :is(#analytics, #free-vs-pro, #pricing, #faq) :is([class*="text-white/68"], [class*="text-white/70"], [class*="text-white/72"], [class*="text-white/74"]) {
    color: rgba(255, 255, 255, 0.78);
}

body.lk-cartlane :is(#analytics, #free-vs-pro, #pricing, #faq) :is([class*="text-white/76"], [class*="text-white/82"], [class*="text-white/85"], [class*="text-white/88"]) {
    color: rgba(255, 255, 255, 0.84);
}

@media (max-width: 640px) {
    .cl-woo-wordmark {
        width: min(36vw, 160px);
    }
}

@keyframes cl-showcase-glow-pulse {
    0%,
    100% {
        transform: translateY(0);
    }

    35% {
        transform: translateY(-4px);
    }

    70% {
        transform: translateY(0);
    }
}

body.lk-cartlane #showcase-track {
    padding-left: 40px;
    padding-right: 40px;
    scroll-padding-left: 40px;
    scroll-padding-right: 40px;
}

body.lk-cartlane .cl-showcase-header {
    padding-left: 40px;
    padding-right: 40px;
}

/* Fixed gradient light spotlight from top-right corner */
#card-checkout-editor {
    background: radial-gradient(circle at 100% 0%, rgba(168, 85, 247, 0.08) 0%, #0b0b0e 65%);
}

#card-checkout-editor > div:last-child {
    min-height: 0;
    height: 300px !important;
    padding: 14px !important;
    justify-content: flex-start !important;
    gap: 10px;
}

#card-checkout-editor > div:last-child > div:nth-child(2) {
    display: grid;
    gap: 7px;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

#card-checkout-editor .field-toggle-row {
    min-height: 36px;
    height: 36px;
    padding: 8px 9px !important;
}

#card-checkout-editor .field-toggle-row > div:first-child {
    min-width: 0;
}

#card-checkout-editor .field-toggle-row span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#card-checkout-editor #mock-form-container {
    display: grid;
    gap: 4px;
}

#card-checkout-editor div:has(> #mock-form-container) {
    height: auto !important;
    min-height: 96px !important;
    padding: 8px !important;
    margin-top: 0 !important;
    overflow: hidden;
}

#card-checkout-editor div:has(> #mock-form-container) > * + * {
    margin-top: 5px !important;
}

#card-checkout-editor #mock-form-container:is(*) {
    margin-top: 0 !important;
}

#card-checkout-editor #mock-form-container:not(:first-child) {
    margin-top: 0 !important;
}

#card-checkout-editor #mock-form-container ~ * {
    margin-top: 0 !important;
}

#card-checkout-editor #mock-form-container {
    padding: 0;
}

#card-checkout-editor #mock-form-container > div {
    margin-top: 0 !important;
}

#card-checkout-editor #mock-form-container,
#card-checkout-editor #mock-form-container + * {
    min-height: 0;
}

#card-checkout-editor [id^="mock-field-"] {
    min-height: 0;
    height: 20px;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    font-size: var(--cl-text-sm);
    line-height: 1.1;
}

#card-checkout-editor [id^="mock-field-"] span:first-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#card-order-bumps {
    background: radial-gradient(circle at 100% 0%, rgba(66, 133, 244, 0.08) 0%, #0b0b0e 65%);
}

#card-cart-recovery {
    background: radial-gradient(circle at 100% 0%, rgba(29, 185, 84, 0.08) 0%, #0b0b0e 65%);
}

#card-deep-analytics {
    background: radial-gradient(circle at 100% 0%, rgba(255, 81, 81, 0.06) 0%, #0b0b0e 65%);
}

#card-upsells {
    background: radial-gradient(circle at 100% 0%, rgba(34, 197, 94, 0.08) 0%, #0b0b0e 65%);
}

#card-funnels {
    background: radial-gradient(circle at 100% 0%, rgba(6, 182, 212, 0.08) 0%, #0b0b0e 65%);
}

#card-ab-tests {
    background: radial-gradient(circle at 100% 0%, rgba(236, 72, 153, 0.08) 0%, #0b0b0e 65%);
}

#card-pricing {
    background: radial-gradient(circle at 100% 0%, rgba(245, 158, 11, 0.08) 0%, #0b0b0e 65%);
}

/* Dotted background pattern */
.cl-feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 16px 16px;
    opacity: 0.8;
    pointer-events: none;
    z-index: 1;
    border-radius: inherit;
}

/* Mouse tracking radial spotlight inside the card on hover */
.cl-feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(280px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(255, 255, 255, 0.03), transparent 80%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 2;
    border-radius: inherit;
}

.cl-feature-card:hover::after {
    opacity: 1;
}

#card-checkout-editor:hover {
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.06);
    border-color: rgba(168, 85, 247, 0.2);
}

#card-order-bumps:hover {
    box-shadow: 0 0 40px rgba(66, 133, 244, 0.06);
    border-color: rgba(66, 133, 244, 0.2);
}

#card-cart-recovery:hover {
    box-shadow: 0 0 40px rgba(29, 185, 84, 0.06);
    border-color: rgba(29, 185, 84, 0.2);
}

#card-deep-analytics:hover {
    box-shadow: 0 0 40px rgba(255, 81, 81, 0.04);
    border-color: rgba(255, 81, 81, 0.15);
}

#card-upsells:hover {
    box-shadow: 0 0 40px rgba(34, 197, 94, 0.06);
    border-color: rgba(34, 197, 94, 0.25);
}

#card-funnels:hover {
    box-shadow: 0 0 40px rgba(6, 182, 212, 0.06);
    border-color: rgba(6, 182, 212, 0.25);
}

#card-ab-tests:hover {
    box-shadow: 0 0 40px rgba(236, 72, 153, 0.06);
    border-color: rgba(236, 72, 153, 0.25);
}

#card-pricing:hover {
    box-shadow: 0 0 40px rgba(245, 158, 11, 0.06);
    border-color: rgba(245, 158, 11, 0.25);
}

/* Pricing table modern styles */
.cl-pricing-card {
    transition: transform 0.28s ease, border-color 0.28s ease, background-color 0.28s ease, box-shadow 0.28s ease !important;
}

.cl-pricing-card:hover {
    transform: translateY(-6px);
}

.cl-pricing-card--free:hover,
.cl-pricing-card--free:focus-within {
    border-color: rgba(34, 197, 94, 0.34) !important;
    background-color: rgba(7, 17, 12, 0.78) !important;
    box-shadow: 0 26px 76px rgba(34, 197, 94, 0.1), 0 20px 70px rgba(0, 0, 0, 0.32) !important;
}

.cl-pricing-card--pro:hover,
.cl-pricing-card--pro:focus-within {
    border-color: rgba(168, 85, 247, 0.58) !important;
    background-color: rgba(31, 12, 49, 0.8) !important;
    box-shadow: 0 30px 100px rgba(168, 85, 247, 0.22), 0 20px 70px rgba(0, 0, 0, 0.32) !important;
}

.cl-pricing-card--extended:hover,
.cl-pricing-card--extended:focus-within {
    border-color: rgba(251, 191, 36, 0.34) !important;
    background-color: rgba(23, 17, 5, 0.78) !important;
    box-shadow: 0 26px 76px rgba(251, 191, 36, 0.11), 0 20px 70px rgba(0, 0, 0, 0.32) !important;
}

.cl-pricing-contrast {
    margin-top: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cl-license-price-panel {
    position: relative;
    overflow: hidden;
    --cl-price-accent: 168, 85, 247;
    --cl-price-accent-soft: 216, 180, 254;
    border: 1px solid rgba(var(--cl-price-accent-soft), 0.2);
    border-radius: 18px;
    background:
        radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.12), transparent 32%),
        linear-gradient(135deg, rgba(var(--cl-price-accent), 0.16), rgba(255, 255, 255, 0.035));
    padding: 16px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 46px rgba(0, 0, 0, 0.18);
}

.cl-license-price-panel--free {
    --cl-price-accent: 34, 197, 94;
    --cl-price-accent-soft: 134, 239, 172;
}

.cl-license-price-panel--pro {
    --cl-price-accent: 168, 85, 247;
    --cl-price-accent-soft: 216, 180, 254;
}

.cl-license-price-panel--extended {
    --cl-price-accent: 251, 191, 36;
    --cl-price-accent-soft: 253, 230, 138;
}

.cl-license-price-eyebrow {
    margin-bottom: 6px;
    color: rgba(var(--cl-price-accent-soft), 0.72);
    font-size: var(--cl-text-md);
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.cl-license-price-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
}

.cl-license-price-value {
    color: #ffffff;
    font-size: 52px;
    font-weight: 950;
    letter-spacing: 0;
    line-height: 0.98;
    min-width: 0;
    text-shadow: 0 12px 34px rgba(var(--cl-price-accent), 0.18);
}

.cl-license-price-license {
    padding-bottom: 7px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.08em;
    line-height: 1.2;
    max-width: 138px;
    text-align: right;
    text-transform: uppercase;
}

.cl-license-price-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 999px;
    background: rgba(251, 191, 36, 0.08);
    padding: 6px 9px;
    color: rgba(253, 230, 138, 0.9);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
}

.cl-license-price-status--live {
    border-color: rgba(34, 197, 94, 0.22);
    background: rgba(34, 197, 94, 0.08);
    color: rgba(134, 239, 172, 0.92);
}

.cl-analytics-range-tab {
    color: rgba(255, 255, 255, 0.68);
    transition: background-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.cl-analytics-range-tab:hover,
.cl-analytics-range-tab:focus-visible {
    color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.06);
}

.cl-analytics-range-tab[aria-selected="true"] {
    color: #020403;
    background: #22C55E;
    box-shadow: 0 10px 28px rgba(34, 197, 94, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.24);
    transform: translateY(-1px);
}

.cl-analytics-bar {
    height: var(--cl-bar-target);
    transform-origin: bottom;
    transition: height 560ms cubic-bezier(.22, 1, .36, 1), opacity 220ms ease, box-shadow 220ms ease;
}

.cl-analytics-chart {
    display: block !important;
    overflow: hidden;
    position: relative;
    isolation: isolate;
}

.cl-analytics-chart::before {
    position: absolute;
    inset: 16px;
    z-index: -1;
    background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 100% 25%;
    content: "";
    opacity: 0.7;
}

.cl-chart-daily-bars,
.cl-chart-annual-bars,
.cl-chart-stacked-stage {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 100%;
    width: 100%;
}

.cl-chart-daily-bars {
    padding: 0 2px;
}

.cl-chart-daily-bars .cl-analytics-bar {
    flex: 1;
    border-radius: 10px 10px 0 0;
    background: rgba(255, 255, 255, 0.08);
}

.cl-chart-daily-bars .cl-analytics-bar-4,
.cl-chart-daily-bars .cl-analytics-bar-5 {
    background: rgba(168, 85, 247, 0.48);
}

.cl-chart-daily-bars .cl-analytics-bar-6,
.cl-chart-daily-bars .cl-analytics-bar-7 {
    background: rgba(34, 197, 94, 0.42);
}

.cl-chart-daily-bars .cl-analytics-bar-8 {
    background: #22C55E;
    box-shadow: 0 0 26px rgba(34, 197, 94, 0.32);
}

.cl-analytics-chart.is-animating .cl-analytics-bar {
    animation: cl-analytics-bar-pop 620ms cubic-bezier(.22, 1, .36, 1) both;
}

.cl-analytics-chart.is-animating .cl-analytics-bar:nth-child(2) {
    animation-delay: 35ms;
}

.cl-analytics-chart.is-animating .cl-analytics-bar:nth-child(3) {
    animation-delay: 70ms;
}

.cl-analytics-chart.is-animating .cl-analytics-bar:nth-child(4) {
    animation-delay: 105ms;
}

.cl-analytics-chart.is-animating .cl-analytics-bar:nth-child(5) {
    animation-delay: 140ms;
}

.cl-analytics-chart.is-animating .cl-analytics-bar:nth-child(6) {
    animation-delay: 175ms;
}

.cl-analytics-chart.is-animating .cl-analytics-bar:nth-child(7) {
    animation-delay: 210ms;
}

.cl-analytics-chart.is-animating .cl-analytics-bar:nth-child(8) {
    animation-delay: 245ms;
}

#cl-analytics-email-one-bar,
#cl-analytics-email-two-bar {
    transition: width 520ms cubic-bezier(.22, 1, .36, 1), box-shadow 220ms ease;
}

.cl-chart-area-stage,
.cl-chart-annual-stage {
    height: 100%;
    position: relative;
    width: 100%;
}

.cl-chart-area-svg {
    height: calc(100% - 24px);
    inset: 0 0 24px;
    overflow: visible;
    position: absolute;
    width: 100%;
}

.cl-chart-area-fill {
    fill: url("#cl-area-gradient");
    fill: rgba(34, 197, 94, 0.12);
}

.cl-chart-area-line {
    fill: none;
    stroke: #22C55E;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.6;
    filter: drop-shadow(0 0 10px rgba(34, 197, 94, 0.36));
}

.cl-chart-area-marker {
    fill: #06120b;
    stroke: #86efac;
    stroke-width: 1.1;
    filter: drop-shadow(0 0 7px rgba(134, 239, 172, 0.42));
}

.cl-chart-area-labels {
    bottom: 0;
    color: rgba(255, 255, 255, 0.66);
    display: flex;
    font-size: var(--cl-text-sm);
    font-weight: 850;
    justify-content: space-between;
    left: 0;
    letter-spacing: 0.08em;
    position: absolute;
    right: 0;
    text-transform: uppercase;
}

.cl-chart-grid-lines {
    background-image: linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 100% 33%;
    inset: 4px 0 28px;
    position: absolute;
}

.cl-chart-stacked-stage {
    gap: 14px;
    padding: 26px 4px 30px;
    position: relative;
}

.cl-chart-stack-column {
    animation-delay: var(--stack-delay);
    display: flex;
    flex: 1;
    flex-direction: column-reverse;
    gap: 3px;
    height: 100%;
    min-width: 0;
}

.cl-chart-stack-segment {
    border-radius: 8px 8px 2px 2px;
    display: block;
    height: var(--segment-height);
    min-height: 8px;
}

.cl-chart-stack-revenue {
    background: linear-gradient(180deg, #22C55E, rgba(34, 197, 94, 0.45));
}

.cl-chart-stack-recovery {
    background: linear-gradient(180deg, #a855f7, rgba(168, 85, 247, 0.42));
}

.cl-chart-stack-bumps {
    background: linear-gradient(180deg, #fbbf24, rgba(251, 191, 36, 0.45));
}

.cl-chart-stack-legend {
    display: flex;
    gap: 12px;
    left: 4px;
    position: absolute;
    top: 0;
}

.cl-chart-stack-legend span {
    align-items: center;
    color: rgba(255, 255, 255, 0.72);
    display: inline-flex;
    font-size: var(--cl-text-sm);
    font-weight: 850;
    gap: 5px;
}

.cl-chart-stack-legend i {
    border-radius: 999px;
    display: block;
    height: 7px;
    width: 7px;
}

.cl-chart-stack-legend span:nth-child(1) i {
    background: #22C55E;
}

.cl-chart-stack-legend span:nth-child(2) i {
    background: #a855f7;
}

.cl-chart-stack-legend span:nth-child(3) i {
    background: #fbbf24;
}

.cl-chart-annual-bars {
    gap: 8px;
    padding: 10px 2px 0;
}

.cl-chart-annual-bar {
    animation-delay: var(--bar-delay);
    background: linear-gradient(180deg, rgba(34, 197, 94, 0.85), rgba(34, 197, 94, 0.22));
    border-radius: 999px 999px 6px 6px;
    flex: 1;
    height: var(--cl-bar-target);
    min-width: 0;
}

.cl-chart-annual-bar.is-forecast {
    background: linear-gradient(180deg, rgba(251, 191, 36, 0.9), rgba(251, 191, 36, 0.2));
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.16);
}

.cl-chart-forecast-line {
    inset: 18px 0 auto;
    height: 54%;
    pointer-events: none;
    position: absolute;
    width: 100%;
}

.cl-chart-forecast-line path {
    fill: none;
    stroke: #fbbf24;
    stroke-dasharray: 4 4;
    stroke-linecap: round;
    stroke-width: 1.8;
}

.cl-chart-forecast-pill {
    border: 1px solid rgba(251, 191, 36, 0.22);
    border-radius: 999px;
    color: rgba(253, 230, 138, 0.9);
    font-size: var(--cl-text-sm);
    font-weight: 900;
    letter-spacing: 0.08em;
    padding: 5px 8px;
    position: absolute;
    right: 0;
    text-transform: uppercase;
    top: 0;
}

.cl-analytics-chart.is-animating .cl-chart-area-line,
.cl-analytics-chart.is-animating .cl-chart-forecast-line path {
    animation: cl-chart-line-draw 720ms ease both;
}

.cl-analytics-chart.is-animating .cl-chart-stack-column,
.cl-analytics-chart.is-animating .cl-chart-annual-bar {
    animation: cl-analytics-bar-pop 620ms cubic-bezier(.22, 1, .36, 1) both;
}

@keyframes cl-analytics-bar-pop {
    0% {
        transform: scaleY(0.64);
        opacity: 0.55;
    }

    60% {
        transform: scaleY(1.06);
        opacity: 1;
    }

    100% {
        transform: scaleY(1);
        opacity: 1;
    }
}

@keyframes cl-chart-line-draw {
    0% {
        opacity: 0;
        stroke-dasharray: 0 220;
    }

    100% {
        opacity: 1;
        stroke-dasharray: 220 0;
    }
}

@media (max-width: 420px) {
    .cl-license-price-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .cl-license-price-license {
        padding-bottom: 0;
        text-align: left;
    }
}

@keyframes price-pop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }

    100% {
        transform: scale(1);
    }
}

.animate-price-pop {
    animation: price-pop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes dash-cyan {
    to {
        stroke-dashoffset: -20;
    }
}

.animate-dash-cyan {
    animation: dash-cyan 1.2s linear infinite;
    stroke: #06B6D4;
}

@keyframes flow-dot {
    0% {
        offset-distance: 0%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        offset-distance: 100%;
        opacity: 0;
    }
}

.animate-flow-dot {
    animation: flow-dot 2.5s infinite linear;
}

/* Modern UI Micro-Animations & Glow Effects */
@keyframes dash {
    to {
        stroke-dashoffset: -20;
    }
}

.animate-dash {
    animation: dash 1.2s linear infinite;
}

@keyframes pulse-subtle {

    0%,
    100% {
        border-color: rgba(251, 191, 36, 0.15);
        box-shadow: 0 0 0 rgba(251, 191, 36, 0);
    }

    50% {
        border-color: rgba(251, 191, 36, 0.5);
        box-shadow: 0 0 12px rgba(251, 191, 36, 0.15);
    }
}

.animate-pulse-subtle {
    animation: pulse-subtle 2s infinite ease-in-out;
}

#mock-form-container>div {
    transition: max-height 350ms cubic-bezier(0.4, 0, 0.2, 1), opacity 350ms cubic-bezier(0.4, 0, 0.2, 1), margin 350ms cubic-bezier(0.4, 0, 0.2, 1), padding 350ms cubic-bezier(0.4, 0, 0.2, 1), border-width 350ms cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 40px;
}

.cl-dotted-bg-lg {
    background-image: radial-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 24px 24px;
}

.cl-dotted-bg-sm {
    background-image: radial-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 16px 16px;
}

.cl-benefit-recovery-bg {
    background: radial-gradient(circle at 0% 0%, rgba(34, 197, 94, 0.06) 0%, #0b0b0e 60%);
}

.cl-benefit-aov-bg {
    background: radial-gradient(circle at 50% 0%, rgba(168, 85, 247, 0.06) 0%, #0b0b0e 60%);
}

.cl-benefit-compat-bg {
    background: radial-gradient(circle at 100% 0%, rgba(99, 154, 255, 0.06) 0%, #0b0b0e 60%);
}

.cl-chart-bar-25 {
    height: 25%;
}

.cl-chart-bar-35 {
    height: 35%;
}

.cl-chart-bar-40 {
    height: 40%;
}

.cl-chart-bar-45 {
    height: 45%;
}

.cl-chart-bar-55 {
    height: 55%;
}

.cl-chart-bar-65 {
    height: 65%;
}

.cl-chart-bar-75 {
    height: 75%;
}

.cl-chart-bar-85 {
    height: 85%;
}

.cl-chart-bar-95 {
    height: 95%;
}

.cl-chart-bar-100 {
    height: 100%;
}

#shipping-progress-bar {
    width: 69%;
}

.cl-pro-step-card {
    transition: transform 180ms cubic-bezier(.22, 1, .36, 1), border-color 160ms ease, box-shadow 160ms ease;
}

.cl-pro-step-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
}

@keyframes cl-pro-flow-arrow {

    0%,
    100% {
        opacity: .32;
        transform: translateX(0) scale(1);
    }

    50% {
        opacity: .82;
        transform: translateX(2px) scale(1.05);
    }
}

@keyframes cl-pro-live-pill {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(168, 85, 247, 0);
    }

    50% {
        box-shadow: 0 0 18px rgba(168, 85, 247, .18);
    }
}

@keyframes cl-pro-experiment-fill {

    0% {
        transform: scaleX(.54);
        opacity: .72;
    }

    45%,
    100% {
        transform: scaleX(.92);
        opacity: 1;
    }
}

@keyframes cl-pro-recovery-message {

    0%,
    100% {
        transform: translateY(0);
        box-shadow: 0 0 0 rgba(34, 197, 94, 0);
    }

    50% {
        transform: translateY(-1px);
        box-shadow: 0 12px 30px rgba(34, 197, 94, .12);
    }
}

.cl-pro-flow-arrow {
    animation: cl-pro-flow-arrow 2.8s ease-in-out infinite;
}

.cl-pro-live-pill {
    animation: cl-pro-live-pill 3.2s ease-in-out infinite;
}

.cl-pro-experiment-fill {
    width: 100%;
    transform-origin: left center;
    animation: cl-pro-experiment-fill 3.8s cubic-bezier(.22, 1, .36, 1) infinite;
}

.cl-pro-recovery-message {
    animation: cl-pro-recovery-message 4.2s ease-in-out infinite;
}

.cl-pro-card-flow-line,
.cl-pro-upsell-action,
.cl-pro-ab-fill-a,
.cl-pro-ab-fill-b,
.cl-pro-rule-row,
.cl-pro-message-row,
.cl-pro-cohort-cell {
    transition: transform 180ms cubic-bezier(.22, 1, .36, 1), opacity 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.cl-pro-card-flow-line {
    position: relative;
    overflow: hidden;
}

.cl-pro-card-flow-line::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, .65), transparent);
    opacity: 0;
    transform: translateX(-100%);
    transition: transform 420ms cubic-bezier(.22, 1, .36, 1), opacity 160ms ease;
}

.cl-pro-step-card:hover .cl-pro-card-flow-line::after {
    opacity: 1;
    transform: translateX(100%);
}

.cl-pro-step-card:hover .cl-pro-upsell-action {
    background-color: rgba(34, 197, 94, .18);
    box-shadow: 0 14px 34px rgba(34, 197, 94, .14);
    transform: translateY(-1px);
}

.cl-pro-ab-fill-a,
.cl-pro-ab-fill-b {
    width: 100%;
    transform-origin: left center;
}

.cl-pro-ab-fill-a {
    transform: scaleX(.51);
}

.cl-pro-ab-fill-b {
    transform: scaleX(.49);
}

.cl-pro-step-card:hover .cl-pro-ab-fill-a {
    transform: scaleX(.68);
}

.cl-pro-step-card:hover .cl-pro-ab-fill-b {
    transform: scaleX(.58);
}

.cl-pro-step-card:hover .cl-pro-rule-row {
    transform: translateX(2px);
}

.cl-pro-step-card:hover .cl-pro-rule-row:nth-child(2) {
    background-color: rgba(34, 197, 94, .08);
}

.cl-pro-step-card:hover .cl-pro-message-row {
    transform: translateY(-1px);
}

.cl-pro-step-card:hover .cl-pro-message-row:nth-child(2) {
    opacity: .78;
}

.cl-pro-step-card:hover .cl-pro-cohort-cell {
    transform: translateY(-2px);
}

.cl-pro-step-card:hover .cl-pro-cohort-cell:nth-child(2n) {
    opacity: .82;
}

@media (min-width: 1024px) {
    #pro-growth-suite {
        overflow: visible;
    }

    .cl-pro-step-card {
        position: sticky;
        top: 128px;
        z-index: 1;
    }

    .cl-pro-step-card:nth-child(2) {
        top: 144px;
        z-index: 2;
    }

    .cl-pro-step-card:nth-child(3) {
        top: 160px;
        z-index: 3;
    }

    .cl-pro-step-card:nth-child(4) {
        top: 176px;
        z-index: 4;
    }

    .cl-pro-step-card:nth-child(5) {
        top: 192px;
        z-index: 5;
    }

    .cl-pro-step-card:nth-child(6) {
        top: 208px;
        z-index: 6;
    }
}

@media (max-width: 1023px) {
    #pro-growth-suite {
        overflow: hidden;
    }

    #pro-growth-suite>.pointer-events-none {
        max-width: 120vw;
    }

    #pro-growth-suite .cl-pro-step-card {
        max-width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {

    .cl-pro-step-card,
    .cl-pro-step-card:hover {
        animation: none;
        transition: none;
        transform: none;
    }

    .cl-pro-flow-arrow,
    .cl-pro-live-pill,
    .cl-pro-experiment-fill,
    .cl-pro-recovery-message {
        animation: none;
    }

    .cl-pro-card-flow-line,
    .cl-pro-card-flow-line::after,
    .cl-pro-upsell-action,
    .cl-pro-ab-fill-a,
    .cl-pro-ab-fill-b,
    .cl-pro-rule-row,
    .cl-pro-message-row,
    .cl-pro-cohort-cell {
        transition: none;
    }

    .cl-mobile-menu-overlay,
    .cl-mobile-menu-panel,
    .cl-mobile-menu-link,
    .cl-mobile-menu-primary,
    .cl-mobile-menu-secondary {
        transition: none;
    }
}


.cl-mobile-menu-lock {
    overflow: hidden;
}

.cl-mobile-menu-overlay {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.86)),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 42px);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    pointer-events: none;
    transition: opacity 220ms cubic-bezier(.22, 1, .36, 1);
}

.cl-mobile-menu-overlay.is-open {
    opacity: 1 !important;
    pointer-events: auto;
}

.cl-mobile-menu-panel {
    top: 64px;
    color: #ffffff;
    background:
        radial-gradient(circle at 82% 14%, rgba(168, 85, 247, 0.11), transparent 34%),
        linear-gradient(180deg, rgba(12, 12, 18, 0.98), rgba(3, 3, 6, 0.98));
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: 0 -24px 90px rgba(0, 0, 0, 0.64), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    pointer-events: none;
    transform: translateY(-14px) scale(0.985);
    transition: transform 240ms cubic-bezier(.22, 1, .36, 1), opacity 200ms ease;
}

.cl-mobile-menu-panel.is-open {
    opacity: 1 !important;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.cl-mobile-menu-shell {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
    max-width: 520px;
    min-height: 100%;
    padding: 22px 18px 20px;
}

.cl-mobile-menu-nav {
    display: grid;
    gap: 9px;
}

.cl-mobile-menu-link {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 34px;
    align-items: center;
    gap: 10px;
    min-height: 64px;
    border: 1px solid rgba(255, 255, 255, 0.085);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    padding: 12px;
    color: #ffffff;
    text-decoration: none;
    transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.cl-mobile-menu-link:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.22);
}

.cl-mobile-menu-link:hover,
.cl-mobile-menu-link:focus-visible {
    border-color: rgba(168, 85, 247, 0.34);
    background: rgba(168, 85, 247, 0.09);
    transform: translateY(-1px);
}

.cl-mobile-menu-link:active {
    transform: translateY(1px) scale(0.99);
}

.cl-mobile-menu-index,
.cl-mobile-menu-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
}

.cl-mobile-menu-index {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(0, 0, 0, 0.26);
    color: rgba(255, 255, 255, 0.44);
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
    font-size: 12px;
    font-weight: 900;
}

.cl-mobile-menu-link-body {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.cl-mobile-menu-link-title {
    overflow: hidden;
    color: rgba(255, 255, 255, 0.94);
    font-size: 17px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.08;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cl-mobile-menu-link-meta {
    overflow: hidden;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cl-mobile-menu-icon {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(168, 85, 247, 0.24);
    background: rgba(168, 85, 247, 0.14);
    color: #d8b4fe;
}

.author-uri {
    color: var(--green);
    transition: all 0.3s ease-in-out;
}

.cl-mobile-menu-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: auto;
    padding-top: 4px;
}

.cl-mobile-menu-primary,
.cl-mobile-menu-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    border-radius: 16px;
    padding: 0 14px;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.cl-mobile-menu-primary {
    background: #ffffff;
    color: #07070a;
}

.cl-mobile-menu-secondary {
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(255, 255, 255, 0.045);
    color: rgba(255, 255, 255, 0.92);
}

.cl-mobile-menu-primary:focus-visible,
.cl-mobile-menu-secondary:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.22);
}

.cl-mobile-menu-primary:hover,
.cl-mobile-menu-secondary:hover {
    transform: translateY(-1px);
}

.cl-mobile-menu-primary:active,
.cl-mobile-menu-secondary:active {
    transform: translateY(1px) scale(0.99);
}

body.admin-bar .lk-cartlane .cl-mobile-menu-panel,
body.admin-bar.lk-cartlane .cl-mobile-menu-panel {
    top: 96px;
}

body.admin-bar .lk-cartlane nav.fixed.top-0 {
    top: 32px !important;
}

body.admin-bar.lk-cartlane nav.fixed.top-0 {
    top: 32px !important;
}

body.admin-bar .lk-cartlane #drawer-overlay {
    top: 32px;
}

body.admin-bar.lk-cartlane #drawer-overlay {
    top: 32px;
}

body.admin-bar .lk-cartlane #side-cart-drawer {
    top: 32px;
    height: calc(100vh - 32px);
}

body.admin-bar.lk-cartlane #side-cart-drawer {
    top: 32px;
    height: calc(100vh - 32px);
}

@media (max-width: 782px) {
    body.admin-bar .lk-cartlane nav.fixed.top-0 {
        top: 46px !important;
    }

    body.admin-bar.lk-cartlane nav.fixed.top-0 {
        top: 46px !important;
    }

    body.admin-bar .lk-cartlane #drawer-overlay {
        top: 46px;
    }

    body.admin-bar.lk-cartlane #drawer-overlay {
        top: 46px;
    }

    body.admin-bar .lk-cartlane #side-cart-drawer {
        top: 46px;
        height: calc(100vh - 46px);
    }

    body.admin-bar.lk-cartlane #side-cart-drawer {
        top: 46px;
        height: calc(100vh - 46px);
    }

    body.admin-bar .lk-cartlane .cl-mobile-menu-panel,
    body.admin-bar.lk-cartlane .cl-mobile-menu-panel {
        top: 110px;
    }

    html.cl-admin-bar-released body.admin-bar .lk-cartlane nav.fixed.top-0,
    html.cl-admin-bar-released body.admin-bar.lk-cartlane nav.fixed.top-0 {
        top: 0 !important;
    }

    html.cl-admin-bar-released body.admin-bar .lk-cartlane .cl-mobile-menu-panel,
    html.cl-admin-bar-released body.admin-bar.lk-cartlane .cl-mobile-menu-panel {
        top: 64px;
    }
}

@media (max-width: 350px), (max-height: 720px) {
    .cl-mobile-menu-shell {
        gap: 14px;
        padding: 18px 14px 20px;
    }

    .cl-mobile-menu-link {
        min-height: 68px;
    }
}

.cl-roadmap-popover {
    max-height: calc(100vh - 128px);
}

html {
    scrollbar-gutter: stable;
}

html.cl-roadmap-lock {
    overflow-x: hidden;
    overflow-y: scroll;
    overscroll-behavior: none;
}

html.cl-roadmap-lock body {
    overflow: hidden;
    overscroll-behavior: none;
}

.cl-roadmap-shell {
    background:
        radial-gradient(circle at 85% 0%, rgba(168, 85, 247, 0.26), transparent 34%),
        radial-gradient(circle at 0% 100%, rgba(34, 197, 94, 0.12), transparent 32%),
        rgba(8, 7, 12, 0.97);
    height: auto;
    max-height: inherit;
    overscroll-behavior: contain;
    overflow-y: auto;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
}

.cl-roadmap-shell > .pointer-events-none.absolute.inset-0 {
    display: none;
}

.cl-roadmap-card-title {
    min-width: 0;
}

.cl-roadmap-status {
    flex: 0 0 auto;
    white-space: nowrap;
}

@media (max-width: 480px) {
    html.cl-roadmap-lock,
    html.cl-roadmap-lock body {
        overflow: hidden;
    }

    body.cl-roadmap-lock {
        position: fixed;
        left: 0;
        right: 0;
        width: 100%;
    }

    .lk-cartlane .cl-roadmap-popover {
        top: 88px;
        left: 12px;
        right: 12px;
        bottom: 16px;
        width: auto;
        height: auto;
        max-height: none;
    }

    body.admin-bar .lk-cartlane .cl-roadmap-popover,
    body.admin-bar.lk-cartlane .cl-roadmap-popover {
        top: 118px;
        max-height: none;
    }

    .lk-cartlane .cl-roadmap-shell {
        height: 100%;
        max-height: 100%;
        border-radius: 24px;
        padding: 16px;
    }

    .lk-cartlane .cl-roadmap-card {
        padding: 14px;
    }

    .lk-cartlane .cl-roadmap-card-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .lk-cartlane .cl-roadmap-card-title {
        width: 100%;
    }

    .lk-cartlane .cl-roadmap-icon {
        flex: 0 0 38px;
        height: 38px;
        width: 38px;
    }

    .lk-cartlane .cl-roadmap-title-text {
        font-size: 16px;
        line-height: 1.22;
    }

    .lk-cartlane .cl-roadmap-status {
        align-self: flex-start;
        max-width: 100%;
        padding: 6px 10px;
        white-space: normal;
        word-break: normal;
    }
}

.brand-logo svg {
    width: 180px;
    height: auto;
}

@media (max-width: 480px) {
    .lk-cartlane nav .brand-logo svg {
        width: 150px;
    }

    .lk-cartlane nav .btn-install {
        padding: 7px 12px;
        font-size: 12px;
        white-space: nowrap;
    }

    .lk-cartlane nav .btn-install svg,
    .lk-cartlane nav .btn-install i {
        width: 14px;
        height: 14px;
        margin-right: 2px;
    }
}

@media (max-width: 374px) {
    .lk-cartlane nav .brand-logo svg {
        width: 132px;
    }

    .lk-cartlane nav .btn-install {
        padding: 6px 10px;
        font-size: var(--cl-text-md);
    }
}

/*
 * Fix for WordPress themes aggressively applying !important to .hidden.
 * This restores Tailwind's expected behavior for responsive visibility classes.
 */
@media (min-width: 1024px) {
    .lk-cartlane .hidden.lg\:flex {
        display: flex !important;
    }
}

@media (min-width: 640px) {
    .lk-cartlane .hidden.sm\:block {
        display: block !important;
    }

    .lk-cartlane .hidden.sm\:inline-flex {
        display: inline-flex !important;
    }
}

@media (min-width: 768px) {
    .lk-cartlane .hidden.md\:block {
        display: block !important;
    }
}

/* Phase 2: Rest of showcase cards styling */
#card-side-cart {
    background: radial-gradient(circle at 100% 0%, rgba(16, 185, 129, 0.08) 0%, #0b0b0e 65%);
}

#card-side-cart:hover {
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.06);
    border-color: rgba(16, 185, 129, 0.25);
}

/* Glow effects for switches */
.field-toggle-switch[data-active="true"] .switch-dot {
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.8);
}

.rule-toggle-switch[data-active="true"] .switch-dot {
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.8);
}

/* Timeline pulses */
@keyframes recovery-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.4);
    }

    50% {
        box-shadow: 0 0 12px 6px rgba(251, 191, 36, 0.2);
    }
}

.timeline-pulse {
    animation: recovery-pulse 2s infinite;
}

/* Glowing shipping bar */
.shipping-glow-bar {
    width: 68%;
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.5);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

#analytics-tooltip {
    bottom: 80px;
    left: 45px;
}

#ab-bar-a {
    width: 42%;
}

#ab-bar-b {
    width: 87%;
}

/* Tooltip pop */
@keyframes tooltip-pop {
    0% {
        transform: translateY(8px) scale(0.95);
        opacity: 0;
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.animate-tooltip-pop {
    animation: tooltip-pop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* Chart dashed grid lines */
.chart-grid-line {
    stroke: rgba(255, 255, 255, 0.03);
    stroke-dasharray: 4 4;
}

/* ─── Free vs Pro Comparison Table ─── */
#free-vs-pro {
    scroll-margin-top: 96px;
}

#free-vs-pro .comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

#free-vs-pro .cl-comparison-mobile-label {
    display: none;
}

@media (max-width: 767px) {

    #developer-handoff {
        padding-top: 72px !important;
        padding-bottom: 48px !important;
    }

    #free-vs-pro {
        padding-top: 52px !important;
        padding-bottom: 48px !important;
        scroll-margin-top: 128px;
    }

    #pro-growth-suite {
        padding-top: 56px !important;
        padding-bottom: 72px !important;
    }

    #free-vs-pro .cl-comparison-intro {
        margin-bottom: 36px;
        max-width: 100%;
    }

    #free-vs-pro .cl-comparison-heading {
        font-size: 38px;
        line-height: 1.08;
    }

    #free-vs-pro .cl-comparison-copy {
        font-size: 15px;
        line-height: 1.7;
    }

    #free-vs-pro .cl-comparison-table {
        display: grid;
        gap: 12px;
        overflow: visible;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    #free-vs-pro .cl-comparison-header {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 22px;
        background: rgba(8, 8, 16, 0.92);
    }

    #free-vs-pro .cl-comparison-feature-heading {
        display: none;
    }

    #free-vs-pro .cl-comparison-header>div {
        min-width: 0;
        padding: 16px;
    }

    #free-vs-pro .cl-comparison-header .cl-comparison-plan-heading {
        align-items: flex-start !important;
        flex-direction: row-reverse !important;
        gap: 12px;
        justify-content: flex-start !important;
    }

    #free-vs-pro .cl-comparison-header .text-\[18px\] {
        font-size: 17px;
        line-height: 1.2;
    }

    #free-vs-pro .cl-comparison-header .text-\[10\.5px\] {
        font-size: 9px;
        letter-spacing: 0.08em;
        line-height: 1.45;
    }

    #free-vs-pro .cl-comparison-pro-badge {
        display: none;
    }

    #free-vs-pro .cl-comparison-header .cl-comparison-plan-icon {
        flex: 0 0 34px;
        width: 34px;
        height: 34px;
    }

    #free-vs-pro .cl-comparison-header .border-l.px-6 .cl-comparison-plan-icon {
        margin-left: 0;
    }

    #free-vs-pro .cl-comparison-header .relative.border-l>div {
        position: relative;
        align-items: flex-start;
    }

    #free-vs-pro .cl-comparison-header .relative.border-l .cl-comparison-plan-icon {
        position: static;
        opacity: 0.8;
    }

    #free-vs-pro .cl-comparison-header .relative.border-l .flex.items-center.gap-2 {
        align-items: flex-start !important;
        flex-direction: row !important;
        gap: 4px;
        padding-right: 0;
    }

    #free-vs-pro .cl-comparison-header .cl-comparison-plan-heading>div:not(.cl-comparison-plan-icon) {
        min-width: 0;
    }

    #free-vs-pro .cl-comparison-row {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 22px;
        background: rgba(8, 8, 16, 0.9);
    }

    #free-vs-pro .cl-comparison-module {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        padding: 16px;
    }

    #free-vs-pro .cl-comparison-module span {
        font-size: 15px;
        line-height: 1.25;
    }

    #free-vs-pro .cl-comparison-plan {
        display: grid;
        grid-template-columns: 72px minmax(0, 1fr);
        align-items: start;
        gap: 12px;
        border-left: 0;
        padding: 14px 16px;
    }

    #free-vs-pro .cl-comparison-plan+.cl-comparison-plan {
        border-top: 1px solid rgba(168, 85, 247, 0.14);
    }

    #free-vs-pro .cl-comparison-plan-pro {
        background: rgba(168, 85, 247, 0.065);
    }

    #free-vs-pro .cl-comparison-mobile-label {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.04);
        padding: 6px 8px;
        color: rgba(255, 255, 255, 0.58);
        font-size: var(--cl-text-md);
        font-weight: 900;
        letter-spacing: 0.08em;
        line-height: 1;
        text-transform: uppercase;
    }

    #free-vs-pro .cl-comparison-plan-pro .cl-comparison-mobile-label {
        border-color: rgba(168, 85, 247, 0.24);
        background: rgba(168, 85, 247, 0.12);
        color: rgba(216, 180, 254, 0.9);
    }

    #free-vs-pro .cl-comparison-plan span:not(.cl-comparison-mobile-label) {
        min-width: 0;
        font-size: 13px;
        line-height: 1.45;
    }

    #free-vs-pro .cl-comparison-footer {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.025);
    }

    #free-vs-pro .cl-comparison-footer>div {
        border-left: 0;
        padding: 16px;
    }

    #free-vs-pro .cl-comparison-footer>div+div {
        border-top: 1px solid rgba(255, 255, 255, 0.07);
    }

    #free-vs-pro .cl-comparison-footer a {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    body.lk-cartlane section {
        padding-top: 56px !important;
        padding-bottom: 56px !important;
    }

    body.lk-cartlane #main {
        min-height: auto !important;
        padding-top: 112px !important;
        padding-bottom: 48px !important;
    }

    body.lk-cartlane .cl-showcase-section {
        padding-top: 56px !important;
        padding-bottom: 32px !important;
    }

    body.lk-cartlane #showcase-track {
        gap: 16px !important;
        padding-left: 24px !important;
        padding-right: 24px !important;
        padding-bottom: 8px !important;
        scroll-padding-left: 24px !important;
        scroll-padding-right: 24px !important;
    }

    body.lk-cartlane .cl-showcase-header {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    body.lk-cartlane #analytics {
        padding-top: 48px !important;
        padding-bottom: 36px !important;
    }

    body.lk-cartlane #integrations {
        padding-top: 48px !important;
    }

    body.lk-cartlane .cl-feature-card {
        height: auto;
        min-height: 420px;
        padding: 20px;
    }

    body.lk-cartlane .cl-command-footer {
        gap: 12px;
        padding: 10px 14px !important;
    }

    body.lk-cartlane .cl-command-footer-actions {
        flex-shrink: 0;
        gap: 8px !important;
    }

    body.lk-cartlane .cl-command-footer-label {
        display: none;
    }

    body.lk-cartlane .cl-command-footer-action {
        gap: 4px !important;
    }

    body.lk-cartlane .cl-command-footer .kbd-key {
        min-width: 26px;
        height: 26px;
        padding: 0 7px;
        border-radius: 6px;
        font-size: var(--cl-text-md);
    }

    #developer-handoff {
        padding-top: 56px !important;
        padding-bottom: 48px !important;
    }

    #free-vs-pro {
        padding-top: 52px !important;
        padding-bottom: 48px !important;
    }

    #pro-growth-suite {
        padding-top: 56px !important;
        padding-bottom: 72px !important;
    }
}

@media (min-width: 768px) {
    body.lk-cartlane section {
        padding-top: 64px !important;
        padding-bottom: 64px !important;
    }

    body.lk-cartlane #main {
        min-height: auto !important;
        padding-top: 128px !important;
        padding-bottom: 64px !important;
    }

    body.lk-cartlane .cl-showcase-section {
        padding-top: 64px !important;
        padding-bottom: 64px !important;
    }

    body.lk-cartlane #showcase-track {
        padding-left: 40px !important;
        padding-right: 40px !important;
        padding-bottom: 0 !important;
        scroll-padding-left: 40px !important;
        scroll-padding-right: 40px !important;
    }

    body.lk-cartlane .cl-showcase-header {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }

    body.lk-cartlane #analytics {
        padding-top: 64px !important;
        padding-bottom: 32px !important;
    }

    body.lk-cartlane #integrations {
        padding-top: 56px !important;
    }

    body.lk-cartlane #faq,
    body.lk-cartlane #faq + section {
        padding-top: 64px !important;
        padding-bottom: 64px !important;
    }
}

/* ═══════════════════════════════════
   PROOF BAR — Trust highlights
═══════════════════════════════════ */
#proof{
  border-top:1px solid rgb(var(--cl-border) / 0.50);
  border-bottom:1px solid rgb(var(--cl-border) / 0.50);
  background: rgb(var(--cl-bg));
  padding: 0 !important;
  overflow:hidden;
}
.proof-track{
  display:flex;gap:0;
  animation:proof-scroll 24s linear infinite;
}
.proof-track:hover{animation-play-state:paused;}
@keyframes proof-scroll{
  0%{transform:translateX(0);}
  100%{transform:translateX(-50%);}
}
.proof-item{
  flex-shrink:0;
  display:flex;align-items:center;gap:16px;
  padding:20px 48px;
  border-right:1px solid rgb(var(--cl-border) / 0.50);
  white-space:nowrap;
}
.proof-num{
  font-family:'Plus Jakarta Sans',sans-serif;
  font-weight:900;font-size:22px;letter-spacing:-.03em;
  color: rgb(var(--cl-brand));
}
.proof-label{font-size:12px;color: rgb(var(--cl-muted));font-weight:600;max-width:140px;line-height:1.4;}
.proof-div{width:1px;height:32px;background:rgb(var(--cl-border));flex-shrink:0;}

@media (prefers-reduced-motion: reduce){
  .proof-track{animation:none;}
}

/* ═══════════════════════════════════
   ── HERO ──
   Full-bleed. Product lives here.
═══════════════════════════════════ */

.hero-trust {
  display: flex; gap: 0; justify-content: center;
  border: 1px solid rgb(var(--cl-border));
  border-radius: 12px;
  overflow: hidden;
  margin: 0 auto;
  margin-top: 30px;
  width: fit-content;
}
.ht-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 500;
  color: rgb(var(--cl-text));
  border-right: 1px solid rgb(var(--cl-border));
}
.ht-item:last-child { border-right: none; }
.ht-item svg { width: 12px; height: 12px; stroke: rgb(var(--cl-brand)); fill: none; stroke-width: 2.5; stroke-linecap: round; }

@media (max-width: 640px) {
  .hero-trust { flex-wrap: wrap; width: 100%; border-radius: 0; border: none; gap: 8px; }
  .ht-item { border: 1px solid rgb(var(--cl-border)); border-radius: 8px; }
}

/* ═══════════════════════════════════
   PROBLEM STATEMENT — Full bleed
═══════════════════════════════════ */
#problem {
    padding: 56px 24px 48px !important;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgb(var(--cl-border) / 0.5);
    background: rgb(var(--cl-bg));
}
.problem-glow {
    position: absolute;
    width: min(600px, calc(100vw - 32px));
    height: 400px;
    background: radial-gradient(ellipse, rgba(239, 68, 68, 0.06), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.problem-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    padding: 7px 14px;
    border: 1px solid rgb(var(--cl-border) / 0.7);
    border-radius: 999px;
    background: rgb(var(--cl-surface) / 0.78);
    color: rgb(var(--cl-text));
    font-size: var(--cl-text-md);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1;
    backdrop-filter: blur(10px);
}
.problem-text {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(30px, 5vw, 58px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.25;
    max-width: 1180px;
    margin: 0 auto;
    margin-bottom: 40px;
    color: rgb(var(--cl-muted));
}
.problem-text strong {
    color: rgb(var(--cl-text));
}
.problem-text s {
    color: rgb(var(--cl-border) / 0.8);
    text-decoration: none;
    position: relative;
}
.problem-text s::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 2px;
    background: rgba(239, 68, 68, 0.6);
    transform: scaleX(1);
}
.problem-contrast {
    margin-top: 48px;
    width: max-content;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    border: 1px solid rgb(var(--cl-border));
    border-radius: 16px;
    overflow: hidden;
}
.pc-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgb(var(--cl-muted));
}
.pc-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pc-bad {
    background: rgba(239, 68, 68, 0.1);
}
.pc-bad svg {
    stroke: #ef4444;
}
.pc-good {
    background: var(--green-dim);
}
.pc-good svg {
    stroke: var(--green);
}
.pc-icon svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
}
.pc-arr {
    color: rgb(var(--cl-muted));
    font-size: 16px;
}

.problem-kicker { margin-bottom: 40px; }
.problem-statement {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(30px, 4.5vw, 54px);
  font-weight: 700; letter-spacing: -.04em; line-height: 1.18;
  color: rgb(var(--cl-text));
}
.problem-statement strong {
    color: rgb(var(--cl-text));
}
.problem-statement .struck {
  color: rgb(var(--cl-muted));
  text-decoration: line-through;
  text-decoration-color: rgba(239,68,68,.5);
  text-decoration-thickness: 2px;
}

.pc-col {
    background: var(--bg);
    padding: 28px 32px;
    border-left: 1px solid rgb(var(--cl-border));
}

.pc-col:nth-child(1) {
    border-left: none;
}

.pc-col-head {
  font-size: var(--cl-text-md);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgb(var(--cl-muted));
  margin-bottom: 12px;
}
.pc-val {
  font-family: 'DM Sans', sans-serif;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -.04em;
}
.pc-val--bad { color: rgba(239,68,68,.7); }
.pc-val--good { color: var(--green); }
.pc-val--default {
    color: rgb(var(--cl-muted));
}
.pc-desc {
    font-size: 13px;
    color: rgb(var(--cl-muted));
    margin-top: 6px;
}

.time-text {
    color: rgb(var(--cl-text));
    font-size: 24px;
    font-weight: 500;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
    .problem-contrast {
        grid-template-columns: 1fr;
        width: auto;
    }
}
