/* ============================================================
   GraftMate — Static Design System
   Replaces Tailwind CDN. No build step. No dependencies.
   Version: 1.0 | March 2026
   ============================================================ */

/* ── Design tokens ──────────────────────────────────────────── */
:root {
  --brand:       #e8520a;
  --brand-dark:  #c94208;
  --brand-light: #fff7ed;
  --ink:         #0f172a;
  --ink-mid:     #334155;
  --ink-light:   #64748b;
  --ink-faint:   #94a3b8;
  --rule:        #e2e8f0;
  --surface:     #f8fafc;
  --white:       #ffffff;
  --green:       #16a34a;
  --green-lt:    #f0fdf4;
  --amber:       #d97706;
  --amber-lt:    #fffbeb;
  --red:         #dc2626;
  --red-lt:      #fef2f2;
  --blue:        #2563eb;
  --blue-lt:     #eff6ff;
  --wa-green:    #25D366;

  --radius-sm:   8px;
  --radius:      12px;
  --radius-lg:   16px;
  --radius-xl:   20px;
  --radius-full: 9999px;

  --shadow-sm:   0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow:      0 4px 16px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-lg:   0 10px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-xl:   0 25px 60px rgba(0,0,0,0.16);

  --font-sans:   'Outfit', 'Inter', system-ui, -apple-system, sans-serif;
  --font-body:   'Source Sans 3', 'Helvetica Neue', sans-serif;
  --font-mono:   'Courier New', 'Consolas', monospace;
}

/* ── Reset & base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

img, video, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
a { color: inherit; }
p, h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; }

/* ── Typography scale ───────────────────────────────────────── */
.display { font-family: var(--font-sans); letter-spacing: -0.02em; }

.text-xs    { font-size: 0.75rem;   line-height: 1.5; }
.text-sm    { font-size: 0.875rem;  line-height: 1.5; }
.text-base  { font-size: 1rem;      line-height: 1.6; }
.text-lg    { font-size: 1.125rem;  line-height: 1.5; }
.text-xl    { font-size: 1.25rem;   line-height: 1.4; }
.text-2xl   { font-size: 1.5rem;    line-height: 1.3; }
.text-3xl   { font-size: 1.875rem;  line-height: 1.25; }
.text-4xl   { font-size: 2.25rem;   line-height: 1.15; }
.text-5xl   { font-size: 3rem;      line-height: 1.1; }
.text-6xl   { font-size: 3.75rem;   line-height: 1.05; }
.text-7xl   { font-size: 4.5rem;    line-height: 1; }
.text-8xl   { font-size: 6rem;      line-height: 1; }

.font-normal    { font-weight: 400; }
.font-medium    { font-weight: 500; }
.font-semibold  { font-weight: 600; }
.font-bold      { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-black     { font-weight: 900; }

.italic      { font-style: italic; }
.not-italic  { font-style: normal; }
.uppercase   { text-transform: uppercase; }
.lowercase   { text-transform: lowercase; }
.capitalize  { text-transform: capitalize; }
.underline   { text-decoration: underline; }
.no-underline{ text-decoration: none; }
.truncate    { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.break-all   { word-break: break-all; }
.whitespace-nowrap { white-space: nowrap; }

.leading-none    { line-height: 1; }
.leading-tight   { line-height: 1.25; }
.leading-snug    { line-height: 1.375; }
.leading-normal  { line-height: 1.5; }
.leading-relaxed { line-height: 1.625; }
.leading-loose   { line-height: 2; }
.leading-\[1\.05\] { line-height: 1.05; }
.leading-\[1\.0\]  { line-height: 1.0; }

.tracking-tight   { letter-spacing: -0.025em; }
.tracking-wide    { letter-spacing: 0.025em; }
.tracking-wider   { letter-spacing: 0.05em; }
.tracking-widest  { letter-spacing: 0.1em; }

/* ── Colour utilities ───────────────────────────────────────── */
.text-white      { color: #fff; }
.text-black      { color: #000; }
.text-brand      { color: var(--brand); }
.text-gray-100   { color: #f3f4f6; }
.text-gray-200   { color: #e5e7eb; }
.text-gray-300   { color: #d1d5db; }
.text-gray-400   { color: #9ca3af; }
.text-gray-500   { color: #6b7280; }
.text-gray-600   { color: #4b5563; }
.text-gray-700   { color: #374151; }
.text-gray-800   { color: #1f2937; }
.text-gray-900   { color: #111827; }
.text-slate-100  { color: #f1f5f9; }
.text-slate-200  { color: #e2e8f0; }
.text-slate-300  { color: #cbd5e1; }
.text-slate-400  { color: #94a3b8; }
.text-slate-500  { color: #64748b; }
.text-slate-600  { color: #475569; }
.text-slate-700  { color: #334155; }
.text-slate-800  { color: #1e293b; }
.text-slate-900  { color: #0f172a; }
.text-red-400    { color: #f87171; }
.text-red-500    { color: #ef4444; }
.text-red-600    { color: #dc2626; }
.text-red-700    { color: #b91c1c; }
.text-amber-400  { color: #fbbf24; }
.text-amber-500  { color: #f59e0b; }
.text-amber-600  { color: #d97706; }
.text-amber-700  { color: #b45309; }
.text-amber-800  { color: #92400e; }
.text-amber-900  { color: #78350f; }
.text-green-500  { color: #22c55e; }
.text-green-600  { color: #16a34a; }
.text-green-700  { color: #15803d; }
.text-green-900  { color: #14532d; }
.text-blue-500   { color: #3b82f6; }
.text-blue-600   { color: #2563eb; }
.text-blue-700   { color: #1d4ed8; }
.text-orange-500 { color: #f97316; }
.text-orange-700 { color: #c2410c; }
.text-orange-800 { color: #9a3412; }
.text-purple-600 { color: #9333ea; }

/* Backgrounds */
.bg-white        { background-color: #fff; }
.bg-black        { background-color: #000; }
.bg-brand        { background-color: var(--brand); }
.bg-gray-50      { background-color: #f9fafb; }
.bg-gray-100     { background-color: #f3f4f6; }
.bg-gray-200     { background-color: #e5e7eb; }
.bg-gray-300     { background-color: #d1d5db; }
.bg-gray-800     { background-color: #1f2937; }
.bg-gray-900     { background-color: #111827; }
.bg-gray-950     { background-color: #030712; }
.bg-slate-50     { background-color: #f8fafc; }
.bg-slate-100    { background-color: #f1f5f9; }
.bg-slate-800    { background-color: #1e293b; }
.bg-slate-900    { background-color: #0f172a; }
.bg-red-50       { background-color: #fef2f2; }
.bg-red-100      { background-color: #fee2e2; }
.bg-amber-50     { background-color: #fffbeb; }
.bg-amber-100    { background-color: #fef3c7; }
.bg-green-50     { background-color: #f0fdf4; }
.bg-green-100    { background-color: #dcfce7; }
.bg-green-400    { background-color: #4ade80; }
.bg-green-500    { background-color: #22c55e; }
.bg-blue-50      { background-color: #eff6ff; }
.bg-blue-500     { background-color: #3b82f6; }
.bg-orange-50    { background-color: #fff7ed; }
.bg-orange-100   { background-color: #ffedd5; }
.bg-orange-500   { background-color: #f97316; }
.bg-orange-600   { background-color: #ea580c; }
.bg-purple-100   { background-color: #f3e8ff; }
/* Opacity variants */
.bg-black\/40    { background-color: rgba(0,0,0,0.4); }
.bg-black\/60    { background-color: rgba(0,0,0,0.6); }
.bg-brand\/5     { background-color: rgba(232,82,10,0.05); }
.bg-brand\/10    { background-color: rgba(232,82,10,0.1); }
.bg-brand\/20    { background-color: rgba(232,82,10,0.2); }
.bg-orange-500\/10 { background-color: rgba(249,115,22,0.1); }

/* Gradients */
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops, #0f172a, #1e293b)); }
.bg-gradient-to-t  { background-image: linear-gradient(to top, var(--tw-gradient-stops, rgba(0,0,0,0.7), transparent)); }
.from-black\/70  { --tw-gradient-stops: rgba(0,0,0,0.7); }
.from-slate-100  { --tw-gradient-stops: #f1f5f9; }
.to-transparent  { --tw-gradient-stops: var(--tw-gradient-stops, transparent), transparent; }
.to-slate-200    { --tw-gradient-stops: var(--tw-gradient-stops, #e2e8f0), #e2e8f0; }

/* ── Layout utilities ───────────────────────────────────────── */
.block          { display: block; }
.inline-block   { display: inline-block; }
.inline         { display: inline; }
.inline-flex    { display: inline-flex; }
.flex           { display: flex; }
.grid           { display: grid; }
.hidden         { display: none; }
.table-row      { display: table-row; }

.flex-col       { flex-direction: column; }
.flex-wrap      { flex-wrap: wrap; }
.flex-nowrap    { flex-wrap: nowrap; }
.flex-1         { flex: 1 1 0%; }
.flex-shrink-0  { flex-shrink: 0; }
.flex-grow      { flex-grow: 1; }

.items-start    { align-items: flex-start; }
.items-center   { align-items: center; }
.items-end      { align-items: flex-end; }
.items-stretch  { align-items: stretch; }

.justify-start   { justify-content: flex-start; }
.justify-center  { justify-content: center; }
.justify-end     { justify-content: flex-end; }
.justify-between { justify-content: space-between; }

.self-start     { align-self: flex-start; }
.self-center    { align-self: center; }

.grid-cols-1    { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2    { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3    { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4    { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-cols-12   { grid-template-columns: repeat(12, minmax(0, 1fr)); }

.col-span-1     { grid-column: span 1 / span 1; }
.col-span-2     { grid-column: span 2 / span 2; }
.col-span-3     { grid-column: span 3 / span 3; }
.col-span-4     { grid-column: span 4 / span 4; }
.col-span-5     { grid-column: span 5 / span 5; }
.col-span-6     { grid-column: span 6 / span 6; }
.col-span-7     { grid-column: span 7 / span 7; }
.col-span-8     { grid-column: span 8 / span 8; }
.col-span-9     { grid-column: span 9 / span 9; }
.col-span-10    { grid-column: span 10 / span 10; }
.col-span-11    { grid-column: span 11 / span 11; }
.col-span-12    { grid-column: span 12 / span 12; }

/* ── Position ───────────────────────────────────────────────── */
.static   { position: static; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed    { position: fixed; }
.sticky   { position: sticky; }

.inset-0   { top: 0; right: 0; bottom: 0; left: 0; }
.inset-x-0 { left: 0; right: 0; }
.top-0     { top: 0; }
.top-1     { top: 0.25rem; }
.top-2     { top: 0.5rem; }
.top-10    { top: 2.5rem; }
.top-1\/2  { top: 50%; }
.right-0   { right: 0; }
.right-1   { right: 0.25rem; }
.right-2   { right: 0.5rem; }
.right-1\/4 { right: 25%; }
.bottom-0  { bottom: 0; }
.left-0    { left: 0; }
.left-1    { left: 0.25rem; }
.left-2    { left: 0.5rem; }
.left-3    { left: 0.75rem; }
.left-1\/2 { left: 50%; }

.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-50 { z-index: 50; }

/* ── Spacing ────────────────────────────────────────────────── */
.p-0    { padding: 0; }
.p-1    { padding: 0.25rem; }
.p-2    { padding: 0.5rem; }
.p-3    { padding: 0.75rem; }
.p-4    { padding: 1rem; }
.p-5    { padding: 1.25rem; }
.p-6    { padding: 1.5rem; }
.p-8    { padding: 2rem; }
.p-10   { padding: 2.5rem; }

.px-1   { padding-left: 0.25rem; padding-right: 0.25rem; }
.px-1\.5{ padding-left: 0.375rem; padding-right: 0.375rem; }
.px-2   { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-2\.5{ padding-left: 0.625rem; padding-right: 0.625rem; }
.px-3   { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4   { padding-left: 1rem; padding-right: 1rem; }
.px-5   { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6   { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8   { padding-left: 2rem; padding-right: 2rem; }

.py-0\.5 { padding-top: 0.125rem; padding-bottom: 0.125rem; }
.py-1    { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2    { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3    { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4    { padding-top: 1rem; padding-bottom: 1rem; }
.py-5    { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6    { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8    { padding-top: 2rem; padding-bottom: 2rem; }
.py-10   { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12   { padding-top: 3rem; padding-bottom: 3rem; }
.py-20   { padding-top: 5rem; padding-bottom: 5rem; }

.pt-1    { padding-top: 0.25rem; }
.pt-2    { padding-top: 0.5rem; }
.pt-3    { padding-top: 0.75rem; }
.pt-4    { padding-top: 1rem; }
.pt-20   { padding-top: 5rem; }
.pb-1    { padding-bottom: 0.25rem; }
.pb-2    { padding-bottom: 0.5rem; }
.pb-3    { padding-bottom: 0.75rem; }
.pb-4    { padding-bottom: 1rem; }
.pb-5    { padding-bottom: 1.25rem; }
.pb-6    { padding-bottom: 1.5rem; }
.pb-8    { padding-bottom: 2rem; }
.pb-20   { padding-bottom: 5rem; }
.pl-5    { padding-left: 1.25rem; }
.pl-7    { padding-left: 1.75rem; }
.pl-9    { padding-left: 2.25rem; }
.pr-1    { padding-right: 0.25rem; }

.m-0     { margin: 0; }
.m-1     { margin: 0.25rem; }
.m-2     { margin: 0.5rem; }
.mx-4    { margin-left: 1rem; margin-right: 1rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-0\.5 { margin-top: 0.125rem; }
.mt-1    { margin-top: 0.25rem; }
.mt-1\.5 { margin-top: 0.375rem; }
.mt-2    { margin-top: 0.5rem; }
.mt-3    { margin-top: 0.75rem; }
.mt-4    { margin-top: 1rem; }
.mt-5    { margin-top: 1.25rem; }
.mt-6    { margin-top: 1.5rem; }
.mt-8    { margin-top: 2rem; }
.mt-10   { margin-top: 2.5rem; }
.mt-auto { margin-top: auto; }
.mb-0\.5 { margin-bottom: 0.125rem; }
.mb-1    { margin-bottom: 0.25rem; }
.mb-1\.5 { margin-bottom: 0.375rem; }
.mb-2    { margin-bottom: 0.5rem; }
.mb-3    { margin-bottom: 0.75rem; }
.mb-4    { margin-bottom: 1rem; }
.mb-5    { margin-bottom: 1.25rem; }
.mb-6    { margin-bottom: 1.5rem; }
.mb-7    { margin-bottom: 1.75rem; }
.mb-8    { margin-bottom: 2rem; }
.mb-10   { margin-bottom: 2.5rem; }
.ml-1    { margin-left: 0.25rem; }
.ml-2    { margin-left: 0.5rem; }
.ml-4    { margin-left: 1rem; }
.ml-auto { margin-left: auto; }
.mr-2    { margin-right: 0.5rem; }

.gap-0      { gap: 0; }
.gap-0\.5   { gap: 0.125rem; }
.gap-1      { gap: 0.25rem; }
.gap-1\.5   { gap: 0.375rem; }
.gap-2      { gap: 0.5rem; }
.gap-2\.5   { gap: 0.625rem; }
.gap-3      { gap: 0.75rem; }
.gap-4      { gap: 1rem; }
.gap-5      { gap: 1.25rem; }
.gap-6      { gap: 1.5rem; }
.gap-8      { gap: 2rem; }
.gap-10     { gap: 2.5rem; }
.gap-x-4    { column-gap: 1rem; }
.gap-x-8    { column-gap: 2rem; }
.gap-y-2    { row-gap: 0.5rem; }
.gap-y-4    { row-gap: 1rem; }

.space-y-0\.5 > * + * { margin-top: 0.125rem; }
.space-y-1    > * + * { margin-top: 0.25rem; }
.space-y-1\.5 > * + * { margin-top: 0.375rem; }
.space-y-2    > * + * { margin-top: 0.5rem; }
.space-y-3    > * + * { margin-top: 0.75rem; }
.space-y-4    > * + * { margin-top: 1rem; }
.space-y-5    > * + * { margin-top: 1.25rem; }
.space-y-6    > * + * { margin-top: 1.5rem; }
.space-y-8    > * + * { margin-top: 2rem; }
.space-y-10   > * + * { margin-top: 2.5rem; }

/* ── Sizing ─────────────────────────────────────────────────── */
.w-1\.5   { width: 0.375rem; }
.w-3      { width: 0.75rem; }
.w-4      { width: 1rem; }
.w-5      { width: 1.25rem; }
.w-6      { width: 1.5rem; }
.w-8      { width: 2rem; }
.w-10     { width: 2.5rem; }
.w-12     { width: 3rem; }
.w-14     { width: 3.5rem; }
.w-16     { width: 4rem; }
.w-20     { width: 5rem; }
.w-24     { width: 6rem; }
.w-32     { width: 8rem; }
.w-48     { width: 12rem; }
.w-64     { width: 16rem; }
.w-full   { width: 100%; }
.w-1\/2   { width: 50%; }
.w-1\/3   { width: 33.333333%; }
.w-2\/3   { width: 66.666667%; }
.w-screen { width: 100vw; }

.h-1\.5   { height: 0.375rem; }
.h-3      { height: 0.75rem; }
.h-4      { height: 1rem; }
.h-5      { height: 1.25rem; }
.h-6      { height: 1.5rem; }
.h-8      { height: 2rem; }
.h-10     { height: 2.5rem; }
.h-12     { height: 3rem; }
.h-14     { height: 3.5rem; }
.h-16     { height: 4rem; }
.h-20     { height: 5rem; }
.h-24     { height: 6rem; }
.h-28     { height: 7rem; }
.h-32     { height: 8rem; }
.h-36     { height: 9rem; }
.h-40     { height: 10rem; }
.h-44     { height: 11rem; }
.h-48     { height: 12rem; }
.h-56     { height: 14rem; }
.h-64     { height: 16rem; }
.h-80     { height: 20rem; }
.h-96     { height: 24rem; }
.h-full   { height: 100%; }
.h-screen { height: 100vh; }

.max-w-xs  { max-width: 20rem; }
.max-w-sm  { max-width: 24rem; }
.max-w-md  { max-width: 28rem; }
.max-w-lg  { max-width: 32rem; }
.max-w-xl  { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-full{ max-width: 100%; }
.max-w-32  { max-width: 8rem; }
.max-w-\[140px\] { max-width: 140px; }
.max-h-96  { max-height: 24rem; }
.max-h-\[65vh\] { max-height: 65vh; }
.min-h-screen { min-height: 100vh; }
.min-w-0   { min-width: 0; }
.min-w-max { min-width: max-content; }
.min-w-\[200px\] { min-width: 200px; }

.aspect-\[4\/3\] { aspect-ratio: 4 / 3; }

/* ── Borders ────────────────────────────────────────────────── */
.border        { border-width: 1px; border-style: solid; border-color: var(--rule); }
.border-0      { border-width: 0; }
.border-2      { border-width: 2px; border-style: solid; border-color: var(--rule); }
.border-t      { border-top-width: 1px; border-top-style: solid; border-top-color: var(--rule); }
.border-b      { border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: var(--rule); }
.border-l      { border-left-width: 1px; border-left-style: solid; border-left-color: var(--rule); }
.border-l-2    { border-left-width: 2px; border-left-style: solid; }
.border-l-4    { border-left-width: 4px; border-left-style: solid; }
.border-l-\[3px\] { border-left-width: 3px; border-left-style: solid; }

.border-brand      { border-color: var(--brand); }
.border-gray-100   { border-color: #f3f4f6; }
.border-gray-200   { border-color: #e5e7eb; }
.border-gray-300   { border-color: #d1d5db; }
.border-gray-400   { border-color: #9ca3af; }
.border-red-200    { border-color: #fecaca; }
.border-amber-200  { border-color: #fde68a; }
.border-amber-300  { border-color: #fcd34d; }
.border-green-200  { border-color: #bbf7d0; }
.border-blue-200   { border-color: #bfdbfe; }
.border-orange-200 { border-color: #fed7aa; }
.border-slate-100  { border-color: #f1f5f9; }
.border-slate-200  { border-color: #e2e8f0; }
.border-white      { border-color: #fff; }
.border-transparent{ border-color: transparent; }

.rounded        { border-radius: var(--radius-sm); }
.rounded-sm     { border-radius: 4px; }
.rounded-md     { border-radius: 6px; }
.rounded-lg     { border-radius: var(--radius); }
.rounded-xl     { border-radius: var(--radius-lg); }
.rounded-2xl    { border-radius: var(--radius-xl); }
.rounded-3xl    { border-radius: 24px; }
.rounded-full   { border-radius: var(--radius-full); }
.rounded-t-xl   { border-top-left-radius: var(--radius-lg); border-top-right-radius: var(--radius-lg); }
.rounded-b-xl   { border-bottom-left-radius: var(--radius-lg); border-bottom-right-radius: var(--radius-lg); }

.divide-y > * + *      { border-top-width: 1px; border-top-style: solid; }
.divide-gray-50  > * + * { border-top-color: #f9fafb; }
.divide-slate-100 > * + * { border-top-color: #f1f5f9; }

/* ── Shadows ────────────────────────────────────────────────── */
.shadow-sm  { box-shadow: var(--shadow-sm); }
.shadow     { box-shadow: var(--shadow); }
.shadow-md  { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1); }
.shadow-lg  { box-shadow: var(--shadow-lg); }
.shadow-xl  { box-shadow: var(--shadow-xl); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }

/* ── Opacity ────────────────────────────────────────────────── */
.opacity-0   { opacity: 0; }
.opacity-10  { opacity: 0.1; }
.opacity-20  { opacity: 0.2; }
.opacity-50  { opacity: 0.5; }
.opacity-75  { opacity: 0.75; }
.opacity-80  { opacity: 0.8; }
.opacity-90  { opacity: 0.9; }
.opacity-100 { opacity: 1; }

/* ── Overflow ───────────────────────────────────────────────── */
.overflow-hidden   { overflow: hidden; }
.overflow-x-auto   { overflow-x: auto; }
.overflow-y-auto   { overflow-y: auto; }
.overflow-y-hidden { overflow-y: hidden; }

/* ── Transform & transition ─────────────────────────────────── */
.transform           { transform: translateZ(0); }
.translate-y-full    { transform: translateY(100%); }
.translate-y-0       { transform: translateY(0); }
.-translate-x-1\/2  { transform: translateX(-50%); }
.-translate-y-1\/2  { transform: translateY(-50%); }
.scale-105           { transform: scale(1.05); }
.rotate-45           { transform: rotate(45deg); }
.-rotate-45          { transform: rotate(-45deg); }

.transition          { transition: all 0.15s ease; }
.transition-all      { transition: all 0.15s ease; }
.transition-colors   { transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease; }
.transition-shadow   { transition: box-shadow 0.15s ease; }
.transition-transform{ transition: transform 0.15s ease; }
.duration-200        { transition-duration: 200ms; }
.duration-300        { transition-duration: 300ms; }
.duration-500        { transition-duration: 500ms; }
.ease-in-out         { transition-timing-function: ease-in-out; }

/* ── Effects ────────────────────────────────────────────────── */
.blur-3xl            { filter: blur(64px); }
.backdrop-blur-sm    { -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.drop-shadow         { filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1)); }

/* ── Cursor & interaction ───────────────────────────────────── */
.cursor-pointer      { cursor: pointer; }
.cursor-grab         { cursor: grab; }
.cursor-default      { cursor: default; }
.pointer-events-none { pointer-events: none; }
.select-none         { user-select: none; }
.appearance-none     { -webkit-appearance: none; appearance: none; }
.outline-none        { outline: none; }
.sr-only             { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }
.list-none           { list-style: none; }
.scroll-smooth       { scroll-behavior: smooth; }

/* ── Animations ─────────────────────────────────────────────── */
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes spin  { to { transform: rotate(360deg); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

.animate-pulse       { animation: pulse 2s cubic-bezier(0.4,0,0.6,1) infinite; }
.animate-spin        { animation: spin 1s linear infinite; }
.fade-up             { animation: fadeUp 0.55s ease both; }
.d1 { animation-delay: 0.1s; }
.d2 { animation-delay: 0.22s; }
.d3 { animation-delay: 0.34s; }
.d4 { animation-delay: 0.46s; }

/* ── Reveal on scroll ───────────────────────────────────────── */
.reveal              { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible      { opacity: 1; transform: none; }

/* ── Responsive prefixes ────────────────────────────────────── */
@media (min-width: 640px) {
  .sm\:block            { display: block; }
  .sm\:inline-flex      { display: inline-flex; }
  .sm\:hidden           { display: none; }
  .sm\:flex             { display: flex; }
  .sm\:grid             { display: grid; }
  .sm\:col-span-2       { grid-column: span 2 / span 2; }
  .sm\:grid-cols-2      { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:grid-cols-3      { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sm\:items-center     { align-items: center; }
  .sm\:justify-between  { justify-content: space-between; }
  .sm\:self-auto        { align-self: auto; }
  .sm\:flex-row         { flex-direction: row; }
  .sm\:mx-6             { margin-left: 1.5rem; margin-right: 1.5rem; }
  .sm\:table-cell       { display: table-cell; }
  .sm\:text-lg          { font-size: 1.125rem; }
  .sm\:text-xl          { font-size: 1.25rem; }
  .sm\:text-2xl         { font-size: 1.5rem; }
  .sm\:text-3xl         { font-size: 1.875rem; }
  .sm\:text-4xl         { font-size: 2.25rem; }
  .sm\:text-5xl         { font-size: 3rem; }
  .sm\:text-6xl         { font-size: 3.75rem; }
  .sm\:px-6             { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:py-20            { padding-top: 5rem; padding-bottom: 5rem; }
  .sm\:pt-28            { padding-top: 7rem; }
  .sm\:w-auto           { width: auto; }
}

@media (min-width: 768px) {
  .md\:block            { display: block; }
  .md\:flex             { display: flex; }
  .md\:hidden           { display: none; }
  .md\:table-cell       { display: table-cell; }
  .md\:grid-cols-2      { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3      { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4      { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:col-span-2       { grid-column: span 2 / span 2; }
  .md\:items-center     { align-items: center; }
  .md\:flex-row         { flex-direction: row; }
  .md\:p-10             { padding: 2.5rem; }
  .md\:pt-28            { padding-top: 7rem; }
}

@media (min-width: 1024px) {
  .lg\:block            { display: block; }
  .lg\:flex             { display: flex; }
  .lg\:hidden           { display: none; }
  .lg\:table-cell       { display: table-cell; }
  .lg\:grid-cols-2      { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3      { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4      { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:col-span-2       { grid-column: span 2 / span 2; }
  .lg\:col-span-3       { grid-column: span 3 / span 3; }
  .lg\:ml-64            { margin-left: 16rem; }
  .lg\:translate-x-0    { transform: translateX(0); }
  .lg\:hidden           { display: none; }
}

/* Hover states */
.hover\:bg-brand:hover         { background-color: var(--brand); }
.hover\:bg-gray-50:hover       { background-color: #f9fafb; }
.hover\:bg-gray-100:hover      { background-color: #f3f4f6; }
.hover\:text-brand:hover       { color: var(--brand); }
.hover\:text-gray-400:hover    { color: #9ca3af; }
.hover\:text-gray-600:hover    { color: #4b5563; }
.hover\:text-gray-700:hover    { color: #374151; }
.hover\:text-gray-900:hover    { color: #111827; }
.hover\:text-white:hover       { color: #fff; }
.hover\:underline:hover        { text-decoration: underline; }
.hover\:shadow-md:hover        { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
.hover\:shadow-lg:hover        { box-shadow: var(--shadow-lg); }
.hover\:opacity-80:hover       { opacity: 0.8; }
.hover\:opacity-90:hover       { opacity: 0.9; }
.hover\:scale-\[1\.02\]:hover  { transform: scale(1.02); }
.hover\:border-brand:hover     { border-color: var(--brand); }
.hover\:bg-brand-dark:hover    { background-color: var(--brand-dark); }
.group:hover .group-hover\:bg-brand    { background-color: var(--brand); }
.group:hover .group-hover\:text-brand  { color: var(--brand); }
.group:hover .group-hover\:scale-105   { transform: scale(1.05); }
.group:hover .group-hover\:translate-y-0 { transform: translateY(0); }
.focus\:outline-none:focus     { outline: none; }
.focus\:ring-2:focus           { box-shadow: 0 0 0 2px var(--brand); }
.focus\:border-brand:focus     { border-color: var(--brand); }
.accent-brand  { accent-color: var(--brand); }
.accent-orange-500 { accent-color: #f97316; }
.peer:checked ~ .peer-checked\:bg-red-500   { background-color: #ef4444; }
.peer:checked ~ .peer-checked\:text-white   { color: #fff; }

/* ═══════════════════════════════════════════════════════════════
   COMPONENT SYSTEM
   Named classes for platform UI — consistent, reusable, locked
═══════════════════════════════════════════════════════════════ */

/* ── Buttons ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--brand); color: #fff;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 700; font-size: 0.9375rem; line-height: 1;
  border: none; cursor: pointer; text-decoration: none;
  transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
  box-shadow: 0 2px 8px rgba(232,82,10,0.25);
  white-space: nowrap;
}
.btn-primary:hover  { background: var(--brand-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(232,82,10,0.3); }
.btn-primary:active { transform: translateY(0); }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; pointer-events: none; }

.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: #fff; color: var(--ink);
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius); border: 1.5px solid var(--rule);
  font-weight: 600; font-size: 0.9375rem; line-height: 1;
  cursor: pointer; text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn-secondary:hover { border-color: #94a3b8; box-shadow: var(--shadow-sm); }

.btn-danger {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--red); color: #fff;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius); border: none;
  font-weight: 700; font-size: 0.9375rem; line-height: 1;
  cursor: pointer; text-decoration: none;
  transition: opacity 0.15s ease;
}
.btn-danger:hover { opacity: 0.9; }

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: transparent; color: var(--brand);
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius); border: 2px solid var(--brand);
  font-weight: 700; font-size: 0.9375rem;
  cursor: pointer; text-decoration: none;
  transition: all 0.15s ease;
}
.btn-outline:hover { background: var(--brand); color: #fff; }

/* WhatsApp button */
.btn-wa {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.625rem;
  background: #25D366; color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full); border: none;
  font-weight: 700; font-size: 1rem; line-height: 1;
  cursor: pointer; text-decoration: none;
  transition: opacity 0.15s ease, transform 0.1s ease;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.btn-wa:hover { opacity: 0.92; transform: translateY(-1px); }

/* Call button */
.btn-call {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--brand); color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full); border: none;
  font-weight: 700; font-size: 1rem; line-height: 1;
  cursor: pointer; text-decoration: none;
  transition: opacity 0.15s ease;
}
.btn-call:hover { opacity: 0.92; }

/* ── Form controls ──────────────────────────────────────────── */
.gm-input {
  display: block; width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1.5px solid var(--rule); border-radius: var(--radius);
  background: #fff; color: var(--ink);
  font-size: 0.9375rem; line-height: 1.5;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  appearance: none;
}
.gm-input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(232,82,10,0.08); }
.gm-input::placeholder { color: #94a3b8; }
textarea.gm-input { resize: vertical; }
select.gm-input { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.5rem center; background-size: 1.25em; padding-right: 2.5rem; }

.label {
  display: block;
  font-size: 0.875rem; font-weight: 600; color: var(--ink-mid);
}

/* Legacy aliases */
.gm-field        { display: block; width: 100%; padding: 0.5rem 0.75rem; border: 1.5px solid var(--rule); border-radius: var(--radius); font-size: 0.9375rem; }
.gm-btn-primary  { background: var(--brand); color: #fff; padding: 0.5rem 1rem; border-radius: var(--radius); border: none; font-weight: 700; cursor: pointer; }
.gm-btn-secondary{ background: #fff; color: var(--ink); padding: 0.5rem 1rem; border-radius: var(--radius); border: 1.5px solid var(--rule); font-weight: 600; cursor: pointer; }

/* ── Dashboard card ─────────────────────────────────────────── */
.card {
  background: #fff;
  border: 1.5px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.card-lift {
  background: #fff; border: 1.5px solid var(--rule);
  border-radius: var(--radius-lg); padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.card-lift:hover { box-shadow: var(--shadow); transform: translateY(-2px); }

/* ── Nav link ───────────────────────────────────────────────── */
.nav-link {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius);
  font-size: 0.9375rem; font-weight: 500; color: #64748b;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-link:hover   { background: var(--surface); color: var(--ink); }
.nav-link.active  { background: rgba(232,82,10,0.08); color: var(--brand); font-weight: 700; }

/* ── Client site components ─────────────────────────────────── */
.section-pad { padding: 4rem 0; }
@media(min-width: 768px){ .section-pad { padding: 5.5rem 0; } }

.section-label {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--brand);
  background: rgba(232,82,10,0.08);
  padding: 0.25rem 0.875rem; border-radius: var(--radius-full);
}

.section-rule {
  border: none; border-top: 1.5px solid var(--rule); margin: 0;
}

/* ── Service card (client site) ─────────────────────────────── */
.service-card {
  background: #fff; border: 1.5px solid var(--rule);
  border-radius: var(--radius-lg); padding: 1.5rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover { border-color: var(--brand); box-shadow: 0 4px 20px rgba(232,82,10,0.1); }

/* ── Trust pill (client site) ───────────────────────────────── */
.trust-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  padding: 0.375rem 0.875rem;
  font-size: 0.875rem; font-weight: 600; color: #fff;
  white-space: nowrap;
}

/* ── Trust badge (dashboard) ────────────────────────────────── */
.trust-badge {
  display: inline-flex; align-items: center; gap: 0.375rem;
  background: var(--green-lt); color: var(--green);
  border-radius: var(--radius-full);
  padding: 0.25rem 0.75rem;
  font-size: 0.8125rem; font-weight: 700;
}

/* ── Area pill ──────────────────────────────────────────────── */
.area-pill {
  display: inline-flex; align-items: center; gap: 0.375rem;
  background: var(--surface); color: var(--ink-mid);
  border: 1.5px solid var(--rule); border-radius: var(--radius-full);
  padding: 0.25rem 0.875rem;
  font-size: 0.875rem; font-weight: 600;
  text-decoration: none; transition: border-color 0.15s ease;
}
.area-pill:hover { border-color: var(--brand); color: var(--brand); }

.area-tag {
  display: inline-flex; align-items: center; gap: 0.375rem;
  background: rgba(232,82,10,0.08); color: var(--brand);
  border-radius: var(--radius-full);
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem; font-weight: 700;
}

/* ── Review card ────────────────────────────────────────────── */
.review-card {
  background: #fff; border: 1.5px solid var(--rule);
  border-radius: var(--radius-lg); padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

/* ── Breadcrumb ─────────────────────────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 0.375rem;
  font-size: 0.875rem; color: var(--ink-faint);
}
.breadcrumb a { color: var(--ink-light); text-decoration: none; }
.breadcrumb a:hover { color: var(--brand); }

/* ── Why card ───────────────────────────────────────────────── */
.why-card {
  text-align: center; padding: 2rem 1.5rem;
  background: #fff; border: 1.5px solid var(--rule);
  border-radius: var(--radius-lg);
}
.why-icon {
  width: 3rem; height: 3rem;
  background: rgba(232,82,10,0.08); color: var(--brand);
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}

/* ── Hero section ───────────────────────────────────────────── */
.hero-section {
  position: relative; overflow: hidden;
  min-height: 560px;
  display: flex; align-items: center;
}
.hero-glow {
  position: absolute; pointer-events: none;
  border-radius: 50%; filter: blur(80px); opacity: 0.35;
}

/* ── Stat number ────────────────────────────────────────────── */
.stat-num {
  font-family: var(--font-sans);
  font-size: 2.5rem; font-weight: 900;
  line-height: 1; letter-spacing: -0.02em;
  color: var(--brand);
}

/* ── Dashboard rows ─────────────────────────────────────────── */
.service-row, .review-row, .trust-row, .accred-row {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--surface);
}
.service-row:last-child, .review-row:last-child,
.trust-row:last-child, .accred-row:last-child { border-bottom: none; }

/* ── Credential button ──────────────────────────────────────── */
.cred-btn {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  border: 1.5px solid var(--rule); border-radius: var(--radius);
  background: #fff; cursor: pointer; font-size: 0.875rem; font-weight: 600;
  transition: border-color 0.15s ease, background 0.15s ease;
  text-align: left;
}
.cred-btn:hover { border-color: var(--brand); background: var(--brand-light); color: var(--brand); }

/* ── Tick icon ──────────────────────────────────────────────── */
.tick {
  width: 1.25rem; height: 1.25rem; flex-shrink: 0;
  background: var(--brand); border-radius: var(--radius-full);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
}

/* ── Site header ────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(15,23,42,0.95);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0 1.5rem; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}

/* ── Sticky mobile bar ──────────────────────────────────────── */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 10px 16px;
  display: flex; gap: 10px;
}
@media(min-width: 768px){ .sticky-bar { display: none; } }

/* ── Dashboard shell ────────────────────────────────────────── */
.drag-handle {
  cursor: grab; color: #94a3b8;
  display: flex; align-items: center;
}
.drag-handle:active { cursor: grabbing; }

/* ── File input styling ─────────────────────────────────────── */
input[type="file"] {
  font-size: 0.875rem; color: var(--ink-mid);
}
input[type="file"]::file-selector-button {
  padding: 0.5rem 1rem; margin-right: 0.75rem;
  border-radius: var(--radius-sm); border: none;
  background: var(--surface); color: var(--ink);
  font-weight: 600; font-size: 0.875rem; cursor: pointer;
  transition: background 0.15s ease;
}
input[type="file"]::file-selector-button:hover { background: var(--rule); }
input[type="file"]:hover::file-selector-button { opacity: 0.9; }

/* ── Star rating ────────────────────────────────────────────── */
.star-filled { color: #f59e0b; }
.star-empty  { color: #e2e8f0; }

/* ── Delay utilities for staggered animations ───────────────── */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ── Grain overlay (hero) ───────────────────────────────────── */
.grain::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.04;
}

/* ── Hero clip (empty — wedge removed) ─────────────────────── */
.hero-clip { /* intentionally empty — wedge removed */ }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-item       { border-bottom: 1.5px solid var(--rule); }
.faq-btn        { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem 0; cursor: pointer; background: none; border: none; text-align: left; }
.faq-icon       { flex-shrink: 0; width: 1.5rem; height: 1.5rem; border-radius: var(--radius-full); background: rgba(232,82,10,0.08); color: var(--brand); display: flex; align-items: center; justify-content: center; transition: transform 0.2s ease, background 0.2s ease; }
.faq-answer     { display: none; padding-bottom: 1.25rem; color: var(--ink-light); line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-icon   { transform: rotate(45deg); background: var(--brand); color: #fff; }

/* ── Object fit ─────────────────────────────────────────────── */
.object-cover { object-fit: cover; }
.object-top   { object-position: top; }

/* ── Group hover ────────────────────────────────────────────── */
.group { position: relative; }

/* ── Additional classes (landing page + misc) ───────────────── */

/* Backgrounds with opacity */
.bg-white\/5   { background-color: rgba(255,255,255,0.05); }
.bg-white\/10  { background-color: rgba(255,255,255,0.1); }
.bg-white\/20  { background-color: rgba(255,255,255,0.2); }
.bg-red-400    { background-color: #f87171; }

/* Borders with opacity */
.border-white\/5  { border-color: rgba(255,255,255,0.05); }
.border-white\/10 { border-color: rgba(255,255,255,0.1); }
.border-white\/20 { border-color: rgba(255,255,255,0.2); }
.border-gray-800  { border-color: #1f2937; }
.border-orange-500\/30 { border-color: rgba(249,115,22,0.3); }

/* Text */
.text-center   { text-align: center; }
.text-left     { text-align: left; }
.text-right    { text-align: right; }
.text-orange-400 { color: #fb923c; }

/* Spacing additions */
.gap-7   { gap: 1.75rem; }
.gap-12  { gap: 3rem; }
.gap-14  { gap: 3.5rem; }
.p-7     { padding: 1.75rem; }
.px-7    { padding-left: 1.75rem; padding-right: 1.75rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3\.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.pt-5    { padding-top: 1.25rem; }
.pt-6    { padding-top: 1.5rem; }
.pb-32   { padding-bottom: 8rem; }
.mb-12   { margin-bottom: 3rem; }
.mb-14   { margin-bottom: 3.5rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }

/* Sizing additions */
.h-2    { height: 0.5rem; }
.h-9    { height: 2.25rem; }
.h-18   { height: 4.5rem; }
.h-3\.5 { height: 0.875rem; }
.w-2    { width: 0.5rem; }
.w-3\.5 { width: 0.875rem; }
.w-96   { width: 24rem; }

/* Opacity additions */
.opacity-5   { opacity: 0.05; }
.opacity-15  { opacity: 0.15; }
.opacity-60  { opacity: 0.6; }

/* Border radius additions */
.rounded-tl-none { border-top-left-radius: 0; }
.rounded-tr-none { border-top-right-radius: 0; }

/* Additional hover states */
.hover\:bg-brand-dk:hover   { background-color: #c94208; }
.hover\:bg-brand:hover      { background-color: var(--brand); }
.hover\:bg-orange-600:hover { background-color: #ea580c; }
.hover\:bg-white\/20:hover  { background-color: rgba(255,255,255,0.2); }
.hover\:border-gray-300:hover { border-color: #d1d5db; }
.hover\:opacity-90:hover    { opacity: 0.9; }
.hover\:text-brand:hover    { color: var(--brand); }
.hover\:text-gray-400:hover { color: #9ca3af; }
.hover\:text-white:hover    { color: #fff; }

/* Group open state (FAQ details element) */
details.group[open] .group-open\:rotate-180 { transform: rotate(180deg); }

/* Additional responsive */
@media (min-width: 768px) {
  .md\:text-5xl { font-size: 3rem; line-height: 1.1; }
  .md\:text-6xl { font-size: 3.75rem; line-height: 1.05; }
  .md\:col-span-1 { grid-column: span 1 / span 1; }
}
@media (min-width: 1024px) {
  .lg\:text-7xl    { font-size: 4.5rem; line-height: 1; }
  .lg\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .lg\:col-span-3  { grid-column: span 3 / span 3; }
  .lg\:col-span-5  { grid-column: span 5 / span 5; }
}

/* Transition for details/summary */
details summary { transition: color 0.15s ease; }

/* ── Negative positioning & spacing ─────────────────────────── */
.-top-3     { top: -0.75rem; }
.-bottom-20 { bottom: -5rem; }
.-left-20   { left: -5rem; }
.-space-x-2 > * + * { margin-left: -0.5rem; }

/* ── Grain texture ──────────────────────────────────────────── */
.grain { position: relative; }
.grain::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; opacity: 0.35;
}

/* ── Space-y (ensure defined) ───────────────────────────────── */
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }

/* ── Hover (ensure all present) ────────────────────────────────*/
.hover\:bg-brand:hover      { background-color: var(--brand); }
.hover\:bg-brand-dk:hover   { background-color: #c94208; }
.hover\:bg-orange-600:hover { background-color: #ea580c; }
.hover\:bg-white\/20:hover  { background-color: rgba(255,255,255,0.2); }
.hover\:border-gray-300:hover { border-color: #d1d5db; }
.hover\:opacity-90:hover    { opacity: 0.9; }
.hover\:text-brand:hover    { color: var(--brand); }
.hover\:text-gray-400:hover { color: #9ca3af; }
.hover\:text-white:hover    { color: #fff; }

/* ── Additional classes for new landing page sections ───────── */
.py-12      { padding-top: 3rem; padding-bottom: 3rem; }
.gap-8      { gap: 2rem; }
.w-0\.5     { width: 0.125rem; }
.left-6     { left: 1.5rem; }
.top-8      { top: 2rem; }
.bottom-8   { bottom: 2rem; }
.text-purple-600 { color: #9333ea; }
.bg-purple-50    { background-color: #faf5ff; }
.bg-amber-500    { background-color: #f59e0b; }
.border-green-200 { border-color: #bbf7d0; }
.bg-green-50     { background-color: #f0fdf4; }
.text-green-600  { color: #16a34a; }
.md\:flex-nowrap { flex-wrap: nowrap; }
.flex-wrap       { flex-wrap: wrap; }

/* ── area.php missing classes ───────────────────────────────── */
.py-14           { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.py-16           { padding-top: 4rem; padding-bottom: 4rem; }
.space-y-5  > * + * { margin-top: 1.25rem; }
.space-y-10 > * + * { margin-top: 2.5rem; }
.rounded-r-xl    { border-top-right-radius: var(--radius-lg); border-bottom-right-radius: var(--radius-lg); }
.divide-y > * + *   { border-top-width: 1px; border-top-style: solid; }
.divide-slate-100 > * + * { border-top-color: #f1f5f9; }
.bg-white\/8     { background-color: rgba(255,255,255,0.08); }
.border-white\/12 { border-color: rgba(255,255,255,0.12); }
.border-l-brand  { border-left-color: var(--brand); }
.hover\:border-brand:hover { border-color: var(--brand); }
.hover\:shadow-md:hover    { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
.hover\:text-brand:hover   { color: var(--brand); }
.hover\:underline:hover    { text-decoration: underline; }

/* ── Remaining missing classes across all site pages ────────── */
.bg-slate-700    { background-color: #334155; }
.bg-slate-950    { background-color: #020617; }
.bg-white\/6     { background-color: rgba(255,255,255,0.06); }
.border-brand\/15 { border-color: rgba(232,82,10,0.15); }
.border-brand\/30 { border-color: rgba(232,82,10,0.3); }
.border-green-100 { border-color: #dcfce7; }
.border-white\/15 { border-color: rgba(255,255,255,0.15); }
.gap-x-6         { column-gap: 1.5rem; }
.lg\:gap-16      { gap: 4rem; }
.lg\:text-6xl    { font-size: 3.75rem; line-height: 1.05; }
.mt-14           { margin-top: 3.5rem; }
.opacity-70      { opacity: 0.7; }
.px-3\.5         { padding-left: 0.875rem; padding-right: 0.875rem; }
.top-20          { top: 5rem; }
.w-9             { width: 2.25rem; }
.sm\:gap-4       { gap: 1rem; }
.sm\:text-right  { text-align: right; }
.space-y-2\.5 > * + * { margin-top: 0.625rem; }
.space-y-8    > * + * { margin-top: 2rem; }
.hover\:bg-white\/5:hover   { background-color: rgba(255,255,255,0.05); }
.hover\:opacity-90:hover    { opacity: 0.9; }
.hover\:shadow-lg:hover     { box-shadow: var(--shadow-lg); }
