:root {
	--font-sans: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	--font-display: "Outfit", var(--font-sans);
	
	/* Palette */
	--primary-50: #f0fdf4;
	--primary-100: #dcfce7;
	--primary-200: #bbf7d0;
	--primary-300: #86efac;
	--primary-400: #4ade80;
	--primary-500: #22c55e;
	--primary-600: #16a34a;
	--primary-700: #15803d;
	--primary-800: #166534;
	--primary-900: #14532d;
	
	--sage-50: #f4f7f4;
	--sage-100: #e5ece5;
	--sage-200: #cbd9cb;
	
	--amber-50: #fffbeb;
	--amber-100: #fef3c7;
	--amber-500: #f59e0b;
	--amber-600: #d97706;
	--amber-700: #b45309;

	--rose-50: #fff1f2;
	--rose-100: #ffe4e6;
	--rose-500: #f43f5e;
	--rose-600: #e11d48;
	--rose-700: #be123c;

	--bg-body: #f8faf7;
	--bg-card: #ffffff;
	--border-subtle: #e2e8e0;
	--border-light: #edf2eb;
	
	--text-main: #131d15;
	--text-muted: #526053;
	--text-subtle: #7f8e80;
	
	--radius-sm: 8px;
	--radius-md: 14px;
	--radius-lg: 20px;
	--radius-xl: 28px;
	--radius-full: 9999px;
	
	--shadow-sm: 0 1px 3px rgba(18, 38, 20, 0.05);
	--shadow-card: 0 4px 20px -2px rgba(22, 101, 52, 0.06), 0 2px 8px -1px rgba(0, 0, 0, 0.03);
	--shadow-hover: 0 12px 32px -4px rgba(22, 101, 52, 0.12), 0 4px 12px -2px rgba(0, 0, 0, 0.04);
	--shadow-dropdown: 0 16px 40px -8px rgba(15, 23, 42, 0.15);
	
	--transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	background-color: var(--bg-body);
	color: var(--text-main);
	font-family: var(--font-sans);
	font-size: 15px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	color: var(--text-main);
	letter-spacing: -0.025em;
	font-weight: 700;
}

button, input, select, textarea {
	font-family: inherit;
}

/* App Header */
.app-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--border-subtle);
}

.header-container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0.85rem 1.25rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.logo-brand {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	cursor: pointer;
	text-decoration: none;
	user-select: none;
}

.logo-icon-wrap {
	width: 38px;
	height: 38px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	box-shadow: 0 4px 12px rgba(22, 163, 74, 0.28);
}

.logo-text {
	font-family: var(--font-display);
	font-size: 1.35rem;
	font-weight: 800;
	color: var(--text-main);
	letter-spacing: -0.03em;
	display: flex;
	align-items: center;
}

.logo-text span {
	color: var(--primary-600);
}

.nav-links-desktop {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	background: var(--sage-50);
	padding: 0.3rem 0.4rem;
	border-radius: var(--radius-full);
	border: 1px solid var(--border-light);
}

.nav-pill-btn {
	padding: 0.45rem 0.95rem;
	border-radius: var(--radius-full);
	border: none;
	background: transparent;
	color: var(--text-muted);
	font-weight: 600;
	font-size: 0.875rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 0.45rem;
	transition: var(--transition);
}

.nav-pill-btn:hover {
	color: var(--text-main);
	background: rgba(255, 255, 255, 0.7);
}

.nav-pill-btn.active {
	background: #ffffff;
	color: var(--primary-700);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.btn-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid var(--border-subtle);
	background: #ffffff;
	color: var(--text-muted);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	position: relative;
	transition: var(--transition);
}

.btn-icon:hover {
	background: var(--sage-50);
	color: var(--text-main);
	border-color: var(--primary-300);
}

.badge-dot {
	position: absolute;
	top: 8px;
	right: 8px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--rose-500);
	border: 2px solid #ffffff;
}

/* User Profile chip in header */
.user-chip-btn {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.3rem 0.75rem 0.3rem 0.35rem;
	border-radius: var(--radius-full);
	border: 1px solid var(--border-subtle);
	background: #ffffff;
	cursor: pointer;
	transition: var(--transition);
}

.user-chip-btn:hover {
	border-color: var(--primary-400);
	box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.user-avatar-sm {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	object-fit: cover;
}

.user-chip-name {
	font-weight: 600;
	font-size: 0.875rem;
	color: var(--text-main);
}

/* General Button Styles */
.btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	background: var(--primary-600);
	color: #ffffff;
	font-weight: 600;
	font-size: 0.925rem;
	padding: 0.65rem 1.25rem;
	border-radius: var(--radius-full);
	border: none;
	cursor: pointer;
	transition: var(--transition);
	box-shadow: 0 4px 14px rgba(22, 163, 74, 0.25);
}

.btn-primary:hover {
	background: var(--primary-700);
	transform: translateY(-1px);
	box-shadow: 0 6px 18px rgba(22, 163, 74, 0.35);
}

.btn-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	background: #ffffff;
	color: var(--text-main);
	font-weight: 600;
	font-size: 0.925rem;
	padding: 0.65rem 1.25rem;
	border-radius: var(--radius-full);
	border: 1px solid var(--border-subtle);
	cursor: pointer;
	transition: var(--transition);
}

.btn-secondary:hover {
	background: var(--sage-50);
	border-color: var(--primary-300);
}

.btn-accent {
	background: var(--primary-100);
	color: var(--primary-800);
	font-weight: 600;
	border: 1px solid var(--primary-200);
	border-radius: var(--radius-full);
	padding: 0.55rem 1.1rem;
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	cursor: pointer;
	transition: var(--transition);
}

.btn-accent:hover {
	background: var(--primary-200);
	color: var(--primary-900);
}

/* Page shell */
.main-shell {
	max-width: 1240px;
	width: 100%;
	margin: 0 auto;
	padding: 1.5rem 1.25rem 5rem;
	flex: 1;
}

/* Hero & Landing Section */
.hero-wrapper {
	padding: 3rem 0 4.5rem;
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 3rem;
	align-items: center;
}

.hero-pill-tag {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--primary-50);
	border: 1px solid var(--primary-200);
	color: var(--primary-800);
	padding: 0.4rem 0.9rem;
	border-radius: var(--radius-full);
	font-size: 0.85rem;
	font-weight: 700;
	margin-bottom: 1.25rem;
}

.hero-title {
	font-size: clamp(2.4rem, 5vw, 3.6rem);
	line-height: 1.12;
	margin-bottom: 1.25rem;
	color: #0f1f13;
}

.hero-title span {
	background: linear-gradient(135deg, var(--primary-600), #059669);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero-subtitle {
	font-size: 1.15rem;
	line-height: 1.6;
	color: var(--text-muted);
	margin-bottom: 2rem;
	max-width: 540px;
}

.hero-cta-group {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 2.5rem;
}

.hero-stats-row {
	display: flex;
	gap: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--border-light);
}

.hero-stat-item h4 {
	font-size: 1.75rem;
	color: var(--primary-700);
}

.hero-stat-item p {
	font-size: 0.85rem;
	color: var(--text-subtle);
	font-weight: 500;
}

.hero-visual-card {
	position: relative;
	background: #ffffff;
	border-radius: var(--radius-xl);
	padding: 1.5rem;
	box-shadow: var(--shadow-card);
	border: 1px solid var(--border-subtle);
	overflow: hidden;
}

.hero-visual-bg {
	position: absolute;
	top: -50px;
	right: -50px;
	width: 250px;
	height: 250px;
	border-radius: 50%;
	background: radial-gradient(circle, var(--primary-100) 0%, transparent 70%);
	pointer-events: none;
}

/* Feature Grid */
.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.5rem;
	margin-bottom: 4rem;
}

.feature-box {
	background: #ffffff;
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	padding: 1.75rem;
	transition: var(--transition);
}

.feature-box:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-hover);
	border-color: var(--primary-200);
}

.feature-icon-wrapper {
	width: 48px;
	height: 48px;
	border-radius: 14px;
	background: var(--primary-50);
	color: var(--primary-700);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.25rem;
	border: 1px solid var(--primary-100);
}

/* Dashboard Grid Layout */
.dashboard-layout {
	display: grid;
	gap: 1.5rem;
}

.welcome-banner {
	background: linear-gradient(135deg, #166534 0%, #15803d 50%, #16a34a 100%);
	color: #ffffff;
	border-radius: var(--radius-xl);
	padding: 2rem 2.25rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	overflow: hidden;
	box-shadow: 0 10px 30px -5px rgba(22, 101, 52, 0.25);
}

.welcome-banner h2 {
	color: #ffffff;
	font-size: 1.85rem;
	margin-bottom: 0.4rem;
}

.welcome-banner p {
	color: var(--primary-100);
	font-size: 1rem;
	max-width: 520px;
}

.quick-actions-bar {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1rem;
}

.quick-action-card {
	background: #ffffff;
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	padding: 1.25rem;
	display: flex;
	align-items: center;
	gap: 1rem;
	cursor: pointer;
	transition: var(--transition);
	text-align: left;
}

.quick-action-card:hover {
	border-color: var(--primary-400);
	transform: translateY(-2px);
	box-shadow: var(--shadow-card);
}

.quick-action-icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

/* Cards & Stats */
.dashboard-cards-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 1.5rem;
}

.card-score {
	grid-column: span 4;
}

.card-overview {
	grid-column: span 5;
}

.card-savings {
	grid-column: span 3;
}

.app-card {
	background: #ffffff;
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-xl);
	padding: 1.5rem;
	box-shadow: var(--shadow-card);
	display: flex;
	flex-direction: column;
	position: relative;
}

.card-header-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1.25rem;
}

.card-header-row h3 {
	font-size: 1.15rem;
	font-weight: 700;
}

.score-circle-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 1rem 0;
	position: relative;
}

.score-number {
	font-family: var(--font-display);
	font-size: 2.8rem;
	font-weight: 800;
	color: var(--primary-700);
	line-height: 1;
}

.score-label {
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--primary-600);
	background: var(--primary-50);
	padding: 0.25rem 0.75rem;
	border-radius: var(--radius-full);
	margin-top: 0.5rem;
}

/* Fridge Inventory Items */
.fridge-controls {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1.5rem;
}

.category-scroll-bar {
	display: flex;
	gap: 0.5rem;
	overflow-x: auto;
	padding-bottom: 0.5rem;
	scrollbar-width: none;
}
.category-scroll-bar::-webkit-scrollbar {
	display: none;
}

.cat-pill {
	padding: 0.45rem 0.95rem;
	border-radius: var(--radius-full);
	border: 1px solid var(--border-subtle);
	background: #ffffff;
	color: var(--text-muted);
	font-size: 0.85rem;
	font-weight: 600;
	cursor: pointer;
	white-space: nowrap;
	transition: var(--transition);
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
}

.cat-pill:hover {
	border-color: var(--primary-300);
	color: var(--text-main);
}

.cat-pill.active {
	background: var(--primary-700);
	color: #ffffff;
	border-color: var(--primary-700);
	box-shadow: 0 2px 8px rgba(21, 128, 61, 0.2);
}

.food-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 1.25rem;
}

.food-card {
	background: #ffffff;
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: var(--transition);
	display: flex;
	flex-direction: column;
	position: relative;
}

.food-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-hover);
	border-color: var(--primary-300);
}

.food-card-img-wrap {
	height: 140px;
	width: 100%;
	position: relative;
	background: var(--sage-100);
}

.food-card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.status-badge {
	position: absolute;
	top: 10px;
	right: 10px;
	padding: 0.25rem 0.65rem;
	border-radius: var(--radius-full);
	font-size: 0.75rem;
	font-weight: 700;
	backdrop-filter: blur(8px);
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
}

.status-fresh {
	background: rgba(240, 253, 244, 0.95);
	color: var(--primary-800);
	border: 1px solid var(--primary-200);
}

.status-expiring {
	background: rgba(254, 243, 199, 0.95);
	color: var(--amber-700);
	border: 1px solid var(--amber-500);
	animation: pulseWarning 2s infinite ease-in-out;
}

.status-expired {
	background: rgba(255, 241, 242, 0.95);
	color: var(--rose-700);
	border: 1px solid var(--rose-500);
}

@keyframes pulseWarning {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.03); }
}

.food-card-body {
	padding: 1rem;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.food-card-title {
	font-size: 1.05rem;
	font-weight: 700;
	margin-bottom: 0.25rem;
	color: var(--text-main);
}

.food-card-meta {
	font-size: 0.825rem;
	color: var(--text-subtle);
	margin-bottom: 0.75rem;
	display: flex;
	justify-content: space-between;
}

.food-card-notes {
	font-size: 0.8rem;
	color: var(--text-muted);
	background: var(--sage-50);
	padding: 0.45rem 0.65rem;
	border-radius: var(--radius-sm);
	margin-bottom: 0.85rem;
	border: 1px solid var(--border-light);
}

.food-card-actions {
	margin-top: auto;
	display: flex;
	align-items: center;
	gap: 0.45rem;
	border-top: 1px solid var(--border-light);
	padding-top: 0.75rem;
}

/* AI Scanner Modal & View */
.scanner-container {
	background: #ffffff;
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-xl);
	padding: 2rem;
	max-width: 800px;
	margin: 0 auto;
	box-shadow: var(--shadow-card);
}

.camera-viewfinder {
	width: 100%;
	height: 280px;
	border-radius: var(--radius-lg);
	background: #0f172a;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
}

.viewfinder-laser {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, transparent, var(--primary-400), #ffffff, var(--primary-400), transparent);
	box-shadow: 0 0 15px var(--primary-400);
	animation: laserScan 2.4s infinite ease-in-out;
}

@keyframes laserScan {
	0% { top: 5%; }
	50% { top: 90%; }
	100% { top: 5%; }
}

.viewfinder-reticle {
	position: absolute;
	width: 200px;
	height: 200px;
	border: 2px dashed rgba(74, 222, 128, 0.6);
	border-radius: 16px;
	pointer-events: none;
}

/* Community Sharing Marketplace */
.community-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1.5rem;
}

.community-card {
	background: #ffffff;
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-card);
	display: flex;
	flex-direction: column;
	transition: var(--transition);
}

.community-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-hover);
}

.user-post-badge {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1rem;
	background: #ffffff;
	border-bottom: 1px solid var(--border-light);
}

/* Recipes Section */
.recipe-generator-panel {
	background: linear-gradient(135deg, var(--primary-50) 0%, #ffffff 100%);
	border: 1px solid var(--primary-200);
	border-radius: var(--radius-xl);
	padding: 1.75rem;
	margin-bottom: 2rem;
}

.ingredient-chips-pool {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 1rem 0 1.5rem;
}

.ingredient-chip-selectable {
	padding: 0.4rem 0.85rem;
	border-radius: var(--radius-full);
	border: 1px solid var(--border-subtle);
	background: #ffffff;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--text-main);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	transition: var(--transition);
}

.ingredient-chip-selectable.selected {
	background: var(--primary-600);
	color: #ffffff;
	border-color: var(--primary-600);
}

.recipe-result-card {
	background: #ffffff;
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-xl);
	overflow: hidden;
	box-shadow: var(--shadow-card);
	margin-top: 1.5rem;
}

/* Modals & Dialogs */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(15, 23, 42, 0.45);
	backdrop-filter: blur(6px);
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.25rem;
}

.modal-dialog {
	background: #ffffff;
	border-radius: var(--radius-xl);
	width: 100%;
	max-width: 520px;
	max-height: 90vh;
	overflow-y: auto;
	padding: 2rem;
	box-shadow: var(--shadow-dropdown);
	position: relative;
	animation: modalSlideUp 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalSlideUp {
	from { opacity: 0; transform: translateY(12px) scale(0.97); }
	to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close-btn {
	position: absolute;
	top: 1.25rem;
	right: 1.25rem;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 1px solid var(--border-subtle);
	background: #ffffff;
	color: var(--text-muted);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.modal-close-btn:hover {
	background: var(--sage-50);
	color: var(--text-main);
}

/* Form controls */
.form-group {
	margin-bottom: 1.25rem;
}

.form-label {
	display: block;
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--text-main);
	margin-bottom: 0.4rem;
}

.form-input, .form-select, .form-textarea {
	width: 100%;
	padding: 0.7rem 0.9rem;
	border-radius: var(--radius-md);
	border: 1px solid var(--border-subtle);
	background: #ffffff;
	color: var(--text-main);
	font-size: 0.925rem;
	transition: var(--transition);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
	outline: none;
	border-color: var(--primary-500);
	box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}

/* Notifications Dropdown */
.notif-dropdown {
	position: absolute;
	top: 55px;
	right: 0;
	width: 360px;
	background: #ffffff;
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-dropdown);
	z-index: 60;
	padding: 1rem;
	animation: modalSlideUp 0.2s ease-out;
}

.notif-item {
	padding: 0.75rem;
	border-radius: var(--radius-md);
	background: var(--sage-50);
	margin-bottom: 0.5rem;
	font-size: 0.85rem;
	border-left: 3px solid var(--primary-500);
}

.notif-item.read {
	opacity: 0.7;
	border-left-color: var(--border-subtle);
	background: #ffffff;
}

/* Mobile Bottom Navigation Bar */
.mobile-nav-bar {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(12px);
	border-top: 1px solid var(--border-subtle);
	padding: 0.4rem 0.5rem;
	z-index: 45;
	justify-content: space-around;
	box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.04);
}

.mobile-nav-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.2rem;
	background: transparent;
	border: none;
	color: var(--text-subtle);
	font-size: 0.7rem;
	font-weight: 600;
	cursor: pointer;
	padding: 0.35rem 0.5rem;
	border-radius: var(--radius-sm);
	transition: var(--transition);
}

.mobile-nav-item.active {
	color: var(--primary-700);
}

.mobile-nav-item.scan-fab {
	background: var(--primary-600);
	color: #ffffff;
	border-radius: 50%;
	width: 44px;
	height: 44px;
	margin-top: -16px;
	box-shadow: 0 4px 14px rgba(22, 163, 74, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
}

/* Responsive queries */
@media (max-width: 960px) {
	.hero-wrapper {
		grid-template-columns: 1fr;
		gap: 2rem;
		padding: 1.5rem 0 2.5rem;
	}
	
	.card-score { grid-column: span 12; }
	.card-overview { grid-column: span 12; }
	.card-savings { grid-column: span 12; }
}

@media (max-width: 768px) {
	.nav-links-desktop {
		display: none;
	}
	
	.mobile-nav-bar {
		display: flex;
	}
	
	.main-shell {
		padding-bottom: 5.5rem;
	}
	
	.welcome-banner {
		flex-direction: column;
		text-align: left;
		align-items: flex-start;
		gap: 1.25rem;
	}
}
