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 */
.landing-header {
	background: #1e3c72;
	color: white;
	padding: 1.5rem 2.5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	z-index: 100;
	box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.landing-header .logo {
	font-size: 1.75rem;
	font-weight: 700;
	color: white;
	text-decoration: none;
}

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

.landing-header .nav-links a {
	color: white;
	text-decoration: none;
	font-weight: 500;
	font-size: 1.1rem;
	display: flex;
	align-items: center;
	gap: 0.25rem;
	transition: opacity 0.2s;
}

.landing-header .nav-links a:hover {
	opacity: 0.8;
}

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

/* 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 */
.dropdown {
	position: relative;
}

.dropdown-toggle {
	cursor: pointer;
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background: white;
	min-width: 200px;
	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.5rem;
}

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

.dropdown-menu a {
	display: block;
	padding: 0.75rem 1.5rem;
	color: #000 !important;
	text-decoration: none;
	font-weight: 500;
	font-size: 0.9rem;
	transition: background 0.2s;
	background: white;
}

.dropdown-menu a:hover {
	background: #f0f0f0;
	color: #000 !important;
}

.dropdown-menu a:visited,
.dropdown-menu a:link {
	color: #000 !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: calc(100vh - 100px);
	overflow: hidden;
	width: 100%;
}

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

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

/* Vertical vignette between panels - fluid and natural */
.slide::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 600px;
	height: 100%;
	background: linear-gradient(
		to right,
		rgba(0, 0, 0, 0) 0%,
		rgba(0, 0, 0, 0.05) 10%,
		rgba(0, 0, 0, 0.15) 20%,
		rgba(0, 0, 0, 0.3) 30%,
		rgba(0, 0, 0, 0.5) 40%,
		rgba(0, 0, 0, 0.7) 50%,
		rgba(0, 0, 0, 0.5) 60%,
		rgba(0, 0, 0, 0.3) 70%,
		rgba(0, 0, 0, 0.15) 80%,
		rgba(0, 0, 0, 0.05) 90%,
		rgba(0, 0, 0, 0) 100%
	);
	pointer-events: none;
	z-index: 15;
}

/* 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: flex-start;
	position: relative;
	z-index: 10;
	box-shadow: 4px 0 12px rgba(0,0,0,0.1);
	margin-right: -2rem;
}

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

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

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

.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: 0;
	text-align: left;
}

.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;
}

/* 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 */
}

/* Background image */
.hurricane-bg-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: 0;
	display: block;
	min-width: 100%;
	min-height: 100%;
}

/* Overlay gradient - lighter so image shows through */
.landing-image-panel::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(30, 60, 114, 0.15) 0%, rgba(42, 82, 152, 0.2) 100%);
	z-index: 1;
	pointer-events: none; /* Allow clicks through overlay */
}

/* 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 */
.landing-footer {
	background: #1e3c72;
	color: white;
	padding: 3rem 2rem 1rem;
}

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

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

.footer-section h4 {
	font-size: 1.1rem;
	margin-bottom: 1rem;
	color: white;
	text-transform: uppercase;
	letter-spacing: 0.05rem;
}

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

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

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

.footer-section ul li a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: color 0.2s;
}

.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.2);
	text-align: center;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9rem;
}

/* 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;
	}
}

/* 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;
	}
}