:root {
    --background: #faf8ff;
    --surface: #faf8ff;
    --surface-dim: #dad9e0;
    --surface-container: #eeedf3;
    --surface-container-low: #f4f3f9;
    --surface-container-lowest: #ffffff;
    --surface-container-high: #e8e7ee;
    --surface-container-highest: #e3e2e8;
    --outline: #926e6a;
    --outline-variant: #e8bcb8;
    --on-surface: #1a1b20;
    --on-surface-variant: #5e3f3c;
    --primary: #bb0014;
    --primary-container: #e61822;
    --primary-fixed: #ffdad6;
    --tertiary: #bb0014;
    --bs-primary: #bb0014;
    --bs-primary-rgb: 187, 0, 20;
    --bs-link-color: #bb0014;
    --bs-link-hover-color: #e61822;
    --bs-focus-ring-color: rgba(187, 0, 20, .18);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    background: var(--background);
    color: var(--on-surface);
}

::selection {
    background: var(--primary-container);
    color: #fff;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

.font-headline,
.font-manrope,
.brand-font,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Manrope", sans-serif;
}

.font-body,
.font-inter,
.font-label,
body {
    font-family: "Inter", sans-serif;
}

.font-mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

.container {
    width: 100%;
    max-width: 1320px;
    margin-inline: auto;
}

.mx-auto { margin-inline: auto; }
.mt-1 { margin-top: .25rem; }
.mt-2 { margin-top: .5rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-16 { margin-top: 4rem; }
.mb-1 { margin-bottom: .25rem; }
.mb-2 { margin-bottom: .5rem; }
.mb-3 { margin-bottom: .75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-14 { margin-bottom: 3.5rem; }
.mb-16 { margin-bottom: 4rem; }
.p-2 { padding: .5rem; }
.p-3 { padding: .75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }
.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; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.px-12 { padding-left: 3rem; padding-right: 3rem; }
.py-2 { padding-top: .5rem; padding-bottom: .5rem; }
.py-2\.5 { padding-top: .625rem; padding-bottom: .625rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.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; }
.pt-8 { padding-top: 2rem; }
.pt-16 { padding-top: 4rem; }
.pb-1 { padding-bottom: .25rem; }
.pb-2 { padding-bottom: .5rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-8 { padding-bottom: 2rem; }

.space-y-2 > * + * { margin-top: .5rem; }
.space-y-3 > * + * { margin-top: .75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-y-20 > * + * { margin-top: 5rem; }
.space-x-3 > * + * { margin-left: .75rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-x-6 > * + * { margin-left: 1.5rem; }
.space-x-8 > * + * { margin-left: 2rem; }
.space-x-10 > * + * { margin-left: 2.5rem; }

.block { display: block; }
.hidden { display: none !important; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.grid { display: grid; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-px { gap: 1px; }
.gap-2 { gap: .5rem; }
.gap-3 { gap: .75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }
.gap-20 { gap: 5rem; }
.gap-24 { gap: 6rem; }

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

.relative { position: relative; }
.absolute { position: absolute; }
.sticky { position: sticky; }
.inset-0 { inset: 0; }
.top-0 { top: 0; }
.-top-1 { top: -.25rem; }
.bottom-0 { bottom: 0; }
.-bottom-4 { bottom: -1rem; }
.-bottom-8 { bottom: -2rem; }
.-bottom-10 { bottom: -2.5rem; }
.left-0 { left: 0; }
.-left-8 { left: -2rem; }
.-left-10 { left: -2.5rem; }
.right-0 { right: 0; }
.-right-1 { right: -.25rem; }
.-right-4 { right: -1rem; }
.-right-8 { right: -2rem; }

.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }
.overflow-hidden { overflow: hidden; }
.pointer-events-none { pointer-events: none; }
.cursor-pointer { cursor: pointer; }
.whitespace-nowrap { white-space: nowrap; }

.w-full { width: 100%; }
.w-auto { width: auto; }
.w-1\/2 { width: 50%; }
.w-1\/3 { width: 33.333333%; }
.w-4 { width: 1rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-24 { width: 6rem; }
.max-w-full { max-width: 100%; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-7xl { max-width: 80rem; }
.h-full { height: 100%; }
.h-1 { height: .25rem; }
.h-1\.5 { height: .375rem; }
.h-4 { height: 1rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-24 { height: 6rem; }
.h-64 { height: 16rem; }
.h-72 { height: 18rem; }
.h-96 { height: 24rem; }
.h-\[600px\] { height: 600px; }
.aspect-\[4\/3\] { aspect-ratio: 4 / 3; }
.aspect-\[4\/5\] { aspect-ratio: 4 / 5; }

.rounded { border-radius: .125rem; }
.rounded-lg { border-radius: .5rem; }
.rounded-xl { border-radius: .75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }
.rounded-l-lg { border-top-left-radius: .5rem; border-bottom-left-radius: .5rem; }
.rounded-r-lg { border-top-right-radius: .5rem; border-bottom-right-radius: .5rem; }

.border { border: 1px solid currentColor; }
.border-none { border: 0; }
.border-4 { border-width: 4px; }
.border-b { border-bottom: 1px solid currentColor; }
.border-b-2 { border-bottom: 2px solid currentColor; }
.border-l-2 { border-left: 2px solid currentColor; }
.border-l-4 { border-left: 4px solid currentColor; }
.border-t { border-top: 1px solid currentColor; }
.border-y { border-top: 1px solid currentColor; border-bottom: 1px solid currentColor; }

.bg-background, .bg-surface { background-color: var(--surface); }
.bg-surface-dim { background-color: var(--surface-dim); }
.bg-surface-container-low { background-color: var(--surface-container-low); }
.bg-surface-container-lowest, .bg-white { background-color: #fff; }
.bg-surface-container-high { background-color: var(--surface-container-high); }
.bg-on-surface { background-color: var(--on-surface); }
.bg-primary { background-color: var(--primary) !important; }
.bg-red-700 { background-color: #b91c1c; }
.bg-neutral-800 { background-color: #262626; }
.bg-neutral-900 { background-color: #171717; }
.dark\:bg-black { background-color: #000; }
.bg-\[\#25D366\] { background-color: #25D366; }
.bg-primary\/10 { background-color: rgba(187, 0, 20, .10); }
.bg-on-surface\/40 { background-color: rgba(26, 27, 32, .40); }
.bg-outline-variant\/20 { background-color: rgba(232, 188, 184, .20); }

.text-white { color: #fff; }
.text-on-primary { color: #fff; }
.text-on-surface { color: var(--on-surface); }
.text-on-surface-variant { color: var(--on-surface-variant); }
.text-primary { color: var(--primary) !important; }
.text-tertiary { color: var(--tertiary); }
.text-red-100 { color: #fee2e2; }
.text-red-200 { color: #fecaca; }
.text-red-400 { color: #f87171; }
.text-red-500 { color: #ef4444; }
.text-red-700 { color: #b91c1c; }
.text-neutral-400 { color: #a3a3a3; }
.text-neutral-500 { color: #737373; }
.text-neutral-600 { color: #525252; }
.text-neutral-700 { color: #404040; }
.text-neutral-800 { color: #262626; }
.text-surface-container { color: var(--surface-container); }
.text-surface-container-highest { color: var(--surface-container-highest); }

.border-primary { border-color: var(--primary) !important; }
.border-tertiary { border-color: var(--tertiary); }
.border-red-400 { border-color: #f87171; }
.border-neutral-700 { border-color: #404040; }
.border-neutral-800 { border-color: #262626; }
.border-on-surface { border-color: var(--on-surface); }
.border-surface-container-high { border-color: var(--surface-container-high); }
.border-outline-variant\/10 { border-color: rgba(232, 188, 184, .10); }
.border-white\/10 { border-color: rgba(255, 255, 255, .10); }

.text-center { text-align: center; }
.text-xs { font-size: .75rem; line-height: 1rem; }
.text-sm { font-size: .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-9xl { font-size: 8rem; line-height: 1; }
.text-\[10px\] { font-size: 10px; }
.text-\[10rem\] { font-size: 10rem; line-height: 1; }
.text-\[12rem\] { font-size: 12rem; line-height: 1; }
.text-\[30rem\] { font-size: 30rem; line-height: 1; }

.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-black { font-weight: 900; }
.italic { font-style: italic; }
.uppercase { text-transform: uppercase; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.tracking-tight { letter-spacing: -.025em; }
.tracking-tighter { letter-spacing: -.05em; }
.tracking-wide { letter-spacing: .025em; }
.tracking-wider { letter-spacing: .05em; }
.tracking-widest { letter-spacing: .1em; }
.tracking-\[0\.2em\] { letter-spacing: .2em; }
.tracking-\[0\.24em\] { letter-spacing: .24em; }
.tracking-\[0\.28em\] { letter-spacing: .28em; }

.shadow-sm { box-shadow: 0 1px 2px rgba(15, 23, 42, .08); }
.shadow-lg { box-shadow: 0 10px 30px rgba(15, 23, 42, .14); }
.shadow-xl { box-shadow: 0 20px 45px rgba(15, 23, 42, .18); }
.shadow-2xl { box-shadow: 0 30px 60px rgba(15, 23, 42, .22); }
.shadow-primary\/20 { box-shadow: 0 20px 40px rgba(187, 0, 20, .20); }
.shadow-red-900\/10 { box-shadow: 0 20px 40px rgba(127, 29, 29, .10); }

.object-cover { object-fit: cover; }
.fill-white { fill: #fff; }
.list-none { list-style: none; }
.appearance-none { appearance: none; }
.grayscale { filter: grayscale(1); }
.opacity-10 { opacity: .10; }
.opacity-50 { opacity: .50; }
.opacity-60 { opacity: .60; }
.opacity-70 { opacity: .70; }
.opacity-80 { opacity: .80; }
.scale-95 { transform: scale(.95); }
.order-1 { order: 1; }
.order-2 { order: 2; }
.transition-all { transition: all .25s ease; }
.transition-colors { transition: color .25s ease, background-color .25s ease, border-color .25s ease; }
.transition-opacity { transition: opacity .25s ease; }
.transition-transform { transition: transform .25s ease; }
.duration-200 { transition-duration: .2s; }
.duration-300 { transition-duration: .3s; }
.duration-500 { transition-duration: .5s; }
.duration-700 { transition-duration: .7s; }

.hover\:text-primary:hover { color: var(--primary); }
.hover\:text-red-400:hover { color: #f87171; }
.hover\:text-red-500:hover { color: #ef4444; }
.hover\:text-red-700:hover { color: #b91c1c; }
.hover\:text-white:hover { color: #fff; }
.hover\:bg-primary:hover { background-color: var(--primary); }
.hover\:bg-primary-container:hover,
.hover\:bg-on-primary-container:hover { background-color: var(--primary-container); }
.hover\:bg-red-600:hover { background-color: #dc2626; }
.hover\:bg-surface-container-highest:hover { background-color: var(--surface-container-highest); }
.hover\:bg-surface-container-low:hover { background-color: var(--surface-container-low); }
.hover\:bg-surface-container-lowest:hover { background-color: var(--surface-container-lowest); }
.hover\:border-primary:hover { border-color: var(--primary); }
.hover\:opacity-90:hover { opacity: .9; }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:translate-x-1:hover { transform: translateX(.25rem); }
.hover\:-translate-y-1:hover { transform: translateY(-.25rem); }
.group:hover .group-hover\:text-primary { color: var(--primary); }
.group:hover .group-hover\:text-white { color: #fff !important; }
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:scale-110 { transform: scale(1.10); }
.group:hover .group-hover\:bg-on-surface\/20 { background-color: rgba(26, 27, 32, .20); }
.group[open] .group-open\:rotate-180 { transform: rotate(180deg); }
.active\:scale-90:active { transform: scale(.90); }
.active\:scale-95:active { transform: scale(.95); }

.focus\:ring-0:focus,
.focus\:ring-1:focus,
.focus\:ring-2:focus,
.focus\:ring-primary:focus,
.focus\:ring-primary\/20:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(187, 0, 20, .18);
}

.translate-x-20 { transform: translateX(5rem); }
.-translate-y-20 { transform: translateY(-5rem); }

.selection\:bg-primary::selection,
.selection\:bg-primary-container::selection,
.selection\:bg-primary-fixed::selection {
    background: var(--primary-container);
}

.selection\:text-white::selection,
.selection\:text-on-primary-fixed-variant::selection {
    color: #fff;
}

.animate-ping { animation: bs-ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; }
@keyframes bs-ping {
    75%, 100% { transform: scale(2); opacity: 0; }
}

@media (min-width: 576px) {
    .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
    .md\:block { display: block !important; }
    .md\:flex { display: flex !important; }
    .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\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
    .md\:col-span-1 { grid-column: span 1 / span 1; }
    .md\:col-span-2 { grid-column: span 2 / span 2; }
    .md\:col-span-5 { grid-column: span 5 / span 5; }
    .md\:col-span-7 { grid-column: span 7 / span 7; }
    .md\:p-12 { padding: 3rem; }
    .md\:p-20 { padding: 5rem; }
    .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
    .md\:text-5xl { font-size: 3rem; line-height: 1; }
    .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
    .md\:flex-row { flex-direction: row; }
}

@media (min-width: 992px) {
    .lg\:block { display: block !important; }
    .lg\:flex { display: flex !important; }
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .lg\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
    .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
    .lg\:col-span-5 { grid-column: span 5 / span 5; }
    .lg\:col-span-7 { grid-column: span 7 / span 7; }
    .lg\:order-1 { order: 1; }
    .lg\:order-2 { order: 2; }
}

@media (min-width: 1200px) {
    .xl\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
