/* ============================================================
   HemoTrack — Landing styles (Medical Pop)
   Warm cream surfaces · one dosed brand red · calm typography
   ============================================================ */

@font-face { font-family: 'Nunito'; src: url('../fonts/Nunito-ExtraLight.ttf') format('truetype'); font-weight: 200; font-style: normal; font-display: swap; }
@font-face { font-family: 'Nunito'; src: url('../fonts/Nunito-Light.ttf') format('truetype'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Nunito'; src: url('../fonts/Nunito-Regular.ttf') format('truetype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Nunito'; src: url('../fonts/Nunito-Medium.ttf') format('truetype'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Nunito'; src: url('../fonts/Nunito-SemiBold.ttf') format('truetype'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Nunito'; src: url('../fonts/Nunito-Bold.ttf') format('truetype'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Nunito'; src: url('../fonts/Nunito-ExtraBold.ttf') format('truetype'); font-weight: 800; font-style: normal; font-display: swap; }
@font-face { font-family: 'Nunito'; src: url('../fonts/Nunito-Black.ttf') format('truetype'); font-weight: 900; font-style: normal; font-display: swap; }
@font-face { font-family: 'Nunito'; src: url('../fonts/Nunito-Italic.ttf') format('truetype'); font-weight: 400; font-style: italic; font-display: swap; }

:root {
	/* Brand red — dosed */
	--primary: #D8364B;
	--primary-deep: #A91E33;
	--primary-soft: #FBE9EC;
	--primary-color: #D8364B;
	--secondary-color: #0F1A2E;

	/* Surfaces — warm cream */
	--bg: #FAF7F1;
	--surface: #FFFFFF;
	--surface-soft: #F4EEE2;

	/* Text — ink */
	--text: #0F1A2E;
	--text-secondary: #4B5468;
	--text-muted: #8A93A4;

	/* Lines */
	--border: #E5DECF;
	--border-soft: #EDE6D7;

	/* Earthy, muted statuses */
	--success: #2F6B5A;  --success-soft: #E7F0EC;
	--warning: #B07A1A;  --warning-soft: #F6ECD9;
	--attention: #B0451E; --attention-soft: #F6E3DB;
	--danger: #8E1F2E;
	--info: #45607A;

	/* Dark ink section */
	--ink: #0F1A2E;
	--ink-deep: #0B1322;
	--color-white: #FFFFFF;
	--color-whiteOpacity70: rgba(255, 255, 255, 0.6);
	--color-text: var(--text-secondary);
	--color-red: var(--primary);

	/* Shadows */
	--shadow-sm: 0 1px 2px rgba(15, 26, 46, 0.04);
	--shadow-md: 0 8px 24px rgba(15, 26, 46, 0.06);
	--shadow-lg: 0 18px 50px rgba(15, 26, 46, 0.10);
	--shadow-xl: 0 30px 70px rgba(15, 26, 46, 0.16);
	--shadow-primary: 0 12px 30px rgba(216, 54, 75, 0.28);

	/* Hero gradient — soft warm haze */
	--hero-gradient: linear-gradient(180deg, #F4D8CC 0%, #F8E4D7 45%, var(--bg) 100%);
	--main-gradient: linear-gradient(180deg, #F4D8CC 0%, #F8E4D7 45%, var(--bg) 100%);

	/* Rhythm */
	--section-pad: 5.5rem;
	--radius: 18px;
	--radius-lg: 24px;
	--ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
	font-family: 'Nunito', sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

html { scroll-behavior: smooth; }

body {
	overflow-x: hidden;
	color: var(--text);
	background: var(--bg);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
}

img { max-width: 100%; }

strong.red { color: var(--primary); font-weight: 800; }

.logo { max-height: 40px; }

/* ---------- Buttons ---------- */
.gradient-button {
	background: var(--primary);
	color: var(--color-white) !important;
	border: none;
	border-radius: 14px;
	padding: 12px 24px;
	cursor: pointer;
	font-weight: 800;
	letter-spacing: -0.2px;
	white-space: nowrap;
	transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	text-decoration: none;
	box-shadow: var(--shadow-primary);
}
.gradient-button:hover {
	color: var(--color-white);
	background: var(--primary-deep);
	transform: translateY(-2px);
	box-shadow: 0 16px 36px rgba(216, 54, 75, 0.34);
}
.gradient-button:active { transform: translateY(0); color: var(--color-white); }
.gradient-button:focus { outline: none; }
.gradient-button:focus-visible { outline: 3px solid rgba(216, 54, 75, 0.5); outline-offset: 2px; }
.gradient-button[disabled] { opacity: 0.7; cursor: default; transform: none; }

/* ---------- Reveal on scroll ---------- */
.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
	will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
	.reveal { opacity: 1 !important; transform: none !important; transition: none; }
	html { scroll-behavior: auto; }
}

/* ---------- Navbar ---------- */
.navbar {
	position: sticky;
	top: 0;
	padding: 1.1rem 0;
	background: rgba(250, 247, 241, 0.85);
	backdrop-filter: blur(18px) saturate(160%);
	-webkit-backdrop-filter: blur(18px) saturate(160%);
	box-shadow: none;
	border-bottom: 1px solid transparent;
	transition: all 0.35s var(--ease);
	z-index: 100;
	width: 100%;
}
.navbar.scrolled {
	padding: 0.65rem 0;
	box-shadow: var(--shadow-md);
	background: rgba(250, 247, 241, 0.92);
	border-bottom: 1px solid var(--border-soft);
}
.navbar-brand { display: flex; align-items: center; transition: transform 0.3s ease; }
.navbar-brand:hover { transform: scale(1.04); }
.nav-link {
	color: var(--text-secondary);
	font-weight: 600;
	margin: 0 9px;
	white-space: nowrap;
	transition: color 0.3s ease;
	position: relative;
	padding: 0 !important;
}
.nav-link::after {
	content: '';
	position: absolute;
	bottom: -5px; left: 50%;
	width: 0; height: 2px;
	border-radius: 2px;
	background: var(--primary);
	transition: width 0.3s ease;
	transform: translateX(-50%);
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link:hover::after { width: 100%; }
.navbar-toggler { border: 1px solid var(--border); border-radius: 12px; padding: 0.5rem 0.75rem; transition: all 0.3s ease; }
.navbar-toggler:hover { border-color: var(--primary); background: var(--primary-soft); }
.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(216, 54, 75, 0.2); }
.navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2815, 26, 46, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }

/* ---------- Section primitives ---------- */
section { padding: var(--section-pad) 0; scroll-margin-top: 90px; }

.section-label {
	display: block;
	text-align: center;
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	color: var(--primary);
	margin-bottom: 0.85rem;
}
.section-title {
	font-size: clamp(1.85rem, 1.2rem + 2.4vw, 2.6rem);
	font-weight: 800;
	letter-spacing: -1px;
	color: var(--text);
	margin-bottom: 1rem;
	text-align: center;
	line-height: 1.1;
}
.section-subtitle {
	font-size: 1.18rem;
	font-weight: 500;
	color: var(--text-secondary);
	margin: 0 auto 3rem;
	text-align: center;
	max-width: 760px;
	line-height: 1.5;
}

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
	position: relative;
	background: var(--hero-gradient);
	padding: 4.5rem 0 4.5rem;
	overflow: hidden;
}
.hero-section > .container { position: relative; z-index: 2; }

.hero-orbs { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.5; }
.hero-orb-1 { width: 360px; height: 360px; background: #F7C9BB; top: -80px; right: -60px; }
.hero-orb-2 { width: 300px; height: 300px; background: #F9DCC9; bottom: -120px; left: -80px; opacity: 0.6; }

.hero-grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	align-items: center;
	gap: 3rem;
}

.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--surface);
	border: 1px solid var(--border);
	color: var(--primary-deep);
	font-size: 0.85rem;
	font-weight: 800;
	letter-spacing: 0.2px;
	padding: 7px 15px;
	border-radius: 999px;
	margin-bottom: 1.4rem;
	box-shadow: var(--shadow-sm);
}
.hero-eyebrow::before {
	content: '';
	width: 8px; height: 8px;
	border-radius: 50%;
	background: var(--primary);
	box-shadow: 0 0 0 0 rgba(216, 54, 75, 0.5);
	animation: hero-pulse 2.4s infinite;
}
@keyframes hero-pulse {
	0% { box-shadow: 0 0 0 0 rgba(216, 54, 75, 0.45); }
	70% { box-shadow: 0 0 0 9px rgba(216, 54, 75, 0); }
	100% { box-shadow: 0 0 0 0 rgba(216, 54, 75, 0); }
}

.hero-title {
	font-size: clamp(2.1rem, 1.3rem + 3.2vw, 3.15rem);
	font-weight: 800;
	letter-spacing: -1.4px;
	line-height: 1.06;
	color: var(--text);
	margin-bottom: 1.25rem;
}
.hero-subtitle {
	font-size: 1.22rem;
	font-weight: 500;
	color: var(--text-secondary);
	line-height: 1.5;
	margin-bottom: 1.75rem;
	max-width: 540px;
}

.hero-trust { list-style: none; padding: 0; margin: 1.5rem 0 0; display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; }
.hero-trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.95rem; font-weight: 600; color: var(--text-secondary); }
.hero-trust-item svg { width: 18px; height: 18px; flex-shrink: 0; fill: var(--success); }

.hero-stores-soon { margin-top: 1.5rem; }
.hero-stores-soon-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--text-muted);
}
.hero-stores-soon-label::before {
	content: '';
	width: 18px; height: 18px;
	background: no-repeat center / contain url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%238A93A4'%3e%3cpath d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm1 11h-2V6h2Zm0 4h-2v-2h2Z'/%3e%3c/svg%3e");
}

/* Hero phone mockup */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-phone {
	position: relative;
	width: 290px;
	max-width: 78vw;
	background: #11192B;
	border-radius: 42px;
	padding: 12px;
	box-shadow: var(--shadow-xl), 0 0 0 2px rgba(15, 26, 46, 0.06);
	z-index: 2;
}
.hero-phone-notch {
	position: absolute;
	top: 12px; left: 50%;
	transform: translateX(-50%);
	width: 120px; height: 24px;
	background: #11192B;
	border-radius: 0 0 16px 16px;
	z-index: 3;
}
.hero-phone-screen { border-radius: 32px; overflow: hidden; background: var(--bg); aspect-ratio: 1280 / 2856; }
.hero-phone-screen img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }

.hero-floating-card {
	position: absolute;
	left: -10px;
	bottom: 26px;
	width: 248px;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid var(--border-soft);
	border-radius: 18px;
	padding: 14px 16px;
	box-shadow: var(--shadow-lg);
	z-index: 4;
	animation: float-card 5s ease-in-out infinite;
}
@keyframes float-card { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.hfc-head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.hfc-droplet { width: 40px; height: 40px; flex-shrink: 0; display: flex; }
.hfc-droplet img { width: 40px; height: 40px; object-fit: contain; }
.hfc-head-text { display: flex; flex-direction: column; line-height: 1.2; }
.hfc-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.4px; text-transform: uppercase; color: var(--primary); }
.hfc-title { font-size: 1rem; font-weight: 800; color: var(--text); line-height: 1.2; }
.hfc-status { font-size: 1.05rem; font-weight: 800; color: var(--success); }
.hfc-note { font-size: 0.85rem; color: var(--text-secondary); margin: 0 0 12px; line-height: 1.35; }
.hfc-metrics { display: flex; flex-direction: column; gap: 6px; margin-top: 12px; }
.hfc-metric { display: flex; align-items: center; justify-content: space-between; padding: 7px 10px; border-radius: 10px; font-size: 0.82rem; }
.hfc-metric-name { font-weight: 700; color: var(--text); }
.hfc-metric-state { font-weight: 700; }
.hfc-metric--ok { background: var(--success-soft); }
.hfc-metric--ok .hfc-metric-state { color: var(--success); }
.hfc-metric--warn { background: var(--warning-soft); }
.hfc-metric--warn .hfc-metric-state { color: var(--warning); }

/* ============================================================
   WAITLIST FORM (shared)
   ============================================================ */
.waitlist-form { max-width: 520px; }
.waitlist-form--cta { margin: 0 auto; }
.wl-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.waitlist-field { display: flex; gap: 10px; }
.waitlist-input {
	flex: 1;
	min-width: 0;
	background: var(--surface);
	border: 1.5px solid var(--border);
	border-radius: 14px;
	padding: 13px 18px;
	font-size: 1rem;
	font-weight: 600;
	color: var(--text);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.waitlist-input::placeholder { color: var(--text-muted); font-weight: 500; }
.waitlist-input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(216, 54, 75, 0.12); }
.waitlist-submit { flex-shrink: 0; white-space: nowrap; }
.waitlist-spinner {
	width: 16px; height: 16px;
	border: 2px solid rgba(255, 255, 255, 0.45);
	border-top-color: #fff;
	border-radius: 50%;
	display: none;
	animation: wl-spin 0.7s linear infinite;
}
@keyframes wl-spin { to { transform: rotate(360deg); } }
.waitlist-form.is-loading .waitlist-spinner { display: inline-block; }
.waitlist-form.is-loading .waitlist-submit-text { opacity: 0.85; }
.waitlist-message { margin: 12px 2px 0; font-size: 0.92rem; font-weight: 700; }
.waitlist-message.is-ok { color: var(--success); }
.waitlist-message.is-error { color: var(--danger); }
.waitlist-hint { margin: 12px 2px 0; font-size: 0.85rem; font-weight: 600; color: var(--text-muted); }
.waitlist-count { margin: 12px 2px 0; font-size: 0.92rem; font-weight: 700; color: var(--text-secondary); display: flex; align-items: center; gap: 8px; }
.waitlist-count::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--success); flex-shrink: 0; }
.waitlist-form--cta .waitlist-count { justify-content: center; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar { padding: 2rem 0; background: var(--surface); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
.trust-bar-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.25rem; }
.trust-bar-item { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; font-weight: 700; color: var(--text-secondary); }
.trust-bar-item svg { width: 22px; height: 22px; flex-shrink: 0; fill: var(--info); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works { background: var(--bg); }
.hiw-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.hiw-step {
	display: flex;
	gap: 1.1rem;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1.6rem;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.hiw-step:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--border-soft); }
.hiw-step-num {
	flex-shrink: 0;
	width: 2.5rem; height: 2.5rem;
	display: flex; align-items: center; justify-content: center;
	font-size: 1.25rem; font-weight: 800;
	color: var(--primary);
	background: var(--primary-soft);
	border-radius: 12px;
	line-height: 1;
}
.hiw-step-name { font-size: 1.3rem; font-weight: 800; letter-spacing: -0.4px; color: var(--text); margin-bottom: 0.6rem; }
.hiw-step-body p { font-size: 1rem; color: var(--text-secondary); margin-bottom: 0.4rem; line-height: 1.5; }
.hiw-step-body p:last-child { margin-bottom: 0; }

.hiw-showcase {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	gap: 1.75rem;
	margin-top: 3.5rem;
	padding: 3.5rem 2.5rem 0;
	border-radius: var(--radius-lg);
	background: radial-gradient(110% 90% at 50% 8%, var(--primary-soft) 0%, #F6E8DC 38%, var(--surface-soft) 100%);
	border: 1px solid var(--border-soft);
	overflow: hidden;
}
.hiw-showcase::after {
	/* soft glow behind the centre device */
	content: '';
	position: absolute;
	top: -10%;
	left: 50%;
	width: 360px;
	height: 360px;
	transform: translateX(-50%);
	background: radial-gradient(circle, rgba(216, 54, 75, 0.16) 0%, rgba(216, 54, 75, 0) 70%);
	pointer-events: none;
}
.hiw-shot {
	position: relative;
	z-index: 1;
	margin: 0;
	width: 224px;
	border-radius: 30px 30px 0 0;
	overflow: hidden;
	background: var(--surface);
	border: 1px solid var(--border);
	border-bottom: none;
	box-shadow: 0 -10px 40px rgba(15, 26, 46, 0.12);
	transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.hiw-shot img { width: 100%; height: auto; display: block; }
.hiw-shot--lift { transform: translateY(-26px) scale(1.05); z-index: 2; box-shadow: 0 -14px 50px rgba(15, 26, 46, 0.16); }

/* ============================================================
   FEATURES
   ============================================================ */
.features { background: var(--surface); }
.features .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.features .grid .feature {
	position: relative;
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1.85rem 1.6rem;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.features .grid .feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.features .grid .feature .icon {
	width: 54px; height: 54px;
	display: flex; align-items: center; justify-content: center;
	background: var(--primary-soft);
	border-radius: 15px;
	margin-bottom: 1.15rem;
}
.features .grid .feature .icon > svg { width: 30px; height: 30px; }
.features .grid .feature .icon > svg > path { fill: var(--primary); }
.features .grid .feature .feature-name { font-size: 1.25rem; font-weight: 800; letter-spacing: -0.4px; color: var(--text); margin-bottom: 0.55rem; }
.features .grid .feature .feature-description { font-size: 1rem; color: var(--text-secondary); line-height: 1.5; }

/* ============================================================
   DROPLET — dark emotional section
   ============================================================ */
.droplet { background: var(--bg); }
.droplet-panel {
	position: relative;
	background: linear-gradient(160deg, #14223C 0%, #0B1322 100%);
	border-radius: var(--radius-lg);
	padding: 3.5rem;
	overflow: hidden;
	box-shadow: var(--shadow-xl);
}
.droplet-orbs { position: absolute; inset: 0; pointer-events: none; }
.droplet-orb { position: absolute; border-radius: 50%; filter: blur(70px); }
.droplet-orb-1 { width: 320px; height: 320px; background: rgba(216, 54, 75, 0.35); top: -100px; right: -60px; }
.droplet-orb-2 { width: 260px; height: 260px; background: rgba(69, 96, 122, 0.4); bottom: -120px; left: -60px; }
.droplet-panel-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2.5rem; align-items: center; }

.droplet-label { text-align: left; color: #FF8FA0; }
.droplet-heading { font-size: clamp(1.7rem, 1.2rem + 1.8vw, 2.3rem); font-weight: 800; letter-spacing: -0.8px; color: #fff; line-height: 1.1; margin-bottom: 1rem; }
.droplet-heading strong.red { color: #FF7088; }
.droplet-lead { font-size: 1.2rem; color: rgba(255, 255, 255, 0.82); line-height: 1.5; margin-bottom: 1.75rem; }
.droplet-paragraph { font-size: 1.02rem; color: rgba(255, 255, 255, 0.7); line-height: 1.6; margin-bottom: 1rem; }
.droplet-paragraph strong.red { color: #FF7088; }
.droplet-highlight {
	margin-top: 1.5rem;
	font-size: 1.15rem;
	font-weight: 700;
	color: #fff;
	padding-left: 1rem;
	border-left: 3px solid var(--primary);
	line-height: 1.45;
}
.droplet-highlight strong.red { color: #FF7088; }

.droplet-visual { display: flex; flex-direction: column; align-items: center; text-align: center; }
.droplet-hero-mark { position: relative; width: 180px; height: 180px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.droplet-hero-mark img { width: 150px; height: 150px; object-fit: contain; position: relative; z-index: 1; animation: float-card 5s ease-in-out infinite; }
.droplet-glow { position: absolute; inset: 0; border-radius: 50%; background: radial-gradient(circle, rgba(216, 54, 75, 0.55) 0%, rgba(216, 54, 75, 0) 70%); filter: blur(10px); }
.droplet-states { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 0.85rem; }
.droplet-state {
	display: inline-flex; align-items: center; gap: 7px;
	padding: 7px 13px;
	border-radius: 999px;
	font-size: 0.85rem; font-weight: 700;
	color: rgba(255, 255, 255, 0.92);
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.12);
}
.droplet-dot { width: 9px; height: 9px; border-radius: 50%; }
.droplet-state--calm .droplet-dot { background: #57C39B; }
.droplet-state--watch .droplet-dot { background: #E7B24A; }
.droplet-state--attention .droplet-dot { background: #E8825A; }
.droplet-states-caption { font-size: 0.9rem; color: rgba(255, 255, 255, 0.55); max-width: 280px; margin: 0; line-height: 1.4; }

/* ============================================================
   WHO FOR
   ============================================================ */
.who-for { background: var(--surface); }
.who-for-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.who-for-card {
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1.6rem;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.who-for-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.who-for-icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 48px; height: 48px;
	border-radius: 14px;
	background: var(--surface-soft);
	color: var(--info);
	margin-bottom: 1.1rem;
}
.who-for-icon svg { width: 26px; height: 26px; }
.who-for-name { font-size: 1.18rem; font-weight: 800; letter-spacing: -0.3px; color: var(--text); margin-bottom: 0.55rem; }
.who-for-desc { font-size: 0.98rem; color: var(--text-secondary); line-height: 1.5; }

/* ============================================================
   PRIVACY
   ============================================================ */
.privacy { background: var(--bg); }
.privacy .grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.privacy .grid .item {
	position: relative;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1.85rem 1.6rem 1.6rem 4.5rem;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.privacy .grid .item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.privacy .grid .item .icon {
	position: absolute; top: 1.6rem; left: 1.3rem;
	width: 48px; height: 48px;
	display: flex; align-items: center; justify-content: center;
	background: var(--surface-soft);
	border-radius: 14px;
}
.privacy .grid .item .icon > svg { width: 28px; height: 28px; }
.privacy .grid .item .icon > svg > path { fill: var(--info); }
.privacy .grid .item .item-name { font-size: 1.2rem; font-weight: 800; letter-spacing: -0.3px; color: var(--text); margin-bottom: 0.75rem; }
.privacy .grid .item .item-description { font-size: 0.98rem; color: var(--text-secondary); line-height: 1.45; margin-bottom: 6px; display: flex; align-items: flex-start; gap: 8px; }
.privacy .grid .item .item-description > svg { width: 1.1rem; height: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.privacy .grid .item .item-description > svg > path { fill: var(--success); }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { background: var(--surface); }
.pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 380px)); gap: 1.5rem; justify-content: center; align-items: stretch; }
.pricing-card {
	position: relative;
	display: flex; flex-direction: column;
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 2rem;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.pricing-card--featured { background: var(--surface); border: 2px solid var(--primary); box-shadow: var(--shadow-lg); }
.pricing-badge {
	align-self: flex-start;
	font-size: 0.72rem; font-weight: 800; letter-spacing: 0.6px; text-transform: uppercase;
	color: var(--primary);
	background: var(--primary-soft);
	padding: 5px 12px; border-radius: 999px;
	margin-bottom: 1.25rem;
}
.pricing-badge--muted { color: var(--text-secondary); background: var(--surface-soft); }
.pricing-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 1.5rem; flex-wrap: wrap; }
.pricing-amount { font-size: 2rem; font-weight: 800; letter-spacing: -1px; color: var(--text); }
.pricing-amount--muted { font-size: 1.6rem; }
.pricing-unit { font-size: 0.95rem; font-weight: 600; color: var(--text-muted); }
.pricing-points { list-style: none; padding: 0; margin: 0 0 1.75rem; display: flex; flex-direction: column; gap: 0.7rem; }
.pricing-points li { position: relative; padding-left: 1.85rem; font-size: 0.98rem; color: var(--text-secondary); line-height: 1.45; }
.pricing-points li::before {
	content: '';
	position: absolute; left: 0; top: 1px;
	width: 1.25rem; height: 1.25rem;
	background: no-repeat center / contain url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232F6B5A'%3e%3cpath d='M9.6 17.6 4.4 12.4l1.4-1.4 3.8 3.7 8.2-8.2 1.4 1.4z'/%3e%3c/svg%3e");
}
.pricing-cta { margin-top: auto; width: 100%; }
.pricing-note { text-align: center; font-size: 0.92rem; color: var(--text-muted); max-width: 620px; margin: 2rem auto 0; line-height: 1.5; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--bg); }
.faq .accordion { max-width: 900px; margin: 0 auto; }
.faq .accordion-item { border: 1px solid var(--border); border-radius: 16px; margin-bottom: 0.85rem; overflow: hidden; background: var(--surface); transition: border-color 0.3s ease; }
.faq .accordion-item:hover { border-color: var(--border-soft); }
.faq .accordion-item:last-child { margin-bottom: 0; }
.faq .accordion-header { margin: 0; }
.faq .accordion-button {
	font-size: 1.1rem; font-weight: 700; letter-spacing: -0.3px;
	color: var(--text);
	background: var(--surface);
	border: none;
	padding: 1.25rem 1.5rem;
	box-shadow: none;
	transition: background 0.3s ease;
}
.faq .accordion-button:not(.collapsed) { color: var(--text); background: var(--surface-soft); }
.faq .accordion-button:focus { border-color: var(--primary); box-shadow: 0 0 0 0.2rem rgba(216, 54, 75, 0.2); }
.faq .accordion-button::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23D8364B'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
	transition: transform 0.3s ease;
}
.faq .accordion-button:not(.collapsed)::after { transform: rotate(180deg); }
.faq .accordion-body { font-size: 1rem; color: var(--text-secondary); line-height: 1.6; padding: 0 1.5rem 1.5rem; background: var(--surface); }
.faq .accordion-body strong.red { color: var(--primary); font-weight: 700; }

/* ============================================================
   WAITLIST CTA
   ============================================================ */
.waitlist-cta { background: var(--bg); }
.waitlist-cta-inner {
	position: relative;
	background: var(--hero-gradient);
	border: 1px solid var(--border-soft);
	border-radius: var(--radius-lg);
	padding: 4rem 2rem;
	text-align: center;
	overflow: hidden;
}
.waitlist-orbs { position: absolute; inset: 0; pointer-events: none; }
.waitlist-orb { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.55; }
.waitlist-orb-1 { width: 280px; height: 280px; background: #F7C9BB; top: -90px; right: -40px; }
.waitlist-orb-2 { width: 240px; height: 240px; background: #F9DCC9; bottom: -110px; left: -40px; }
.waitlist-cta-inner > * { position: relative; z-index: 1; }
.waitlist-cta-eyebrow {
	display: inline-block;
	font-size: 0.8rem; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase;
	color: var(--primary);
	margin-bottom: 0.85rem;
}
.waitlist-cta-title { margin-bottom: 1rem; }
.waitlist-cta-subtitle { margin-bottom: 2rem; }
.waitlist-hint--cta { text-align: center; }
.waitlist-stores-soon { display: flex; justify-content: center; gap: 1.25rem; flex-wrap: wrap; margin-top: 2rem; }
.store-soon { position: relative; display: inline-flex; opacity: 0.55; filter: grayscale(1); }
.store-soon img { height: 50px; width: auto; display: block; }
.store-soon-badge {
	position: absolute; top: -8px; right: -8px;
	font-size: 0.62rem; font-weight: 800; letter-spacing: 0.4px; text-transform: uppercase;
	color: #fff; background: var(--primary);
	padding: 2px 7px; border-radius: 999px;
	filter: grayscale(0);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: var(--color-white); padding: 4rem 0 2rem; position: relative; }
.footer .container { position: relative; z-index: 1; }
.footer-brand { margin-bottom: 1rem; }
.footer-logo { height: 50px; width: auto; margin-bottom: 1.5rem; }
.footer-description { color: var(--color-whiteOpacity70); font-size: 0.95rem; line-height: 1.6; margin: 0; max-width: 300px; }
.footer-title { color: var(--color-white); font-size: 1.1rem; font-weight: 700; margin-bottom: 1.5rem; letter-spacing: 0.3px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: var(--color-whiteOpacity70); text-decoration: none; font-size: 0.95rem; transition: color 0.3s ease, transform 0.3s ease; display: inline-block; }
.footer-links a:hover { color: var(--color-white); transform: translateX(4px); }
.footer-divider { width: 100%; height: 1px; background: rgba(255, 255, 255, 0.2); margin: 3rem 0 2rem; }
.footer-copyright { color: var(--color-whiteOpacity70); font-size: 0.9rem; margin: 0; }
.footer-disclaimer { color: var(--color-whiteOpacity70); font-size: 0.85rem; margin: 0; line-height: 1.5; opacity: 0.8; }

/* ============================================================
   LANGUAGE SELECTOR
   ============================================================ */
.language-selector { position: relative; margin-right: 8px; }
.language-selector-btn {
	color: var(--secondary-color) !important;
	text-decoration: none !important;
	border: none !important;
	padding: 6px 12px !important;
	display: flex; align-items: center; gap: 6px;
	font-weight: 600; font-size: 0.95rem;
	transition: all 0.3s ease;
	border-radius: 20px;
	background: transparent !important;
}
.language-selector-btn:hover { color: var(--primary-color) !important; background: rgba(216, 54, 75, 0.06) !important; }
.language-selector-btn:focus { outline: none; box-shadow: 0 0 0 3px rgba(216, 54, 75, 0.25); border-radius: 20px; }
.language-selector-btn::after { margin-left: 4px; }
.language-flag { font-size: 1.2rem; line-height: 1; }
.language-code { font-size: 0.9rem; letter-spacing: 0.5px; }
.language-selector .dropdown-menu {
	border: none;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
	border-radius: 12px;
	padding: 8px;
	margin-top: 8px;
	min-width: 160px;
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
}
.language-selector .dropdown-menu li { margin-bottom: 4px; }
.language-selector .dropdown-menu li:last-child { margin-bottom: 0; }
.language-selector .dropdown-item { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 8px; color: var(--secondary-color); font-weight: 500; transition: all 0.2s ease; }
.language-selector .dropdown-item:hover { background: rgba(216, 54, 75, 0.08); color: var(--primary-color); }
.language-selector .dropdown-item.active { background: rgba(216, 54, 75, 0.1); color: var(--primary-color); font-weight: 600; }
.language-selector .dropdown-item .language-name { flex: 1; }
.language-selector .dropdown-item .check-mark { color: var(--primary-color); font-weight: bold; font-size: 1.1rem; }

/* ============================================================
   MOBILE STICKY CTA
   ============================================================ */
.mobile-cta-bar { display: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
	.hero-grid { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
	/* Conversion: lead with headline + form on mobile, product shot second. */
	.hero-content { order: 1; }
	.hero-visual { order: 2; }
	.hero-subtitle { margin-left: auto; margin-right: auto; }
	.waitlist-form { margin-left: auto; margin-right: auto; }
	.hero-trust, .hero-stores-soon-label { justify-content: center; }
	.hero-stores-soon { display: flex; justify-content: center; }
	.hero-floating-card { left: auto; right: -6px; bottom: 14px; width: 220px; }
	.droplet-panel-grid { grid-template-columns: 1fr; gap: 2rem; }
	.droplet-label { text-align: center; }
	.droplet-heading, .droplet-lead, .droplet-paragraph { text-align: center; }
	.droplet-highlight { border-left: none; padding-left: 0; text-align: center; }
	.droplet-visual { order: -1; }
}

@media (max-width: 768px) {
	:root { --section-pad: 3.25rem; }
	.site-content { padding-top: 70px; }
	section { scroll-margin-top: 70px; }
	.section-subtitle { font-size: 1.05rem; margin-bottom: 2rem; }

	.navbar { padding: 0.8rem 0; }
	.navbar.scrolled { padding: 0.5rem 0; }
	.navbar-nav { padding: 1rem 0; }
	.navbar-actions { justify-content: space-between; }
	.logo { max-height: 32px; }
	.nav-link { margin: 6px 8px; }
	.nav-link::after { display: none; }

	.hero-section { padding: 2.5rem 0 3rem; }
	.hero-phone { width: 240px; }
	.waitlist-field { flex-direction: column; }
	.waitlist-submit { width: 100%; padding: 13px 24px; }
	.hero-trust { text-align: left; }
	/* Mobile: keep the indicator names, hide only the status text. */
	.hero-floating-card .hfc-metric-state { display: none; }

	.hiw-grid { grid-template-columns: 1fr; gap: 1rem; }
	.hiw-showcase { gap: 0.5rem; margin-top: 2.5rem; padding: 1.75rem 1rem 0; align-items: flex-end; }
	.hiw-showcase::after { width: 240px; height: 240px; }
	.hiw-shot:not(.hiw-shot--lift) { display: none; }
	.hiw-shot--lift { width: 64%; max-width: 250px; transform: none; border-radius: 18px 18px 0 0; box-shadow: 0 -10px 34px rgba(15, 26, 46, 0.14); }

	.features .grid { grid-template-columns: 1fr; gap: 1rem; }
	.who-for-grid { grid-template-columns: 1fr; gap: 1rem; }
	.droplet-panel { padding: 2.25rem 1.5rem; }
	.privacy .grid { grid-template-columns: 1fr; gap: 1rem; }
	.privacy .grid .item { padding: 1.5rem 1.25rem 1.25rem 4rem; }
	.privacy .grid .item .icon { width: 44px; height: 44px; top: 1.4rem; left: 1.1rem; }

	.pricing-grid { grid-template-columns: 1fr; }
	.pricing-card { padding: 1.75rem; }

	.faq .accordion-button { font-size: 1rem; padding: 1rem 1.25rem; }
	.faq .accordion-body { font-size: 0.95rem; padding: 0 1.25rem 1.25rem; }

	.waitlist-cta-inner { padding: 2.75rem 1.25rem; }
	.store-soon img { height: 44px; }

	.footer { padding: 3rem 0 1.5rem; }
	.footer-description { font-size: 0.9rem; margin-bottom: 2rem; max-width: 100%; }
	.footer-title { font-size: 1rem; margin-bottom: 1rem; }
	.footer-links a { font-size: 0.9rem; }
	.footer-divider { margin: 2rem 0 1.5rem; }
	.footer-copyright, .footer-disclaimer { font-size: 0.8rem; text-align: center; }
	.footer-disclaimer { margin-top: 1rem; }

	.language-selector { margin-right: 4px; }
	.language-selector-btn { padding: 4px 8px !important; font-size: 0.85rem; }
	.language-flag { font-size: 1rem; }
	.language-code { font-size: 0.8rem; }

	/* Sticky mobile CTA button */
	.mobile-cta-bar {
		display: flex;
		align-items: center;
		justify-content: center;
		position: fixed;
		left: 1rem; right: 1rem;
		bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
		z-index: 200;
		padding: 14px 24px;
		background: var(--primary);
		color: #fff !important;
		font-weight: 800;
		text-decoration: none;
		border-radius: 16px;
		box-shadow: var(--shadow-primary);
		transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
	}
	.mobile-cta-bar:active { transform: translateY(1px); }
	/* Hidden while a real waitlist form is on screen (toggled via JS). */
	.mobile-cta-bar.is-hidden { transform: translateY(170%); opacity: 0; pointer-events: none; }
	body { padding-bottom: 76px; }
}

@media (max-width: 480px) {
	.hero-phone { width: 210px; }
	.hero-floating-card { width: 190px; padding: 11px 13px; }
	.hfc-droplet, .hfc-droplet img { width: 34px; height: 34px; }
	.pricing-amount { font-size: 1.7rem; }
}

/* ============================================================
   TAGLINE (from pitch deck)
   ============================================================ */
.hero-tagline {
	display: block;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	color: var(--text-muted);
	margin-bottom: 0.9rem;
}
.footer-tagline {
	color: var(--color-white);
	font-size: 1.05rem;
	font-weight: 700;
	letter-spacing: 0.2px;
	margin: 0 0 0.75rem;
}

/* ============================================================
   PROBLEM
   ============================================================ */
.problem { background: var(--surface); }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.problem-card {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1.35rem 1.4rem;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.problem-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.problem-icon {
	flex-shrink: 0;
	width: 30px; height: 30px;
	display: flex; align-items: center; justify-content: center;
	border-radius: 50%;
	background: var(--attention-soft);
	color: var(--attention);
}
.problem-icon svg { width: 18px; height: 18px; }
.problem-text { margin: 0; font-size: 1rem; font-weight: 600; color: var(--text); line-height: 1.4; }
.problem-bridge {
	text-align: center;
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--text);
	margin: 2.75rem auto 0;
	max-width: 680px;
	line-height: 1.4;
}

/* ============================================================
   TECHNOLOGY
   ============================================================ */
.technology { background: var(--bg); }
.tech-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 1.5rem; align-items: stretch; }
.tech-stat-card {
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: var(--primary-soft);
	border: 1px solid #F4D7DC;
	border-radius: var(--radius-lg);
	padding: 2.75rem 2.5rem;
}
.tech-stat {
	font-size: clamp(2.8rem, 2rem + 3vw, 3.8rem);
	font-weight: 800;
	letter-spacing: -2px;
	color: var(--primary);
	line-height: 1;
	margin-bottom: 1rem;
}
.tech-stat-label { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.5; margin: 0; }
.tech-points { display: flex; flex-direction: column; gap: 1rem; }
.tech-point {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1.4rem 1.5rem;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tech-point:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.tech-point-icon {
	flex-shrink: 0;
	width: 38px; height: 38px;
	display: flex; align-items: center; justify-content: center;
	border-radius: 11px;
	background: var(--success-soft);
	color: var(--success);
}
.tech-point-icon svg { width: 22px; height: 22px; }
.tech-point-name { font-size: 1.12rem; font-weight: 800; letter-spacing: -0.3px; color: var(--text); margin-bottom: 0.25rem; }
.tech-point-desc { font-size: 0.98rem; color: var(--text-secondary); line-height: 1.45; }
.tech-note { text-align: center; font-size: 0.95rem; color: var(--text-muted); max-width: 700px; margin: 2rem auto 0; line-height: 1.5; }

/* Responsive for Problem + Technology */
@media (max-width: 900px) {
	.problem-grid { grid-template-columns: repeat(2, 1fr); }
	.tech-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
	.problem-grid { grid-template-columns: 1fr; }
	.problem-bridge { font-size: 1.15rem; margin-top: 2rem; }
	.tech-stat-card { padding: 2rem 1.75rem; }
	.tech-point { padding: 1.25rem; }
	.hero-tagline { font-size: 0.72rem; }
}
