/* Homepage-specific CSS extracted from index.html (Phases 9–12). */

/* Global theme variables and typography scale (homepage only) */
:root {
	--font-sans: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, 'Apple Color Emoji',
		'Segoe UI Emoji';
	--font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New',
		monospace;

	--font-size: 16px;
	--radius: 12px;

	/* Light mode (fallback) */
	--background: 0 0% 100%;
	--foreground: 240 10% 3.9%;

	--card: 0 0% 100%;
	--card-foreground: 240 10% 3.9%;

	--popover: 0 0% 100%;
	--popover-foreground: 240 10% 3.9%;

	--primary: 262 83% 58%; /* violet */
	--primary-foreground: 0 0% 100%;

	--secondary: 240 4.8% 95.9%;
	--secondary-foreground: 240 5.9% 10%;

	--muted: 240 4.8% 95.9%;
	--muted-foreground: 240 3.8% 46.1%;

	--accent: 240 4.8% 95.9%;
	--accent-foreground: 240 5.9% 10%;

	--destructive: 0 84.2% 60.2%;
	--destructive-foreground: 0 0% 98%;

	--border: 240 5.9% 90%;
	--input: 240 5.9% 90%;
	--ring: var(--primary);

	/* Safe area variables for notched devices */
	--safe-top: env(safe-area-inset-top, 0px);
	--safe-bottom: env(safe-area-inset-bottom, 0px);
	--safe-left: env(safe-area-inset-left, 0px);
	--safe-right: env(safe-area-inset-right, 0px);
}

.dark {
	--background: 240 10% 3.9%;
	--foreground: 0 0% 98%;

	--card: 240 10% 3.9%;
	--card-foreground: 0 0% 98%;

	--popover: 240 10% 3.9%;
	--popover-foreground: 0 0% 98%;

	--primary: 262 83% 58%;
	--primary-foreground: 0 0% 100%;

	/* Darken secondary surfaces for gray boxes */
	--secondary: 240 4% 12%;
	--secondary-foreground: 0 0% 98%;

	--muted: 240 4% 12%;
	--muted-foreground: 240 5% 70%; /* Improved contrast from 64.9% */

	--accent: 240 4% 12%;
	--accent-foreground: 0 0% 98%;

	--destructive: 0 62.8% 30.6%;
	--destructive-foreground: 0 0% 98%;

	/* Keep border slightly lighter for separation */
	--border: 240 5% 18%; /* Improved contrast from 16% */
	--input: 240 5% 18%;
	--ring: var(--primary);
}

html {
	font-size: var(--font-size);
	scroll-behavior: smooth;
	scroll-padding-top: 100px; /* Accounts for fixed sticky navbar */
	background-color: hsl(var(--background));
	color: hsl(var(--foreground));
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}

body {
	min-height: 100dvh;
	font-family: var(--font-sans);
	background-color: hsl(var(--background));
	color: hsl(var(--foreground));
}

/* Cards and surfaces */
.card {
	background-color: hsl(var(--card));
	color: hsl(var(--card-foreground));
	border: 1px solid hsl(var(--border));
	border-radius: var(--radius);
}

.muted {
	color: hsl(var(--muted-foreground));
}
.border {
	border-color: hsl(var(--border));
}
.accent-bg {
	background-color: hsl(var(--accent));
}
.primary-bg {
	background-color: hsl(var(--primary));
	color: hsl(var(--primary-foreground));
}

/* Buttons */
.btn {
	border-radius: calc(var(--radius) - 4px);
	border: 1px solid hsl(var(--border));
	transition: all 0.2s ease;
}
.btn-primary {
	background-color: hsl(var(--primary));
	color: hsl(var(--primary-foreground));
}
.btn-primary:hover:not(:disabled) {
	background-color: hsl(var(--primary) / 0.9);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px hsl(var(--primary) / 0.4);
}
.btn-primary:focus-visible {
	outline: 2px solid hsl(var(--primary));
	outline-offset: 2px;
}
.btn-muted {
	background-color: hsl(var(--muted));
	color: hsl(var(--muted-foreground));
}

/* Inputs */
input,
select,
textarea {
	background-color: hsl(var(--background));
	color: hsl(var(--foreground));
	border: 1px solid hsl(var(--input));
	border-radius: 8px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
input:focus,
select:focus,
textarea:focus {
	outline: none;
	border-color: hsl(var(--primary));
	box-shadow: 0 0 0 3px hsl(var(--primary) / 0.1);
}

/* Loading states */
@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}
.animate-spin {
	animation: spin 1s linear infinite;
}

/* Typography tweaks for headings on homepage */
h1 {
	font-weight: 800;
	letter-spacing: -0.02em;
}
h2 {
	font-weight: 700;
	letter-spacing: -0.01em;
}
h3 {
	font-weight: 700;
}

/* Utility helpers used on the home page */
.glass {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
}

/* Consistent centered layout container */
.site-container {
	max-width: 80rem; /* ~1280px (Tailwind max-w-7xl) */
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.5rem; /* px-6 */
	padding-right: 1.5rem; /* px-6 */
}

/* About section themed background */
.about-section {
	position: relative;
	background: radial-gradient(1200px 600px at 80% 20%, rgba(88, 28, 135, 0.15), transparent 60%),
		radial-gradient(800px 400px at 20% 80%, rgba(91, 33, 182, 0.12), transparent 60%),
		linear-gradient(180deg, hsl(var(--background)) 0%, hsl(var(--background)) 55%,
			rgba(46, 16, 101, 0.18) 100%);
}

/* Tailwind override mapping to theme variables */

/* Background overrides to use theme colors (scoped to index page) */
.page-index .bg-gray-900 {
	background-color: hsl(var(--background)) !important;
}
.page-index .bg-gray-900\/50 {
	background-color: hsl(var(--background) / 0.5) !important;
}
.page-index .bg-gray-800 {
	background-color: hsl(var(--secondary)) !important;
}
.page-index .bg-gray-800\/95 {
	background-color: hsl(var(--secondary) / 0.95) !important;
}
.page-index .bg-gray-700 {
	background-color: hsl(var(--secondary)) !important;
}
.page-index .bg-gray-700\/50 {
	background-color: hsl(var(--secondary) / 0.5) !important;
}
.page-index .bg-gray-600 {
	background-color: hsl(var(--secondary)) !important;
}

/* Hover background utilities (scoped) */
.page-index .hover\:bg-gray-800:hover {
	background-color: hsl(var(--secondary)) !important;
}
.page-index .hover\:bg-gray-700\/50:hover {
	background-color: hsl(var(--secondary) / 0.5) !important;
}

/* Border overrides (scoped) */
.page-index .border-gray-800,
.page-index .hover\:border-gray-800:hover {
	border-color: hsl(var(--border)) !important;
}
.page-index .border-gray-700,
.page-index .hover\:border-gray-700:hover {
	border-color: hsl(var(--border)) !important;
}
.page-index .border-gray-600,
.page-index .hover\:border-gray-600:hover {
	border-color: hsl(var(--border)) !important;
}

/* Darker purple brand for backgrounds and borders */
.page-index .bg-purple-500,
.page-index .hover\:bg-purple-500:hover {
	background-color: #6d28d9 !important;
}
.page-index .bg-purple-600,
.page-index .hover\:bg-purple-600:hover {
	background-color: #5b21b6 !important;
}
.page-index .bg-purple-700,
.page-index .hover\:bg-purple-700:hover {
	background-color: #4c1d95 !important;
}
.page-index .bg-purple-900,
.page-index .hover\:bg-purple-900:hover {
	background-color: #2e1065 !important;
}
.page-index .border-purple-500,
.page-index .hover\:border-purple-500:hover {
	border-color: #6d28d9 !important;
}
.page-index .border-purple-600,
.page-index .hover\:border-purple-600:hover {
	border-color: #5b21b6 !important;
}
.page-index .border-purple-700,
.page-index .hover\:border-purple-700:hover {
	border-color: #4c1d95 !important;
}
.page-index .border-purple-900,
.page-index .hover\:border-purple-900:hover {
	border-color: #2e1065 !important;
}

/* Text color mapping for common grays (scoped) */
.page-index .text-white {
	color: hsl(var(--foreground)) !important;
}
.page-index .text-gray-300,
.page-index .hover\:text-gray-300:hover {
	color: hsl(var(--muted-foreground)) !important;
}
.page-index .text-gray-400,
.page-index .hover\:text-gray-400:hover {
	color: hsl(var(--muted-foreground)) !important;
}

/* Darker brand purple overrides for ANY purple text utility (scoped) */
.page-index .text-purple-300,
.page-index .hover\:text-purple-300:hover,
.page-index .text-purple-400,
.page-index .hover\:text-purple-400:hover,
.page-index .text-purple-500,
.page-index .hover\:text-purple-500:hover,
.page-index .text-purple-600,
.page-index .hover\:text-purple-600:hover,
.page-index .text-purple-700,
.page-index .hover\:text-purple-700:hover,
.page-index .text-purple-800,
.page-index .hover\:text-purple-800:hover {
	/* Tailwind purple-800 */
	color: #5b21b6 !important;
}

/* Favicon Circular Styling */

/* Make favicon appear circular */
link[rel='icon'],
link[rel='shortcut icon'] {
	border-radius: 50% !important;
}

/* Custom favicon styling for better circular appearance */
#favicon {
	border-radius: 50%;
	background: white;
	padding: 2px;
}

/* Hero section specific styles */
@keyframes moveRight {
	0% { left: 0%; opacity: 0; }
	10% { opacity: 1; }
	90% { opacity: 1; }
	100% { left: 100%; opacity: 0; }
}

.gradient-bg {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.code-editor {
	background: #1e1e2e;
	border-radius: 12px;
	border: 1px solid #313244;
	font-family: var(--font-mono);
}

#home #codeBlock {
	min-height: 10rem;
}

#home .hero-editor-wrap {
	max-width: min(100%, 31rem);
}

.code-line {
	display: flex;
	align-items: center;
	padding: 4px 0;
	min-width: 0; /* Allow flex child to shrink below content size */
	opacity: 0;
	animation: fadeIn 0.4s ease-in-out forwards;
}

.line-number {
	color: #6c7086;
	margin-right: 12px;
	min-width: 18px;
	text-align: right;
	font-size: 13px;
	flex-shrink: 0;
}

@media screen and (min-width: 640px) {
	.line-number {
		margin-right: 16px;
		min-width: 20px;
		font-size: 14px;
	}
}

.code-content {
	color: #cdd6f4;
	font-size: 13px;
	min-width: 0; /* Allow wrapping if needed */
	overflow: hidden;
	text-overflow: ellipsis;
	display: inline-block;
	border-right: 2px solid #7c3aed;
	white-space: nowrap;
	animation: typing 0s steps(40) forwards, blink 0.7s step-end infinite;
	max-width: 0;
}

@media screen and (min-width: 640px) {
	.code-content {
		font-size: 14px;
	}
}

/* Highlight keywords in purple and function/identifiers in yellow */
.keyword {
	color: #7c3aed;
} /* Brighter purple for better contrast */
.function {
	color: #fbbf24;
} /* Slightly muted yellow */
.string {
	color: #86efac;
} /* Brighter green */
.number {
	color: #fbbf24;
}
.comment {
	color: #6c7086;
}

/* Typing Animation Styles */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(2px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes typing {
	from {
		max-width: 0;
	}
	to {
		max-width: 100%;
	}
}

@keyframes blink {
	0%,
	50% {
		border-color: #7c3aed;
	}
	51%,
	100% {
		border-color: transparent;
	}
}

/* Remove cursor blink after typing completes */
.typing-complete .code-content {
	border-right: none;
	animation: none;
	max-width: 100%;
}

.terminal-header {
	background: #313244;
	border-radius: 12px 12px 0 0;
	padding: 8px 12px;
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 0.875rem;
}

@media screen and (min-width: 640px) {
	.terminal-header {
		padding: 12px 16px;
		gap: 8px;
	}
}

.terminal-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
}

@media screen and (min-width: 640px) {
	.terminal-dot {
		width: 12px;
		height: 12px;
	}
}

.glow-btn {
	background: linear-gradient(135deg, #f59e0b, #f97316);
	color: #000;
	font-weight: 600;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
	will-change: transform;
}

.glow-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(245, 158, 11, 0.6);
}

.glow-btn:active {
	transform: translateY(0);
	box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
}

.stats-card {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: transform 0.2s ease, border-color 0.2s ease;
}

@media (hover: hover) {
	.stats-card:hover {
		transform: translateY(-2px);
		border-color: rgba(139, 69, 219, 0.3);
	}
}

/* Technology Stack cards: consistent sizing */
.tech-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 10rem; /* Increased for better content fit */
	padding: 1.5rem;
	text-align: center;
	border-radius: 0.75rem;
	transition: transform 0.2s ease, background-color 0.2s ease;
}

@media (hover: hover) {
	.tech-card:hover {
		transform: translateY(-4px);
	}
}

.tech-icon {
	width: 3rem;
	height: 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.75rem;
}
.tech-icon img,
.tech-icon svg {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.tech-icon .emoji,
.tech-icon i {
	font-size: 2.5rem;
	line-height: 1;
}
.tech-label {
	font-weight: 600;
	color: hsl(var(--foreground));
	font-size: 0.95rem;
}

/* How It Works Animations */
.step-card {
	transition: transform 0.2s ease;
	cursor: pointer;
	will-change: transform;
}

@media (hover: hover) {
	.step-card:hover {
		transform: translateY(-8px);
	}
}

.step-icon {
	transition: transform 0.3s ease;
	position: relative;
	overflow: hidden;
	will-change: transform;
}

@media (hover: hover) {
	.step-icon:hover {
		transform: scale(1.08) rotate(3deg);
	}
}

.step-number {
	animation: bounce 2s infinite;
	animation-delay: var(--delay);
}

@keyframes bounce {
	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}
	40% {
		transform: translateY(-10px);
	}
	60% {
		transform: translateY(-5px);
	}
}

.connecting-line {
	position: relative;
	overflow: hidden;
}

.connecting-line::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(139, 69, 219, 0.6), transparent);
	animation: flow 3s ease-in-out infinite;
}

@keyframes flow {
	0% {
		left: -100%;
	}
	50% {
		left: 0%;
	}
	100% {
		left: 100%;
	}
}

/* Floating animation for icons */
@media (prefers-reduced-motion: no-preference) {
	.float-animation {
		animation: float 4s ease-in-out infinite;
	}
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-8px);
	}
}

/* Pulse animation for step numbers */
@media (prefers-reduced-motion: no-preference) {
	.pulse-animation {
		animation: pulse 3s ease-in-out infinite;
	}
}

@keyframes pulse {
	0%,
	100% {
		box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.5);
	}
	50% {
		box-shadow: 0 0 0 8px rgba(245, 158, 11, 0);
	}
}

/* Countdown Timer Styles */
.countdown-days,
.countdown-hours,
.countdown-minutes,
.countdown-seconds {
	transition: transform 0.15s ease;
	display: inline-block;
	will-change: transform;
}

.countdown-container {
	animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
	from {
		box-shadow: 0 0 15px rgba(139, 69, 219, 0.2);
	}
	to {
		box-shadow: 0 0 25px rgba(139, 69, 219, 0.4);
	}
}

/* Hero section mobile optimizations */
@media screen and (max-width: 1024px) {
	#home #hero-heading {
		margin-top: 1.5rem;
	}
}

@media screen and (max-width: 640px) {
	#home .site-container {
		padding-left: 1rem;
		padding-right: 1rem;
	}
	#home .hero-content-grid {
		gap: 2rem;
	}
	#home .hero-content-grid > div:first-child {
		text-align: center;
	}
	#home #hero-heading {
		font-size: clamp(2rem, 7vw, 2.35rem);
		line-height: 1.2;
	}
	#home .hero-editor-wrap {
		max-width: 100%;
		margin-left: auto;
		margin-right: auto;
		overflow: visible;
	}
	#home #codeBlock {
		min-height: 8rem;
		padding-bottom: 1rem;
	}

	#home .hero-code-editor {
		font-size: 12px;
		max-width: 100%;
		overflow-x: hidden;
	}
	#home .code-line,
	#home .code-content {
		white-space: pre-wrap;
		word-break: break-word;
		overflow-wrap: anywhere;
		max-width: none;
		text-overflow: clip;
	}
	#home .code-content {
		animation: none;
		border-right: none;
	}

	#home .hero-floating-icon {
		transform: none !important;
	}
	#home .hero-floating-icon--left {
		left: 0.25rem !important;
		bottom: 0.25rem !important;
	}
	#home .hero-floating-icon--right {
		right: 0.25rem !important;
		top: 0.25rem !important;
	}
	#home .hero-floating-icon-card {
		width: 2rem;
		height: 2rem;
		border-radius: 0.5rem;
	}
	#home .hero-floating-icon-card i {
		width: 1rem;
		height: 1rem;
	}

	#home .stats-card {
		min-width: auto;
	}

	/* Ensure text wraps properly */
	#home p {
		word-break: break-word;
		overflow-wrap: break-word;
	}
}

/* Extra small phones */
@media screen and (max-width: 380px) {
	#home .site-container {
		padding-left: 0.75rem;
		padding-right: 0.75rem;
	}
	#home #hero-heading {
		font-size: 1.9rem;
	}
	#home .hero-code-editor {
		font-size: 11px;
	}
	#home .hero-floating-icon {
		display: none;
	}
	#home .stats-card {
		padding: 0.5rem;
	}
	#home .grid.grid-cols-3 {
		gap: 0.5rem;
	}
}

/* Targeted fixes for common Android widths */
@media screen and (max-width: 411px) {
	/* Contact: Send us a Message form */
	#contact .grid.lg\:grid-cols-2 {
		grid-template-columns: 1fr !important;
		gap: 1rem !important;
	}
	#contact .bg-gray-800.rounded-2xl.p-8 {
		padding: 1rem !important;
	}
	#contact form {
		width: 100%;
		max-width: 100%;
	}
	#contact .grid.md\:grid-cols-2 {
		grid-template-columns: 1fr !important;
		gap: 0.75rem !important;
	}
	#contact input,
	#contact textarea,
	#contact select {
		font-size: 0.95rem;
		width: 100%;
		box-sizing: border-box;
	}
	#contact textarea {
		min-height: 180px;
		resize: vertical;
	}
	#contact label {
		font-size: 0.95rem;
	}
	#contact button[type='submit'] {
		padding: 0.875rem 1rem;
		font-size: 1rem;
		width: 100%;
	}
	#contact .space-y-6 > * {
		margin-top: 0.75rem !important;
	}
	#contact .text-xl {
		font-size: 1rem !important;
	}
	/* Contact Information cards: stack and prevent overflow */
	#contact .space-y-6 > .bg-gray-800 {
		padding: 1rem !important;
	}
	#contact .space-y-6 > .bg-gray-800 .flex {
		flex-wrap: nowrap;
	}
	#contact .space-y-6 > .bg-gray-800 .w-12 {
		flex: 0 0 auto;
	}
	#contact .space-y-6 > .bg-gray-800 .flex-1 {
		min-width: 0;
	}
	#contact .text-xl {
		font-size: 1rem !important;
	}
	#contact .font-medium.text-lg {
		font-size: 0.95rem !important;
	}
	#contact .text-sm {
		font-size: 0.875rem !important;
	}
	#contact .flex.flex-wrap.gap-2 {
		gap: 0.5rem !important;
	}
	/* Ensure long address wraps safely */
	#contact p {
		word-break: break-word;
		overflow-wrap: anywhere;
	}
}

/* Slightly larger small devices (412–480px) */
@media screen and (min-width: 412px) and (max-width: 480px) {
	.site-container .grid.md\:grid-cols-2.lg\:grid-cols-3 {
		grid-template-columns: repeat(2, 1fr) !important;
	}
	/* Contact: keep single column and reduce gaps */
	#contact .grid.lg\:grid-cols-2 {
		grid-template-columns: 1fr !important;
		gap: 1rem !important;
	}
	#contact .bg-gray-800.rounded-2xl.p-8 {
		padding: 1.25rem !important;
	}
	#contact .grid.md\:grid-cols-2 {
		grid-template-columns: 1fr !important;
		gap: 0.75rem !important;
	}
	#contact input,
	#contact textarea,
	#contact select {
		width: 100%;
		box-sizing: border-box;
	}
}

/* Portrait orientation specific - preserve stats grid */
@media screen and (orientation: portrait) and (max-width: 480px) {
	.lg\:grid-cols-2 {
		grid-template-columns: 1fr !important;
	}
	.md\:grid-cols-2:not(.grid-cols-3) {
		grid-template-columns: 1fr !important;
	}
	.md\:grid-cols-3:not(.grid-cols-3) {
		grid-template-columns: 1fr !important;
	}
	.md\:grid-cols-4 {
		grid-template-columns: repeat(2, 1fr) !important;
	}
	/* Footer must always be single column on phones — override the rule above */
	footer .grid {
		grid-template-columns: 1fr !important;
	}
	/* Don't force all grids to single column - preserve stats 3-column grid */
	#home .grid.grid-cols-3 {
		grid-template-columns: repeat(3, 1fr) !important;
	}
}

/* Landscape orientation for phones */
@media screen and (orientation: landscape) and (max-height: 480px) {
	.py-20 {
		padding-top: 2rem;
		padding-bottom: 2rem;
	}
	.py-12 {
		padding-top: 1.5rem;
		padding-bottom: 1.5rem;
	}
	.mb-16 {
		margin-bottom: 2rem;
	}
	.mb-12 {
		margin-bottom: 1.5rem;
	}
}

/* Touch-friendly interactive elements */
@media (hover: none) and (pointer: coarse) {
	.hover\:scale-105:hover {
		transform: none;
	}
	.hover\:translateY\(-10px\):hover {
		transform: none;
	}
	button,
	.btn,
	a[href] {
		min-height: 44px;
		min-width: 44px;
		padding: 12px 16px;
	}
	footer a[href] {
		min-height: unset;
		min-width: unset;
		padding: 0;
	}
	.step-card:hover {
		transform: none;
	}
}

/* CSS-only fallback: ensure footer remains clickable even if JS can't hide the button */
.page-index footer {
	position: relative;
	z-index: 60;
}
.page-index #go-to-top {
	z-index: 40 !important;
}

/* Mobile fixes: avoid overflow without breaking layout */
@media screen and (max-width: 480px) {
	html,
	body {
		overflow-x: clip;
		width: 100%;
	}
	/* Only cap media and large components to viewport width */
	img,
	video,
	canvas,
	svg,
	iframe {
		max-width: 100%;
		height: auto;
	}
	/* Avoid aggressive position overrides on Android */
	.sticky {
		position: sticky;
	}
	.fixed {
		position: fixed;
	}
}
