/*
 | Rapid Group — static fallback stylesheet (Sprint 3A; recolored + extended Sprint 5B).
 |
 | This is a hand-authored, dependency-free build of ONLY the Tailwind utilities
 | used by the Blade templates. It exists because this server has no Node toolchain
 | and the Tailwind standalone binary is incompatible with this CPU/kernel.
 |
 | When Node becomes available, run `npm install && npm run build` (or `npm run dev`).
 | The layout automatically prefers the Vite build over this file once it exists, so
 | this stylesheet is the graceful fallback, not the long-term source of truth.
 |
 | Values mirror Tailwind defaults (spacing 1 = 0.25rem; breakpoints sm 640 / md 768 / lg 1024).
 |
 | SPRINT 5B BRAND NOTE: the `orange-*` utilities below are intentionally REMAPPED to the
 | Rapid Red (#C8102E) ramp so the entire site recolors from one place WITHOUT renaming
 | any template class or touching CTA tracking ids. Class names stay `orange-*`; only the
 | colour values are red. WhatsApp green (green-600) is kept on-brand for WhatsApp only.
 */

/* ---------------------------------------------------------------- preflight */
*, ::before, ::after { box-sizing: border-box; border: 0 solid #e2e8f0; }
html { line-height: 1.5; -webkit-text-size-adjust: 100%; }
.scroll-smooth { scroll-behavior: smooth; }
body { margin: 0; line-height: inherit; }
h1, h2, h3, h4, p, figure, blockquote, dl, dd { margin: 0; }
h1, h2, h3, h4 { font-size: inherit; font-weight: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: inherit; }
img, svg { display: block; vertical-align: middle; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; margin: 0; }
button { cursor: pointer; background: none; }
summary { display: list-item; }

/* ---------------------------------------------------------------- layout / display */
.block { display: block; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }
.flex-1 { flex: 1 1 0%; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.top-0 { top: 0; }
.bottom-0 { bottom: 0; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.inset-x-0 { left: 0; right: 0; }
.z-10 { z-index: 10; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.min-h-screen { min-height: 100vh; }
.overflow-hidden { overflow: hidden; }
.mx-auto { margin-left: auto; margin-right: auto; }

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

/* gap */
.gap-2 { gap: 0.5rem; }
.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-12 { gap: 3rem; }
.gap-x-6 { column-gap: 1.5rem; }
.gap-x-10 { column-gap: 2.5rem; }
.gap-y-3 { row-gap: 0.75rem; }
.gap-y-4 { row-gap: 1rem; }

/* space-between (vertical) */
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

/* divide */
.divide-y > * + * { border-top-width: 1px; }
.divide-slate-200 > * + * { border-color: #e2e8f0; }
.divide-slate-800 > * + * { border-color: #1e293b; }

/* sizing */
.h-1 { height: 0.25rem; }
.h-1\.5 { height: 0.375rem; }
.h-4 { height: 1rem; }    .w-4 { width: 1rem; }
.h-5 { height: 1.25rem; } .w-5 { width: 1.25rem; }
.h-6 { height: 1.5rem; }  .w-6 { width: 1.5rem; }
.h-8 { height: 2rem; }    .w-8 { width: 2rem; }
.h-10 { height: 2.5rem; } .w-10 { width: 2.5rem; }
.h-12 { height: 3rem; }   .w-12 { width: 3rem; }
.h-14 { height: 3.5rem; } .w-14 { width: 3.5rem; }
.h-16 { height: 4rem; }   .w-16 { width: 4rem; }
.h-20 { height: 5rem; }   .w-20 { width: 5rem; }
.w-24 { width: 6rem; }
.h-40 { height: 10rem; }
.h-48 { height: 12rem; }
.h-56 { height: 14rem; }
.h-64 { height: 16rem; }
.h-72 { height: 18rem; }
.h-80 { height: 20rem; }
.h-96 { height: 24rem; }
.min-h-64 { min-height: 16rem; }
.max-h-12 { max-height: 3rem; }
.w-full { width: 100%; }
.w-auto { width: auto; }
.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; }

/* ---------------------------------------------------------------- spacing */
.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-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-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.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-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-28 { padding-top: 7rem; padding-bottom: 7rem; }
.pl-5 { padding-left: 1.25rem; }
.pt-8 { padding-top: 2rem; }
.mb-2 { margin-bottom: 0.5rem; } .mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; } .mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; } .mb-10 { margin-bottom: 2.5rem; }
.ml-4 { margin-left: 1rem; }
.mt-0\.5 { margin-top: 0.125rem; }
.mt-1 { margin-top: 0.25rem; } .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-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }

/* ---------------------------------------------------------------- typography */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.tracking-tight { letter-spacing: -0.015em; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.uppercase { text-transform: uppercase; }
.text-center { text-align: center; }
.list-disc { list-style: disc; }
.list-none { list-style: none; }
.cursor-pointer { cursor: pointer; }

/* ---------------------------------------------------------------- colors: text */
.text-white { color: #fff; }
.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; }
/* orange-* REMAPPED to Rapid Red ramp (see brand note) */
.text-orange-50 { color: #fff1f3; }
.text-orange-400 { color: #f0566a; }
.text-orange-600 { color: #c8102e; }
.text-orange-700 { color: #a00c24; }
.text-green-600 { color: #16a34a; }
.text-green-700 { color: #15803d; }
.text-red-500 { color: #ef4444; }
.text-red-600 { color: #dc2626; }
.text-red-700 { color: #b91c1c; }
.text-teal-400 { color: #2dd4bf; }
.text-teal-500 { color: #14b8a6; }

/* ---------------------------------------------------------------- colors: bg */
.bg-white { background-color: #fff; }
.bg-white\/95 { background-color: rgba(255, 255, 255, 0.95); }
.bg-slate-50 { background-color: #f8fafc; }
.bg-slate-100 { background-color: #f1f5f9; }
.bg-slate-200 { background-color: #e2e8f0; }
.bg-slate-800 { background-color: #1e293b; }
.bg-slate-900 { background-color: #0f172a; }
.bg-slate-950 { background-color: #020617; }
.bg-slate-900\/70 { background-color: rgba(15, 23, 42, 0.70); }
.bg-slate-900\/80 { background-color: rgba(15, 23, 42, 0.80); }
.bg-black\/40 { background-color: rgba(0, 0, 0, 0.40); }
.bg-black\/60 { background-color: rgba(0, 0, 0, 0.60); }
/* orange-* REMAPPED to Rapid Red ramp (see brand note) */
.bg-orange-50 { background-color: #fff1f3; }
.bg-orange-100 { background-color: #fce8eb; }
.bg-orange-600 { background-color: #c8102e; }
.bg-green-100 { background-color: #dcfce7; }
.bg-green-600 { background-color: #16a34a; }
.bg-red-50 { background-color: #fef2f2; }
.bg-teal-500 { background-color: #14b8a6; }

/* gradient */
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--g-from, transparent), var(--g-to, transparent)); }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--g-from, transparent), var(--g-to, transparent)); }
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--g-from, transparent), var(--g-to, transparent)); }
.from-slate-800 { --g-from: #1e293b; }
.from-slate-900 { --g-from: #0f172a; }
.from-slate-950 { --g-from: #020617; }
.to-slate-600 { --g-to: #475569; }
.to-slate-700 { --g-to: #334155; }
.to-slate-800 { --g-to: #1e293b; }
.from-orange-600 { --g-from: #c8102e; }
.to-orange-500 { --g-to: #e11d34; }

/* background image helpers (photo-led sections) */
.bg-cover { background-size: cover; }
.bg-center { background-position: center; }
.bg-no-repeat { background-repeat: no-repeat; }

/* ---------------------------------------------------------------- borders */
.border { border-width: 1px; border-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-y { border-top-width: 1px; border-bottom-width: 1px; border-style: solid; }
.border-l-2 { border-left-width: 2px; border-left-style: solid; }
.border-l-4 { border-left-width: 4px; border-left-style: solid; }
.border-t-2 { border-top-width: 2px; border-top-style: solid; }
.border-slate-200 { border-color: #e2e8f0; }
.border-slate-300 { border-color: #cbd5e1; }
.border-slate-600 { border-color: #475569; }
.border-slate-700 { border-color: #334155; }
.border-slate-800 { border-color: #1e293b; }
/* orange-* REMAPPED to Rapid Red ramp (see brand note) */
.border-orange-100 { border-color: #fce8eb; }
.border-orange-600 { border-color: #c8102e; }
.border-red-200 { border-color: #fecaca; }
.border-red-400 { border-color: #f87171; }
.border-teal-500 { border-color: #14b8a6; }
.border-white\/70 { border-color: rgba(255, 255, 255, 0.7); }
.border-white\/20 { border-color: rgba(255, 255, 255, 0.2); }
.rounded { border-radius: 0.25rem; }
.rounded-sm { border-radius: 0.125rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }
.rounded-none { border-radius: 0; }

/* ---------------------------------------------------------------- effects */
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); }
.shadow { box-shadow: 0 1px 3px 0 rgba(0,0,0,0.1), 0 1px 2px -1px rgba(0,0,0,0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.12), 0 8px 10px -6px rgba(0,0,0,0.1); }
.backdrop-blur { backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.transition { transition: color .15s, background-color .15s, border-color .15s, box-shadow .15s, transform .15s; }
.duration-300 { transition-duration: .3s; }
.duration-500 { transition-duration: .5s; }

/* ---------------------------------------------------------------- form controls */
input, select, textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    background-color: #fff;
    line-height: 1.5;
}
input[type="checkbox"] { width: 1rem; height: 1rem; padding: 0; vertical-align: middle; accent-color: #c8102e; }
.focus\:border-orange-500:focus { border-color: #e11d34; outline: none; }
.focus\:ring-orange-500:focus { outline: none; box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.30); }

/* ---------------------------------------------------------------- state variants */
.hover\:bg-orange-50:hover { background-color: #fff1f3; }
.hover\:bg-orange-700:hover { background-color: #a00c24; }
.hover\:bg-slate-50:hover { background-color: #f8fafc; }
.hover\:bg-slate-100:hover { background-color: #f1f5f9; }
.hover\:bg-slate-800:hover { background-color: #1e293b; }
.hover\:border-orange-300:hover { border-color: #f3b0b8; }
.hover\:border-orange-600:hover { border-color: #c8102e; }
.hover\:border-slate-300:hover { border-color: #cbd5e1; }
.hover\:shadow:hover { box-shadow: 0 1px 3px 0 rgba(0,0,0,0.1), 0 1px 2px -1px rgba(0,0,0,0.1); }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1); }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.12), 0 8px 10px -6px rgba(0,0,0,0.1); }
.hover\:text-white:hover { color: #fff; }
.hover\:text-orange-600:hover { color: #c8102e; }
.hover\:text-orange-700:hover { color: #a00c24; }
.hover\:bg-green-700:hover { background-color: #15803d; }
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }
.hover\:-translate-y-0\.5:hover { transform: translateY(-0.125rem); }

.group:hover .group-hover\:text-orange-600 { color: #c8102e; }
.group:hover .group-hover\:text-white { color: #fff; }
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group[open] .group-open\:rotate-45 { transform: rotate(45deg); }

/* ---------------------------------------------------------------- responsive */
@media (min-width: 640px) {
    .sm\:hidden { display: none; }
    .sm\:inline { display: inline; }
    .sm\:inline-flex { display: inline-flex; }
    .sm\:flex { display: flex; }
    .sm\:flex-row { flex-direction: row; }
    .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\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .sm\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
    .sm\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
    .sm\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
    .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
    .sm\:text-5xl { font-size: 3rem; line-height: 1; }
    .sm\:text-6xl { font-size: 3.75rem; line-height: 1; }
    .sm\:w-auto { width: auto; }
    .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
    .sm\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
    .sm\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
    .sm\:h-56 { height: 14rem; }
    .sm\:justify-center { justify-content: center; }
}
@media (min-width: 768px) {
    .md\:flex { display: flex; }
    .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)); }
}
@media (min-width: 1024px) {
    .lg\:col-span-2 { grid-column: span 2 / span 2; }
    .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\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
    .lg\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
    .lg\:flex-row { flex-direction: row; }
    .lg\:items-center { align-items: center; }
    .lg\:justify-between { justify-content: space-between; }
    .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
    .lg\:py-28 { padding-top: 7rem; padding-bottom: 7rem; }
    .lg\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
    .lg\:h-64 { height: 16rem; }
    .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
}

/* ================================================================ */
/* Sprint 5B — Industrial Corporate UI/UX layer (additive)          */
/* Brand: Rapid Red #C8102E · Slate neutrals · Teal accent (minimal)*/
/* Inspiration: Mammoet / Sarens / DB Schenker Industrial Projects  */
/* ================================================================ */

:root { --rg-red: #c8102e; --rg-red-dark: #a00c24; }

/* — Typography. Barlow loaded via <link> in the layout <head>. Headings use the
     semi-condensed cut for an engineered, authoritative feel; body uses Barlow. — */
body { font-family: 'Barlow', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; }
h1, h2, h3, .font-display {
    font-family: 'Barlow Semi Condensed', 'Barlow', system-ui, sans-serif;
    letter-spacing: -0.01em;
}

/* — Red accent rule (eyebrow underline / section markers) — */
.rg-accent { display: inline-block; width: 3rem; height: 0.25rem; background: var(--rg-red); }
.rg-accent--sm { width: 2rem; }

/* — Full-bleed photo hero with graded overlay (left-weighted for legible copy) — */
.rg-hero { position: relative; overflow: hidden; background-color: #0f172a; }
.rg-hero__media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.rg-hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(2,6,23,0.94) 0%, rgba(2,6,23,0.78) 42%, rgba(2,6,23,0.42) 100%);
}
.rg-hero__overlay--center {
    background: linear-gradient(180deg, rgba(2,6,23,0.55) 0%, rgba(2,6,23,0.78) 100%);
}

/* — Image card: zoom-on-hover media + bottom fade for overlaid labels — */
.rg-media { position: relative; overflow: hidden; }
.rg-media > img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.group:hover .rg-media > img { transform: scale(1.06); }
.rg-media__fade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(2,6,23,0.82) 0%, rgba(2,6,23,0.15) 55%, transparent 100%); }

/* — Featured video facade (.rg-video*) moved to a scoped <style> in
     resources/views/components/home/featured-videos.blade.php (Sprint 5B.1A) so it
     ships with the dynamic HTML and is immune to a stale cached app.css. — */

/* — Stat / figure styling for trust strips — */
.rg-stat-value { font-family: 'Barlow Semi Condensed','Barlow',sans-serif; font-weight: 800; line-height: 1; }

/* ================================================================ */
/* Sprint 5B — utility top-up (classes used by templates; audited). */
/* ================================================================ */
.object-cover { object-fit: cover; }
.self-start { align-self: flex-start; } /* Sprint 5B.1B — keep inline badge link from stretching in flex-col */
.opacity-80 { opacity: 0.8; }
.shrink-0 { flex-shrink: 0; }
.not-italic { font-style: normal; }
.left-0 { left: 0; }
.left-4 { left: 1rem; }
.top-4 { top: 1rem; }
.gap-7 { gap: 1.75rem; }
.gap-px { gap: 1px; }
.h-7 { height: 1.75rem; }  .w-7 { width: 1.75rem; }
.h-11 { height: 2.75rem; } .w-11 { width: 2.75rem; }
.h-24 { height: 6rem; }
.mt-9 { margin-top: 2.25rem; }
.mt-20 { margin-top: 5rem; }
.p-0\.5 { padding: 0.125rem; }
.px-2\.5 { padding-left: 0.625rem; padding-right: 0.625rem; }
.px-7 { padding-left: 1.75rem; padding-right: 1.75rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-3\.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.space-y-2\.5 > * + * { margin-top: 0.625rem; }
.hover\:bg-slate-950:hover { background-color: #020617; }
.hover\:text-orange-400:hover { color: #f0566a; }
.group:hover .group-hover\:bg-orange-600 { background-color: #c8102e; }
@media (min-width: 640px) { .sm\:py-28 { padding-top: 7rem; padding-bottom: 7rem; } }
@media (min-width: 768px) { .md\:block { display: block; } }
@media (min-width: 1024px) { .lg\:text-5xl { font-size: 3rem; line-height: 1; } }
.hover\:bg-white:hover { background-color: #fff; }
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
