/* ============================================================
   refresh-2026.css — Site-wide visual refresh
   Drop-in. Progressive enhancement only — never breaks layouts.
   Loaded on every HTML page after Tailwind CDN.
   ============================================================ */

:root {
  --mk-grad-1: #6366f1;
  --mk-grad-2: #8b5cf6;
  --mk-grad-3: #ec4899;
  --mk-grad-4: #f97316;
  --mk-glow: 0 0 40px rgba(139, 92, 246, 0.35);
  --mk-shadow-card: 0 10px 40px -10px rgba(15, 23, 42, 0.18);
  --mk-shadow-card-hover: 0 30px 60px -20px rgba(99, 102, 241, 0.45);
  --mk-radius-card: 1.5rem;
  --mk-easing: cubic-bezier(0.22, 1, 0.36, 1);
  --mk-duration: 0.6s;
  --mk-page-bg: #fafbff;
}

@media (prefers-color-scheme: dark) {
  :root {
    --mk-shadow-card: 0 10px 40px -10px rgba(0, 0, 0, 0.6);
    --mk-shadow-card-hover: 0 30px 60px -20px rgba(139, 92, 246, 0.55);
  }
}

/* ---------- Page intro fade (opacity-only — must not transform body, would break fixed nav) ---------- */
@keyframes mk-page-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
body {
  animation: mk-page-in 0.45s var(--mk-easing);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ---------- Scroll progress bar (top of page) ---------- */
.mk-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--mk-grad-1), var(--mk-grad-3), var(--mk-grad-4));
  z-index: 100;
  transition: width 0.1s linear;
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.6);
  pointer-events: none;
}

/* ---------- Animated mesh gradient background (for .gradient-bg) ---------- */
.gradient-bg {
  background:
    radial-gradient(at 20% 20%, rgba(99, 102, 241, 0.85) 0px, transparent 50%),
    radial-gradient(at 80% 0%, rgba(236, 72, 153, 0.75) 0px, transparent 50%),
    radial-gradient(at 0% 50%, rgba(168, 85, 247, 0.65) 0px, transparent 50%),
    radial-gradient(at 80% 80%, rgba(249, 115, 22, 0.55) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgba(99, 102, 241, 0.85) 0px, transparent 50%),
    linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  position: relative;
  overflow: hidden;
}
.gradient-bg::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.18) 0, transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(236, 72, 153, 0.25) 0, transparent 40%);
  filter: blur(60px);
  animation: mk-blob 18s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.gradient-bg > * { position: relative; z-index: 1; }
@keyframes mk-blob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.1); }
  66% { transform: translate(-30px, 40px) scale(0.95); }
}

/* ---------- Glassmorphism nav — force sticky on scroll, all pages ---------- */
nav.fixed {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 100 !important;
  background: rgba(255, 255, 255, 0.78) !important;
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset, 0 8px 30px rgba(15, 23, 42, 0.05);
  transition: background 0.3s var(--mk-easing), box-shadow 0.3s var(--mk-easing), transform 0.3s var(--mk-easing);
  /* Hint promotion to its own layer so iOS keeps it painted while scrolling */
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  will-change: transform;
}
nav.fixed.mk-nav-scrolled {
  background: rgba(255, 255, 255, 0.94) !important;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.1);
}

/* ---------- App-card 3D tilt + glow ---------- */
.app-card {
  transition: transform 0.45s var(--mk-easing), box-shadow 0.45s var(--mk-easing) !important;
  transform-style: preserve-3d;
  will-change: transform;
  position: relative;
  isolation: isolate;
}
.app-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.6), rgba(236, 72, 153, 0.5), rgba(249, 115, 22, 0.4));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s var(--mk-easing);
  pointer-events: none;
  z-index: 1;
}
.app-card:hover {
  box-shadow: var(--mk-shadow-card-hover) !important;
}
.app-card:hover::after {
  opacity: 1;
}

/* ---------- Shimmer button (apply to .bg-primary, primary CTAs) ---------- */
a.bg-primary,
button.bg-primary,
.mk-btn-shimmer {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
a.bg-primary::before,
button.bg-primary::before,
.mk-btn-shimmer::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s var(--mk-easing);
  pointer-events: none;
  z-index: 1;
}
a.bg-primary:hover::before,
button.bg-primary:hover::before,
.mk-btn-shimmer:hover::before {
  left: 150%;
}

/* ---------- Scroll-reveal disabled — was causing visibility issues ---------- */
.mk-reveal { /* no-op; kept for backwards compatibility */ }
@media (prefers-reduced-motion: reduce) {
  body { animation: none; }
  .gradient-bg::before { animation: none; }
}

/* ---------- Improved mobile typography ---------- */
@media (max-width: 640px) {
  h1 { letter-spacing: -0.025em; line-height: 1.1; }
  h2 { letter-spacing: -0.02em; line-height: 1.15; }
  .text-5xl, .text-6xl, .text-7xl { font-size: clamp(2.25rem, 8vw, 3.75rem); }
  .text-4xl { font-size: clamp(1.75rem, 6.5vw, 2.5rem); }
  .text-3xl { font-size: clamp(1.5rem, 5.5vw, 2rem); }
  section { padding-top: 3rem !important; padding-bottom: 3rem !important; }
  .py-20 { padding-top: 3.5rem !important; padding-bottom: 3.5rem !important; }
  .px-4 { padding-left: 1.25rem !important; padding-right: 1.25rem !important; }
}

/* ---------- Custom scrollbar (desktop) ---------- */
@media (hover: hover) and (pointer: fine) {
  *::-webkit-scrollbar { width: 10px; height: 10px; }
  *::-webkit-scrollbar-track { background: transparent; }
  *::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--mk-grad-2), var(--mk-grad-3));
    border-radius: 999px;
    border: 2px solid transparent;
    background-clip: padding-box;
  }
  *::-webkit-scrollbar-thumb:hover { background-clip: padding-box; opacity: 0.8; }
  html { scrollbar-color: var(--mk-grad-2) transparent; scrollbar-width: thin; }
}

/* ---------- Selection color ---------- */
::selection { background: var(--mk-grad-3); color: white; }
::-moz-selection { background: var(--mk-grad-3); color: white; }

/* ---------- Focus ring (accessibility) ---------- */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--mk-grad-2);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Mobile-friendly tap targets ---------- */
@media (max-width: 640px) {
  nav a, nav button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  a.bg-primary, button.bg-primary {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* ---------- Privacy / legal pages (dark) — softer card contrast ---------- */
body.bg-gradient-to-b > main .prose,
body[class*="from-black"] main .prose,
body[class*="from-gray-900"] main .prose,
body[class*="from-slate-900"] main .prose {
  background: #fdfdff;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.6),
              0 0 0 1px rgba(255, 255, 255, 0.08);
}

/* ---------- Footer polish ---------- */
footer {
  position: relative;
}
footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.6), transparent);
}

/* ---------- Hero text gradient (broader application) ---------- */
.gradient-text {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 35%, #ec4899 70%, #f97316 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 200% auto;
  animation: mk-text-shimmer 6s ease-in-out infinite;
}
@keyframes mk-text-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ---------- Image hover (subtle scale) ---------- */
.clickable-img,
img.app-icon,
img[src*="-icon"] {
  transition: transform 0.4s var(--mk-easing), filter 0.4s var(--mk-easing);
}
img[src*="-icon"]:hover {
  transform: scale(1.04) rotate(-2deg);
  filter: drop-shadow(0 12px 24px rgba(99, 102, 241, 0.35));
}

/* ---------- Subtle float for already-floating elements ---------- */
.float-animation {
  animation: mk-soft-float 4.5s ease-in-out infinite !important;
}
@keyframes mk-soft-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(0.5deg); }
}

/* ---------- Section dividers ---------- */
section + section {
  position: relative;
}

/* ---------- Better link color in body copy ---------- */
.prose a, main p a:not(.bg-primary):not(.app-card) {
  color: var(--mk-grad-2);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.prose a:hover, main p a:not(.bg-primary):not(.app-card):hover {
  color: var(--mk-grad-3);
}

/* ============================================================
   High-end visual upgrades — Apple-grade polish
   ============================================================ */

/* (Noise overlay removed — was confusing iOS compositing of fixed nav.) */

/* ---------- Hero: animated mesh-gradient (overrides earlier .gradient-bg) ---------- */
@keyframes mk-mesh-shift {
  0%, 100% {
    background-position: 0% 50%, 100% 0%, 0% 100%, 100% 100%, 0% 0%;
  }
  50% {
    background-position: 100% 0%, 0% 50%, 100% 100%, 0% 0%, 100% 50%;
  }
}
.gradient-bg {
  background-size: 200% 200%, 200% 200%, 200% 200%, 200% 200%, 200% 200%, 100% 100% !important;
  animation: mk-mesh-shift 22s ease-in-out infinite;
}

/* ---------- Floating "blobs" decoration (purely visual, behind hero) ---------- */
.gradient-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(closest-side at 25% 35%, rgba(255, 255, 255, 0.18), transparent 70%),
    radial-gradient(closest-side at 75% 65%, rgba(236, 72, 153, 0.22), transparent 70%);
  mix-blend-mode: screen;
  filter: blur(40px);
  z-index: 0;
}

/* ---------- Premium app-card: gradient border, glow, lift ---------- */
.app-card {
  background-clip: padding-box;
  border-color: transparent !important;
  position: relative;
  isolation: isolate;
}
.app-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg,
    rgba(99, 102, 241, 0.0) 0%,
    rgba(99, 102, 241, 0.0) 35%,
    rgba(236, 72, 153, 0.0) 65%,
    rgba(249, 115, 22, 0.0) 100%);
  z-index: -1;
  transition: background 0.5s var(--mk-easing), opacity 0.5s var(--mk-easing);
}
.app-card:hover::before {
  background: linear-gradient(135deg,
    rgba(99, 102, 241, 0.7) 0%,
    rgba(168, 85, 247, 0.6) 35%,
    rgba(236, 72, 153, 0.6) 65%,
    rgba(249, 115, 22, 0.5) 100%);
}

/* Glow halo behind card on hover */
.app-card:hover {
  filter: drop-shadow(0 30px 60px rgba(139, 92, 246, 0.25));
}

/* ---------- Premium text rendering ---------- */
h1, h2, h3, h4 {
  letter-spacing: -0.025em;
  font-feature-settings: "ss01", "cv11";
}
h1 { letter-spacing: -0.04em; }

/* ---------- "Coming Soon" badge ---------- */
.mk-coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  color: white;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.35);
  position: relative;
  overflow: hidden;
}
.mk-coming-soon-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.4), transparent 70%);
  animation: mk-shine 2.5s ease-in-out infinite;
}
@keyframes mk-shine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.app-card.mk-coming-soon {
  position: relative;
}
.app-card.mk-coming-soon::after {
  content: "";
}

/* ---------- LIVE badge polish ---------- */
.bg-blue-600.text-white.text-xs[class*="rounded-full"],
span[class*="LIVE"],
[class*="bg-green-"][class*="rounded-full"]:not(button) {
  position: relative;
}

/* ---------- App-store CTA button: premium look ---------- */
a[href*="apps.apple.com"] {
  position: relative;
}

/* ---------- Section-divider: gradient hairline ---------- */
section + section::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  height: 1px;
  width: min(80%, 1200px);
  background: linear-gradient(90deg,
    transparent,
    rgba(139, 92, 246, 0.18),
    rgba(236, 72, 153, 0.18),
    rgba(249, 115, 22, 0.12),
    transparent);
  pointer-events: none;
}

/* ---------- Premium image treatment ---------- */
.app-card img,
.clickable-img {
  filter: contrast(1.02) saturate(1.05);
}

/* ---------- Card-content stays in front of decorative layers ---------- */
.app-card > * { position: relative; z-index: 2; }
nav.fixed > * { position: relative; }

/* ---------- Hero cta: slight depth + better hover ---------- */
header a[href*="apps.apple.com"],
section a[href*="apps.apple.com"] {
  box-shadow: 0 10px 30px -10px rgba(99, 102, 241, 0.5),
              0 4px 12px -2px rgba(15, 23, 42, 0.08);
  transition: all 0.3s var(--mk-easing);
}
header a[href*="apps.apple.com"]:hover,
section a[href*="apps.apple.com"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -10px rgba(99, 102, 241, 0.6),
              0 8px 20px -4px rgba(15, 23, 42, 0.1);
}

/* ---------- Body text default font stack — premium ---------- */
body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
               "Inter", "Helvetica Neue", Arial, sans-serif;
}

/* ---------- Tighter container padding on tablets ---------- */
@media (min-width: 641px) and (max-width: 1023px) {
  .max-w-6xl, .max-w-7xl { padding-left: 1.5rem; padding-right: 1.5rem; }
}

/* ---------- Section heading underline accent ---------- */
section h2.text-3xl,
section h2.text-4xl {
  position: relative;
}

/* ---------- Mobile menu polish ---------- */
#mobile-menu, [id*="mobile-menu"] {
  background: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* ---------- Footer — premium gradient top border ---------- */
footer.bg-gray-900 {
  background:
    radial-gradient(at 30% 0%, rgba(99, 102, 241, 0.12), transparent 60%),
    radial-gradient(at 70% 100%, rgba(236, 72, 153, 0.08), transparent 60%),
    #0f172a !important;
}

/* ---------- Dark sections — subtle inner glow ---------- */
[class*="from-indigo-9"][class*="bg-gradient-to-br"],
[class*="from-purple-9"][class*="bg-gradient-to-br"],
[class*="from-blue-9"][class*="bg-gradient-to-br"],
[class*="from-slate-9"][class*="bg-gradient-to-br"] {
  position: relative;
  isolation: isolate;
}
[class*="from-indigo-9"][class*="bg-gradient-to-br"]::before,
[class*="from-purple-9"][class*="bg-gradient-to-br"]::before,
[class*="from-blue-9"][class*="bg-gradient-to-br"]::before,
[class*="from-slate-9"][class*="bg-gradient-to-br"]::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(at 25% 25%, rgba(139, 92, 246, 0.18), transparent 50%),
    radial-gradient(at 75% 75%, rgba(236, 72, 153, 0.12), transparent 50%);
  pointer-events: none;
  z-index: 0;
}
[class*="from-indigo-9"][class*="bg-gradient-to-br"] > *,
[class*="from-purple-9"][class*="bg-gradient-to-br"] > *,
[class*="from-blue-9"][class*="bg-gradient-to-br"] > *,
[class*="from-slate-9"][class*="bg-gradient-to-br"] > * {
  position: relative;
  z-index: 1;
}

/* ---------- Premium badge animation ---------- */
[class*="rounded-full"][class*="text-xs"][class*="font-bold"] {
  letter-spacing: 0.06em;
}

/* ---------- Smooth anchor scroll padding (offset for fixed nav) ---------- */
html {
  scroll-padding-top: 6rem;
}

/* ============================================================
   Mobile bug fixes (scroll lock, overflow, menu)
   ============================================================ */

/* Allow vertical pan everywhere; prevent any accidental scroll capture */
html {
  touch-action: pan-x pan-y;
  overflow-x: clip;
  overscroll-behavior-y: auto;
}
body {
  /* `clip` contains overflow without breaking sticky / scroll chaining the way `hidden` does on iOS */
  overflow-x: clip !important;
  overflow-y: visible !important;
  position: relative;
  min-height: 100%;
  max-width: 100%;
}

/* No element should ever push the page wider than the viewport */
img, video, iframe, canvas, svg, picture, embed, object {
  max-width: 100%;
  height: auto;
}

/* Section / grid items: prevent flex/grid blow-out on small screens */
section, header, footer, main { max-width: 100vw; }
.grid > *, [class*="grid-cols"] > * { min-width: 0; }
[class*="flex"] > * { min-width: 0; }

/* Wrap long words in headings on phones — no horizontal escape */
@media (max-width: 640px) {
  h1, h2, h3, h4, p { overflow-wrap: anywhere; word-break: break-word; }
  pre, code { white-space: pre-wrap; word-break: break-all; }
  /* Common offenders: very long bundle ids, URLs */
  a[href^="http"], code, .font-mono { overflow-wrap: anywhere; }
  /* Images inside cards always fit */
  .app-card img { max-width: 100%; height: auto; }
}

/* The decorative overlays must NEVER block touches */
.gradient-bg::before,
.gradient-bg::after,
.mk-scroll-progress {
  pointer-events: none !important;
}

/* iOS: allow native momentum scrolling */
* { -webkit-overflow-scrolling: touch; }

/* ============================================================
   Mobile menu — right-side slide-in drawer (einkaufsradl-style)
   Drawer + backdrop. Drawer slides from right at 320ms.
   ============================================================ */
.mk-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 110;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms var(--mk-easing);
}
.mk-drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}
.mk-mobile-menu-open {
  display: flex !important;
  flex-direction: column;
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: auto !important;
  width: 88%;
  max-width: 420px;
  background: #ffffff;
  z-index: 120;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(0.2, 0.7, 0.2, 1);
  box-shadow: -24px 0 60px -12px rgba(15, 23, 42, 0.25);
  padding: 0 !important;
  overflow: hidden;
  animation: none !important;
  border-radius: 0;
}
.mk-mobile-menu-open.is-open {
  transform: translateX(0);
}
/* Drawer header — close button */
.mk-mobile-menu-open::before {
  content: "";
  display: block;
  height: 4.5rem;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  background:
    linear-gradient(135deg, rgba(99, 102, 241, 0.06), rgba(236, 72, 153, 0.06));
}
.mk-drawer-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.06);
  color: #0f172a;
  border: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.mk-drawer-close:hover { background: rgba(15, 23, 42, 0.1); transform: scale(1.05); }
.mk-drawer-close svg { width: 1.25rem; height: 1.25rem; stroke-width: 2.4; }

/* Drawer link list — large display-style links */
.mk-drawer-list {
  flex: 1;
  display: flex !important;
  flex-direction: column;
  padding: 0 1.5rem !important;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mk-mobile-menu-open .mk-drawer-list a {
  display: block !important;
  padding: 1.1rem 0 !important;
  font-size: 1.4rem !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em;
  color: #0f172a !important;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08) !important;
  border-radius: 0 !important;
  margin: 0 !important;
  text-align: left;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.mk-mobile-menu-open .mk-drawer-list a:hover,
.mk-mobile-menu-open .mk-drawer-list a:active {
  color: var(--mk-grad-2) !important;
  padding-left: 0.4rem !important;
}
/* CTA — App Store link styled as button */
.mk-mobile-menu-open .mk-drawer-list a[data-cta] {
  margin-top: 1.5rem !important;
  text-align: center !important;
  background: linear-gradient(135deg, var(--mk-grad-1), var(--mk-grad-3)) !important;
  color: white !important;
  border-radius: 999px !important;
  border: 0 !important;
  padding: 0.9rem 1rem !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  box-shadow: 0 8px 24px -4px rgba(139, 92, 246, 0.4);
}
.mk-mobile-menu-open .mk-drawer-list a[data-cta]:hover {
  padding-left: 1rem !important;
  color: white !important;
}
/* Body lock when drawer open */
body.mk-drawer-locked {
  overflow: hidden !important;
  position: fixed;
  width: 100%;
}

/* Nav close-X button visibility when menu open */
nav.fixed[data-menu-open="true"] [aria-label*="menu" i] svg path,
nav.fixed[data-menu-open="true"] #mobile-menu-btn svg path {
  d: path("M6 18L18 6M6 6l12 12");
}

/* (Bottom-bar removed per user feedback — drawer is the single nav) */
@media (prefers-reduced-motion: reduce) {
  .mk-mobile-menu-open { animation: none; }
}
