/* ===== CSS Custom Properties ===== */
:root {
    --radius: 0.875rem;
    --background: #ffffff;
    --foreground: #1a1a2e;
    --card: #ffffff;
    --card-foreground: #1a1a2e;
    --popover: #ffffff;
    --popover-foreground: #1a1a2e;
    --primary: #2563eb;
    --primary-foreground: #ffffff;
    --secondary: #eef2ff;
    --secondary-foreground: #1e293b;
    --muted: #f1f5f9;
    --muted-foreground: #64748b;
    --accent: #16a34a;
    --accent-foreground: #ffffff;
    --success: #16a34a;
    --success-foreground: #ffffff;
    --warning: #d97706;
    --warning-foreground: #1a1a2e;
    --destructive: #dc2626;
    --destructive-foreground: #ffffff;
    --border: #e2e8f0;
    --input: #e2e8f0;
    --ring: #2563eb;
}

/* ===== Base ===== */
*, *::before, *::after {
    border-color: var(--border);
}
html {
    scroll-behavior: smooth;
}
body {
    background-color: var(--background);
    color: var(--foreground);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    font-display: swap;
}
h1, h2, h3, h4, h5, h6 {
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: var(--foreground);
}

/* ===== Utilities ===== */
.container-prose {
    max-width: 72rem;
    margin-inline: auto;
    padding-inline: 1.25rem;
}

.card-soft {
    background-color: var(--card);
    color: var(--card-foreground);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 16px -4px rgba(0,0,0,0.08);
}
.card-soft:hover {
    box-shadow: 0 2px 8px -1px rgba(0,0,0,0.08), 0 12px 32px -8px rgba(0,0,0,0.12);
}

.shadow-soft { box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 16px -4px rgba(0,0,0,0.08); }
.shadow-elevated { box-shadow: 0 2px 8px -1px rgba(0,0,0,0.08), 0 12px 32px -8px rgba(0,0,0,0.12); }

.text-primary { color: var(--primary); }
.text-muted-foreground { color: var(--muted-foreground); }
.text-foreground { color: var(--foreground); }
.text-success { color: var(--success); }
.text-warning { color: var(--warning); }
.text-destructive { color: var(--destructive); }

.bg-background { background-color: var(--background); }
.bg-card { background-color: var(--card); }
.bg-primary { background-color: var(--primary); }
.bg-muted { background-color: var(--muted); }

.border-primary { border-color: var(--primary); }
.border-success { border-color: var(--success); }
.border-warning { border-color: var(--warning); }
.border-destructive { border-color: var(--destructive); }

.text-primary-foreground { color: var(--primary-foreground); }
.text-card-foreground { color: var(--card-foreground); }
.text-secondary-foreground { color: var(--secondary-foreground); }
.text-success-foreground { color: var(--success-foreground); }

/* ===== Animations ===== */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }

/* ===== WordPress Editor / Prose ===== */
.prose {
    max-width: none;
    line-height: 1.8;
    color: var(--foreground);
}
.prose h1, .prose h2, .prose h3, .prose h4 {
    margin-top: 2em;
    margin-bottom: 0.5em;
    font-weight: 700;
    color: var(--foreground);
}
.prose h1 { font-size: 2rem; }
.prose h2 { font-size: 1.625rem; }
.prose h3 { font-size: 1.375rem; }
.prose p, .prose ul, .prose ol { margin-bottom: 1.25em; }
.prose p { font-size: 1rem; }
.prose ul { list-style-type: disc; padding-left: 1.5em; }
.prose ol { list-style-type: decimal; padding-left: 1.5em; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: #1d4ed8; text-decoration: underline; }
a:focus-visible { outline: 2px solid var(--ring); outline-offset: 2px; border-radius: 2px; }
.prose a { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: #1d4ed8; }
.prose li { margin-bottom: 0.375em; }
.prose strong { font-weight: 700; color: var(--foreground); }

/* ===== Transitions ===== */
.transition-all { transition-property: all; }
.transition-colors { transition-property: color, background-color, border-color; }
.transition-shadow { transition-property: box-shadow; }
.transition-transform { transition-property: transform; }
.transition-opacity { transition-property: opacity; }
.duration-150 { transition-duration: 150ms; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }

/* ===== Helpers ===== */
.hidden { display: none; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.grid { display: grid; }

.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.shrink-0 { flex-shrink: 0; }
.grow { flex-grow: 1; }
.flex-1 { flex: 1; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 0.25rem; }
.gap-1\.5 { gap: 0.375rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-10 { gap: 2.5rem; }

.rounded-md { border-radius: calc(var(--radius) - 2px); }
.rounded-lg { border-radius: var(--radius); }
.rounded-xl { border-radius: calc(var(--radius) + 4px); }
.rounded-2xl { border-radius: calc(var(--radius) + 8px); }
.rounded-full { border-radius: 9999px; }

.border { border: 1px solid var(--border); }
.border-0 { border-width: 0; }
.border-t { border-top-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-l { border-left-width: 1px; }

.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-10 { padding: 2.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.pt-6 { padding-top: 1.5rem; }
.pb-24 { padding-bottom: 6rem; }
.pl-5 { padding-left: 1.25rem; }
.pl-6 { padding-left: 1.5rem; }

.m-0 { margin: 0; }
.mx-auto { margin-left: auto; margin-right: auto; }
.ml-2 { margin-left: 0.5rem; }
.ml-3 { margin-left: 0.75rem; }
.ml-4 { margin-left: 1rem; }
.ml-auto { margin-left: auto; }
.mt-1 { margin-top: 0.25rem; }
.mt-1\.5 { margin-top: 0.375rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-7 { margin-top: 1.75rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-24 { margin-top: 6rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

.w-full { width: 100%; }
.w-48 { width: 12rem; }
.w-9 { width: 2.25rem; }
.max-w-none { max-width: none; }
.max-w-md { max-width: 28rem; }
.max-w-sm { max-width: 24rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }

.size-3 { width: 0.75rem; height: 0.75rem; }
.size-4 { width: 1rem; height: 1rem; }
.size-5 { width: 1.25rem; height: 1.25rem; }
.size-6 { width: 1.5rem; height: 1.5rem; }
.size-7 { width: 1.75rem; height: 1.75rem; }
.size-8 { width: 2rem; height: 2rem; }
.size-9 { width: 2.25rem; height: 2.25rem; }
.size-10 { width: 2.5rem; height: 2.5rem; }
.size-16 { width: 4rem; height: 4rem; }
.size-20 { width: 5rem; height: 5rem; }

.h-9 { height: 2.25rem; }
.h-10 { height: 2.5rem; }
.h-11 { height: 2.75rem; }
.h-16 { height: 4rem; }
.min-h-screen { min-height: 100vh; }
.min-h-\[70vh\] { min-height: 70vh; }

.text-xs { font-size: 0.75rem; line-height: 1.25; }
.text-sm { font-size: 0.875rem; line-height: 1.5; }
.text-base { font-size: 1rem; line-height: 1.6; }
.text-lg { font-size: 1.125rem; line-height: 1.7; }
.text-xl { font-size: 1.25rem; line-height: 1.6; }
.text-2xl { font-size: 1.5rem; line-height: 1.4; }
.text-3xl { font-size: 1.875rem; line-height: 1.35; }
.text-4xl { font-size: 2.25rem; line-height: 1.3; }
.text-7xl { font-size: 4.5rem; line-height: 1.1; }

.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.leading-relaxed { line-height: 1.625; }
.leading-none { line-height: 1; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-wider { letter-spacing: 0.05em; }

.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-balance { text-wrap: balance; }

.uppercase { text-transform: uppercase; }

.list-disc { list-style-type: disc; }
.list-decimal { list-style-type: decimal; }

.mx-1 { margin-left: 0.25rem; margin-right: 0.25rem; }
.overflow-hidden { overflow: hidden; }

.xtv-header-blur {
    background-color: rgba(255,255,255,0.85);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}
@supports (backdrop-filter: blur(12px)) {
    .xtv-header-blur {
        background-color: rgba(255,255,255,0.6);
    }
}
.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.inset-0 { inset: 0; }
.inset-x-4 { left: 1rem; right: 1rem; }
.inset-x-0 { left: 0; right: 0; }
.top-0 { top: 0; }
.top-2 { top: 0.5rem; }
.left-0 { left: 0; }
.-left-\[34px\] { left: -34px; }
.-z-10 { z-index: -10; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

.backdrop-blur { backdrop-filter: blur(12px); }

.place-items-center { place-items: center; }

.object-cover { object-fit: cover; }
.aspect-\[9\/16\] { aspect-ratio: 9/16; }
.aspect-video { aspect-ratio: 16/9; }

.ring-4 { box-shadow: 0 0 0 4px var(--background); }
.ring-offset-background { --ring-offset-color: var(--background); }

.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.from-primary\/5 { --tw-gradient-from: color-mix(in srgb, var(--primary) 5%, transparent); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-primary\/8 { --tw-gradient-from: color-mix(in srgb, var(--primary) 8%, transparent); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.via-background { --tw-gradient-via-stops: var(--tw-gradient-from), var(--background), var(--tw-gradient-to); --tw-gradient-stops: var(--tw-gradient-from), var(--background), var(--tw-gradient-to); }
.to-accent\/5 { --tw-gradient-to: color-mix(in srgb, var(--accent) 5%, transparent); }
.to-accent\/8 { --tw-gradient-to: color-mix(in srgb, var(--accent) 8%, transparent); }
.to-accent\/10 { --tw-gradient-to: color-mix(in srgb, var(--accent) 10%, transparent); }
.from-primary\/10 { --tw-gradient-from: color-mix(in srgb, var(--primary) 10%, transparent); }

.bg-success\/5 { background-color: color-mix(in srgb, var(--success) 5%, transparent); }
.bg-destructive\/5 { background-color: color-mix(in srgb, var(--destructive) 5%, transparent); }
.bg-muted\/30 { background-color: color-mix(in srgb, var(--muted) 30%, transparent); }
.bg-muted\/40 { background-color: color-mix(in srgb, var(--muted) 40%, transparent); }
.bg-muted\/50 { background-color: color-mix(in srgb, var(--muted) 50%, transparent); }
.bg-black\/50 { background-color: rgb(0 0 0 / 0.5); }

.border-success\/30 { border-color: color-mix(in srgb, var(--success) 30%, transparent); }
.border-destructive\/30 { border-color: color-mix(in srgb, var(--destructive) 30%, transparent); }
.border-warning\/30 { border-color: color-mix(in srgb, var(--warning) 30%, transparent); }
.border-primary\/30 { border-color: color-mix(in srgb, var(--primary) 30%, transparent); }

.invisible { visibility: hidden; }
.opacity-0 { opacity: 0; }

/* ===== Grid helpers ===== */
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* ===== Button base ===== */
.inline-flex.items-center.justify-center.rounded-md {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: calc(var(--radius) - 2px);
}

/* ===== Tailwind-style transition utilities merged ===== */
.hover\:text-primary:hover { color: var(--primary); }
.hover\:text-foreground:hover { color: var(--foreground); }
.hover\:bg-accent:hover { background-color: var(--accent); }
.hover\:bg-primary\/90:hover { background-color: color-mix(in srgb, var(--primary) 90%, transparent); }
.hover\:shadow-elevated:hover { box-shadow: 0 2px 6px -1px oklch(0 0 0 / 0.06), 0 12px 32px -8px oklch(0 0 0 / 0.10); }

.group:hover .group-hover\:text-primary { color: var(--primary); }

/* ===== Responsive ===== */
@media (min-width: 640px) {
    .sm\:inline { display: inline; }
    .sm\:inline-flex { display: inline-flex; }
    .sm\:hidden { display: none; }
    .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .sm\:flex-row { flex-direction: row; }
    .sm\:text-right { text-align: right; }
}
@media (min-width: 768px) {
    .md\:inline-flex { display: inline-flex; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .md\:col-span-1 { grid-column: span 1 / span 1; }
    .md\:text-5xl { font-size: 3rem; line-height: 1; }
    .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
    .md\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
    .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
    .md\:p-8 { padding: 2rem; }
}
@media (min-width: 1024px) {
    .lg\:flex { display: flex; }
    .lg\:hidden { display: none; }
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .lg\:grid-cols-\[1fr_320px\] { grid-template-columns: 1fr 320px; }
    .lg\:pl-6 { padding-left: 1.5rem; }
    .lg\:block { display: block; }
}

/* ===== Responsive: sub-480px (small phones) ===== */
@media (max-width: 480px) {
    .container-prose {
        padding-inline: 0.75rem;
    }
    .xs\:grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
    .xs\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .xs\:text-base { font-size: 1rem; line-height: 1.6; }
    .xs\:text-lg { font-size: 1.125rem; line-height: 1.7; }
    .xs\:text-xl { font-size: 1.25rem; line-height: 1.6; }
    .xs\:text-2xl { font-size: 1.5rem; line-height: 1.4; }
    .xs\:text-3xl { font-size: 1.875rem; line-height: 1.35; }
    .xs\:px-4 { padding-left: 1rem; padding-right: 1rem; }
    .xs\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
    .xs\:gap-2 { gap: 0.5rem; }
    .xs\:gap-3 { gap: 0.75rem; }
}

/* ===== Responsive: sub-640px override some grid defaults ===== */
@media (max-width: 639px) {
    .sm\:grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
    .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .mobile\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ===== Safe area / overflow helpers ===== */
.overflow-x-hidden { overflow-x: hidden; }
.max-w-full { max-width: 100%; }
.break-words { overflow-wrap: break-word; word-wrap: break-word; }
.whitespace-nowrap { white-space: nowrap; }

/* ===== Theme styles for WordPress content ===== */
.wp-caption { max-width: 100%; }
.aligncenter { text-align: center; }
.sticky { }
.bypostauthor { }
.screen-reader-text { border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; word-wrap: normal; }

/* ===== Accessibility ===== */
.skip-link { position: absolute; top: -100%; left: 0; z-index: 10000; padding: 0.75rem 1.5rem; background: var(--primary); color: var(--primary-foreground); font-size: 0.875rem; text-decoration: none; border-radius: 0 0 4px 0; }
.skip-link:focus { top: 0; clip: auto; clip-path: none; width: auto; height: auto; overflow: visible; margin: 0; }

/* ===== FAQ Accordion ===== */
.xtv-faq-content { max-height: 0; }

/* Nav link colors */
nav a {
    color: var(--muted-foreground);
    transition: color 0.15s;
}
nav a:hover {
    color: var(--primary);
    text-decoration: none;
}

/* Footer separator wave */
.footer-separator {
    margin-top: 0;
    line-height: 0;
    overflow: hidden;
}
.footer-separator svg {
    display: block;
    width: 100%;
    height: auto;
}

/* ===== Light-mode color enhancements ===== */

/* Header gradient with blur */
.header-gradient-blur {
    background: linear-gradient(135deg, rgba(255,255,255,0.92) 0%, rgba(238,242,255,0.88) 50%, rgba(240,253,244,0.85) 100%);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}
@supports (backdrop-filter: blur(14px)) {
    .header-gradient-blur {
        background: linear-gradient(135deg, rgba(255,255,255,0.7) 0%, rgba(238,242,255,0.6) 50%, rgba(240,253,244,0.55) 100%);
    }
}

/* Footer full gradient */
.footer-gradient-full {
    background: linear-gradient(180deg, #ffffff 0%, color-mix(in srgb, var(--primary) 5%, white) 40%, color-mix(in srgb, #7c3aed 4%, white) 70%, color-mix(in srgb, var(--accent) 6%, white) 100%);
}

/* Hero gradient — stronger tints */
.hero-gradient {
    background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 12%, white) 0%, var(--background) 40%, color-mix(in srgb, var(--accent) 10%, white) 100%);
}

/* Section alternating tints */
.section-tint-primary {
    background-color: color-mix(in srgb, var(--primary) 4%, white);
}
.section-tint-accent {
    background-color: color-mix(in srgb, var(--accent) 4%, white);
}
.section-tint-warm {
    background: linear-gradient(135deg, color-mix(in srgb, #f0fdf4 100%, transparent) 0%, color-mix(in srgb, #ecfdf5 60%, white) 100%);
}
.section-tint-blue {
    background: linear-gradient(135deg, color-mix(in srgb, #eff6ff 100%, transparent) 0%, color-mix(in srgb, #eef2ff 60%, white) 100%);
}
.section-tint-purple {
    background: linear-gradient(135deg, color-mix(in srgb, #faf5ff 100%, transparent) 0%, color-mix(in srgb, #f5f3ff 60%, white) 100%);
}
.section-tint-amber {
    background: linear-gradient(135deg, color-mix(in srgb, #fffbeb 100%, transparent) 0%, color-mix(in srgb, #fefce8 60%, white) 100%);
}

/* Cards with colored left accent */
.card-accent-blue {
    border-left: 3px solid var(--primary);
}
.card-accent-green {
    border-left: 3px solid var(--accent);
}
.card-accent-amber {
    border-left: 3px solid var(--warning);
}
.card-accent-red {
    border-left: 3px solid var(--destructive);
}

/* Gradient CTA button */
.btn-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #7c3aed 100%);
    color: #fff;
    border: none;
}
.btn-gradient:hover {
    background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 90%, black) 0%, color-mix(in srgb, #7c3aed 90%, black) 100%);
}

/* Stat number accent */
.stat-value {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Trust bar icons colored */
.trust-icon-shield { color: var(--primary); }
.trust-icon-check { color: var(--accent); }
.trust-icon-zap { color: var(--warning); }
.trust-icon-star { color: #eab308; }

/* Footer gradient */
.footer-gradient-full {
    background: linear-gradient(180deg, var(--background) 0%, color-mix(in srgb, var(--primary) 6%, white) 100%);
}

/* Section divider accent line */
.section-divider {
    position: relative;
}
.section-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

/* Badge pill colorful */
.badge-primary {
    background-color: color-mix(in srgb, var(--primary) 10%, white);
    color: var(--primary);
    border: 1px solid color-mix(in srgb, var(--primary) 20%, transparent);
}
.badge-success {
    background-color: color-mix(in srgb, var(--accent) 10%, white);
    color: var(--accent);
    border: 1px solid color-mix(in srgb, var(--accent) 20%, transparent);
}

/* Version card hover glow */
.card-soft:hover {
    box-shadow: 0 2px 8px -1px rgba(0,0,0,0.08), 0 12px 32px -8px rgba(0,0,0,0.12), 0 0 0 1px color-mix(in srgb, var(--primary) 8%, transparent);
}


