:root {
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --background: 42 33% 96%;
  --foreground: 24 35% 13%;
  --card: 38 38% 99%;
  --card-foreground: 24 35% 13%;
  --popover: 38 38% 99%;
  --popover-foreground: 24 35% 13%;
  --primary: 18 74% 42%;
  --primary-foreground: 38 38% 99%;
  --secondary: 34 35% 88%;
  --secondary-foreground: 24 35% 18%;
  --muted: 36 28% 90%;
  --muted-foreground: 24 18% 39%;
  --accent: 142 28% 34%;
  --accent-foreground: 38 38% 99%;
  --destructive: 0 74% 45%;
  --destructive-foreground: 38 38% 99%;
  --success: 142 42% 34%;
  --success-foreground: 38 38% 99%;
  --warning: 38 85% 44%;
  --warning-foreground: 24 35% 13%;
  --info: 210 68% 40%;
  --info-foreground: 38 38% 99%;
  --border: 28 22% 82%;
  --input: 28 22% 82%;
  --ring: 18 74% 42%;
  --radius: 0.625rem;
  --shadow-sm: 0 1px 2px hsl(var(--foreground) / 0.05);
  --shadow-md: 0 4px 12px hsl(var(--foreground) / 0.08);
  --shadow-lg: 0 12px 32px hsl(var(--foreground) / 0.12);
  --shadow-elegant: 0 20px 56px hsl(var(--primary) / 0.22);
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.dark {
  --background: 24 26% 9%;
  --foreground: 38 33% 94%;
  --card: 24 24% 13%;
  --card-foreground: 38 33% 94%;
  --popover: 24 24% 13%;
  --popover-foreground: 38 33% 94%;
  --primary: 20 82% 58%;
  --primary-foreground: 24 26% 9%;
  --secondary: 24 18% 20%;
  --secondary-foreground: 38 33% 94%;
  --muted: 24 18% 18%;
  --muted-foreground: 36 16% 72%;
  --accent: 143 34% 52%;
  --accent-foreground: 24 26% 9%;
  --destructive: 0 70% 60%;
  --destructive-foreground: 24 26% 9%;
  --success: 142 42% 52%;
  --success-foreground: 24 26% 9%;
  --warning: 38 88% 62%;
  --warning-foreground: 24 26% 9%;
  --info: 210 78% 64%;
  --info-foreground: 24 26% 9%;
  --border: 24 15% 25%;
  --input: 24 15% 25%;
  --ring: 20 82% 58%;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: var(--font-sans);
  text-rendering: optimizeLegibility;
}
button, input, select, textarea { font: inherit; }
input, select, textarea { font-size: max(16px, 1rem); }
.hero-orbit {
  background:
    radial-gradient(circle at 20% 20%, hsl(var(--primary) / 0.22), transparent 32%),
    radial-gradient(circle at 78% 26%, hsl(var(--accent) / 0.18), transparent 30%),
    linear-gradient(135deg, hsl(var(--card)), hsl(var(--secondary) / 0.65));
}
.product-sheen {
  background: linear-gradient(145deg, hsl(var(--secondary) / 0.72), hsl(var(--card)) 58%, hsl(var(--primary) / 0.14));
}
.safe-bottom { padding-bottom: calc(0.5rem + env(safe-area-inset-bottom)); }
.safe-top { padding-top: env(safe-area-inset-top); }
::selection { background: hsl(var(--primary) / 0.22); }
