@charset "utf-8";
/* CSS Document */
:root {

	/* ==========================================================================
	   Brand Colors
	   ========================================================================== */

	--tc-primary: #E31E24;
	--tc-primary-dark: #B51217;
	--tc-primary-light: #FDEBEC;
	--tc-primary-soft: #FFF5F5;

	--tc-secondary: #1F2937;
	--tc-secondary-light: #374151;

	--tc-accent: #16A34A;
	--tc-accent-light: #ECFDF3;

	/* ==========================================================================
	   Neutral Colors
	   ========================================================================== */

	--tc-white: #FFFFFF;
	--tc-black: #111827;

	--tc-heading: #1F2937;
	--tc-text: #4B5563;
	--tc-text-light: #6B7280;

	--tc-bg: #FFFCFC;
	--tc-bg-alt: #F9FAFB;

	--tc-border: #E5E7EB;
	--tc-border-light: #F3F4F6;

	--tc-gray-50: #F9FAFB;
	--tc-gray-100: #F3F4F6;
	--tc-gray-200: #E5E7EB;
	--tc-gray-300: #D1D5DB;
	--tc-gray-400: #9CA3AF;
	--tc-gray-500: #6B7280;
	--tc-gray-600: #4B5563;
	--tc-gray-700: #374151;
	--tc-gray-800: #1F2937;
	--tc-gray-900: #111827;

	/* ==========================================================================
	   Typography
	   ========================================================================== */

	--tc-font-primary:
		"Inter",
		system-ui,
		-apple-system,
		sans-serif;

	--tc-font-heading:
		"Inter",
		system-ui,
		sans-serif;

	/* ==========================================================================
	   Font Sizes
	   ========================================================================== */

	--tc-text-xs: .75rem;
	--tc-text-sm: .875rem;
	--tc-text-base: 1rem;
	--tc-text-lg: 1.125rem;
	--tc-text-xl: 1.25rem;
	--tc-text-2xl: 1.5rem;
	--tc-text-3xl: 2rem;
	--tc-text-4xl: 3rem;

	/* ==========================================================================
	   Font Weight
	   ========================================================================== */

	--tc-fw-regular: 400;
	--tc-fw-medium: 500;
	--tc-fw-semibold: 600;
	--tc-fw-bold: 700;

	/* ==========================================================================
	   Line Heights
	   ========================================================================== */

	--tc-leading-tight: 1.2;
	--tc-leading-normal: 1.7;

	/* ==========================================================================
	   Layout
	   ========================================================================== */

	--tc-container: 1320px;
	--tc-container-small: 1140px;

	/* ==========================================================================
	   Border Radius
	   ========================================================================== */

	--tc-radius-sm: 6px;
	--tc-radius: 10px;
	--tc-radius-lg: 16px;
	--tc-radius-xl: 24px;
	--tc-radius-full: 999px;

	/* ==========================================================================
	   Shadows
	   ========================================================================== */

	--tc-shadow-sm: 0 4px 12px rgba(17,24,39,.05);

	--tc-shadow:
		0 12px 32px rgba(17,24,39,.08);

	--tc-shadow-lg:
		0 24px 64px rgba(17,24,39,.12);

	--tc-shadow-primary:
		0 16px 40px rgba(227,30,36,.20);

	/* ==========================================================================
	   Spacing
	   ========================================================================== */

	--tc-space-1: .25rem;
	--tc-space-2: .5rem;
	--tc-space-3: .75rem;
	--tc-space-4: 1rem;
	--tc-space-5: 1.5rem;
	--tc-space-6: 2rem;
	--tc-space-7: 3rem;
	--tc-space-8: 4rem;
	--tc-space-9: 6rem;

	/* ==========================================================================
	   Header
	   ========================================================================== */

	--tc-header-height: 90px;
	--tc-topbar-height: 42px;

	/* ==========================================================================
	   Transition
	   ========================================================================== */

	--tc-transition: .3s ease;
}
