body {
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}

.landing-page {
	min-height: 100vh;
	position: relative;
	display: flex;
	flex-direction: column;
}

/* Orange-brown vertical stripe on left */
.landing-page::before {
	content: '';
	position: fixed;
	left: 0;
	top: 0;
	width: 8px;
	height: 100vh;
	background: #D2691E;
	z-index: 1000;
}

/* Dark blue header/nav - Figma Design */
.landing-header {
	background: #0f172a;
	color: white;
	padding: 1rem 2.5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: sticky;
	top: 0;
	z-index: 100;
}

.landing-header .logo {
	font-size: 1.5rem;
	font-weight: 700;
	color: white;
	text-decoration: none;
	display: flex;
	align-items: center;
}

.landing-header .logo .logo-icon {
	height: 36px;
	width: auto;
	margin-right: 10px;
}

.landing-header .logo .logo-text {
	font-weight: 700;
	letter-spacing: -0.5px;
}

.landing-header .nav-links {
	display: flex;
	gap: 2.5rem;
	align-items: center;
}

.landing-header .nav-links > a,
.landing-header .nav-links .dropdown-toggle {
	color: white;
	text-decoration: none;
	font-weight: 500;
	font-size: 0.875rem;
	display: flex;
	align-items: center;
	gap: 0.25rem;
	transition: color 0.2s;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.landing-header .nav-links > a:hover,
.landing-header .nav-links .dropdown-toggle:hover {
	color: rgba(255, 255, 255, 0.8);
}

.landing-header .nav-links .dropdown-arrow {
	font-size: 0.6rem;
	margin-left: 0.35rem;
}

/* Login/Signup link - Orange accent */
.landing-header .login-signup-link {
	color: #f97316 !important;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-size: 0.875rem;
}

.landing-header .login-signup-link:hover {
	color: #fb923c !important;
}

/* Profile icon and dashboard icon container */
.header-icons {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-left: 1rem;
}

.profile-icon-container {
	position: relative;
}

.dashboard-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	border: 2px solid rgba(255, 255, 255, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
}

.dashboard-icon:hover {
	background: rgba(255, 255, 255, 0.3);
	border-color: rgba(255, 255, 255, 0.5);
	transform: scale(1.05);
}

.dashboard-icon svg {
	width: 24px;
	height: 24px;
	fill: white;
}

.profile-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	border: 2px solid rgba(255, 255, 255, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 1.2rem;
}

.profile-icon:hover {
	background: rgba(255, 255, 255, 0.3);
	border-color: rgba(255, 255, 255, 0.5);
	transform: scale(1.05);
}

.profile-icon svg {
	width: 24px;
	height: 24px;
	fill: white;
}

.profile-dropdown {
	position: absolute;
	top: calc(100% + 10px);
	right: 0;
	background: white;
	min-width: 280px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	border-radius: 8px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	z-index: 1000;
	overflow: hidden;
}

.profile-icon-container:hover .profile-dropdown,
.profile-icon-container.active .profile-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.profile-dropdown-header {
	padding: 1.5rem;
	background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
	color: white;
}

.profile-dropdown-header h3 {
	margin: 0 0 0.5rem 0;
	font-size: 1.1rem;
	font-weight: 600;
}

.profile-dropdown-header p {
	margin: 0;
	font-size: 0.85rem;
	opacity: 0.9;
}

.profile-dropdown-content {
	padding: 0.5rem 0;
}

.profile-dropdown-item {
	display: block;
	padding: 0.75rem 1.5rem;
	color: #000 !important;
	text-decoration: none;
	font-size: 0.95rem;
	transition: background 0.2s;
	border-bottom: 1px solid #f0f0f0;
}

.profile-dropdown-item:hover {
	background: #f8f9fa;
	color: #2a5298 !important;
}

.profile-dropdown-item:last-child {
	border-bottom: none;
}

.profile-dropdown-item.logout {
	color: #dc3545 !important;
}

.profile-dropdown-item.logout:hover {
	background: #fff5f5;
	color: #c82333 !important;
}

.profile-dropdown-signup {
	padding: 1.5rem;
	text-align: center;
}

.profile-dropdown-signup h3 {
	margin: 0 0 0.5rem 0;
	font-size: 1.1rem;
	color: #1e3c72;
	font-weight: 600;
}

.profile-dropdown-signup p {
	margin: 0 0 1rem 0;
	font-size: 0.9rem;
	color: #666;
	line-height: 1.5;
}

.profile-dropdown-signup .benefits-list {
	text-align: left;
	margin: 1rem 0;
	padding-left: 1.5rem;
}

.profile-dropdown-signup .benefits-list li {
	margin: 0.5rem 0;
	font-size: 0.9rem;
	color: #555;
}

.profile-dropdown-signup .btn-signup {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	background: #2a5298;
	color: white;
	text-decoration: none;
	border-radius: 4px;
	font-weight: 600;
	transition: background 0.2s;
	margin-top: 0.5rem;
}

.profile-dropdown-signup .btn-signup:hover {
	background: #1e3c72;
}

/* Dropdown menu - Figma Design */
.dropdown {
	position: relative;
}

.dropdown-toggle {
	cursor: pointer;
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background: #dbeafe;
	min-width: 220px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	border-radius: 4px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	z-index: 1000;
	margin-top: 0.75rem;
	padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dropdown-menu a {
	display: block;
	padding: 0.75rem 1.25rem;
	color: #1e3a5f !important;
	text-decoration: none;
	font-weight: 500;
	font-size: 0.9rem;
	transition: background 0.2s;
	background: transparent;
	text-transform: none;
	letter-spacing: normal;
}

.dropdown-menu a:hover {
	background: #bfdbfe;
	color: #1e3a5f !important;
}

.dropdown-menu a:visited,
.dropdown-menu a:link {
	color: #1e3a5f !important;
}

.dropdown-menu a:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
}

.dropdown-menu a:last-child {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
}

/* Main content area */
.landing-main {
	flex: 1;
	position: relative;
	min-height: 0;
	height: auto;
	overflow: hidden;
	width: 100%;
}

/* Slide container for carousel */
.slide-container {
	position: relative;
	width: 100%;
	min-height: calc(100vh - 100px);
	display: flex;
	/* No transition - instant slide change */
}

.slide {
	min-width: 100%;
	width: 100%;
	min-height: calc(100vh - 100px);
	display: grid;
	grid-template-columns: 1fr 1fr;
	position: relative;
	flex-shrink: 0;
}

/* Alternate slide layout - image on left, text on right */
.slide.alternate .landing-text-box {
	order: 2;
}

.slide.alternate .landing-image-panel {
	order: 1;
}

/* Left panel - blue background matching image */
.landing-text-box {
	background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
	padding: 4rem 3rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 10;
	box-shadow: 4px 0 12px rgba(0,0,0,0.1);
	margin-right: -2rem;
	overflow: visible;
}

.landing-text-box-content {
	max-width: 500px;
	width: 100%;
	margin: 0 auto;
	text-align: center;
}

.landing-text-box h1 {
	color: white;
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	line-height: 1.2;
	text-align: center;
}

.landing-text-box .separator {
	width: 80px;
	height: 4px;
	background: rgba(255, 255, 255, 0.8);
	margin-bottom: 2rem;
	margin-left: auto;
	margin-right: auto;
}

.landing-text-box .chevron-separator {
	width: auto;
	height: auto;
	background: transparent;
	color: #ff6b35;
	font-size: 1.2rem;
	letter-spacing: 0.1rem;
	padding: 0;
	margin-bottom: 2rem;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.view-maps-button {
	display: inline-block;
	color: white;
	text-decoration: none;
	font-size: 1rem;
	font-weight: 600;
	text-transform: uppercase;
	margin-top: 1.5rem;
	transition: opacity 0.3s;
}

.view-maps-button:hover {
	opacity: 0.8;
}

.landing-text-box p {
	color: rgba(255, 255, 255, 0.95);
	font-size: 1.1rem;
	line-height: 1.8;
	text-align: left;
}

/* Large desktop carousel text scaling */
@media (min-width: 1200px) {
	.landing-text-box {
		padding: 5rem 4rem;
	}
	
	.landing-text-box-content {
		max-width: 550px;
	}
	
	.landing-text-box h1 {
		font-size: 2.75rem;
	}
	
	.landing-text-box p {
		font-size: 1.2rem;
		line-height: 1.9;
	}
}

@media (min-width: 1400px) {
	.landing-text-box {
		padding: 6rem 5rem;
	}
	
	.landing-text-box-content {
		max-width: 600px;
	}
	
	.landing-text-box h1 {
		font-size: 3.25rem;
		margin-bottom: 1.25rem;
	}
	
	.landing-text-box .separator {
		width: 100px;
		height: 5px;
		margin-bottom: 2.5rem;
	}
	
	.landing-text-box .chevron-separator {
		font-size: 1.4rem;
		margin-bottom: 2.5rem;
	}
	
	.landing-text-box p {
		font-size: 1.35rem;
		line-height: 2;
	}
	
	.view-maps-button {
		font-size: 1.1rem;
		margin-top: 2rem;
	}
}

@media (min-width: 1600px) {
	.landing-text-box {
		padding: 7rem 6rem;
	}
	
	.landing-text-box-content {
		max-width: 680px;
	}
	
	.landing-text-box h1 {
		font-size: 3.75rem;
		margin-bottom: 1.5rem;
	}
	
	.landing-text-box .separator {
		width: 120px;
		margin-bottom: 3rem;
	}
	
	.landing-text-box .chevron-separator {
		font-size: 1.5rem;
		margin-bottom: 3rem;
	}
	
	.landing-text-box p {
		font-size: 1.5rem;
		line-height: 2.1;
	}
	
	.view-maps-button {
		font-size: 1.15rem;
		margin-top: 2.5rem;
	}
}

/* Right panel - background image */
.landing-image-panel {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: calc(100vh - 80px);
	overflow: hidden;
	background-color: #1e3c72; /* Fallback color */
}

/* Loading placeholder with animated gradient */
.image-loading-placeholder {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		#1e3c72 0%,
		#2a5298 25%,
		#1e3c72 50%,
		#2a5298 75%,
		#1e3c72 100%
	);
	background-size: 200% 100%;
	animation: shimmer 1.5s ease-in-out infinite;
	z-index: 0;
}

@keyframes shimmer {
	0% { background-position: 200% 0; }
	100% { background-position: -200% 0; }
}

/* Background image */
.hurricane-bg-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: 1;
	display: block;
	min-width: 100%;
	min-height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
}

/* Show image when loaded */
.hurricane-bg-image.loaded {
	opacity: 1;
}

/* Hide placeholder when image is loaded */
.hurricane-bg-image.loaded + .image-loading-placeholder,
.hurricane-bg-image.loaded ~ .image-loading-placeholder {
	display: none;
}

/* For alternate slides (image on left), position the image from the right edge */
.slide.alternate .hurricane-bg-image {
	object-position: right center;
}

/* Slide indicators (optional) */
.slide-indicators {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 0.5rem;
	z-index: 25;
}

.slide-indicator {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	border: 2px solid white;
	cursor: pointer;
	transition: all 0.3s;
}

.slide-indicator.active {
	background: white;
	transform: scale(1.2);
}

/* Scroll button wrapper - positioned between panels */
.scroll-button-wrapper {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	z-index: 30;
}

.scroll-button-wrapper.up {
	top: 20%;
}

.scroll-button-wrapper.down {
	bottom: 20%;
}

/* Scroll button */
.scroll-button {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: white;
	border: 3px solid #2a5298;
	color: #2a5298;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(0,0,0,0.3);
	transition: all 0.3s;
	margin-bottom: 0.5rem;
}

.scroll-button:hover:not(:disabled) {
	transform: scale(1.15);
	background: #2a5298;
	color: white;
	box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

.scroll-button:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.scroll-button:disabled:hover {
	transform: scale(1);
}

.scroll-button .arrow {
	font-size: 1.5rem;
}

.button-label {
	font-size: 0.75rem;
	color: white;
	font-weight: 500;
	text-align: center;
	white-space: nowrap;
}

/* Statistics Section */
.statistics-section {
	background: #0a1a3a;
	min-height: 50vh;
	padding: 4rem 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.statistics-container {
	max-width: 1200px;
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	position: relative;
	z-index: 1;
}

.statistics-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.statistics-text h2 {
	color: white;
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	line-height: 1.2;
}

.statistics-text .chevron-separator {
	width: auto;
	height: auto;
	background: transparent;
	color: #ff6b35;
	font-size: 1.2rem;
	letter-spacing: 0.1rem;
	padding: 0;
	margin-bottom: 2rem;
	text-align: left;
}

.statistics-text p {
	color: rgba(255, 255, 255, 0.95);
	font-size: 1.1rem;
	line-height: 1.8;
}

.statistics-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

.stat-item {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	padding: 3rem 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 16px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.stat-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
	pointer-events: none;
}

.stat-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
	border-color: rgba(255, 255, 255, 0.3);
}

.stat-number {
	color: #4a9eff;
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	line-height: 1;
	position: relative;
	z-index: 1;
	text-shadow: 0 2px 10px rgba(74, 158, 255, 0.3);
}

.stat-label {
	color: white;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.05rem;
	position: relative;
	z-index: 1;
	font-weight: 500;
}

/* Data Sources Section */
.data-sources-section {
	background: #e6f2ff;
	min-height: 100vh;
	padding: 4rem 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.data-sources-container {
	max-width: 1200px;
	width: 100%;
	background: white;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	display: grid;
	grid-template-columns: 1fr 1fr;
	overflow: hidden;
}

.data-sources-image {
	position: relative;
	overflow: hidden;
}

.data-sources-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.info-button-small {
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #2a5298;
	border: none;
	color: white;
	font-size: 0.9rem;
	font-weight: bold;
	cursor: pointer;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.info-button-small:hover {
	background: #1e3c72;
}

.data-sources-text {
	padding: 3rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.data-sources-text h2 {
	color: #1e3c72;
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	line-height: 1.2;
}

.data-sources-text .chevron-separator-dark {
	width: auto;
	height: auto;
	background: transparent;
	color: #1e3c72;
	font-size: 1.2rem;
	letter-spacing: 0.1rem;
	padding: 0;
	margin-bottom: 2rem;
	text-align: left;
}

.data-sources-text p {
	color: #1e3c72;
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: 2rem;
}

.read-methodology-button {
	color: #1e3c72;
	text-decoration: none;
	font-size: 1rem;
	font-weight: 600;
	text-transform: uppercase;
	transition: opacity 0.3s;
	display: inline-block;
}

.read-methodology-button:hover {
	opacity: 0.7;
}

/* Footer - Matching Nav Style */
.landing-footer {
	background: #0f172a;
	color: white;
	padding: 3rem 2rem 1rem;
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-section.footer-brand h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: white;
	font-weight: 700;
}

.footer-section h4 {
	font-size: 0.875rem;
	margin-bottom: 1rem;
	color: white;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-weight: 600;
}

.footer-section p {
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.6;
	font-size: 0.9rem;
}

.footer-section ul {
	list-style: none;
	padding: 0;
}

.footer-section ul li {
	margin-bottom: 0.6rem;
}

.footer-section ul li a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: color 0.2s;
	font-size: 0.9rem;
}

.footer-section ul li a:hover {
	color: white;
}

.footer-bottom {
	max-width: 1200px;
	margin: 0 auto;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.85rem;
}

/* Info and play buttons */
.info-button {
	position: absolute;
	top: 2rem;
	right: 2rem;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: white;
	border: none;
	color: #2a5298;
	font-size: 1.2rem;
	font-weight: 700;
	cursor: pointer;
	z-index: 20;
	box-shadow: 0 2px 4px rgba(0,0,0,0.2);
	display: flex;
	align-items: center;
	justify-content: center;
}

.play-button {
	position: absolute;
	bottom: 2rem;
	right: 2rem;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #2a5298;
	border: none;
	color: white;
	font-size: 1.2rem;
	cursor: pointer;
	z-index: 20;
	box-shadow: 0 4px 8px rgba(0,0,0,0.2), 0 0 20px rgba(42, 82, 152, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	animation: playButtonPulse 2s ease-in-out infinite, playButtonGlow 2s ease-in-out infinite;
	transition: transform 0.3s ease;
}

.play-button:hover {
	transform: scale(1.15);
	animation: playButtonPulse 1s ease-in-out infinite, playButtonGlow 1s ease-in-out infinite;
}

.play-button::before {
	content: '▶';
	margin-left: 2px;
}

.play-button::after {
	content: '';
	position: absolute;
	top: -5px;
	left: -5px;
	right: -5px;
	bottom: -5px;
	border-radius: 50%;
	border: 2px solid rgba(42, 82, 152, 0.8);
	animation: playButtonRipple 2s ease-out infinite;
}

/* Keyframe animations for play button */
@keyframes playButtonPulse {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.08);
	}
}

@keyframes playButtonGlow {
	0%, 100% {
		box-shadow: 
			0 4px 8px rgba(0,0,0,0.2),
			0 0 20px rgba(42, 82, 152, 0.6),
			0 0 30px rgba(42, 82, 152, 0.4);
	}
	50% {
		box-shadow: 
			0 4px 12px rgba(0,0,0,0.3),
			0 0 40px rgba(42, 82, 152, 0.9),
			0 0 60px rgba(42, 82, 152, 0.6),
			0 0 80px rgba(42, 82, 152, 0.3);
	}
}

@keyframes playButtonRipple {
	0% {
		transform: scale(1);
		opacity: 1;
	}
	100% {
		transform: scale(1.8);
		opacity: 0;
	}
}

/* =====================================================
   STORY MAP SECTION - Scrollytelling
   ===================================================== */

.story-map-section {
	background: linear-gradient(180deg, #0d1b2a 0%, #1b3a5f 50%, #0a1a3a 100%);
	min-height: 100vh;
	position: relative;
	overflow: hidden;
}

/* Skip Story Button */
.skip-story-btn {
	position: fixed;
	top: 80px;
	right: 20px;
	z-index: 100;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.6rem 1rem;
	background: #1e3a5f;
	border: none;
	border-radius: 50px;
	color: #fff;
	font-size: 0.85rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	opacity: 0;
	visibility: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.skip-story-btn.visible {
	opacity: 1;
	visibility: visible;
}

.skip-story-btn:hover {
	background: #2d5a87;
	transform: translateX(3px);
}

.skip-story-btn svg {
	width: 18px;
	height: 18px;
	transition: transform 0.3s ease;
}

.skip-story-btn:hover svg {
	transform: translateX(3px);
}

.story-map-container {
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
}

/* Story Header */
.story-header {
	min-height: 60vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 4rem 2rem;
	position: relative;
}

.story-header h2 {
	color: white;
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	line-height: 1.2;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.story-subtitle {
	color: rgba(255, 255, 255, 0.8);
	font-size: 1.4rem;
	max-width: 600px;
	margin-bottom: 3rem;
}

.scroll-indicator {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.9rem;
	animation: bounce 2s infinite;
}

.scroll-arrow {
	font-size: 1.5rem;
	color: #ff6b35;
}

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

/* Story Chapters */
.story-chapters {
	padding: 0 2rem;
}

.story-chapter {
	min-height: 80vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 4rem 0;
	opacity: 0.15;
	transform: translateY(60px) scale(0.95);
	filter: blur(3px);
	transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-chapter.in-view {
	opacity: 0.5;
	transform: translateY(30px) scale(0.98);
	filter: blur(1px);
}

.story-chapter.active {
	opacity: 1;
	transform: translateY(0) scale(1);
	filter: blur(0);
}

/* Slide in from alternating sides */
.story-chapter:nth-child(odd) {
	transform: translateX(-40px) translateY(40px) scale(0.95);
}

.story-chapter:nth-child(even) {
	transform: translateX(40px) translateY(40px) scale(0.95);
}

.story-chapter.active:nth-child(odd),
.story-chapter.active:nth-child(even) {
	transform: translateX(0) translateY(0) scale(1);
}

.story-chapter.final {
	min-height: 60vh;
}

.chapter-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	max-width: 1200px;
	width: 100%;
}

/* Staggered animations for content elements */
.story-chapter .chapter-text {
	opacity: 0;
	transform: translateX(-30px);
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.story-chapter .chapter-visual {
	opacity: 0;
	transform: translateX(30px);
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.story-chapter.active .chapter-text,
.story-chapter.active .chapter-visual {
	opacity: 1;
	transform: translateX(0);
}

/* Animate chapter number */
.story-chapter .chapter-number {
	opacity: 0;
	transform: scale(0.5);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.story-chapter.active .chapter-number {
	opacity: 1;
	transform: scale(1);
}

/* Animate stats */
.story-chapter .chapter-stat {
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
}

.story-chapter.active .chapter-stat {
	opacity: 1;
	transform: translateY(0);
}

/* Animate bars with stagger */
.story-chapter .bar {
	transform: scaleY(0);
	transform-origin: bottom;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-chapter.active .bar-group:nth-child(1) .bar { transition-delay: 0.3s; }
.story-chapter.active .bar-group:nth-child(2) .bar { transition-delay: 0.4s; }
.story-chapter.active .bar-group:nth-child(3) .bar { transition-delay: 0.5s; }
.story-chapter.active .bar-group:nth-child(4) .bar { transition-delay: 0.6s; }
.story-chapter.active .bar-group:nth-child(5) .bar { transition-delay: 0.7s; }

.story-chapter.active .bar {
	transform: scaleY(1);
}

/* Animate disaster type cards */
.disaster-type-card {
	opacity: 0;
	transform: translateY(30px) scale(0.9);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-chapter.active .disaster-type-card:nth-child(1) { transition-delay: 0.1s; }
.story-chapter.active .disaster-type-card:nth-child(2) { transition-delay: 0.2s; }
.story-chapter.active .disaster-type-card:nth-child(3) { transition-delay: 0.3s; }
.story-chapter.active .disaster-type-card:nth-child(4) { transition-delay: 0.4s; }
.story-chapter.active .disaster-type-card:nth-child(5) { transition-delay: 0.5s; }
.story-chapter.active .disaster-type-card:nth-child(6) { transition-delay: 0.6s; }

.story-chapter.active .disaster-type-card {
	opacity: 1;
	transform: translateY(0) scale(1);
}

/* CTA buttons animation */
.cta-buttons {
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.story-chapter.active .cta-buttons {
	opacity: 1;
	transform: translateY(0);
}

.chapter-content.wide {
	grid-template-columns: 1fr;
	text-align: center;
}

/* Chapter Text */
.chapter-text {
	padding: 2rem;
}

.chapter-text.centered {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.chapter-number {
	display: inline-block;
	color: #ff6b35;
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	margin-bottom: 1rem;
	padding: 0.3rem 0.8rem;
	border: 2px solid #ff6b35;
	border-radius: 20px;
}

.chapter-text h3 {
	color: white;
	font-size: 2.2rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	line-height: 1.3;
}

.chapter-text p {
	color: rgba(255, 255, 255, 0.85);
	font-size: 1.15rem;
	line-height: 1.8;
	margin-bottom: 2rem;
}

.chapter-text strong {
	color: #4a9eff;
	font-weight: 600;
}

.chapter-stat {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 1.5rem 2rem;
	display: inline-flex;
	flex-direction: column;
	gap: 0.5rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.chapter-stat .stat-value {
	color: #4a9eff;
	font-size: 3rem;
	font-weight: 700;
	line-height: 1;
}

.chapter-stat .stat-desc {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.95rem;
}

/* Chapter Visuals - Bar Charts */
.chapter-visual {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	min-height: 300px;
}

.chapter-visual.full-width {
	width: 100%;
	min-height: auto;
}

.visual-chart {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 1.5rem;
	height: 300px;
	padding: 2rem 2rem 1rem 2rem;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.bar-group {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
}

.bar {
	width: 50px;
	min-height: 20px;
	height: calc(var(--height, 50%) * 2.5);
	background: linear-gradient(180deg, #4a9eff 0%, #2a5298 100%);
	border-radius: 8px 8px 0 0;
	position: relative;
	transition: all 0.5s ease;
	box-shadow: 0 4px 15px rgba(74, 158, 255, 0.5);
}

.bar::after {
	content: attr(data-value);
	position: absolute;
	top: -35px;
	left: 50%;
	transform: translateX(-50%);
	color: #4a9eff;
	font-weight: 700;
	font-size: 1.1rem;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.bar-group.highlight .bar {
	background: linear-gradient(180deg, #ff6b35 0%, #c44d1a 100%);
	box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.bar-group.highlight .bar::after {
	color: #ff6b35;
}

.bar-group.current .bar {
	animation: pulse-bar 2s infinite;
}

@keyframes pulse-bar {
	0%, 100% { box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4); }
	50% { box-shadow: 0 4px 30px rgba(255, 107, 53, 0.7); }
}

.bar-label {
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.9rem;
	font-weight: 600;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* Disaster Type Grid */
.disaster-type-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	padding: 2rem;
	max-width: 1000px;
	margin: 0 auto;
}

.disaster-type-card {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 16px;
	padding: 2rem 1.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	transition: all 0.3s ease;
}

.disaster-type-card:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.25);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.disaster-icon {
	font-size: 2.5rem;
	margin-bottom: 0.5rem;
}

.disaster-type-card h4 {
	color: white;
	font-size: 1.1rem;
	font-weight: 600;
	margin: 0;
}

.disaster-cost {
	color: #4a9eff;
	font-size: 1.8rem;
	font-weight: 700;
}

.disaster-pct {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.85rem;
}

/* CTA Buttons */
.cta-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 2rem;
}

.cta-button {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 1rem 2rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.cta-button.primary {
	background: #ff6b35;
	color: white;
	box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.cta-button.primary:hover {
	background: #e55a28;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

.cta-button.secondary {
	background: rgba(255, 255, 255, 0.1);
	color: white;
	border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button.secondary:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.5);
	transform: translateY(-2px);
}

/* Progress Indicator */
.story-progress {
	position: fixed;
	right: 2rem;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	z-index: 100;
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.story-map-section:hover .story-progress,
.story-progress.visible {
	opacity: 1;
	pointer-events: auto;
}

.progress-bar {
	width: 4px;
	height: 150px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 2px;
	overflow: hidden;
}

.progress-fill {
	width: 100%;
	height: 0%;
	background: #ff6b35;
	border-radius: 2px;
	transition: height 0.3s ease;
}

.chapter-dots {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.chapter-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	cursor: pointer;
	transition: all 0.3s ease;
}

.chapter-dot:hover {
	background: rgba(255, 255, 255, 0.6);
	transform: scale(1.2);
}

.chapter-dot.active {
	background: #ff6b35;
	transform: scale(1.3);
	box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

/* Story Map Responsive */
@media (max-width: 1024px) {
	.story-header h2 {
		font-size: 2.5rem;
	}
	
	.chapter-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	
	.chapter-text {
		text-align: center;
	}
	
	.chapter-text h3 {
		font-size: 1.8rem;
	}
	
	.disaster-type-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.story-progress {
		display: none;
	}
}

@media (max-width: 768px) {
	.story-header h2 {
		font-size: 2rem;
	}
	
	.story-subtitle {
		font-size: 1.1rem;
	}
	
	.chapter-text h3 {
		font-size: 1.5rem;
	}
	
	.chapter-stat .stat-value {
		font-size: 2.5rem;
	}
	
	.visual-chart {
		gap: 0.75rem;
		padding: 1rem;
	}
	
	.bar {
		width: 35px;
	}
	
	.disaster-type-grid {
		grid-template-columns: 1fr;
		max-width: 300px;
	}
	
	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}
	
	.cta-button {
		width: 100%;
		max-width: 280px;
		justify-content: center;
	}
}

/* =====================================================
   END STORY MAP SECTION
   ===================================================== */

/* =====================================================
   USER PERSONAS SECTION
   ===================================================== */

.personas-section {
	background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
	padding: 5rem 2rem;
	position: relative;
}

.personas-container {
	max-width: 1000px;
	margin: 0 auto;
}

.personas-header {
	text-align: center;
	margin-bottom: 3rem;
}

.personas-header h2 {
	color: #1e3a5f;
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
}

.personas-subtitle {
	color: #64748b;
	font-size: 0.95rem;
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

/* Two-Column Layout */
.personas-layout {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 1.5rem;
	background: white;
	border-radius: 20px;
	padding: 1.5rem;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
	height: 380px;
	overflow: hidden;
}

/* Left Side: Persona List */
.persona-list {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	overflow-y: auto;
	overflow-x: hidden;
	padding-right: 0.5rem;
	height: 100%;
}

/* Custom scrollbar for persona list */
.persona-list::-webkit-scrollbar {
	width: 6px;
}

.persona-list::-webkit-scrollbar-track {
	background: #f1f5f9;
	border-radius: 3px;
}

.persona-list::-webkit-scrollbar-thumb {
	background: #cbd5e1;
	border-radius: 3px;
}

.persona-list::-webkit-scrollbar-thumb:hover {
	background: #94a3b8;
}

.persona-list-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.6rem 0.75rem;
	border: none;
	background: transparent;
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.25s ease;
	text-align: left;
	width: 100%;
	flex-shrink: 0;
}

.persona-list-item:hover {
	background: #f1f5f9;
}

.persona-list-item.active {
	background: linear-gradient(135deg, #2a5298 0%, #1e3a5f 100%);
	box-shadow: 0 4px 12px rgba(42, 82, 152, 0.3);
}

.persona-list-icon {
	width: 32px;
	height: 32px;
	background: #f1f5f9;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all 0.25s ease;
}

.persona-list-item.active .persona-list-icon {
	background: rgba(255, 255, 255, 0.2);
}

.persona-list-icon svg {
	width: 16px;
	height: 16px;
	color: #2a5298;
	transition: all 0.25s ease;
}

.persona-list-item.active .persona-list-icon svg {
	color: white;
}

.persona-list-info {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.persona-list-title {
	font-size: 0.85rem;
	font-weight: 600;
	color: #1e3a5f;
	transition: color 0.25s ease;
	line-height: 1.2;
}

.persona-list-item.active .persona-list-title {
	color: white;
}

.persona-list-subtitle {
	font-size: 0.7rem;
	color: #64748b;
	transition: color 0.25s ease;
	line-height: 1.2;
}

.persona-list-item.active .persona-list-subtitle {
	color: rgba(255, 255, 255, 0.8);
}

/* Right Side: Detail Card */
.persona-detail-container {
	position: relative;
	overflow: hidden;
	height: 100%;
}

.persona-detail {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #f8fafc;
	border: 2px solid #2a5298;
	border-radius: 16px;
	padding: 1.25rem;
	display: flex;
	flex-direction: column;
	opacity: 0;
	visibility: hidden;
	transform: translateX(10px);
	transition: all 0.3s ease;
	overflow: hidden;
}

.persona-detail.active {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
}

.persona-detail-header {
	margin-bottom: 1rem;
	flex-shrink: 0;
}

.persona-detail-header h3 {
	color: #1e3a5f;
	font-size: 1.25rem;
	font-weight: 700;
	margin: 0 0 0.25rem 0;
}

.persona-detail-subtitle {
	color: #64748b;
	font-size: 0.9rem;
	margin: 0;
}

.persona-detail-features {
	list-style: none;
	padding: 0;
	margin: 0 0 1rem 0;
	flex-grow: 1;
	overflow: hidden;
}

.persona-detail-features li {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: #475569;
	font-size: 0.85rem;
	padding: 0.4rem 0;
	border-bottom: 1px solid #e2e8f0;
}

.persona-detail-features li:last-child {
	border-bottom: none;
}

.persona-detail-features li::before {
	content: '';
	width: 8px;
	height: 8px;
	background: #2a5298;
	border-radius: 50%;
	flex-shrink: 0;
}

.persona-detail-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.6rem 1.5rem;
	background: linear-gradient(135deg, #2a5298 0%, #1e3a5f 100%);
	color: white;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	font-size: 0.85rem;
	transition: all 0.3s ease;
	text-align: center;
	flex-shrink: 0;
	margin-top: auto;
}

.persona-detail-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(42, 82, 152, 0.35);
}

.personas-footer {
	text-align: center;
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid #e2e8f0;
}

.personas-footer p {
	color: #64748b;
	font-size: 1rem;
}

.personas-footer a {
	color: #2a5298;
	font-weight: 600;
	text-decoration: none;
	transition: color 0.3s ease;
}

.personas-footer a:hover {
	color: #4a9eff;
	text-decoration: underline;
}

/* Personas Section Responsive */
@media (max-width: 900px) {
	.personas-layout {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	
	.persona-list {
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: flex-start;
		gap: 0.5rem;
		overflow-x: auto;
		overflow-y: visible;
		height: auto;
		padding-bottom: 0.5rem;
		-webkit-overflow-scrolling: touch;
	}
	
	.persona-list::-webkit-scrollbar {
		height: 4px;
	}
	
	.persona-list-item {
		flex: 0 0 auto;
		padding: 0.5rem 0.75rem;
		min-width: auto;
	}
	
	.persona-list-info {
		display: none;
	}
	
	.persona-list-icon {
		width: 40px;
		height: 40px;
	}
	
	.persona-detail-container {
		min-height: 300px;
	}
}

@media (max-width: 768px) {
	.personas-section {
		padding: 3rem 1rem;
	}
	
	.personas-header h2 {
		font-size: 1.5rem;
	}
	
	.personas-subtitle {
		font-size: 0.9rem;
	}
	
	.personas-layout {
		padding: 1rem;
	}
	
	.persona-list-icon {
		width: 36px;
		height: 36px;
	}
	
	.persona-detail {
		padding: 1.5rem;
	}
	
	.persona-detail-header h3 {
		font-size: 1.25rem;
	}
	
	.persona-detail-features li {
		font-size: 0.9rem;
		padding: 0.5rem 0;
	}
}

/* =====================================================
   END USER PERSONAS SECTION
   ===================================================== */

/* Responsive */
@media (max-width: 1024px) {
	.landing-main {
		grid-template-columns: 1fr;
	}
	
	.landing-text-box {
		margin-right: 0;
		padding: 3rem 2rem;
	}
	
	.landing-image-panel {
		min-height: 400px;
	}
}

/* =====================================================
   MOBILE RESPONSIVE STYLES
   ===================================================== */

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 44px;
	height: 44px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 8px;
	z-index: 1001;
}

.hamburger-line {
	display: block;
	width: 24px;
	height: 3px;
	background: white;
	border-radius: 2px;
	margin: 3px 0;
	transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
	transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
	opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
}

/* Tablet Breakpoint (900px) */
@media (max-width: 900px) {
	.mobile-menu-toggle {
		display: flex;
	}
	
	.landing-header {
		padding: 1rem 1.5rem;
		position: sticky;
		top: 0;
	}
	
	.landing-header .logo {
		font-size: 1.4rem;
	}
	
	/* Header icons stay in header flow on mobile */
	.landing-header .header-icons {
		position: static;
		margin-left: auto;
		margin-right: 0.75rem;
	}
	
	.landing-header .login-signup-link {
		margin-left: auto;
		margin-right: 0.75rem;
		font-size: 0.75rem;
	}
	
	.landing-header .header-icons .dashboard-icon {
		display: none;
	}
	
	.landing-header .nav-links {
		position: fixed;
		top: 0;
		right: -100%;
		width: 280px;
		height: 100vh;
		background: #1e3c72;
		flex-direction: column;
		align-items: flex-start;
		padding: 5rem 1.5rem 2rem;
		gap: 0;
		transition: right 0.3s ease;
		box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
		overflow-y: auto;
		z-index: 1001;
	}
	
	.landing-header .nav-links.active {
		right: 0;
	}
	
	.landing-header .nav-links > a,
	.landing-header .nav-links > .dropdown {
		width: 100%;
		padding: 1rem 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}
	
	.landing-header .nav-links > a {
		font-size: 1rem;
	}
	
	.landing-header .dropdown-toggle {
		width: 100%;
		justify-content: space-between;
	}
	
	.landing-header .dropdown-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		background: rgba(0, 0, 0, 0.1);
		margin-top: 0.5rem;
		padding: 0.5rem 0;
		display: none;
	}
	
	.landing-header .dropdown.active .dropdown-menu {
		display: block;
	}
	
	.landing-header .dropdown-menu a {
		color: white !important;
		padding: 0.75rem 1rem;
	}
	
	.landing-header .dropdown-menu a:hover {
		background: rgba(255, 255, 255, 0.1);
		color: white !important;
	}
	
	.profile-icon-container .profile-dropdown {
		right: -20px;
		width: 280px;
	}
	
	/* Mobile overlay */
	.mobile-nav-overlay {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.5);
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease;
		z-index: 1000;
	}
	
	.mobile-nav-overlay.active {
		opacity: 1;
		visibility: visible;
	}
	
	/* Hide the old pseudo-element overlay */
	.nav-links::before {
		display: none;
	}
	
	/* Carousel/Hero Section */
	.landing-main {
		min-height: 0;
		height: auto;
	}
	
	.slide-container {
		flex-direction: column;
		min-height: auto;
	}
	
	.slide {
		grid-template-columns: 1fr;
		grid-template-rows: auto auto;
		min-height: auto;
		height: auto;
	}
	
	.slide::before {
		display: none;
	}
	
	.landing-text-box {
		padding: 3rem 1.5rem;
		margin-right: 0;
		order: 1 !important;
	}
	
	.landing-text-box-content {
		margin-left: 0;
	}
	
	.slide-text-box h1,
	.landing-text-box h1 {
		font-size: 1.75rem;
	}
	
	.slide-text-box p,
	.landing-text-box p {
		font-size: 0.95rem;
	}
	
	.landing-image-panel {
		min-height: 250px;
		height: 250px;
		order: 2 !important;
	}
	
	/* Hide scroll buttons on mobile - use vertical scroll instead */
	.scroll-button-wrapper {
		display: none !important;
	}
	
	/* Hide info button on mobile */
	.info-button {
		display: none !important;
	}
	
	/* Make carousel show all slides vertically - FULL WIDTH FIX */
	.landing-main {
		overflow: visible;
		width: 100%;
		min-height: 0;
		height: auto;
	}
	
	.slide-container {
		flex-direction: column;
		transform: none !important;
		width: 100%;
		min-height: auto;
	}
	
	.slide {
		min-width: 100%;
		width: 100%;
		display: flex;
		flex-direction: column;
		grid-template-columns: 1fr;
	}
	
	.landing-text-box {
		width: 100%;
		min-width: 100%;
		padding: 2.5rem 1.5rem;
		margin: 0;
		order: 1 !important;
		box-sizing: border-box;
	}
	
	.landing-text-box::after {
		display: none !important;
	}
	
	.landing-text-box-content {
		max-width: 100%;
		width: 100%;
		margin: 0;
	}
	
	.landing-image-panel {
		width: 100%;
		min-width: 100%;
		min-height: 220px;
		height: 220px;
		order: 2 !important;
	}
	
	.landing-image-panel img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	
	/* Statistics Section */
	.statistics-section {
		padding: 3rem 1rem;
	}
	
	.statistics-container {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	
	.statistics-text {
		text-align: center;
	}
	
	.statistics-text .chevron-separator {
		text-align: center;
	}
	
	.statistics-section h2 {
		font-size: 1.75rem;
	}
	
	.statistics-text p {
		font-size: 1rem;
	}
	
	.statistics-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	
	.stat-item {
		width: 100%;
		padding: 2rem 1.5rem;
	}
	
	.stat-number {
		font-size: 2.5rem;
	}
	
	.stat-label {
		font-size: 0.9rem;
	}
	
	.statistics-cards {
		flex-direction: column;
		align-items: center;
		gap: 1.5rem;
	}
	
	.stat-card {
		width: 100%;
		max-width: 300px;
	}
	
	/* Personas Section - Mobile */
	.personas-section {
		padding: 2rem 1rem;
	}
	
	.personas-header h2 {
		font-size: 1.5rem;
	}
	
	.personas-subtitle {
		font-size: 0.9rem;
	}
	
	.personas-layout {
		grid-template-columns: 1fr;
		height: auto;
		max-height: none;
		gap: 1rem;
		padding: 1rem;
	}
	
	.persona-list {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 0.5rem;
		overflow-x: auto;
		overflow-y: hidden;
		padding-right: 0;
		padding-bottom: 0.5rem;
		max-height: none;
		height: auto;
	}
	
	.persona-list-item {
		flex: 0 0 auto;
		width: auto;
		min-width: fit-content;
		padding: 0.5rem 0.75rem;
	}
	
	.persona-list-info {
		display: none;
	}
	
	.persona-list-icon {
		margin: 0;
	}
	
	.persona-detail-container {
		height: 320px;
		position: relative;
	}
	
	.persona-detail {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		display: none;
	}
	
	.persona-detail.active {
		display: flex;
	}

	/* Data Sources Section */
	.data-sources-container {
		display: flex;
		flex-direction: column;
		gap: 0;
	}
	
	.data-sources-image {
		max-width: 100%;
		width: 100%;
		height: 250px;
		order: 1;
	}
	
	.data-sources-img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	
	.data-sources-text {
		order: 2;
		padding: 2rem 1.5rem;
	}
	
	.data-sources-text h2 {
		font-size: 1.75rem;
	}
	
	.data-sources-text p {
		font-size: 0.95rem;
	}
	
	/* Footer */
	.footer-content {
		flex-direction: column;
		gap: 2rem;
		text-align: center;
	}
	
	.footer-section ul {
		padding-left: 0;
	}
}

/* Mobile Breakpoint (576px) */
@media (max-width: 576px) {
	.landing-page::before {
		width: 4px;
	}
	
	.landing-header {
		padding: 0.75rem 1rem;
	}
	
	.landing-header .logo {
		font-size: 1.2rem;
	}
	
	.landing-header .nav-links {
		width: 100%;
		right: -100%;
	}
	
	.landing-header .nav-links.active {
		right: 0;
	}
	
	.header-icons {
		right: 55px;
		gap: 0.5rem;
	}
	
	.profile-icon,
	.dashboard-icon {
		width: 36px;
		height: 36px;
	}
	
	.profile-icon svg,
	.dashboard-icon svg {
		width: 20px;
		height: 20px;
	}
	
	.profile-dropdown {
		position: fixed;
		top: 60px;
		right: 10px;
		left: 10px;
		min-width: auto;
		width: auto;
	}
	
	/* Carousel/Hero Section */
	.slide-content {
		padding: 1.5rem;
	}
	
	.slide-text-box h1 {
		font-size: 1.5rem;
	}
	
	.slide-text-box p {
		font-size: 0.9rem;
	}
	
	.scroll-button-wrapper.up {
		bottom: 160px;
	}
	
	.scroll-button-wrapper.down {
		bottom: 70px;
	}
	
	.scroll-button {
		width: 44px;
		height: 44px;
	}
	
	/* Full width carousel slides */
	.landing-main,
	.slide-container,
	.slide,
	.landing-text-box,
	.landing-image-panel {
		width: 100% !important;
		min-width: 100% !important;
		max-width: 100% !important;
		box-sizing: border-box;
	}
	
	.landing-image-panel {
		min-height: 180px;
		height: 180px;
	}
	
	.landing-text-box {
		padding: 1.5rem 1rem;
	}
	
	.landing-text-box h1 {
		font-size: 1.35rem;
	}
	
	.landing-text-box p {
		font-size: 0.9rem;
	}
	
	/* Statistics Section */
	.statistics-section {
		padding: 2rem 1rem;
	}
	
	.statistics-section h2 {
		font-size: 1.5rem;
	}
	
	.stat-number {
		font-size: 2rem;
	}
	
	.stat-label {
		font-size: 0.9rem;
	}
	
	/* Skip Story Button Mobile */
	.skip-story-btn {
		top: 70px;
		right: 10px;
		padding: 0.5rem 0.8rem;
		font-size: 0.75rem;
	}
	
	.skip-story-btn svg {
		width: 14px;
		height: 14px;
	}
	
	/* Story Map Section */
	.story-header h2 {
		font-size: 1.75rem;
	}
	
	.story-subtitle {
		font-size: 1rem;
	}
	
	.chapter-text h3 {
		font-size: 1.25rem;
	}
	
	.chapter-stat .stat-value {
		font-size: 2rem;
	}
	
	.story-map-section {
		padding: 2rem 1rem;
	}
	
	.story-chapter {
		padding: 2rem 0;
	}
	
	/* Personas Section */
	.personas-section {
		padding: 2rem 1rem;
	}
	
	.personas-header h2 {
		font-size: 1.25rem;
	}
	
	.personas-subtitle {
		font-size: 0.85rem;
	}
	
	.personas-layout {
		grid-template-columns: 1fr;
		height: auto;
		max-height: none;
		gap: 1rem;
		padding: 0.75rem;
	}
	
	.persona-list {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		gap: 0.5rem;
		overflow-x: visible;
		overflow-y: visible;
		padding: 0;
		max-height: none;
		height: auto;
	}
	
	.persona-list-item {
		flex: 0 0 auto;
		width: auto;
		padding: 0.5rem;
	}
	
	.persona-list-info {
		display: none;
	}
	
	.persona-list-icon {
		width: 32px;
		height: 32px;
		margin: 0;
	}
	
	.persona-detail-container {
		height: 280px;
		position: relative;
	}
	
	.persona-detail {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		padding: 1rem;
		display: none;
	}
	
	.persona-detail.active {
		display: flex;
	}
	
	.persona-detail-header h3 {
		font-size: 1.1rem;
	}
	
	.persona-detail-features li {
		font-size: 0.8rem;
		padding: 0.3rem 0;
	}
	
	.persona-detail-cta {
		padding: 0.5rem 1rem;
		font-size: 0.8rem;
	}
	
	/* Data Sources Section */
	.data-sources-section {
		padding: 2rem 1rem;
	}
	
	.data-sources-image {
		height: 200px;
	}
	
	.data-sources-text {
		padding: 1.5rem 1rem;
	}
	
	.data-sources-text h2 {
		font-size: 1.5rem;
	}
	
	.data-sources-text p {
		font-size: 0.9rem;
	}
	
	/* Footer */
	.landing-footer {
		padding: 2rem 1rem;
	}
	
	.footer-section h3,
	.footer-section h4 {
		font-size: 1rem;
	}
	
	.footer-section p,
	.footer-section li {
		font-size: 0.85rem;
	}
}

/* ===== Footer Icon Styling ===== */
.footer-icon {
	width: 16px;
	height: 16px;
	vertical-align: middle;
	margin-right: 0.5rem;
	opacity: 0.9;
}

/* ===== Feedback Tab & Modal for Landing Page ===== */
.feedback-tab {
	position: fixed;
	right: -2px;
	top: 35%;
	transform: translateY(-50%) rotate(-90deg);
	transform-origin: bottom right;
	background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
	color: white;
	border: none;
	padding: 0.75rem 1.5rem;
	border-radius: 8px 8px 0 0;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.9rem;
	font-weight: 500;
	font-family: inherit;
	box-shadow: -2px 0 10px rgba(0, 0, 0, 0.15);
	transition: all 0.3s ease;
	z-index: 998;
	white-space: nowrap;
}

.feedback-tab:hover {
	background: linear-gradient(135deg, #1e3c72 0%, #0a1c3d 100%);
	padding-right: 1.5rem;
}

.feedback-tab svg {
	width: 18px;
	height: 18px;
}

.feedback-modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1001;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.feedback-modal-overlay.open {
	opacity: 1;
	visibility: visible;
}

.feedback-modal {
	background: white;
	border-radius: 12px;
	width: 90%;
	max-width: 500px;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	transform: translateY(20px) scale(0.95);
	transition: transform 0.3s ease;
}

.feedback-modal-overlay.open .feedback-modal {
	transform: translateY(0) scale(1);
}

.feedback-modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.25rem 1.5rem;
	background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
	color: white;
	border-radius: 12px 12px 0 0;
}

.feedback-modal-header h3 {
	margin: 0;
	font-size: 1.15rem;
	font-weight: 600;
}

.feedback-modal-close {
	background: rgba(255, 255, 255, 0.2);
	border: none;
	color: white;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	font-size: 1.5rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s;
}

.feedback-modal-close:hover {
	background: rgba(255, 255, 255, 0.3);
}

.feedback-form {
	padding: 1.5rem;
}

.feedback-type-selector {
	display: flex;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.feedback-type-option {
	flex: 1;
	cursor: pointer;
}

.feedback-type-option input {
	display: none;
}

.feedback-type-label {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.875rem 1rem;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	font-weight: 500;
	color: #666;
	transition: all 0.2s;
}

.feedback-type-label svg {
	width: 20px;
	height: 20px;
}

.feedback-type-option input:checked + .feedback-type-label {
	border-color: #2a5298;
	background: rgba(42, 82, 152, 0.05);
	color: #2a5298;
}

.feedback-type-option:hover .feedback-type-label {
	border-color: #2a5298;
}

.feedback-form-group {
	margin-bottom: 1.25rem;
}

.feedback-form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
	color: #333;
	font-size: 0.9rem;
}

.feedback-form-group input,
.feedback-form-group textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 0.95rem;
	font-family: inherit;
	transition: border-color 0.2s, box-shadow 0.2s;
	box-sizing: border-box;
}

.feedback-form-group input:focus,
.feedback-form-group textarea:focus {
	outline: none;
	border-color: #2a5298;
	box-shadow: 0 0 0 3px rgba(42, 82, 152, 0.1);
}

.feedback-form-group input[readonly] {
	background: #f5f5f5;
	color: #666;
}

.feedback-form-group textarea {
	resize: vertical;
	min-height: 100px;
}

.feedback-form-actions {
	display: flex;
	gap: 1rem;
	justify-content: flex-end;
	margin-top: 1.5rem;
	padding-top: 1rem;
	border-top: 1px solid #eee;
}

.feedback-btn-cancel {
	padding: 0.75rem 1.5rem;
	background: #f5f5f5;
	border: 1px solid #ddd;
	border-radius: 8px;
	color: #666;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s;
}

.feedback-btn-cancel:hover {
	background: #eee;
}

.feedback-btn-submit {
	padding: 0.75rem 1.5rem;
	background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
	border: none;
	border-radius: 8px;
	color: white;
	font-weight: 500;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.2s;
}

.feedback-btn-submit:hover {
	background: linear-gradient(135deg, #1e3c72 0%, #0a1c3d 100%);
	transform: translateY(-1px);
}

.feedback-btn-submit svg {
	width: 18px;
	height: 18px;
}

.feedback-success {
	padding: 3rem 2rem;
	text-align: center;
}

.feedback-success svg {
	width: 64px;
	height: 64px;
	color: #4caf50;
	margin-bottom: 1rem;
}

.feedback-success h4 {
	margin: 0 0 0.5rem 0;
	font-size: 1.25rem;
	color: #333;
}

.feedback-success p {
	margin: 0;
	color: #666;
}

/* Contact Modal - reuses feedback modal styles */
.contact-modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1001;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.contact-modal-overlay.open {
	opacity: 1;
	visibility: visible;
}

.contact-modal-overlay.open .feedback-modal {
	transform: translateY(0) scale(1);
}

/* Required field indicator */
.required {
	color: #dc3545;
}

@media (max-width: 768px) {
	.feedback-tab {
		right: -2px;
		top: auto;
		bottom: 200px;
		transform: rotate(-90deg);
		transform-origin: bottom right;
		padding: 0.6rem 1rem;
		font-size: 0.85rem;
	}
}

@media (max-width: 480px) {
	.feedback-tab {
		bottom: 180px;
		padding: 0.5rem 0.75rem;
		font-size: 0.75rem;
	}
	
	.feedback-tab span {
		display: inline;
	}
	
	.feedback-tab svg {
		width: 14px;
		height: 14px;
	}
	
	.feedback-modal {
		width: 95%;
		max-height: 85vh;
	}
	
	.feedback-type-selector {
		flex-direction: column;
		gap: 0.75rem;
	}
	
	.feedback-form-actions {
		flex-direction: column-reverse;
	}
	
	.feedback-btn-cancel,
	.feedback-btn-submit {
		width: 100%;
		justify-content: center;
	}
}