:root{
  --background: 38 28% 94%;
  --foreground: 230 14% 8%;
  --primary: 12 92% 56%;
  --primary-foreground: 0 0% 100%;
  --secondary: 54 94% 64%;
  --secondary-foreground: 230 14% 8%;
  --muted: 35 18% 82%;
  --muted-foreground: 230 9% 36%;
  --destructive: 0 84% 56%;
  --destructive-foreground: 0 0% 100%;
  --border: 230 10% 18%;
  --card: 36 30% 90%;
  --shadow-sm: 0 1px 2px hsl(230 14% 8% / .15);
  --shadow-md: 0 18px 40px hsl(230 14% 8% / .18);
  --shadow-lg: 0 36px 90px hsl(230 14% 8% / .25);
  --transition-fast: 150ms ease;
  --transition-smooth: 420ms cubic-bezier(.2,.8,.2,1);
  --radius-sm: .5rem;
  --radius-md: 1rem;
  --radius-lg: 1.75rem;
}
.dark{
  --background: 240 9% 5%;
  --foreground: 42 32% 94%;
  --primary: 12 92% 58%;
  --primary-foreground: 0 0% 100%;
  --secondary: 54 94% 62%;
  --secondary-foreground: 240 9% 5%;
  --muted: 240 7% 14%;
  --muted-foreground: 42 12% 68%;
  --destructive: 0 84% 58%;
  --destructive-foreground: 0 0% 100%;
  --border: 42 14% 24%;
  --card: 240 8% 9%;
  --shadow-sm: 0 1px 2px hsl(0 0% 0% / .35);
  --shadow-md: 0 18px 40px hsl(0 0% 0% / .38);
  --shadow-lg: 0 36px 90px hsl(0 0% 0% / .48);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth;background:hsl(var(--background));color:hsl(var(--foreground))}
body{margin:0;min-height:100vh;font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;background:hsl(var(--background));color:hsl(var(--foreground));}
a{color:inherit;text-decoration:none}
button,input,textarea,select{font:inherit}
input,textarea,select{font-size:max(16px,1rem)}
img{max-width:100%;display:block}
::selection{background:hsl(var(--secondary));color:hsl(var(--secondary-foreground))}
.type-display{font-family:Arial Black,Impact,Inter,sans-serif;letter-spacing:-.08em;line-height:.82;text-transform:uppercase}
.editorial-serif{font-family:Georgia,"Times New Roman",serif;font-style:italic}
.reveal{opacity:0;transform:translateY(28px) scale(.985);transition:opacity var(--transition-smooth),transform var(--transition-smooth);}
.reveal.is-visible{opacity:1;transform:translateY(0) scale(1)}
.focus-ring:focus-visible{outline:3px solid hsl(var(--secondary));outline-offset:3px}
.no-scrollbar::-webkit-scrollbar{display:none}
.no-scrollbar{scrollbar-width:none}
genmb-uploader{display:block;min-height:180px;border:1px dashed hsl(var(--border));border-radius:var(--radius-lg);background:hsl(var(--muted)/.25);padding:1rem}
.before-after{touch-action:pan-y}
.markdown p{margin:0 0 1rem}.markdown strong{color:hsl(var(--secondary))}