/* ===========================================================================
   Kyros CellManager — Design System v2
   Premium motion + depth, layered on Tailwind (Play CDN).
   All v1 utility class names are preserved; new primitives are added below.
   =========================================================================== */

:root {
    --kyros-primary: #4f46e5;
    --kyros-primary-600: #4338ca;
    --kyros-secondary: #0ea5e9;
    --kyros-accent: #f59e0b;
    --ease-out-quint: cubic-bezier(.22,1,.36,1);
    --ease-spring: cubic-bezier(.34,1.56,.64,1);
}

* { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

html { scroll-behavior: smooth; }

body { font-family: 'Inter', ui-sans-serif, system-ui, sans-serif; }
h1, h2, h3, h4, .font-display {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    letter-spacing: -0.02em;
}

::selection { background: rgba(99,102,241,.28); color: inherit; }

:focus-visible {
    outline: 2px solid var(--kyros-primary);
    outline-offset: 2px;
    border-radius: 6px;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(100,116,139,.35); border-radius: 999px; border: 2px solid transparent; background-clip: content-box; }
::-webkit-scrollbar-thumb:hover { background: linear-gradient(var(--kyros-primary), var(--kyros-secondary)); background-clip: content-box; }

/* ===========================================================================
   Gradients & backgrounds
   =========================================================================== */
.bg-mesh {
    background-color: #0b1020;
    background-image:
        radial-gradient(at 18% 22%, rgba(79,70,229,.45) 0px, transparent 50%),
        radial-gradient(at 82% 12%, rgba(14,165,233,.40) 0px, transparent 50%),
        radial-gradient(at 70% 78%, rgba(168,85,247,.35) 0px, transparent 50%),
        radial-gradient(at 12% 85%, rgba(236,72,153,.25) 0px, transparent 50%);
}
/* Animated mesh — slow drifting blobs for hero sections */
.bg-mesh-animated { position: relative; }
.bg-mesh-animated::before {
    content: ''; position: absolute; inset: -20%; z-index: 0; pointer-events: none;
    background:
        radial-gradient(40% 40% at 20% 25%, rgba(99,102,241,.40), transparent 60%),
        radial-gradient(36% 36% at 80% 15%, rgba(14,165,233,.34), transparent 60%),
        radial-gradient(44% 44% at 68% 80%, rgba(168,85,247,.30), transparent 60%);
    filter: blur(8px);
    animation: meshDrift 18s ease-in-out infinite alternate;
}
@keyframes meshDrift {
    0%   { transform: translate3d(0,0,0) scale(1); }
    50%  { transform: translate3d(2%, -2%, 0) scale(1.06); }
    100% { transform: translate3d(-2%, 1%, 0) scale(1.02); }
}
/* Subtle grid + dot overlays for depth */
.bg-grid {
    background-image: linear-gradient(rgba(148,163,184,.08) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(148,163,184,.08) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 75%);
    mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 75%);
}
.bg-dots {
    background-image: radial-gradient(rgba(148,163,184,.18) 1px, transparent 1px);
    background-size: 22px 22px;
}
.noise::after {
    content: ''; position: absolute; inset: 0; pointer-events: none; opacity: .035; mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.text-gradient {
    background: linear-gradient(135deg, #818cf8 0%, #38bdf8 50%, #c084fc 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}
/* Solid-color fallback if background-clip:text is unsupported (avoids invisible text). */
@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
    .text-gradient, .text-brand-grad { color: #4f46e5 !important; -webkit-text-fill-color: #4f46e5 !important; }
}
.gradient-primary { background: linear-gradient(135deg, var(--kyros-primary), var(--kyros-secondary)); }
.gradient-border { position: relative; background-clip: padding-box; border: 1px solid transparent; }
.gradient-border::before {
    content: ''; position: absolute; inset: 0; z-index: -1; margin: -1px; border-radius: inherit;
    background: linear-gradient(135deg, rgba(129,140,248,.6), rgba(56,189,248,.25), rgba(192,132,252,.5));
}
/* Animated conic gradient border (for featured cards / CTAs) */
.gradient-border-anim::before {
    content: ''; position: absolute; inset: 0; z-index: -1; margin: -1.5px; border-radius: inherit;
    background: conic-gradient(from var(--angle, 0deg), #6366f1, #38bdf8, #c084fc, #f59e0b, #6366f1);
    animation: spinBorder 6s linear infinite;
}
@property --angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
@keyframes spinBorder { to { --angle: 360deg; } }

.divider-gradient { height: 1px; background: linear-gradient(90deg, transparent, rgba(148,163,184,.4), transparent); }

/* ===========================================================================
   Glass + elevation
   =========================================================================== */
.glass {
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    border: 1px solid rgba(255,255,255,.10);
}
.glass-light {
    background: rgba(255,255,255,.7);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
}
.glow { box-shadow: 0 0 0 1px rgba(99,102,241,.18), 0 20px 60px -20px rgba(79,70,229,.55); }

/* ---- Hover elevation ---- */
.card-hover { transition: transform .4s var(--ease-out-quint), box-shadow .4s ease, border-color .3s ease; will-change: transform; }
.card-hover:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -25px rgba(2,6,23,.35); }
.hover-lift { transition: transform .25s var(--ease-out-quint), box-shadow .25s ease; }
.hover-lift:hover { transform: translateY(-3px); }
.hover-glow { transition: box-shadow .3s ease, transform .3s ease; }
.hover-glow:hover { box-shadow: 0 0 0 1px rgba(99,102,241,.25), 0 16px 40px -16px rgba(79,70,229,.5); }

/* 3D tilt (JS sets --rx/--ry); spotlight follows cursor via --mx/--my */
.tilt { transform: perspective(900px) rotateX(var(--rx,0deg)) rotateY(var(--ry,0deg)); transition: transform .2s var(--ease-out-quint); transform-style: preserve-3d; }
.spotlight { position: relative; overflow: hidden; }
.spotlight::before {
    content: ''; position: absolute; inset: 0; opacity: 0; transition: opacity .35s ease; pointer-events: none;
    background: radial-gradient(420px circle at var(--mx,50%) var(--my,50%), rgba(99,102,241,.16), transparent 45%);
}
.spotlight:hover::before { opacity: 1; }

/* ===========================================================================
   Keyframe library
   =========================================================================== */
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes floatSlow { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-22px) rotate(2deg); } }
@keyframes pulseGlow { 0%,100% { opacity: .55; } 50% { opacity: 1; } }
@keyframes shimmer { 100% { background-position: 200% 0; } }
@keyframes gradientShift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scaleIn { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: none; } }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-14px); } to { opacity: 1; transform: none; } }
@keyframes ripple { to { transform: scale(2.6); opacity: 0; } }
@keyframes spin { to { transform: rotate(360deg); } }

.animate-float { animation: float 6s ease-in-out infinite; }
.animate-float-slow { animation: floatSlow 9s ease-in-out infinite; }
.animate-pulse-glow { animation: pulseGlow 4s ease-in-out infinite; }
.animate-gradient { background-size: 200% 200%; animation: gradientShift 8s ease infinite; }
.animate-fade-up { animation: fadeUp .6s var(--ease-out-quint) both; }
.animate-scale-in { animation: scaleIn .5s var(--ease-spring) both; }
.animate-spin-slow { animation: spin 14s linear infinite; }

.marquee-track { display: flex; width: max-content; animation: marquee 28s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }

/* ---- Page enter (panels) ---- */
.page-enter > * { animation: fadeUp .5s var(--ease-out-quint) both; }
.page-enter > *:nth-child(1){animation-delay:.02s}
.page-enter > *:nth-child(2){animation-delay:.07s}
.page-enter > *:nth-child(3){animation-delay:.12s}
.page-enter > *:nth-child(4){animation-delay:.17s}
.page-enter > *:nth-child(5){animation-delay:.22s}
.page-enter > *:nth-child(6){animation-delay:.27s}

/* ---- Reveal on scroll (JS adds .in) ---- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s var(--ease-out-quint); }
.reveal.in { opacity: 1; transform: none; }

/* ---- Stat number flip-in ---- */
.stat-pop { animation: scaleIn .55s var(--ease-spring) both; }

/* ---- Skeleton shimmer ---- */
.skeleton {
    background: linear-gradient(90deg, rgba(148,163,184,.12) 25%, rgba(148,163,184,.22) 37%, rgba(148,163,184,.12) 63%);
    background-size: 400% 100%; animation: shimmer 1.4s ease infinite; border-radius: .6rem;
}

/* ===========================================================================
   Components
   =========================================================================== */
.phone-mock {
    border-radius: 2.4rem; background: linear-gradient(160deg,#1e293b,#0f172a);
    box-shadow: 0 40px 90px -30px rgba(2,6,23,.8), inset 0 0 0 2px rgba(148,163,184,.18);
}
.phone-notch { width: 38%; height: .9rem; border-radius: 0 0 1rem 1rem; background: #0b1020; }

/* ---- Buttons ---- */
.btn-shine { position: relative; overflow: hidden; }
.btn-shine::after {
    content: ''; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,.35), transparent);
    transform: skewX(-20deg); transition: left .6s ease;
}
.btn-shine:hover::after { left: 140%; }
.press { transition: transform .12s ease; }
.press:active { transform: scale(.97); }
.ripple { position: relative; overflow: hidden; }
.ripple > .ripple-dot { position: absolute; border-radius: 999px; background: rgba(255,255,255,.5); transform: scale(0); animation: ripple .6s ease-out; pointer-events: none; }

/* ---- Animated link underline ---- */
.link-underline { position: relative; }
.link-underline::after {
    content: ''; position: absolute; left: 0; bottom: -2px; height: 2px; width: 100%;
    background: linear-gradient(90deg, var(--kyros-primary), var(--kyros-secondary));
    transform: scaleX(0); transform-origin: right; transition: transform .3s var(--ease-out-quint);
}
.link-underline:hover::after { transform: scaleX(1); transform-origin: left; }

/* ---- Sidebar active link ---- */
.nav-link { position: relative; transition: all .2s ease; }
.nav-link::before {
    content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%) scaleY(0);
    height: 60%; width: 3px; border-radius: 999px; background: var(--kyros-primary);
    transition: transform .3s var(--ease-spring);
}
.nav-link.active::before { transform: translateY(-50%) scaleY(1); }
.nav-link:hover:not(.active) { transform: translateX(2px); }

/* ---- Toast ---- */
.toast-enter { animation: toastIn .4s var(--ease-spring); }
@keyframes toastIn { from { opacity: 0; transform: translateY(-12px) scale(.96); } to { opacity: 1; transform: none; } }

/* ---- Tables ---- */
.table-row-hover tbody tr { transition: background .15s ease, box-shadow .15s ease; }
.table-row-hover tbody tr:hover { box-shadow: inset 3px 0 0 var(--kyros-primary); }

/* ---- Badge / chip ---- */
.badge { display:inline-flex; align-items:center; gap:.35rem; font-weight:600; font-size:.7rem; padding:.2rem .6rem; border-radius:999px; line-height:1.2; }
.chip { display:inline-flex; align-items:center; gap:.4rem; font-weight:500; font-size:.8rem; padding:.35rem .75rem; border-radius:999px; }

/* ---- Top progress bar (navigations) ---- */
#kyros-progress {
    position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 200;
    background: linear-gradient(90deg, var(--kyros-primary), var(--kyros-secondary));
    box-shadow: 0 0 12px rgba(99,102,241,.6); transition: width .3s ease, opacity .4s ease; opacity: 0;
}

/* ---- Scroll progress (landing) ---- */
#scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 60;
    background: linear-gradient(90deg, #818cf8, #38bdf8, #c084fc); }

/* ---- Back to top ---- */
.to-top { transition: opacity .3s ease, transform .3s var(--ease-spring); }

/* ===========================================================================
   Landing v3 — "Aurora" premium primitives
   =========================================================================== */
/* Animated aurora blobs (richer than bg-mesh, used in hero/CTA) */
.aurora-blob {
    position: absolute; border-radius: 9999px; filter: blur(72px);
    opacity: .5; mix-blend-mode: screen; pointer-events: none;
    animation: auroraFloat 24s ease-in-out infinite alternate;
}
@keyframes auroraFloat {
    0%   { transform: translate3d(0,0,0) scale(1); }
    50%  { transform: translate3d(5%,-7%,0) scale(1.18); }
    100% { transform: translate3d(-4%,5%,0) scale(1.06); }
}
/* Horizontal edge fade (logo tickers, scrollers) */
.mask-fade-x {
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.mask-fade-b {
    -webkit-mask-image: linear-gradient(to bottom, #000 60%, transparent);
    mask-image: linear-gradient(to bottom, #000 60%, transparent);
}
/* Section eyebrow label */
.eyebrow { display:inline-flex; align-items:center; gap:.5rem; font-size:.72rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase; }
/* Browser window chrome dots */
.win-dots { display:flex; gap:.4rem; align-items:center; }
.win-dots > i { width:.7rem; height:.7rem; border-radius:9999px; display:block; }
/* Diagonal sheen sweep on hover */
.sheen { position:relative; overflow:hidden; }
.sheen::before {
    content:''; position:absolute; inset:0; z-index:1; pointer-events:none;
    background:linear-gradient(115deg, transparent 35%, rgba(255,255,255,.07) 50%, transparent 65%);
    transform:translateX(-120%); transition:transform .85s var(--ease-out-quint);
}
.sheen:hover::before { transform:translateX(120%); }
/* Pulsing live dot */
.dot-pulse { box-shadow:0 0 0 0 rgba(16,185,129,.55); animation: dotPulse 2.2s infinite; }
@keyframes dotPulse { 70%{ box-shadow:0 0 0 9px rgba(16,185,129,0);} 100%{ box-shadow:0 0 0 0 rgba(16,185,129,0);} }
/* Conic ring (mock doughnut) */
.ring-conic { background: conic-gradient(#6366f1 0 42%, #0ea5e9 42% 70%, #10b981 70% 88%, #f59e0b 88% 100%); }
/* Tab underline indicator helper */
.tab-pill { transition: color .2s ease, background .2s ease; }
/* Gradient hairline divider with center glow */
.hairline { height:1px; background:linear-gradient(90deg,transparent,rgba(129,140,248,.45),transparent); }
/* Soft card surface for dark sections */
.surface { background:rgba(255,255,255,.025); border:1px solid rgba(255,255,255,.08); }
.surface:hover { border-color:rgba(129,140,248,.35); }
/* Animated count tabular alignment */
.tabular { font-variant-numeric: tabular-nums; }

/* ===========================================================================
   Landing v4 — "Lumen" · light, Stripe-class design system
   Restraint, impeccable type & spacing, sophisticated soft gradients.
   =========================================================================== */
/* Soft pastel hero glow on white (no hard blobs) */
.bg-lumen {
    background:
        radial-gradient(58% 48% at 14% -4%, rgba(99,102,241,.14), transparent 62%),
        radial-gradient(50% 42% at 88% 2%, rgba(14,165,233,.11), transparent 62%),
        radial-gradient(46% 40% at 62% 26%, rgba(168,85,247,.08), transparent 64%);
}
.bg-lumen-soft {
    background:
        radial-gradient(60% 60% at 50% 0%, rgba(99,102,241,.08), transparent 70%);
}
/* Brand gradient for buttons / marks (richer than flat) */
.grad-brand-lumen { background-image: linear-gradient(120deg, #6366f1 0%, #7c3aed 48%, #0ea5e9 100%); }
/* Readable gradient text on light backgrounds */
.text-brand-grad {
    background: linear-gradient(120deg, #4f46e5 0%, #7c3aed 46%, #0284c7 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}
/* Layered premium shadows */
.shadow-premium { box-shadow: 0 1px 2px rgba(16,24,40,.04), 0 4px 10px -2px rgba(16,24,40,.05), 0 26px 50px -16px rgba(16,24,40,.12); }
.shadow-premium-lg { box-shadow: 0 2px 4px rgba(16,24,40,.04), 0 8px 16px -4px rgba(16,24,40,.06), 0 40px 72px -20px rgba(16,24,40,.18); }
.ring-hairline { box-shadow: 0 0 0 1px rgba(15,23,42,.07); }
/* Gentle, premium card lift */
.card-lift { transition: transform .4s var(--ease-out-quint), box-shadow .4s ease, border-color .3s ease; will-change: transform; }
.card-lift:hover { transform: translateY(-5px); box-shadow: 0 1px 2px rgba(16,24,40,.04), 0 22px 44px -14px rgba(16,24,40,.16); }
/* Soft dividers + dotted texture for light */
.divider-soft { height: 1px; background: linear-gradient(90deg, transparent, rgba(15,23,42,.09), transparent); }
.dot-grid-light { background-image: radial-gradient(rgba(15,23,42,.055) 1px, transparent 1px); background-size: 24px 24px; }
/* Eyebrow already defined above (.eyebrow); pricing button helpers reuse existing */
/* Button: primary lumen */
.btn-lumen {
    background-image: linear-gradient(120deg, #6366f1, #7c3aed 55%, #4f46e5);
    color: #fff; box-shadow: 0 1px 2px rgba(79,70,229,.25), 0 12px 24px -8px rgba(79,70,229,.45);
    transition: transform .2s var(--ease-out-quint), box-shadow .25s ease;
}
.btn-lumen:hover { transform: translateY(-2px); box-shadow: 0 2px 4px rgba(79,70,229,.3), 0 18px 34px -10px rgba(79,70,229,.55); }
.btn-soft {
    background: #fff; color: #334155; box-shadow: inset 0 0 0 1px rgba(15,23,42,.12);
    transition: box-shadow .2s ease, transform .2s var(--ease-out-quint), background .2s ease;
}
.btn-soft:hover { background: #f8fafc; box-shadow: inset 0 0 0 1px rgba(15,23,42,.2); transform: translateY(-1px); }
/* Marquee — calmer for light logos */
.marquee-slow { animation-duration: 42s; }

/* ===========================================================================
   Scroll animation engine (opt-in via [data-anim]) + Apple-style helpers
   =========================================================================== */
[data-anim] {
    opacity: 0;
    transition: opacity .9s var(--ease-out-quint), transform .9s var(--ease-out-quint), filter .9s ease;
    will-change: opacity, transform;
}
[data-anim].is-in { opacity: 1; transform: none; filter: none; }
[data-anim="fade-up"]   { transform: translateY(44px); }
[data-anim="fade-down"] { transform: translateY(-32px); }
[data-anim="left"]      { transform: translateX(-52px); }
[data-anim="right"]     { transform: translateX(52px); }
[data-anim="scale"]     { transform: scale(.9); }
[data-anim="rise"]      { transform: translateY(64px) scale(.965); }
[data-anim="blur"]      { filter: blur(16px); transform: translateY(20px); }
[data-anim="clip"]      { clip-path: inset(0 0 100% 0); opacity: 1; }
[data-anim="clip"].is-in{ clip-path: inset(0 0 0 0); }

/* Parallax wrapper keeps moved children from leaking */
.parallax-wrap { overflow: hidden; }

/* Apple-style typographic helpers */
.headline { font-family: 'Plus Jakarta Sans', 'Inter', sans-serif; letter-spacing: -0.035em; line-height: 1.04; }
.headline-tight { letter-spacing: -0.04em; }
.measure { max-width: 38rem; }
.text-shimmer-light {
    background: linear-gradient(110deg, #0f172a 35%, #64748b 50%, #0f172a 65%);
    background-size: 200% 100%;
    -webkit-background-clip: text; background-clip: text; color: transparent;
    animation: gradientShift 6s ease infinite;
}

/* Smooth sticky showcase column */
.sticky-safe { position: -webkit-sticky; position: sticky; }

/* Apple-exact neutrals */
.bg-apple { background-color: #f5f5f7; }
.text-ink { color: #1d1d1f; }
.text-sub { color: #6e6e73; }

/* Horizontal product shelf (Apple-style carousel) */
.shelf { scroll-snap-type: x mandatory; -ms-overflow-style: none; scrollbar-width: none; scroll-behavior: smooth; }
.shelf::-webkit-scrollbar { display: none; }
.shelf-item { scroll-snap-align: start; }
.shelf-arrow {
    width: 2.5rem; height: 2.5rem; border-radius: 9999px; display: grid; place-items: center;
    background: rgba(255,255,255,.82); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 1px 2px rgba(15,23,42,.1), 0 8px 20px -8px rgba(15,23,42,.25);
    color: #1d1d1f; transition: transform .2s var(--ease-out-quint), background .2s ease;
}
.shelf-arrow:hover { background: #fff; transform: scale(1.06); }
.shelf-arrow:active { transform: scale(.96); }

/* Image load skeleton + fade-in (Apple-style graceful media loading).
   Progressive: the fade only engages when JS is present (.js on <html>),
   so without JS the images render normally and the skeleton stays hidden. */
.media { position: relative; }
.media > .skel { position: absolute; inset: 0; z-index: 0; display: none; transition: opacity .45s ease; }
.img-fade { position: relative; z-index: 1; }
.js .media > .skel { display: block; }
.js .media.is-loaded > .skel { opacity: 0; }
.js .img-fade { opacity: 0; transition: opacity .55s ease; }
.js .media.is-loaded .img-fade { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
    .js .img-fade { opacity: 1; }
    .js .media > .skel { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    [data-anim] { opacity: 1 !important; transform: none !important; filter: none !important; clip-path: none !important; }
    [data-parallax], [data-scroll-scale] { transform: none !important; }
}

/* utilities */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
[x-cloak] { display: none !important; }

/* ---- Respect reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .001ms !important; animation-iteration-count: 1 !important;
        transition-duration: .001ms !important; scroll-behavior: auto !important;
    }
    .reveal { opacity: 1 !important; transform: none !important; }
}

/* ---- Print (receipts/invoices) ---- */
@media print {
    .no-print { display: none !important; }
    body { background: #fff !important; }
}
