2026-06-07 03:58:32 -04:00
|
|
|
@tailwind base;
|
|
|
|
|
@tailwind components;
|
|
|
|
|
@tailwind utilities;
|
|
|
|
|
|
|
|
|
|
@layer base {
|
|
|
|
|
:root {
|
2026-06-08 04:37:10 -04:00
|
|
|
/* White base, near-black ink, single ORANGE accent */
|
2026-06-07 03:58:32 -04:00
|
|
|
--background: 0 0% 100%;
|
|
|
|
|
--foreground: 0 0% 7%;
|
|
|
|
|
--card: 0 0% 100%;
|
|
|
|
|
--card-foreground: 0 0% 7%;
|
|
|
|
|
--popover: 0 0% 100%;
|
|
|
|
|
--popover-foreground: 0 0% 7%;
|
|
|
|
|
|
|
|
|
|
/* INK — primary action is black */
|
|
|
|
|
--primary: 0 0% 5%;
|
|
|
|
|
--primary-foreground: 0 0% 100%;
|
|
|
|
|
|
2026-06-08 04:37:10 -04:00
|
|
|
/* ORANGE — links, focus, active states, accents (#E65100) */
|
|
|
|
|
--brand: 21 100% 45%;
|
2026-06-07 03:58:32 -04:00
|
|
|
--brand-foreground: 0 0% 100%;
|
2026-06-08 04:37:10 -04:00
|
|
|
--brand-hover: 21 100% 39%;
|
2026-06-07 03:58:32 -04:00
|
|
|
|
|
|
|
|
--secondary: 0 0% 96%;
|
|
|
|
|
--secondary-foreground: 0 0% 7%;
|
|
|
|
|
--muted: 0 0% 96%;
|
|
|
|
|
--muted-foreground: 0 0% 42%;
|
|
|
|
|
--accent: 0 0% 96%;
|
|
|
|
|
--accent-foreground: 0 0% 7%;
|
|
|
|
|
|
|
|
|
|
--destructive: 4 86% 58%;
|
|
|
|
|
--destructive-foreground: 0 0% 100%;
|
|
|
|
|
--success: 157 100% 30%;
|
2026-06-08 04:37:10 -04:00
|
|
|
/* amber — kept distinct from the orange brand accent */
|
|
|
|
|
--warning: 38 100% 50%;
|
2026-06-07 03:58:32 -04:00
|
|
|
|
|
|
|
|
--border: 0 0% 89%;
|
|
|
|
|
--input: 0 0% 89%;
|
2026-06-08 04:37:10 -04:00
|
|
|
--ring: 21 100% 45%;
|
2026-06-07 03:58:32 -04:00
|
|
|
--radius: 0.875rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.dark {
|
|
|
|
|
--background: 0 0% 5%;
|
|
|
|
|
--foreground: 0 0% 98%;
|
|
|
|
|
--card: 0 0% 8%;
|
|
|
|
|
--card-foreground: 0 0% 98%;
|
|
|
|
|
--popover: 0 0% 8%;
|
|
|
|
|
--popover-foreground: 0 0% 98%;
|
|
|
|
|
|
|
|
|
|
--primary: 0 0% 100%;
|
|
|
|
|
--primary-foreground: 0 0% 5%;
|
|
|
|
|
|
2026-06-08 04:37:10 -04:00
|
|
|
--brand: 24 100% 58%;
|
2026-06-07 03:58:32 -04:00
|
|
|
--brand-foreground: 0 0% 100%;
|
2026-06-08 04:37:10 -04:00
|
|
|
--brand-hover: 24 100% 64%;
|
2026-06-07 03:58:32 -04:00
|
|
|
|
|
|
|
|
--secondary: 0 0% 13%;
|
|
|
|
|
--secondary-foreground: 0 0% 98%;
|
|
|
|
|
--muted: 0 0% 13%;
|
|
|
|
|
--muted-foreground: 0 0% 64%;
|
|
|
|
|
--accent: 0 0% 13%;
|
|
|
|
|
--accent-foreground: 0 0% 98%;
|
|
|
|
|
|
|
|
|
|
--destructive: 4 80% 58%;
|
|
|
|
|
--destructive-foreground: 0 0% 100%;
|
|
|
|
|
--success: 157 70% 45%;
|
2026-06-08 04:37:10 -04:00
|
|
|
--warning: 40 100% 55%;
|
2026-06-07 03:58:32 -04:00
|
|
|
|
|
|
|
|
--border: 0 0% 16%;
|
|
|
|
|
--input: 0 0% 16%;
|
2026-06-08 04:37:10 -04:00
|
|
|
--ring: 24 100% 58%;
|
2026-06-07 03:58:32 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@layer base {
|
|
|
|
|
* {
|
|
|
|
|
@apply border-border;
|
|
|
|
|
}
|
|
|
|
|
body {
|
|
|
|
|
@apply bg-background text-foreground;
|
|
|
|
|
font-feature-settings: "rlig" 1, "calt" 1, "ss01" 1;
|
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
|
text-rendering: optimizeLegibility;
|
|
|
|
|
}
|
|
|
|
|
/* Headings use the Wix Madefor Display face by default */
|
|
|
|
|
h1, h2, h3, .font-display {
|
|
|
|
|
font-family: var(--font-display), var(--font-sans), ui-sans-serif, system-ui, sans-serif;
|
|
|
|
|
letter-spacing: -0.02em;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@layer utilities {
|
|
|
|
|
/* Subtle Wix-style radial wash for hero sections */
|
|
|
|
|
.bg-hero-wash {
|
|
|
|
|
background-image: radial-gradient(
|
|
|
|
|
60% 60% at 50% 0%,
|
|
|
|
|
hsl(var(--brand) / 0.1),
|
|
|
|
|
transparent 70%
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
.text-balance {
|
|
|
|
|
text-wrap: balance;
|
|
|
|
|
}
|
|
|
|
|
}
|