/* UV INDEX NOW — PREMIUM LANDING PAGE
   Design: Warm solar luxury — deep cosmos to golden light */
:root {
	--navy-deep: #060a14;
	--navy: #0c1425;
	--navy-mid: #111b32;
	--slate: #1e293b;
	--amber: #f59e0b;
	--amber-dark: #d97706;
	--amber-light: #fbbf24;
	--amber-pale: #fef3c7;
	--surface: #f9fafb;
	--card: #fff;
	--text: #0f172a;
	--text-mid: #475569;
	--text-light: #94a3b8;
	--border: rgba(226, 232, 240, 0.55);
	--glass: rgba(255, 255, 255, 0.06);
	--glass-border: rgba(255, 255, 255, 0.08);
	--radius: 20px;
	--radius-lg: 28px;
}

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

html {
	scroll-behavior: smooth
}

html,
body,
#root {
	width: 100%;
	max-width: 100vw;
	overflow-x: hidden
}

body {
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	color: var(--text);
	-webkit-font-smoothing: antialiased;
	background: var(--surface)
}

/* --- KEYFRAMES --- */
@keyframes spin {
	to {
		transform: rotate(360deg)
	}
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(22px)
	}

	to {
		opacity: 1;
		transform: none
	}
}

@keyframes fadeIn {
	from {
		opacity: 0
	}

	to {
		opacity: 1
	}
}

@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-12px)
	}

	to {
		opacity: 1;
		transform: none
	}
}

@keyframes pulse-glow {

	0%,
	100% {
		box-shadow: 0 0 24px rgba(245, 158, 11, 0.12)
	}

	50% {
		box-shadow: 0 0 48px rgba(245, 158, 11, 0.25)
	}
}

@keyframes sun-rotate {
	from {
		transform: rotate(0deg)
	}

	to {
		transform: rotate(360deg)
	}
}

@keyframes sun-pulse {

	0%,
	100% {
		transform: scale(1);
		opacity: 1
	}

	50% {
		transform: scale(1.08);
		opacity: 0.85
	}
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0)
	}

	50% {
		transform: translateY(-8px)
	}
}

@keyframes ray-spin {
	from {
		transform: rotate(0deg)
	}

	to {
		transform: rotate(360deg)
	}
}

@keyframes scroll-bounce {

	0%,
	100% {
		transform: translateY(0)
	}

	50% {
		transform: translateY(6px)
	}
}

/* HERO LANDING — FULL-BLEED ABOVE THE APP */
.hero-landing {
	position: relative;
	min-height: 92vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 60px 24px 48px;
	overflow: hidden;
	background:
		radial-gradient(ellipse 80% 50% at 50% 30%, rgba(245, 158, 11, 0.07) 0%, transparent 60%),
		radial-gradient(ellipse 50% 40% at 75% 20%, rgba(99, 102, 241, 0.04) 0%, transparent 50%),
		radial-gradient(ellipse 40% 50% at 25% 60%, rgba(245, 158, 11, 0.03) 0%, transparent 50%),
		linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-mid) 100%)
}

.hero-landing::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
	pointer-events: none
}

/* Animated sun decoration */
.hero-sun {
	position: relative;
	width: 140px;
	height: 140px;
	margin: 0 auto 36px;
	animation: float 5s ease-in-out infinite
}

.hero-sun-core {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: radial-gradient(circle, #fbbf24 0%, #f59e0b 60%, #d97706 100%);
	transform: translate(-50%, -50%);
	box-shadow: 0 0 40px rgba(251, 191, 36, 0.4), 0 0 80px rgba(245, 158, 11, 0.2);
	animation: sun-pulse 3s ease-in-out infinite
}

.hero-sun-rays {
	position: absolute;
	inset: 0;
	animation: ray-spin 30s linear infinite
}

.hero-sun-rays::before,
.hero-sun-rays::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 120px;
	height: 120px;
	border: 2px solid rgba(251, 191, 36, 0.12);
	border-radius: 50%;
	transform: translate(-50%, -50%)
}

.hero-sun-rays::after {
	width: 100px;
	height: 100px;
	border-color: rgba(251, 191, 36, 0.08);
	border-style: dashed
}

.hero-sun-ray {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 2px;
	height: 18px;
	background: linear-gradient(to top, transparent, rgba(251, 191, 36, 0.3));
	transform-origin: center 50px;
	border-radius: 2px
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 18px;
	border-radius: 100px;
	background: rgba(245, 158, 11, 0.08);
	border: 1px solid rgba(245, 158, 11, 0.15);
	color: var(--amber-light);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	margin-bottom: 28px;
	animation: fadeUp .6s ease both;
	animation-delay: .1s;
	backdrop-filter: blur(8px)
}

.hero-badge-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--amber);
	animation: sun-pulse 2s ease-in-out infinite
}

.hero-h1 {
	font-family: 'Outfit', sans-serif;
	font-size: clamp(32px, 6vw, 64px);
	font-weight: 900;
	line-height: 1.08;
	letter-spacing: -1.5px;
	margin-bottom: 18px;
	animation: fadeUp .7s ease both;
	animation-delay: .2s
}

.hero-h1-line1 {
	display: block;
	background: linear-gradient(135deg, #fff 20%, rgba(255, 255, 255, 0.7) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text
}

.hero-h1-line2 {
	display: block;
	background: linear-gradient(135deg, var(--amber-light) 0%, var(--amber) 50%, #ef8b00 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text
}

.hero-sub {
	font-size: clamp(15px, 2vw, 19px);
	color: rgba(255, 255, 255, 0.45);
	line-height: 1.7;
	max-width: 540px;
	margin: 0 auto 36px;
	animation: fadeUp .7s ease both;
	animation-delay: .35s
}

.hero-cta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	animation: fadeUp .7s ease both;
	animation-delay: .5s
}

.hero-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 16px 32px;
	border-radius: 16px;
	border: none;
	background: linear-gradient(135deg, var(--amber), var(--amber-dark));
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	font-family: 'DM Sans', sans-serif;
	cursor: pointer;
	transition: all .25s;
	box-shadow: 0 4px 20px rgba(245, 158, 11, 0.35), 0 0 0 0 rgba(245, 158, 11, 0);
	text-decoration: none
}

.hero-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 32px rgba(245, 158, 11, 0.45), 0 0 0 4px rgba(245, 158, 11, 0.1)
}

.hero-cta-ghost {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 16px 28px;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.04);
	color: rgba(255, 255, 255, 0.7);
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: all .25s;
	font-family: 'DM Sans', sans-serif;
	text-decoration: none;
	backdrop-filter: blur(8px)
}

.hero-cta-ghost:hover {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.45)
}

/* Feature pills under CTA */
.hero-features {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin-top: 40px;
	animation: fadeUp .7s ease both;
	animation-delay: .65s
}

.hero-pill {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 8px 16px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.07);
	font-size: 12px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(4px)
}

.hero-pill svg {
	width: 14px;
	height: 14px;
	opacity: .6
}

/* Scroll indicator */
.hero-scroll {
	position: absolute;
	bottom: 28px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	color: rgba(255, 255, 255, 0.25);
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
	animation: fadeIn 1s ease both;
	animation-delay: 1.2s
}

.hero-scroll-arrow {
	width: 20px;
	height: 20px;
	border-right: 2px solid rgba(255, 255, 255, 0.2);
	border-bottom: 2px solid rgba(255, 255, 255, 0.2);
	transform: rotate(45deg);
	animation: scroll-bounce 2s ease-in-out infinite
}

/* TRUST STRIP — BETWEEN HERO AND APP */
.trust-strip {
	background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy-deep) 100%);
	padding: 24px 20px;
	border-bottom: 1px solid rgba(245, 158, 11, 0.08)
}

.trust-strip-inner {
	max-width: 900px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	gap: 12px 20px;
	justify-content: center;
	align-items: center
}

.trust-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.4);
	font-weight: 500
}

.trust-item svg {
	width: 16px;
	height: 16px;
	color: var(--amber);
	opacity: .7
}

.trust-sep {
	width: 1px;
	height: 16px;
	background: rgba(255, 255, 255, 0.08)
}

/* REACT APP — PREMIUM INNER STYLING
   Every tool section polished to match the marketing wrapper */
.app {
	min-height: auto !important;
	background:
		radial-gradient(ellipse 80% 60% at 50% 0%, rgba(245, 158, 11, 0.06) 0%, transparent 50%),
		linear-gradient(180deg,
			var(--navy-deep) 0%,
			var(--navy) 100px,
			var(--navy-mid) 260px,
			#1a2540 280px,
			var(--surface) 281px) !important
}

.wrap {
	width: 100%;
	max-width: 560px;
	margin: 0 auto;
	padding: 12px 18px 40px;
	overflow-x: hidden
}

/* ─── CARDS — Glass depth with subtle warmth ─── */
.card {
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid rgba(226, 232, 240, 0.45);
	border-radius: 22px;
	padding: 26px 22px;
	margin-bottom: 14px;
	overflow: hidden;
	box-shadow:
		0 1px 2px rgba(0, 0, 0, 0.02),
		0 4px 16px rgba(0, 0, 0, 0.025),
		0 12px 40px rgba(0, 0, 0, 0.02);
	animation: fadeUp .5s ease both;
	transition: box-shadow .35s, transform .35s, border-color .35s
}

.card:hover {
	box-shadow:
		0 4px 12px rgba(0, 0, 0, 0.04),
		0 16px 48px rgba(0, 0, 0, 0.05),
		0 0 0 1px rgba(245, 158, 11, 0.06);
	transform: translateY(-3px);
	border-color: rgba(245, 158, 11, 0.12)
}

/* ─── HEADER — Compact since hero is above ─── */
.header {
	text-align: center;
	margin-bottom: 28px;
	padding-top: 16px
}

.logo-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px
}

.logo-text {
	font-size: 26px;
	font-weight: 900;
	font-family: 'Outfit', sans-serif;
	background: linear-gradient(135deg, #fff 20%, var(--amber-light) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: -0.5px
}

.header-sub {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.4);
	margin-top: 5px;
	letter-spacing: 0.4px
}

/* ─── SEARCH — Premium glass input ─── */
.search-row {
	display: flex;
	gap: 7px;
	margin-bottom: 24px
}

.search-input {
	flex: 1;
	min-width: 0;
	padding: 15px 17px;
	border-radius: 15px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.05);
	color: #fff;
	font-size: 14px;
	outline: none;
	font-family: inherit;
	transition: all .3s;
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px)
}

.search-input:focus {
	border-color: rgba(245, 158, 11, 0.4);
	background: rgba(255, 255, 255, 0.1);
	box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.08), 0 4px 20px rgba(0, 0, 0, 0.15)
}

.search-input::placeholder {
	color: rgba(255, 255, 255, 0.25)
}

.btn-fill {
	padding: 15px 24px;
	border-radius: 15px;
	border: none;
	background: linear-gradient(135deg, var(--amber), var(--amber-dark));
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	white-space: nowrap;
	transition: all .25s;
	box-shadow: 0 2px 12px rgba(245, 158, 11, 0.35)
}

.btn-fill:hover {
	box-shadow: 0 6px 24px rgba(245, 158, 11, 0.45);
	transform: translateY(-2px)
}

.btn-icon {
	padding: 15px 16px;
	border-radius: 15px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.05);
	color: rgba(255, 255, 255, 0.5);
	font-size: 15px;
	cursor: pointer;
	flex-shrink: 0;
	transition: all .25s;
	backdrop-filter: blur(10px)
}

.btn-icon:hover {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.15)
}

/* ─── UV HERO — The centerpiece ─── */
.uv-hero {
	background: linear-gradient(155deg, #ffffff 0%, #fffcf5 50%, #fff9eb 100%) !important;
	border: none !important;
	box-shadow:
		0 1px 3px rgba(0, 0, 0, 0.03),
		0 8px 30px rgba(0, 0, 0, 0.06),
		0 0 0 1px rgba(245, 158, 11, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
	border-radius: 26px !important;
	padding: 30px 24px !important;
	animation: pulse-glow 5s ease-in-out infinite;
	position: relative;
	overflow: visible !important
}

.uv-hero::after {
	content: '';
	position: absolute;
	inset: -1px;
	border-radius: 27px;
	background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(245, 158, 11, 0.05), rgba(251, 191, 36, 0.1));
	z-index: -1;
	filter: blur(1px)
}

.uv-inner {
	display: flex;
	flex-direction: column;
	gap: 22px
}

.uv-left {
	text-align: center
}

.uv-right {}

.spinner {
	width: 40px;
	height: 40px;
	border: 3px solid rgba(245, 158, 11, 0.15);
	border-top-color: var(--amber);
	border-radius: 50%;
	animation: spin .7s linear infinite;
	margin: 0 auto
}

/* UV Scale */
.scale-bar {
	display: flex;
	gap: 2px;
	border-radius: 10px;
	overflow: hidden;
	height: 8px;
	margin: 18px 0 6px;
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.06)
}

.scale-labels {
	display: flex;
	justify-content: space-between;
	font-size: 9px;
	color: var(--text-light);
	font-weight: 600;
	letter-spacing: 0.3px
}

/* Advice box */
.advice {
	padding: 18px 20px;
	border-radius: 16px;
	border: 1px solid;
	backdrop-filter: blur(8px);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02)
}

.scale-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 7px 0;
	transition: all .2s;
	border-radius: 8px
}

.scale-item:hover {
	background: rgba(0, 0, 0, 0.015);
	padding-left: 4px;
	padding-right: 4px
}

.scale-badge {
	width: 40px;
	height: 28px;
	border-radius: 9px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	font-weight: 800;
	font-family: 'Outfit', sans-serif;
	flex-shrink: 0;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06)
}

/* ─── FORECASTS — Clean and spacious ─── */
.forecast-grid {
	display: flex;
	flex-direction: column;
	gap: 0
}

/* Hourly scroll */
.h-scroll {
	display: flex;
	gap: 6px;
	overflow-x: auto;
	padding-bottom: 8px;
	-webkit-overflow-scrolling: touch;
	mask-image: linear-gradient(to right, transparent 0px, black 8px, black calc(100% - 8px), transparent 100%);
	-webkit-mask-image: linear-gradient(to right, transparent 0px, black 8px, black calc(100% - 8px), transparent 100%)
}

.h-scroll::-webkit-scrollbar {
	height: 3px
}

.h-scroll::-webkit-scrollbar-thumb {
	background: rgba(148, 163, 184, 0.3);
	border-radius: 3px
}

.h-item {
	min-width: 52px;
	padding: 14px 6px;
	border-radius: 16px;
	text-align: center;
	background: rgba(248, 250, 252, 0.8);
	flex-shrink: 0;
	transition: all .25s;
	border: 1px solid transparent
}

.h-item:hover {
	background: #f1f5f9;
	border-color: #e2e8f0
}

.h-now {
	background: linear-gradient(145deg, #fef3c7, #fde68a) !important;
	border-color: #fbbf24 !important;
	box-shadow: 0 2px 12px rgba(245, 158, 11, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.5)
}

.h-time {
	display: block;
	font-size: 10px;
	color: var(--text-light);
	margin-bottom: 7px;
	font-weight: 500
}

.h-dot {
	display: block;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	margin: 0 auto 7px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1)
}

.h-val {
	font-size: 17px;
	font-weight: 700;
	font-family: 'Outfit', sans-serif
}

/* Weekly rows */
.wk-row {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 4px;
	border-bottom: 1px solid rgba(241, 245, 249, 0.8);
	transition: background .2s;
	border-radius: 8px
}

.wk-row:hover {
	background: rgba(248, 250, 252, 0.6)
}

.wk-row:last-child {
	border-bottom: none
}

.wk-day {
	width: 48px;
	font-size: 13px;
	flex-shrink: 0;
	font-weight: 500
}

.wk-bar {
	flex: 1;
	height: 7px;
	border-radius: 4px;
	background: rgba(241, 245, 249, 0.9);
	overflow: hidden;
	min-width: 0;
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04)
}

.wk-num {
	width: 26px;
	font-size: 18px;
	font-weight: 700;
	text-align: right;
	font-family: 'Outfit', sans-serif;
	flex-shrink: 0
}

.wk-lbl {
	width: 60px;
	font-size: 11px;
	text-align: right;
	flex-shrink: 0;
	opacity: .85;
	font-weight: 600
}

/* ─── SECTION TITLES — Refined ─── */
.sec-title {
	font-size: 21px;
	font-weight: 800;
	color: var(--text);
	margin-bottom: 12px;
	font-family: 'Outfit', sans-serif;
	letter-spacing: -0.4px;
	position: relative;
	padding-bottom: 0
}

/* ─── SKIN / BURN CALCULATOR — Polished ─── */
.skin-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px
}

.skin-btn {
	display: flex;
	gap: 10px;
	align-items: center;
	padding: 14px 13px;
	border-radius: 16px;
	border: 1.5px solid rgba(226, 232, 240, 0.7);
	background: rgba(255, 255, 255, 0.9);
	cursor: pointer;
	text-align: left;
	transition: all .25s
}

.skin-btn:hover {
	border-color: #cbd5e1;
	background: #fff;
	transform: translateY(-2px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04)
}

.skin-btn.active {
	border-color: var(--amber) !important;
	background: linear-gradient(135deg, #fffbeb, #fef3c7) !important;
	box-shadow: 0 2px 12px rgba(245, 158, 11, 0.12), 0 0 0 3px rgba(245, 158, 11, 0.06)
}

.skin-dot {
	width: 34px;
	height: 34px;
	border-radius: 11px;
	flex-shrink: 0;
	border: 2px solid rgba(0, 0, 0, 0.06);
	box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.08)
}

.burn-results {
	margin-top: 18px;
	padding: 22px;
	border-radius: 20px;
	background: linear-gradient(135deg, #f8fafc, #f1f5f9);
	border: 1px solid rgba(226, 232, 240, 0.6);
	animation: fadeUp .3s ease;
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.02)
}

.burn-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px
}

.burn-card {
	padding: 18px 14px;
	border-radius: 16px;
	text-align: center;
	background: #fff;
	border: 1px solid rgba(226, 232, 240, 0.5);
	transition: all .25s;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02)
}

.burn-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04)
}

.burn-num {
	font-size: 32px;
	font-weight: 800;
	font-family: 'Outfit', sans-serif
}

/* ─── PRODUCT CARDS — E-commerce feel ─── */
.prod-list {
	display: flex;
	flex-direction: column;
	gap: 8px
}

.prod-card {
	display: block;
	padding: 18px 20px;
	border-radius: 18px;
	background: rgba(248, 250, 252, 0.8);
	border: 1px solid rgba(226, 232, 240, 0.5);
	text-decoration: none;
	transition: all .3s;
	position: relative;
	overflow: hidden
}

.prod-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--amber-light), var(--amber));
	opacity: 0;
	transition: opacity .3s
}

.prod-card:hover {
	background: #fff;
	border-color: rgba(245, 158, 11, 0.2);
	box-shadow: 0 4px 20px rgba(245, 158, 11, 0.08), 0 1px 3px rgba(0, 0, 0, 0.03);
	transform: translateY(-3px)
}

.prod-card:hover::before {
	opacity: 1
}

.prod-badge {
	font-size: 9px;
	font-weight: 700;
	color: #92400e;
	background: linear-gradient(135deg, #fef3c7, #fde68a);
	padding: 4px 10px;
	border-radius: 8px;
	text-transform: uppercase;
	letter-spacing: .6px;
	box-shadow: 0 1px 3px rgba(245, 158, 11, 0.1)
}

.mid-grid {
	display: flex;
	flex-direction: column;
	gap: 0
}

/* ─── GUIDE BUTTONS — Card-like ─── */
.guide-btn {
	display: flex;
	width: 100%;
	padding: 18px 20px;
	border-radius: 16px;
	text-align: left;
	background: rgba(248, 250, 252, 0.8);
	border: 1px solid rgba(226, 232, 240, 0.5);
	cursor: pointer;
	margin-bottom: 8px;
	transition: all .3s;
	align-items: center;
	justify-content: space-between
}

.guide-btn:hover {
	background: #fff;
	border-color: rgba(245, 158, 11, 0.2);
	box-shadow: 0 4px 20px rgba(245, 158, 11, 0.06);
	transform: translateY(-2px)
}

/* ─── FAQ — Accordion polish ─── */
.faq-item {
	border-radius: 16px;
	margin-bottom: 6px;
	background: rgba(248, 250, 252, 0.8);
	border: 1px solid rgba(226, 232, 240, 0.5);
	overflow: hidden;
	transition: all .3s
}

.faq-item.open {
	background: #fff;
	border-color: rgba(245, 158, 11, 0.2);
	box-shadow: 0 4px 24px rgba(245, 158, 11, 0.06), 0 0 0 1px rgba(245, 158, 11, 0.04)
}

.faq-btn {
	width: 100%;
	padding: 18px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	font-size: 14px;
	font-weight: 600;
	color: #334155;
	font-family: inherit;
	gap: 14px;
	transition: color .2s
}

.faq-btn:hover {
	color: var(--text)
}

.faq-answer {
	padding: 0 20px 18px;
	font-size: 13.5px;
	line-height: 1.85;
	color: var(--text-mid)
}

/* ─── CITY TAGS — Premium pills ─── */
.city-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 7px
}

.city-btn {
	padding: 9px 16px;
	border-radius: 12px;
	border: 1px solid rgba(226, 232, 240, 0.6);
	background: rgba(255, 255, 255, 0.9);
	color: #64748b;
	font-size: 12px;
	font-weight: 500;
	cursor: pointer;
	font-family: inherit;
	transition: all .3s;
	text-decoration: none
}

.city-btn:hover {
	background: linear-gradient(135deg, #fffbeb, #fef3c7);
	color: #92400e;
	border-color: rgba(245, 158, 11, 0.3);
	transform: translateY(-3px);
	box-shadow: 0 6px 16px rgba(245, 158, 11, 0.1)
}

/* ─── BUTTONS ─── */
.btn-primary {
	padding: 13px 26px;
	border-radius: 14px;
	border: none;
	background: linear-gradient(135deg, var(--amber), var(--amber-dark));
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	transition: all .25s;
	box-shadow: 0 2px 14px rgba(245, 158, 11, 0.3)
}

.btn-primary:hover {
	box-shadow: 0 6px 24px rgba(245, 158, 11, 0.45);
	transform: translateY(-2px)
}

.btn-outline {
	padding: 13px 24px;
	border-radius: 14px;
	border: 1px solid rgba(226, 232, 240, 0.6);
	background: rgba(255, 255, 255, 0.9);
	color: #64748b;
	font-size: 13px;
	cursor: pointer;
	font-family: inherit;
	transition: all .25s
}

.btn-outline:hover {
	background: #fff;
	color: #334155;
	border-color: #cbd5e1;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04)
}

/* ─── COOKIE BAR ─── */
.cookie-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 99999;
	background: linear-gradient(135deg, var(--navy-deep), var(--navy));
	border-top: 2px solid rgba(245, 158, 11, 0.2);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	padding: 22px 28px;
	box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.25), 0 -2px 8px rgba(0, 0, 0, 0.1);
	animation: fadeUp .4s ease;
	color: rgba(255, 255, 255, 0.7);
	font-size: 13px;
	line-height: 1.6
}

.cookie-bar * {
	color: inherit
}

.cookie-bar a {
	color: var(--amber-light);
	text-decoration: underline;
	text-underline-offset: 2px
}

.cookie-bar button,
.cookie-bar [onclick] {
	background: linear-gradient(135deg, var(--amber), var(--amber-dark)) !important;
	color: #fff !important;
	border: none !important;
	padding: 10px 24px !important;
	border-radius: 10px !important;
	font-weight: 700 !important;
	font-size: 13px !important;
	cursor: pointer !important;
	font-family: 'DM Sans', sans-serif !important;
	box-shadow: 0 2px 12px rgba(245, 158, 11, 0.3) !important;
	transition: all .2s !important
}

.cookie-bar button:hover,
.cookie-bar [onclick]:hover {
	box-shadow: 0 4px 20px rgba(245, 158, 11, 0.45) !important;
	transform: translateY(-1px) !important
}


/* ─── GUIDE VIEW — Full-width clean layout when guide is active ─── */
.app .wrap .btn-outline:first-child {
	margin-bottom: 20px;
	border-color: rgba(255, 255, 255, 0.15);
	color: rgba(255, 255, 255, 0.6);
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(8px)
}

.app .wrap .btn-outline:first-child:hover {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.25)
}

/* ─── Logo clickable treatment ─── */
.logo-row {
	transition: opacity .2s
}

.logo-row:hover {
	opacity: 0.8
}

/* ─── HIDE REDUNDANT REACT SECTIONS (marketing wrapper handles these) ─── */
.hero-landing~#root .app .header {
	display: none !important
}

.hero-landing~#root .app .footer {
	display: none !important
}

.hero-landing~#root .app .wrap {
	padding-top: 8px
}

/* ─── INTERNAL FOOTER — Subtle since marketing footer exists ─── */
.footer {
	text-align: center;
	padding: 24px 0 0;
	font-size: 10px;
	color: var(--text-light);
	line-height: 1.8;
	opacity: 0.7
}

/* MARKETING SECTIONS — BELOW THE APP */
.mkt-section {
	padding: 80px 24px;
	position: relative
}

.mkt-inner {
	max-width: 1080px;
	margin: 0 auto
}

.mkt-label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--amber-dark);
	margin-bottom: 12px
}

.mkt-h2 {
	font-family: 'Outfit', sans-serif;
	font-size: clamp(26px, 4vw, 42px);
	font-weight: 900;
	letter-spacing: -1px;
	line-height: 1.15;
	color: var(--text);
	margin-bottom: 12px
}

.mkt-sub {
	font-size: 16px;
	color: var(--text-mid);
	line-height: 1.7;
	max-width: 560px;
	margin-bottom: 40px
}

/* Feature cards grid */
.feat-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px
}

.feat-card {
	padding: 32px 26px;
	border-radius: var(--radius);
	background: var(--card);
	border: 1px solid var(--border);
	transition: all .3s;
	position: relative;
	overflow: hidden
}

.feat-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--amber-light), var(--amber), var(--amber-dark));
	opacity: 0;
	transition: opacity .3s
}

.feat-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(245, 158, 11, 0.1)
}

.feat-card:hover::before {
	opacity: 1
}

.feat-icon {
	width: 48px;
	height: 48px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	font-size: 22px
}

.feat-card h3 {
	font-family: 'Outfit', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 6px
}

.feat-card p {
	font-size: 14px;
	color: var(--text-mid);
	line-height: 1.7;
	margin: 0
}

/* How it works */
.how-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	counter-reset: step
}

.how-step {
	display: flex;
	gap: 20px;
	padding: 28px 0;
	border-bottom: 1px solid #e2e8f0;
	position: relative;
	counter-increment: step
}

.how-step:last-child {
	border-bottom: none
}

.how-num {
	width: 48px;
	height: 48px;
	border-radius: 14px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Outfit', sans-serif;
	font-size: 20px;
	font-weight: 800;
	background: linear-gradient(135deg, var(--amber-pale), #fde68a);
	color: var(--amber-dark);
	border: 2px solid rgba(245, 158, 11, 0.15)
}

.how-step h3 {
	font-family: 'Outfit', sans-serif;
	font-size: 17px;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 4px
}

.how-step p {
	font-size: 14px;
	color: var(--text-mid);
	line-height: 1.7;
	margin: 0
}

/* Stats bar */
.stats-bar {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	padding: 48px 24px;
	background: linear-gradient(135deg, var(--navy-deep), var(--navy), var(--navy-mid));
	border-radius: var(--radius-lg);
	text-align: center
}

.stat-item h4 {
	font-family: 'Outfit', sans-serif;
	font-size: clamp(28px, 5vw, 40px);
	font-weight: 900;
	color: var(--amber-light);
	margin-bottom: 4px
}

.stat-item p {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.4);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px
}

/* CTA section */
.cta-section {
	text-align: center;
	padding: 80px 24px;
	background:
		radial-gradient(ellipse 70% 50% at 50% 50%, rgba(245, 158, 11, 0.06) 0%, transparent 60%),
		var(--surface)
}

.cta-section .mkt-h2 {
	margin: 0 auto 8px
}

.cta-section .mkt-sub {
	margin: 0 auto 32px;
	text-align: center
}

/* Marketing footer */
.mkt-footer {
	background: var(--navy-deep);
	padding: 48px 24px 28px;
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, 0.04)
}

.mkt-footer-inner {
	max-width: 800px;
	margin: 0 auto
}

.mkt-footer-logo {
	font-family: 'Outfit', sans-serif;
	font-size: 20px;
	font-weight: 800;
	background: linear-gradient(135deg, #fff, var(--amber-light));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 12px
}

.mkt-footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	margin-bottom: 20px
}

.mkt-footer-links a {
	padding: 6px 14px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.04);
	color: rgba(255, 255, 255, 0.4);
	font-size: 12px;
	text-decoration: none;
	transition: all .2s;
	border: 1px solid rgba(255, 255, 255, 0.06)
}

.mkt-footer-links a:hover {
	color: var(--amber-light);
	border-color: rgba(245, 158, 11, 0.2);
	background: rgba(245, 158, 11, 0.06)
}

.mkt-footer p {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.45);
	line-height: 1.7
}

.mkt-footer-disclaimer {
	margin-top: 16px;
	padding: 14px 18px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.04);
	font-size: 10px;
	color: rgba(255, 255, 255, 0.18);
	line-height: 1.7;
	text-align: left;
	max-width: 640px;
	margin-left: auto;
	margin-right: auto
}

/* SCROLL REVEAL ANIMATION */
.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .7s ease, transform .7s ease
}

.reveal.visible {
	opacity: 1;
	transform: none
}

/* DESKTOP BREAKPOINT */
@media(min-width:768px) {

	/* ─── Inner app desktop ─── */
	.app {
		background:
			radial-gradient(ellipse 70% 50% at 50% 0%, rgba(245, 158, 11, 0.05) 0%, transparent 45%),
			radial-gradient(ellipse 40% 30% at 20% 10%, rgba(99, 102, 241, 0.03) 0%, transparent 50%),
			linear-gradient(180deg,
				var(--navy-deep) 0%,
				var(--navy) 140px,
				var(--navy-mid) 320px,
				#1a2540 340px,
				var(--surface) 341px) !important
	}

	.wrap {
		max-width: 1080px;
		padding: 44px 40px 60px
	}

	.card {
		padding: 32px 30px;
		border-radius: 26px;
		margin-bottom: 18px
	}

	.logo-text {
		font-size: 34px
	}

	.header {
		margin-bottom: 36px;
		padding-top: 20px
	}

	.header-sub {
		font-size: 13px
	}

	.search-row {
		max-width: 560px;
		margin: 0 auto 36px
	}

	.search-input {
		padding: 16px 20px;
		font-size: 15px;
		border-radius: 18px
	}

	.btn-fill {
		padding: 16px 30px;
		border-radius: 18px;
		font-size: 14px
	}

	.btn-icon {
		padding: 16px 17px;
		border-radius: 18px
	}

	.uv-hero {
		padding: 40px 36px !important;
		border-radius: 30px !important
	}

	.uv-inner {
		flex-direction: row;
		gap: 40px;
		align-items: center
	}

	.uv-left {
		flex-shrink: 0;
		width: 290px
	}

	.uv-right {
		flex: 1;
		min-width: 0
	}

	.forecast-grid {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 18px
	}

	.forecast-grid>.card {
		margin-bottom: 0
	}

	.mid-grid {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 18px
	}

	.mid-grid>.card {
		margin-bottom: 0
	}

	.sec-title {
		font-size: 24px;
		margin-bottom: 14px
	}

	.burn-grid {
		grid-template-columns: 1fr 1fr 1fr 1fr;
		gap: 12px
	}

	.burn-card {
		padding: 20px 16px;
		border-radius: 18px
	}

	.burn-num {
		font-size: 36px
	}

	.skin-grid {
		grid-template-columns: 1fr 1fr 1fr;
		gap: 10px
	}

	.skin-btn {
		padding: 16px 14px;
		border-radius: 18px
	}

	.faq-item {
		border-radius: 18px;
		margin-bottom: 7px
	}

	.faq-btn {
		font-size: 15px;
		padding: 20px 22px
	}

	.faq-answer {
		font-size: 14px;
		padding: 0 22px 20px
	}

	.wk-row {
		padding: 13px 6px;
		gap: 14px
	}

	.wk-day {
		width: 64px;
		font-size: 14px
	}

	.wk-num {
		font-size: 19px;
		width: 28px
	}

	.wk-lbl {
		width: 68px;
		font-size: 12px
	}

	.wk-bar {
		height: 8px;
		border-radius: 5px
	}

	.h-scroll {
		gap: 7px
	}

	.h-item {
		min-width: 60px;
		padding: 15px 7px;
		border-radius: 16px
	}

	.h-val {
		font-size: 19px
	}

	.h-time {
		font-size: 11px
	}

	.h-dot {
		width: 10px;
		height: 10px
	}

	.scale-bar {
		height: 9px;
		margin: 20px 0 7px
	}

	.scale-labels {
		font-size: 10px
	}

	.scale-badge {
		width: 44px;
		height: 30px;
		border-radius: 10px;
		font-size: 11px
	}

	.scale-item {
		padding: 8px 0;
		gap: 14px
	}

	.advice {
		padding: 20px 22px;
		border-radius: 18px
	}

	.prod-card {
		padding: 20px 22px;
		border-radius: 20px
	}

	.prod-badge {
		padding: 5px 12px;
		font-size: 10px
	}

	.guide-btn {
		padding: 20px 22px;
		border-radius: 18px;
		margin-bottom: 9px
	}

	.city-btn {
		padding: 10px 18px;
		border-radius: 12px;
		font-size: 13px
	}

	.city-wrap {
		gap: 8px
	}

	.hero-landing {
		min-height: 88vh;
		padding: 80px 40px 60px
	}

	.hero-sun {
		width: 180px;
		height: 180px;
		margin-bottom: 44px
	}

	.hero-sun-core {
		width: 70px;
		height: 70px
	}

	.hero-sun-rays::before {
		width: 150px;
		height: 150px
	}

	.hero-sun-rays::after {
		width: 128px;
		height: 128px
	}

	.hero-sun-ray {
		height: 22px
	}

	.trust-strip-inner {
		gap: 16px 32px
	}

	.app {
		background:
			radial-gradient(ellipse 70% 50% at 50% 0%, rgba(245, 158, 11, 0.05) 0%, transparent 45%),
			radial-gradient(ellipse 40% 30% at 20% 10%, rgba(99, 102, 241, 0.03) 0%, transparent 50%),
			linear-gradient(180deg,
				var(--navy-deep) 0%,
				var(--navy) 140px,
				var(--navy-mid) 320px,
				#1a2540 340px,
				var(--surface) 341px) !important
	}

	.wrap {
		max-width: 1080px;
		padding: 44px 40px 80px
	}

	.card {
		padding: 30px 28px;
		border-radius: 24px;
		margin-bottom: 16px
	}

	.logo-text {
		font-size: 34px
	}

	.header {
		margin-bottom: 36px;
		padding-top: 20px
	}

	.header-sub {
		font-size: 13px
	}

	.search-row {
		max-width: 560px;
		margin: 0 auto 36px
	}

	.search-input {
		padding: 15px 18px;
		font-size: 15px;
		border-radius: 16px
	}

	.btn-fill {
		padding: 15px 28px;
		border-radius: 16px
	}

	.btn-icon {
		padding: 15px 16px;
		border-radius: 16px
	}

	.uv-hero {
		padding: 36px 32px;
		border-radius: var(--radius-lg)
	}

	.uv-inner {
		flex-direction: row;
		gap: 36px;
		align-items: center
	}

	.uv-left {
		flex-shrink: 0;
		width: 280px
	}

	.forecast-grid {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 16px
	}

	.forecast-grid>.card {
		margin-bottom: 0
	}

	.mid-grid {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 16px
	}

	.mid-grid>.card {
		margin-bottom: 0
	}

	.sec-title {
		font-size: 22px
	}

	.burn-grid {
		grid-template-columns: 1fr 1fr 1fr 1fr
	}

	.skin-grid {
		grid-template-columns: 1fr 1fr 1fr
	}

	.burn-num {
		font-size: 34px
	}

	.faq-btn {
		font-size: 15px;
		padding: 18px 20px
	}

	.faq-answer {
		font-size: 14px;
		padding: 0 20px 18px
	}

	.wk-day {
		width: 62px;
		font-size: 14px
	}

	.wk-num {
		font-size: 18px
	}

	.wk-lbl {
		width: 66px;
		font-size: 12px
	}

	.h-item {
		min-width: 58px;
		padding: 13px 6px
	}

	.h-val {
		font-size: 18px
	}

	.scale-bar {
		height: 8px
	}

	.advice {
		padding: 18px 20px
	}

	.guide-btn {
		padding: 18px 20px
	}

	.mkt-section {
		padding: 100px 40px
	}

	.feat-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 20px
	}

	.how-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 28px
	}

	.how-step {
		flex-direction: column;
		border-bottom: none;
		padding: 0;
		text-align: center
	}

	.how-num {
		margin: 0 auto 14px
	}

	.stats-bar {
		grid-template-columns: repeat(4, 1fr);
		padding: 56px 40px;
		border-radius: 32px
	}

	.cta-section {
		padding: 100px 40px
	}
}

/* ─── GUIDE VIEW — Premium styling when a guide page is open ─── */
.guide-active .hero-landing {
	display: none !important
}

.guide-active .trust-strip {
	display: none !important
}

.guide-active .mkt-section,
.guide-active .cta-section {
	display: none !important
}

.guide-active .mkt-footer {
	display: none !important
}

.guide-active .app {
	background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-mid) 120px, var(--surface) 121px) !important
}

.guide-active .app .wrap {
	padding-top: 24px
}

/* Guide back button */
.guide-active .btn-outline {
	background: rgba(255, 255, 255, 0.06) !important;
	border-color: rgba(255, 255, 255, 0.12) !important;
	color: rgba(255, 255, 255, 0.7) !important;
	backdrop-filter: blur(8px);
	padding: 11px 20px !important;
	border-radius: 12px !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	transition: all .25s !important
}

.guide-active .btn-outline:hover {
	background: rgba(255, 255, 255, 0.12) !important;
	color: #fff !important
}

/* Guide title on dark bg */
.guide-active .sec-title {
	color: #fff !important;
	font-size: 28px !important;
	letter-spacing: -0.5px !important
}

/* Guide subtitle on dark bg — target first p after sec-title */
.guide-active .wrap>p {
	color: rgba(255, 255, 255, 0.4) !important
}

/* Guide text sections — card treatment on light bg */
.guide-active .wrap>div:not(.card) {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 24px 22px;
	margin-bottom: 12px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02), 0 4px 16px rgba(0, 0, 0, 0.025);
	transition: all .3s
}

.guide-active .wrap>div:not(.card):hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04), 0 12px 36px rgba(0, 0, 0, 0.04);
	transform: translateY(-2px);
	border-color: rgba(245, 158, 11, 0.12)
}

.guide-active .wrap>div:not(.card) h2 {
	font-size: 18px !important;
	font-weight: 700 !important;
	color: var(--text) !important;
	margin-bottom: 8px !important;
	font-family: 'Outfit', sans-serif !important
}

.guide-active .wrap>div:not(.card) p {
	font-size: 14.5px !important;
	line-height: 1.85 !important;
	color: var(--text-mid) !important
}

/* Guide product card */
.guide-active .card {
	margin-top: 8px
}

/* Guide footer — show a simple one */
.guide-active~.mkt-footer {
	display: block !important
}

@media(min-width:768px) {
	.guide-active .app {
		background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-mid) 160px, var(--surface) 161px) !important
	}

	.guide-active .sec-title {
		font-size: 34px !important
	}

	.guide-active .wrap>div:not(.card) {
		padding: 32px 28px;
		border-radius: 24px;
		margin-bottom: 16px
	}

	.guide-active .wrap>div:not(.card) h2 {
		font-size: 20px !important
	}

	.guide-active .wrap>div:not(.card) p {
		font-size: 15px !important
	}
}


/* ─── PWA Install Button States ─── */
#pwa-install-cta {
	border: none;
	font-family: 'DM Sans', sans-serif;
	cursor: pointer
}

#pwa-install-cta.installed {
	background: linear-gradient(135deg, #16a34a, #15803d) !important;
	box-shadow: 0 4px 20px rgba(22, 163, 74, 0.35) !important;
	pointer-events: none
}

/* ─── iOS install guide toast ─── */
.ios-toast {
	position: fixed;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--navy);
	color: #fff;
	padding: 16px 22px;
	border-radius: 16px;
	font-size: 13px;
	line-height: 1.6;
	text-align: center;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	z-index: 10000;
	max-width: 340px;
	animation: fadeUp .3s ease both;
	border: 1px solid rgba(255, 255, 255, 0.08)
}

.ios-toast-close {
	position: absolute;
	top: 8px;
	right: 12px;
	background: none;
	border: none;
	color: rgba(255, 255, 255, 0.4);
	font-size: 18px;
	cursor: pointer
}

@media(min-width:768px) {
	.how-grid-4 {
		grid-template-columns: repeat(4, 1fr) !important
	}
}

/* Hide React cookie banner — standalone banner handles this */
.cookie-bar {
	display: none !important
}

/* Hide SEO fallback once JS is available — prevents flash */
.seo-fallback {
	display: none
}

noscript~.seo-fallback,
html:not([data-js]) .seo-fallback {
	display: block
}

/* --- COMPACT TOOL DENSITY --- */
.card {
	padding: 20px 18px;
	margin-bottom: 10px
}

.sec-title {
	font-size: 18px;
	margin-bottom: 8px
}

.uv-hero {
	padding: 22px 18px !important
}

.h-item {
	min-width: 46px;
	padding: 10px 4px;
	border-radius: 12px
}

.h-time {
	margin-bottom: 4px;
	font-size: 9px
}

.h-val {
	font-size: 15px
}

.h-dot {
	width: 7px;
	height: 7px;
	margin: 0 auto 4px
}

.h-scroll {
	gap: 4px
}

.wk-row {
	padding: 8px 2px;
	gap: 8px
}

.wk-day {
	font-size: 12px;
	width: 42px
}

.wk-num {
	font-size: 16px
}

.wk-lbl {
	font-size: 10px;
	width: 52px
}

.wk-bar {
	height: 5px
}

.scale-bar {
	height: 6px;
	margin: 12px 0 4px
}

.scale-item {
	padding: 5px 0;
	gap: 8px
}

.scale-badge {
	width: 34px;
	height: 24px;
	font-size: 9px;
	border-radius: 7px
}

.skin-grid {
	gap: 6px
}

.skin-btn {
	padding: 10px 10px;
	border-radius: 12px;
	gap: 8px
}

.skin-dot {
	width: 28px;
	height: 28px;
	border-radius: 8px
}

.burn-results {
	padding: 16px;
	margin-top: 12px;
	border-radius: 14px
}

.burn-grid {
	gap: 8px
}

.burn-card {
	padding: 12px 10px;
	border-radius: 12px
}

.burn-num {
	font-size: 26px
}

.prod-card {
	padding: 14px 16px;
	border-radius: 14px
}

.prod-list {
	gap: 6px
}

.guide-btn {
	padding: 14px 16px;
	border-radius: 12px;
	margin-bottom: 5px
}

.faq-item {
	margin-bottom: 4px;
	border-radius: 12px
}

.faq-btn {
	padding: 14px 16px;
	font-size: 13px
}

.faq-answer {
	padding: 0 16px 14px;
	font-size: 12.5px
}

.city-wrap {
	gap: 5px
}

.city-btn {
	padding: 7px 13px;
	font-size: 11px;
	border-radius: 9px
}

.advice {
	padding: 14px 16px;
	border-radius: 12px
}

.forecast-grid {
	gap: 0
}

.mid-grid {
	gap: 0
}

.search-row {
	margin-bottom: 18px
}

@media(min-width:768px) {
	.card {
		padding: 26px 24px;
		margin-bottom: 14px;
		border-radius: 22px
	}

	.uv-hero {
		padding: 32px 28px !important;
		border-radius: 26px !important
	}

	.sec-title {
		font-size: 20px
	}

	.h-item {
		min-width: 54px;
		padding: 12px 5px
	}

	.h-val {
		font-size: 17px
	}

	.wk-row {
		padding: 10px 4px
	}

	.wk-day {
		font-size: 13px;
		width: 56px
	}

	.wk-num {
		font-size: 17px
	}

	.wk-bar {
		height: 7px
	}

	.burn-num {
		font-size: 30px
	}

	.burn-card {
		padding: 16px 12px
	}

	.skin-btn {
		padding: 13px 12px
	}

	.forecast-grid {
		gap: 14px
	}

	.mid-grid {
		gap: 14px
	}
}

/* Sticky bottom bar */
.uvps-sticky {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 9998;
	background: rgba(255, 255, 255, .97);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-top: 1px solid #e2e8f0;
	box-shadow: 0 -4px 24px rgba(0, 0, 0, .06);
	padding: 10px 16px;
	display: flex;
	align-items: center
}

.uvps-sticky-inner {
	flex: 1;
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-decoration: none;
	color: inherit;
	gap: 12px
}

.uvps-sticky-left {
	display: flex;
	align-items: center;
	gap: 10px
}

.uvps-sticky-emoji {
	font-size: 22px
}

.uvps-sticky-label {
	font-size: 9px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--amber-dark, #b45309)
}

.uvps-sticky-name {
	font-size: 13px;
	font-weight: 700;
	color: var(--text, #1e293b)
}

.uvps-sticky-right {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0
}

.uvps-sticky-score {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: linear-gradient(135deg, #f59e0b, #d97706);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center
}

.uvps-sticky-price {
	font-size: 13px;
	font-weight: 700;
	color: var(--amber-dark, #b45309)
}

.uvps-sticky-close {
	background: none;
	border: none;
	font-size: 18px;
	color: #94a3b8;
	cursor: pointer;
	padding: 4px 8px;
	margin-left: 4px
}

@keyframes uvpsSlideUp {
	from {
		transform: translateY(100%);
		opacity: 0
	}

	to {
		transform: translateY(0);
		opacity: 1
	}
}

/* ═══ UV PROTECTION SCORE ═══ */
.mid-grid:has(.prod-list) {
	display: none !important
}

.uvps {
	margin: 0 auto;
	max-width: 680px;
	padding: 16px
}

.uvps-hdr {
	margin-bottom: 16px
}

.uvps-lbl {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: #b45309;
	margin-bottom: 4px
}

.uvps-ttl {
	font-family: 'Outfit', sans-serif;
	font-size: 20px;
	font-weight: 800;
	color: #1e293b;
	letter-spacing: -.3px
}

.uvps-ttl span {
	font-size: 14px;
	font-weight: 600;
	color: #94a3b8
}

.uvps-sub {
	font-size: 12px;
	color: #94a3b8;
	margin-top: 4px
}

.uvps-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px
}

@media(min-width:640px) {
	.uvps-grid {
		grid-template-columns: repeat(3, 1fr)
	}
}

.uvps-card {
	display: flex;
	flex-direction: column;
	padding: 16px 14px;
	border-radius: 16px;
	background: #fff;
	border: 1px solid #e2e8f0;
	text-decoration: none;
	color: inherit;
	transition: all .3s;
	position: relative;
	overflow: hidden
}

.uvps-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
	border-color: rgba(245, 158, 11, .25)
}

.uvps-top {
	border-color: rgba(245, 158, 11, .2);
	background: linear-gradient(135deg, #fffbeb, #fff)
}

.uvps-topb {
	position: absolute;
	top: 0;
	right: 0;
	background: linear-gradient(135deg, #f59e0b, #d97706);
	color: #fff;
	font-size: 9px;
	font-weight: 800;
	padding: 4px 10px;
	border-radius: 0 14px 0 10px;
	text-transform: uppercase;
	letter-spacing: .5px
}

.uvps-ch {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px
}

.uvps-em {
	font-size: 24px
}

.uvps-ring {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative
}

.uvps-ring::before {
	content: '';
	position: absolute;
	inset: 3px;
	border-radius: 50%;
	background: #fff
}

.uvps-rn {
	position: relative;
	z-index: 1;
	font-size: 12px;
	font-weight: 800
}

.uvps-cat {
	font-size: 9px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #94a3b8;
	margin-bottom: 2px
}

.uvps-nm {
	font-size: 13px;
	font-weight: 700;
	color: #1e293b;
	line-height: 1.3;
	margin-bottom: 4px
}

.uvps-ds {
	font-size: 11px;
	color: #94a3b8;
	line-height: 1.5;
	margin-bottom: auto;
	padding-bottom: 8px
}

.uvps-ft {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: auto
}

.uvps-pr {
	font-size: 16px;
	font-weight: 800;
	color: #1e293b;
	font-family: 'Outfit', sans-serif
}

.uvps-tg {
	font-size: 9px;
	font-weight: 700;
	padding: 3px 8px;
	border-radius: 6px;
	text-transform: uppercase;
	letter-spacing: .5px
}

.uvps-more {
	margin-top: 10px
}

.uvps-more summary {
	font-size: 12px;
	font-weight: 600;
	color: #b45309;
	cursor: pointer;
	padding: 10px 0;
	text-align: center;
	list-style: none
}

.uvps-more summary::-webkit-details-marker {
	display: none
}

.uvps-more .uvps-grid {
	margin-top: 10px
}

.uvps-more .uvps-ds {
	display: none
}

.uvps-disc {
	font-size: 10px;
	color: #94a3b8;
	text-align: center;
	margin-top: 14px
}

.uvps-disc a {
	color: #94a3b8
}

.uvps-stick {
	position: fixed;
	bottom: 16px;
	left: 16px;
	right: 16px;
	z-index: 9998;
	max-width: 520px;
	margin: 0 auto;
	background: linear-gradient(135deg, #1e293b, #0f172a);
	border: 1px solid rgba(251, 191, 36, 0.15);
	border-radius: 18px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
	padding: 14px 18px;
	display: none;
	align-items: center;
	animation: uvpsSU .5s cubic-bezier(0.34, 1.56, 0.64, 1) both
}

.uvps-stick a {
	flex: 1;
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-decoration: none;
	color: inherit;
	gap: 14px
}

.uvps-sl {
	display: flex;
	align-items: center;
	gap: 12px
}

.uvps-slb {
	font-size: 9px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: #fbbf24
}

.uvps-sln {
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	letter-spacing: -0.2px
}

.uvps-sr {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0
}

.uvps-ss {
	width: 36px;
	height: 36px;
	border-radius: 12px;
	background: linear-gradient(135deg, #f59e0b, #d97706);
	color: #fff;
	font-size: 13px;
	font-weight: 900;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4)
}

.uvps-sp {
	font-size: 14px;
	font-weight: 800;
	color: #fbbf24;
	background: rgba(251, 191, 36, 0.1);
	padding: 6px 14px;
	border-radius: 10px;
	border: 1px solid rgba(251, 191, 36, 0.2)
}

.uvps-sx {
	background: rgba(255, 255, 255, 0.06);
	border: none;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.4);
	cursor: pointer;
	padding: 6px 8px;
	margin-left: 4px;
	border-radius: 8px;
	transition: all .2s
}

.uvps-sx:hover {
	background: rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.6)
}

@keyframes uvpsSU {
	from {
		transform: translateY(120%) scale(0.95);
		opacity: 0
	}

	to {
		transform: translateY(0) scale(1);
		opacity: 1
	}
}

/* ═══ SKIN TYPE GUIDE ═══ */
.skg-link {
	display: block;
	text-align: center;
	margin-top: 8px;
	font-size: 12px;
	color: #2563eb;
	cursor: pointer;
	padding: 6px;
	border: none;
	background: none;
	font-family: inherit;
	text-decoration: none;
	border-bottom: 1px dashed rgba(37, 99, 235, 0.3)
}

.skg-link:hover {
	color: #1d4ed8
}

.skg-panel {
	display: none;
	margin-top: 12px;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid var(--border, #e2e8f0);
	background: var(--card, #fff)
}

.skg-panel.skg-open {
	display: block;
	animation: skgFade .3s ease
}

@keyframes skgFade {
	from {
		opacity: 0;
		transform: translateY(-8px)
	}

	to {
		opacity: 1;
		transform: translateY(0)
	}
}

.skg-row {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 12px 16px;
	border-bottom: 1px solid var(--border, #f1f5f9);
	transition: background .2s;
	cursor: pointer
}

.skg-row:last-child {
	border-bottom: none
}

.skg-row:hover {
	background: rgba(245, 158, 11, 0.04)
}

.skg-dot {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	flex-shrink: 0;
	border: 2px solid rgba(0, 0, 0, 0.06)
}

.skg-info {
	flex: 1;
	min-width: 0
}

.skg-type {
	font-size: 13px;
	font-weight: 700;
	color: var(--text, #1e293b)
}

.skg-desc {
	font-size: 11px;
	color: var(--text-light, #94a3b8);
	line-height: 1.5;
	margin-top: 1px
}

.skg-burn {
	font-size: 10px;
	font-weight: 600;
	color: #dc2626;
	margin-top: 2px
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

* {
	box-sizing: border-box;
}

html,
body {
	overflow-x: hidden;
	max-width: 100%;
}

.mono {
	font-family: 'Space Grotesk', sans-serif;
}

.glass {
	background: linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .018));
	border: 1px solid rgba(234, 240, 248, .10);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}


.panel {
	background: #0E1A30;
	border: 1px solid rgba(234, 240, 248, .20);
	box-shadow: 0 18px 44px rgba(0, 0, 0, .55);
}


.uvh-scale {
	max-width: 440px;
	margin: 16px auto 0;
}



.uvh-bar {
	background: linear-gradient(90deg, #34d399 0% 11%, #fbbf24 20% 34%, #fb7233 38% 46%, #f43f5e 66% 66%, #a855f7 87%);
	border-radius: 999px;
	height: 11px;
	position: relative;
}


.uvh-thumb {
	background: black;
	border-radius: 50%;
	width: 18px;
	height: 18px;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	box-shadow: 0 2px 6px #00000047;
}

.uvh-legend {
	gap: 4px;
	margin-top: 10px;
	display: flex;
}




.uvh-legend-item {
	font-size: 13px;
	text-align: center;
	min-width: 0;
	color: #788795;
	flex-direction: column;
	flex: 1 1 0;
	align-items: center;
	line-height: 1.25;
	display: flex;
}

@keyframes rise {
	from {
		opacity: 0;
		transform: translateY(14px);
	}

	to {
		opacity: 1;
		transform: none;
	}
}

.rise {
	animation: rise .6s cubic-bezier(.2, .7, .3, 1) both;
}

@keyframes drift {
	0% {
		transform: translate(0, 0) scale(1);
	}

	50% {
		transform: translate(4%, 3%) scale(1.08);
	}

	100% {
		transform: translate(0, 0) scale(1);
	}
}

.mesh {
	position: absolute;
	border-radius: 50%;
	filter: blur(70px);
	opacity: .5;
	animation: drift 18s ease-in-out infinite;
}

@keyframes pulse {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: .4;
	}
}

.pulse {
	animation: pulse 2s ease-in-out infinite;
}

.focusable:focus-visible {
	outline: 2px solid #76A9FF;
	outline-offset: 2px;
}

.srch-item:hover,
.srch-item.hi {
	background: rgba(118, 169, 255, .16);
}

a {
	color: inherit;
}

.pcard {
	transition: transform .15s, box-shadow .15s, border-color .15s;
	text-decoration: none;
}

.pcard:hover {
	transform: translateY(-2px);
	border-color: rgba(118, 169, 255, .5);
	box-shadow: 0 12px 30px rgba(0, 0, 0, .32);
}

.pcard:hover .shop-arrow {
	transform: translateX(3px);
}

.feat-card {
	transition: transform .18s, box-shadow .18s, border-color .18s;
}

.feat-card:hover {
	transform: translateY(-3px);
	border-color: rgba(251, 150, 60, .6);
	box-shadow: 0 20px 50px rgba(0, 0, 0, .4);
}

.feat-card:hover .shop-arrow {
	transform: translateX(4px);
}

.hero-prod {
	transition: transform .18s, box-shadow .18s, border-color .18s;
}

.hero-prod:hover {
	transform: translateY(-3px);
	border-color: rgba(118, 169, 255, .6);
	box-shadow: 0 20px 50px rgba(0, 0, 0, .4);
}

.hero-prod:hover .hero-arrow {
	transform: translateX(4px);
}

.ess-item {
	transition: transform .14s, border-color .14s, background .14s;
}

.ess-item:hover {
	transform: translateY(-1px);
	border-color: rgba(118, 169, 255, .4);
	background: rgba(118, 169, 255, .06);
}

.compact-rec {
	transition: transform .15s, border-color .15s, box-shadow .15s;
}

.compact-rec:hover {
	transform: translateY(-1px);
	border-color: rgba(251, 150, 60, .55);
	box-shadow: 0 8px 22px rgba(251, 114, 51, .18);
}

.compact-rec:hover .cr-arrow {
	transform: translateX(3px);
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: none;
	}
}

.sticky-cta {
	animation: slideUp .35s cubic-bezier(.2, .7, .3, 1) both;
}

@media(prefers-reduced-motion:reduce) {
	.sticky-cta {
		animation: none;
	}
}

.skin-dot {
	cursor: pointer;
	transition: transform .12s, box-shadow .12s;
}

.skin-dot:hover {
	transform: scale(1.08);
}

.devbtn {
	cursor: pointer;
	border: 1px solid rgba(234, 240, 248, .16);
	background: transparent;
	color: #5C708F;
	padding: 3px 9px;
	border-radius: 6px;
	font-size: 11px;
}

.devbtn.on {
	background: rgba(118, 169, 255, .18);
	color: #76A9FF;
	border-color: rgba(118, 169, 255, .4);
}

@media(max-width:760px) {
	.two {
		grid-template-columns: 1fr !important;
	}

	.sky-col {
		border-left: none !important;
		border-top: 1px solid rgba(234, 240, 248, .08) !important;
	}

	.pgrid {
		grid-template-columns: 1fr 1fr !important;
	}

	.hero-prod {
		flex-direction: column !important;
		align-items: flex-start !important;
		text-align: left;
	}

	.hero-cta {
		align-items: stretch !important;
		width: 100%;
	}

	.hero-cta span:first-child {
		justify-content: center;
	}

	.ess-row {
		grid-template-columns: 1fr 1fr !important;
	}

	.skyarc-wrap {
		padding: 10px 16px !important;
	}

	.skyarc-wrap svg {
		max-width: 220px !important;
	}

	.uv-big {
		font-size: 70px !important;
	}

	.hero-left {
		padding: 20px 18px !important;
	}

	.feat-card {
		flex-direction: column !important;
	}

	.feat-icon {
		width: 60px !important;
		height: 60px !important;
	}

	.feat-cta {
		width: 100%;
		justify-content: center;
	}

	.foot-grid {
		grid-template-columns: 1fr !important;
		gap: 22px !important;
	}
}

@media(max-width:480px) {
	.loc-label {
		display: none;
	}

	.loc-btn {
		padding: 0 13px !important;
	}
}

@media(prefers-reduced-motion:reduce) {

	.rise,
	.mesh,
	.pulse {
		animation: none !important;
	}
}