/* ========================================
   JaneShares Landing Page — Styles
   ======================================== */

/* --- Self-hosted Fonts --- */
@font-face {
	font-family: "Satoshi";
	src: url("fonts/Satoshi-Regular.otf") format("opentype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Satoshi";
	src: url("fonts/Satoshi-Medium.otf") format("opentype");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Satoshi";
	src: url("fonts/Satoshi-Bold.otf") format("opentype");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Satoshi";
	src: url("fonts/Satoshi-LightItalic.otf") format("opentype");
	font-weight: 300;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: "Instrument Serif";
	src: url("fonts/InstrumentSerif-Regular.ttf") format("truetype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Instrument Serif";
	src: url("fonts/InstrumentSerif-Italic.ttf") format("truetype");
	font-weight: 400;
	font-style: italic;
	font-display: swap;
}

/* --- CSS Custom Properties --- */
:root {
	/* Brand Palette — clean white minimalistic */
	--clr-cream: #ffffff;
	--clr-cream-dark: #fafafa;
	--clr-beige: #f5f5f5;
	--clr-beige-dark: #ebebeb;
	--clr-pink: #f5d0d0;
	--clr-pink-muted: #f2b8b8;
	--clr-sage: #b5cdb0;
	--clr-sage-light: #d4edda;
	--clr-lavender: #e8e8e8;
	--clr-lavender-light: #f5f5f5;
	--clr-peach: #fddec0;
	--clr-sky: #d0e8fd;

	--clr-text: #1a1a1a;
	--clr-text-light: #555555;
	--clr-text-muted: #888888;
	--clr-white: #ffffff;
	--clr-border: #e8e8e8;

	/* Primary CTA */
	--clr-primary: #1a1a1a;
	--clr-primary-hover: #333333;
	--clr-primary-text: #ffffff;

	/* Typography */
	--ff-heading: "Satoshi", "Satoshi Placeholder", sans-serif;
	--ff-body: "Satoshi", "Satoshi Placeholder", sans-serif;
	--ff-accent: "Instrument Serif", Georgia, serif;

	/* Spacing */
	--space-xs: 0.5rem; /* 8px */
	--space-sm: 1rem; /* 16px */
	--space-md: 1.5rem; /* 24px */
	--space-lg: 2.5rem; /* 40px */
	--space-xl: 4rem; /* 64px */
	--space-2xl: 6rem; /* 96px */
	--space-3xl: 8rem; /* 128px */
	--section-space: 5.5rem; /* 88px */
	--section-space-mobile: 3rem; /* 48px */

	/* Sizes */
	--max-width: 1200px;
	--radius-sm: 8px;
	--radius-md: 14px;
	--radius-lg: 20px;
	--radius-xl: 28px;
	--radius-full: 999px;

	/* Shadows */
	--shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
	--shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
	--shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.08);
	--shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.1);

	/* Transitions */
	--ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	font-family: var(--ff-body);
	font-size: 1rem;
	line-height: 1.7;
	color: var(--clr-text);
	background: var(--clr-cream);
	overflow-x: hidden;
}

img,
svg {
	max-width: 100%;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

button {
	border: none;
	cursor: pointer;
	font-family: inherit;
}

input {
	font-family: inherit;
	border: none;
	outline: none;
}

h1,
h2,
h3,
h4 {
	font-family: var(--ff-heading);
	font-weight: 700;
	line-height: 1.2;
}

em {
	font-family: var(--ff-accent);
	font-style: italic;
	font-weight: 400;
	color: var(--clr-text);
}

strong {
	font-weight: 600;
}

/* --- Container --- */
.container {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 var(--space-md);
}

/* --- Section Labels & Titles --- */
.section-label {
	/* display: inline-block; */
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--clr-text-muted);
	background: transparent;
	padding: 6px 0;
	border-radius: 0;
	margin-bottom: var(--space-sm);
}

.section-title {
	font-size: clamp(2rem, 4vw, 3rem);
	margin-bottom: var(--space-lg);
	max-width: 700px;
}

.problem .section-title,
.features .section-title,
.coming-soon .section-title,
.social-proof .section-title {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.problem .section-label,
.features .section-label,
.coming-soon .section-label,
.social-proof .section-label {
	display: block;
	text-align: center;
}

/* --- Buttons --- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.95rem;
	font-weight: 600;
	border-radius: var(--radius-full);
	padding: 14px 32px;
	transition: all 0.3s var(--ease);
	white-space: nowrap;
}

.btn--primary {
	background: var(--clr-primary);
	color: var(--clr-primary-text);
	box-shadow: none;
}

.btn--primary:hover {
	background: var(--clr-primary-hover);
	box-shadow: none;
	transform: translateY(-1px);
}

.btn--sm {
	padding: 10px 22px;
	font-size: 0.875rem;
}

/* --- Form Group (email + button inline) --- */
.form-group {
	display: flex;
	gap: 0;
	background: var(--clr-white);
	border-radius: var(--radius-full);
	padding: 5px;
	box-shadow: var(--shadow-md);
	border: 1px solid var(--clr-border);
	max-width: 520px;
}

.form-group input {
	flex: 1;
	padding: 14px 20px;
	font-size: 0.95rem;
	background: transparent;
	color: var(--clr-text);
	min-width: 0;
	border-radius: var(--radius-full);
}

.form-group input::placeholder {
	color: var(--clr-text-muted);
}

.form-group .btn {
	flex-shrink: 0;
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom: 1px solid transparent;
	transition: all 0.3s var(--ease);
}

.navbar.scrolled {
	border-bottom-color: var(--clr-border);
	box-shadow: var(--shadow-sm);
}

.navbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 72px;
}

.navbar__logo {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var(--ff-heading);
	font-size: 1.35rem;
	color: var(--clr-text);
}

.navbar__logo img {
	margin: 10px 0px;
}

.logo-icon {
	font-size: 1.5rem;
}

.navbar__links {
	display: flex;
	list-style: none;
	gap: var(--space-lg);
}

.navbar__links a {
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--clr-text-light);
	transition: color 0.2s;
}

.navbar__links a:hover {
	color: var(--clr-primary);
}

/* navbar__cta already styled via btn classes */

.navbar__hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	padding: 4px;
}

.navbar__hamburger span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--clr-text);
	border-radius: 2px;
	transition: all 0.3s var(--ease);
}

.navbar__mobile {
	display: none;
	padding: var(--space-sm) var(--space-md) var(--space-md);
}

.navbar__mobile ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: var(--space-sm);
}

.navbar__mobile a {
	font-size: 1rem;
	font-weight: 500;
	color: var(--clr-text-light);
}

@media (max-width: 768px) {
	.navbar__links,
	.navbar__cta {
		display: none;
	}
	.navbar__hamburger {
		display: flex;
	}
	.navbar__mobile.active {
		display: block;
	}
}

/* ========================================
   HERO
   ======================================== */
.hero {
	/* padding-top: calc(72px + var(--section-space)); */
	padding-bottom: var(--section-space);
	background: #ffffff;
	position: relative;
}

.hero__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-xl);
	align-items: center;
}

.hero__badge {
	display: inline-block;
	font-size: 0.8rem;
	font-weight: 500;
	color: var(--clr-text-muted);
	background: var(--clr-cream-dark);
	padding: 8px 18px;
	border-radius: var(--radius-full);
	margin-bottom: var(--space-md);
}

.hero__title {
	font-size: clamp(2.4rem, 5vw, 3.8rem);
	margin-bottom: var(--space-md);
	line-height: 1.15;
}

.hero__subtitle {
	font-size: clamp(1.05rem, 2vw, 1.25rem);
	color: var(--clr-text-light);
	margin-bottom: var(--space-sm);
	font-weight: 500;
}

.hero__text {
	font-size: 1rem;
	color: var(--clr-text-muted);
	max-width: 480px;
	margin-bottom: var(--space-lg);
}

.hero__microcopy {
	font-size: 0.85rem;
	color: var(--clr-text-light);
	margin-top: var(--space-xs);
}

.hero__trust {
	font-size: 0.8rem;
	color: var(--clr-text-muted);
	margin-top: 4px;
}

.hero__wave {
	position: absolute;
	bottom: -1px;
	left: 0;
	right: 0;
	line-height: 0;
}

.hero__wave svg {
	width: 100%;
	height: 60px;
}

@media (max-width: 900px) {
	.hero__inner {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.hero__text {
		margin-left: auto;
		margin-right: auto;
	}
	.hero__form .form-group {
		margin: 0 auto;
	}
	.hero__microcopy,
	.hero__trust {
		text-align: center;
	}
}

/* ========================================
   MOCKUP — Hero Scheduler UI
   ======================================== */
.mockup {
	position: relative;
}

.mockup__glow {
	position: absolute;
	inset: -20%;
	background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.02) 0%, transparent 70%);
	z-index: -1;
	pointer-events: none;
}

.mockup__window {
	background: var(--clr-white);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-xl);
	overflow: hidden;
	border: 1px solid var(--clr-border);
}

.mockup__topbar {
	display: flex;
	align-items: center;
	gap: var(--space-sm);
	padding: 12px 18px;
	background: var(--clr-cream-dark);
	border-bottom: 1px solid var(--clr-border);
	font-size: 0.8rem;
	color: var(--clr-text-light);
}

.mockup__dots {
	display: flex;
	gap: 6px;
}

.mockup__dots span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	display: block;
}

.mockup__title {
	font-weight: 600;
	color: var(--clr-text);
	flex: 1;
}

.mockup__date {
	font-size: 0.75rem;
}

.mockup__body {
	display: flex;
	min-height: 340px;
}

.mockup__sidebar {
	width: 130px;
	padding: 14px;
	background: var(--clr-cream);
	border-right: 1px solid var(--clr-border);
	flex-shrink: 0;
}

.mockup__sidebar-title {
	font-size: 0.7rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--clr-text-muted);
	margin-bottom: 10px;
}

.mockup__tag {
	font-size: 0.7rem;
	padding: 6px 10px;
	border-radius: var(--radius-sm);
	background: var(--tag-color);
	margin-bottom: 6px;
	cursor: grab;
	transition: transform 0.2s;
}

.mockup__tag:hover {
	transform: scale(1.03);
}

.mockup__schedule {
	flex: 1;
	padding: 14px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.mockup__time-block {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 14px;
	border-radius: var(--radius-sm);
	background: var(--block-color, var(--clr-cream));
	height: var(--block-height, 56px);
	font-size: 0.72rem;
	transition: transform 0.2s;
}

.mockup__time-block:hover {
	transform: translateX(2px);
}

.mockup__time-block--break {
	background: var(--clr-cream-dark);
	border: 1px dashed var(--clr-border);
	justify-content: center;
}

.mockup__time {
	font-weight: 600;
	color: var(--clr-text-light);
	min-width: 58px;
	font-size: 0.65rem;
}

.mockup__label {
	color: var(--clr-text);
	font-weight: 500;
}

@media (max-width: 600px) {
	.mockup__sidebar {
		display: none;
	}
	.mockup__body {
		min-height: 260px;
	}
}

/* ========================================
   PROBLEM SECTION
   ======================================== */
.problem {
	padding: var(--section-space) 0;
	background: var(--clr-cream);
}

.problem__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-md);
	margin-bottom: var(--space-lg);
}

.problem__card {
	background: var(--clr-white);
	padding: var(--space-lg);
	border-radius: var(--radius-lg);
	text-align: center;
	border: 1px solid var(--clr-border);
	box-shadow: var(--shadow-sm);
	transition:
		transform 0.3s var(--ease),
		box-shadow 0.3s var(--ease);
}

.problem__card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}

.problem__icon {
	font-size: 2.5rem;
	margin-bottom: var(--space-sm);
}

.problem__card h3 {
	font-family: var(--ff-heading);
	font-size: 1.2rem;
	margin-bottom: var(--space-xs);
}

.problem__card p {
	font-size: 0.9rem;
	color: var(--clr-text-muted);
	line-height: 1.6;
}

.problem__summary {
	text-align: center;
	font-size: 1.05rem;
	color: var(--clr-text-light);
	max-width: 560px;
	margin: 0 auto;
}

@media (max-width: 768px) {
	.problem__grid {
		grid-template-columns: 1fr;
		max-width: 400px;
		margin-left: auto;
		margin-right: auto;
	}
}

/* ========================================
   BOOK SPOTLIGHT SECTION
   ======================================== */
.book-spotlight {
	padding: calc(72px + var(--section-space));
	background:
		radial-gradient(circle at top left, rgba(246, 214, 186, 0.6), transparent 36%),
		radial-gradient(circle at bottom right, rgba(208, 232, 253, 0.7), transparent 32%), linear-gradient(180deg, #fffaf5 0%, #ffffff 100%);
}

.book-spotlight__panel {
	display: grid;
	grid-template-columns: minmax(260px, 380px) minmax(0, 1fr);
	gap: var(--space-xl);
	align-items: center;
	padding: clamp(1.5rem, 4vw, 3rem);
	border-radius: 36px;
	border: 1px solid rgba(79, 62, 52, 0.08);
	background: rgba(255, 255, 255, 0.88);
	box-shadow: 0 24px 60px rgba(118, 91, 70, 0.12);
	backdrop-filter: blur(12px);
}

.book-spotlight__visual {
	position: relative;
	display: flex;
	justify-content: center;
	padding: 1.5rem 1rem 2.75rem 2.6rem;
}

.book-spotlight__visual::before {
	content: "";
	position: absolute;
	inset: auto 10% 1% 16%;
	height: 26px;
	border-radius: 999px;
	background: rgba(114, 88, 69, 0.22);
	filter: blur(22px);
}

.book-spotlight__deck {
	position: relative;
	width: min(100%, 320px);
	transition: transform 0.45s var(--ease);
}

.book-spotlight__page,
.book-spotlight__frame {
	border-radius: 28px;
	overflow: hidden;
	border: 1px solid rgba(79, 62, 52, 0.08);
	box-shadow: 0 18px 40px rgba(84, 58, 44, 0.14);
	background: linear-gradient(180deg, rgba(255, 248, 242, 0.96), rgba(255, 255, 255, 0.92));
}

.book-spotlight__page {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 88%;
	padding: 8px;
	cursor: pointer;
	transform-origin: bottom left;
	transition:
		transform 0.55s var(--ease),
		width 0.55s var(--ease),
		z-index 0.01s linear 0.2s,
		box-shadow 0.55s var(--ease),
		filter 0.55s var(--ease);
}

.book-spotlight__page--one {
	z-index: 1;
	transform: translate3d(-18px, 20px, 0) rotate(-10deg);
	filter: saturate(0.92);
}

.book-spotlight__page--two {
	z-index: 2;
	transform: translate3d(-8px, 12px, 0) rotate(-5deg);
	filter: saturate(0.97);
}

.book-spotlight__frame {
	position: relative;
	padding: 14px;
	max-width: 320px;
	width: 100%;
	z-index: 3;
	transition:
		transform 0.45s var(--ease),
		box-shadow 0.45s var(--ease);
}

.book-spotlight__image {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 20px;
}

.book-spotlight__page-image {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 20px;
	background: #fff;
}

.book-spotlight__visual:hover .book-spotlight__deck {
	transform: translateX(10px);
}

.book-spotlight__visual:hover .book-spotlight__page--one {
	transform: translate3d(-54px, 34px, 0) rotate(-17deg);
	box-shadow: 0 24px 46px rgba(84, 58, 44, 0.2);
	filter: saturate(1.02);
}

.book-spotlight__visual:hover .book-spotlight__page--two {
	transform: translate3d(-26px, 18px, 0) rotate(-9deg);
	box-shadow: 0 22px 44px rgba(84, 58, 44, 0.18);
	filter: saturate(1.01);
}

.book-spotlight__visual:hover .book-spotlight__frame {
	transform: translate3d(6px, -4px, 0) rotate(1deg);
	box-shadow: 0 26px 52px rgba(84, 58, 44, 0.18);
}

.book-spotlight__page--one:hover,
.book-spotlight__page--two:hover {
	width: 100%;
	z-index: 5;
	box-shadow: 0 28px 56px rgba(84, 58, 44, 0.26);
	filter: saturate(1.02);
	transition-delay: 0s, 0s, 0s, 0s, 0s;
}

.book-spotlight__page--one:hover {
	transform: translate3d(22px, -120px, 0) rotate(-1.5deg);
}

.book-spotlight__page--two:hover {
	transform: translate3d(30px, -112px, 0) rotate(1deg);
}

.book-spotlight__content .section-label {
	margin-bottom: 10px;
	color: #8f6751;
	letter-spacing: 0.18em;
}

.book-spotlight__content {
	position: relative;
	overflow: visible;
}

.book-spotlight__title {
	position: relative;
	isolation: isolate;
	margin-bottom: var(--space-md);
	max-width: 560px;
	transition:
		transform 0.35s var(--ease),
		text-shadow 0.35s var(--ease),
		filter 0.35s var(--ease);
}

.book-spotlight__title::before,
.book-spotlight__title::after {
	content: "";
	position: absolute;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.25s var(--ease);
}

.book-spotlight__title::before {
	inset: -1rem -5.5rem -4.5rem -1.1rem;
	background:
		radial-gradient(circle, rgba(255, 216, 156, 0.95) 0 2.4px, transparent 3px) 6% 52% / 28px 28px no-repeat,
		radial-gradient(circle, rgba(255, 230, 238, 0.95) 0 1.8px, transparent 2.5px) 16% 12% / 20px 20px no-repeat,
		radial-gradient(circle, rgba(255, 199, 214, 0.9) 0 2.2px, transparent 3px) 31% 66% / 24px 24px no-repeat,
		radial-gradient(circle, rgba(255, 244, 214, 0.95) 0 1.5px, transparent 2.1px) 43% 22% / 18px 18px no-repeat,
		radial-gradient(circle, rgba(255, 212, 226, 0.95) 0 2px, transparent 2.8px) 56% 78% / 26px 26px no-repeat,
		radial-gradient(circle, rgba(255, 224, 168, 0.9) 0 2.1px, transparent 2.9px) 68% 18% / 24px 24px no-repeat,
		radial-gradient(circle, rgba(255, 234, 241, 0.95) 0 1.9px, transparent 2.5px) 79% 54% / 22px 22px no-repeat,
		radial-gradient(circle, rgba(255, 199, 214, 0.88) 0 2.2px, transparent 3px) 91% 26% / 26px 26px no-repeat,
		radial-gradient(circle, rgba(255, 242, 247, 0.95) 0 1.6px, transparent 2.2px) 98% 70% / 18px 18px no-repeat;
	filter: blur(0.2px);
	z-index: -1;
}

.book-spotlight__title::after {
	inset: -2.6rem -7rem -5.2rem -1.4rem;
	background:
		radial-gradient(circle at 10% 52%, rgba(245, 208, 208, 0.62) 0 26px, transparent 27px),
		radial-gradient(circle at 28% 20%, rgba(255, 230, 238, 0.68) 0 24px, transparent 25px),
		radial-gradient(circle at 48% 74%, rgba(252, 222, 192, 0.42) 0 30px, transparent 31px),
		radial-gradient(circle at 68% 34%, rgba(255, 216, 228, 0.56) 0 28px, transparent 29px),
		radial-gradient(circle at 90% 58%, rgba(255, 198, 214, 0.42) 0 34px, transparent 35px);
	filter: blur(16px);
	z-index: -2;
}

.book-spotlight__title:hover {
	transform: translateY(-1px);
	text-shadow:
		0 0 14px rgba(255, 223, 232, 0.9),
		0 0 30px rgba(245, 208, 208, 0.72),
		0 0 56px rgba(255, 194, 214, 0.5);
	filter: saturate(1.05);
}

.book-spotlight__title:hover::before,
.book-spotlight__title:hover::after {
	opacity: 1;
}

.book-spotlight__title:hover::before {
	animation: book-title-stardust 1.5s linear infinite;
}

.book-spotlight__title:hover::after {
	animation: book-title-glow 1.8s ease-in-out infinite alternate;
}

@keyframes book-title-stardust {
	0% {
		transform: translate3d(-16px, 6px, 0) scale(0.94);
		filter: blur(0.2px) brightness(0.92);
	}
	50% {
		transform: translate3d(18px, -10px, 0) scale(1.08);
		filter: blur(0.2px) brightness(1.08);
	}
	100% {
		transform: translate3d(38px, -20px, 0) scale(1);
		filter: blur(0.2px) brightness(0.96);
	}
}

@keyframes book-title-glow {
	0% {
		transform: translate3d(-14px, 6px, 0) scale(0.94);
		opacity: 0.28;
	}
	100% {
		transform: translate3d(20px, -12px, 0) scale(1.08);
		opacity: 0.95;
	}
}

@media (max-width: 900px) {
	.book-spotlight__visual {
		padding: 1rem 0.5rem 2.25rem 1.75rem;
	}

	.book-spotlight__page {
		width: 86%;
	}

	.book-spotlight__page--one {
		transform: translate3d(-12px, 16px, 0) rotate(-8deg);
	}

	.book-spotlight__page--two {
		transform: translate3d(-4px, 10px, 0) rotate(-4deg);
	}

	.book-spotlight__visual:hover .book-spotlight__page--one {
		transform: translate3d(-30px, 24px, 0) rotate(-12deg);
	}

	.book-spotlight__visual:hover .book-spotlight__page--two {
		transform: translate3d(-14px, 14px, 0) rotate(-7deg);
	}

	.book-spotlight__page--one:hover {
		transform: translate3d(10px, -72px, 0) rotate(-1deg);
	}

	.book-spotlight__page--two:hover {
		transform: translate3d(16px, -68px, 0) rotate(1deg);
	}

	.book-spotlight__actions {
		justify-content: center;
	}

	.book-spotlight__toast {
		left: 50%;
		transform: translate(-50%, 8px);
	}

	.book-spotlight__toast.is-visible {
		transform: translate(-50%, 0);
	}

	.book-spotlight__title::before {
		inset: -1rem -2.5rem -3.5rem -0.8rem;
	}

	.book-spotlight__title::after {
		inset: -1.8rem -3rem -4rem -1rem;
	}
}

.book-spotlight__lead {
	font-size: 1.08rem;
	line-height: 1.8;
	color: var(--clr-text);
	max-width: 58ch;
	margin-bottom: var(--space-sm);
}

.book-spotlight__actions {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	margin: var(--space-md) 0 var(--space-sm);
	min-height: 60px;
	max-width: 560px;
	width: 100%;
	overflow: visible;
}

.book-spotlight__cart-btn {
	position: relative;
	z-index: 2;
	padding-inline: 28px;
	background: linear-gradient(135deg, #1a1a1a 0%, #3a2a2f 100%);
	box-shadow: 0 12px 30px rgba(58, 42, 47, 0.16);
	transition:
		transform 0.22s var(--ease),
		box-shadow 0.22s var(--ease),
		filter 0.22s var(--ease);
}

.book-spotlight__cart-btn:hover {
	transform: translateY(-2px) scale(1.015);
	box-shadow: 0 16px 34px rgba(58, 42, 47, 0.2);
	filter: brightness(1.05);
}

.book-spotlight__cart-btn:active {
	transform: translateY(0) scale(0.985);
}

.book-spotlight__cart-btn::after {
	content: "";
	position: absolute;
	inset: 1px;
	border-radius: inherit;
	background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.18) 42%, transparent 68%);
	transform: translateX(-135%);
	transition: transform 0.5s var(--ease);
	pointer-events: none;
}

.book-spotlight__cart-btn:hover::after {
	transform: translateX(135%);
}

.book-spotlight__hearts {
	position: absolute;
	top: -54px;
	right: -44px;
	width: 220px;
	height: 120px;
	pointer-events: none;
	z-index: 3;
}

.book-spotlight__heart {
	position: absolute;
	right: 50%;
	top: 54%;
	font-size: 0.9rem;
	line-height: 1;
	color: #e53935;
	opacity: 0;
	transform: translate3d(0, 0, 0) scale(0.7);
	animation: book-cart-heart 900ms ease-out forwards;
	filter: drop-shadow(0 4px 8px rgba(229, 57, 53, 0.28));
}

.book-spotlight__toast {
	position: absolute;
	left: 0;
	top: calc(1rem);
	min-width: min(100%, 360px);
	max-width: 420px;
	padding: 0.8rem 1rem;
	border-radius: 16px;
	background: rgba(255, 250, 247, 0.98);
	border: 1px solid rgba(79, 62, 52, 0.12);
	box-shadow: 0 18px 42px rgba(84, 58, 44, 0.14);
	color: var(--clr-text-light);
	font-size: 0.92rem;
	line-height: 1.5;
	opacity: 0;
	transform: translateY(8px);
	pointer-events: none;
	transition:
		opacity 0.25s var(--ease),
		transform 0.25s var(--ease);
	z-index: 4;
}

.book-spotlight__toast.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@keyframes book-cart-heart {
	0% {
		opacity: 0;
		transform: translate3d(0, 8px, 0) scale(0.55);
	}
	20% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		transform: translate3d(var(--heart-x, 0px), var(--heart-y, -52px), 0) scale(var(--heart-scale, 1.15));
	}
}

.book-spotlight__text {
	font-size: 1rem;
	line-height: 1.8;
	color: var(--clr-text-muted);
	max-width: 60ch;
	margin-bottom: var(--space-sm);
}

.book-spotlight__closing {
	font-family: var(--ff-heading);
	font-size: 1.05rem;
	line-height: 1.7;
	color: #6e4f3d;
	padding-top: var(--space-xs);
	border-top: 1px solid rgba(110, 79, 61, 0.12);
	max-width: 46ch;
}

@media (max-width: 900px) {
	.book-spotlight__panel {
		grid-template-columns: 1fr;
	}

	.book-spotlight__content {
		text-align: center;
	}

	.book-spotlight__title,
	.book-spotlight__lead,
	.book-spotlight__text,
	.book-spotlight__closing {
		margin-left: auto;
		margin-right: auto;
	}
}

@media (prefers-reduced-motion: reduce) {
	.book-spotlight__title,
	.book-spotlight__title::before,
	.book-spotlight__title::after,
	.book-spotlight__cart-btn,
	.book-spotlight__cart-btn::after,
	.book-spotlight__toast,
	.book-spotlight__heart {
		animation: none !important;
		transition: none;
	}

	.book-spotlight__title:hover,
	.book-spotlight__cart-btn:hover,
	.book-spotlight__cart-btn:active {
		transform: none;
	}
}

/* ========================================
   FEATURES / SOLUTION SECTION
   ======================================== */
.features {
	padding: var(--section-space) 0;
	background: var(--clr-white);
}

.features__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-xl);
	align-items: center;
}

/* Feature mockup card */
.feature-mockup__card {
	background: var(--clr-cream);
	border-radius: var(--radius-lg);
	padding: var(--space-md);
	border: 1px solid var(--clr-border);
	box-shadow: var(--shadow-lg);
}

.feature-mockup__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: var(--space-sm);
	font-weight: 600;
	font-size: 0.95rem;
}

.feature-mockup__badge {
	font-size: 0.7rem;
	background: var(--clr-sage-light);
	color: #3b6e3b;
	padding: 4px 12px;
	border-radius: var(--radius-full);
	font-weight: 600;
}

.feature-mockup__days {
	display: flex;
	gap: 6px;
	margin-bottom: var(--space-sm);
}

.feature-mockup__day {
	flex: 1;
	text-align: center;
	padding: 8px;
	border-radius: var(--radius-sm);
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--clr-text-muted);
	background: var(--clr-white);
	border: 1px solid var(--clr-border);
}

.feature-mockup__day--active {
	background: var(--clr-text);
	color: var(--clr-white);
	border-color: var(--clr-text);
}

.feature-mockup__blocks {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: var(--space-sm);
}

.feature-mockup__block {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 14px 16px;
	border-radius: var(--radius-sm);
	font-size: 0.82rem;
	font-weight: 500;
}

.feature-mockup__footer {
	font-size: 0.78rem;
	color: var(--clr-text-muted);
	text-align: center;
	padding-top: var(--space-xs);
	border-top: 1px solid var(--clr-border);
}

/* Feature items (checklist) */
.features__list {
	display: flex;
	flex-direction: column;
	gap: var(--space-md);
}

.feature-item {
	display: flex;
	gap: var(--space-sm);
	align-items: flex-start;
}

.feature-item__check {
	width: 36px;
	height: 36px;
	min-width: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--clr-sage-light);
	color: #3b6e3b;
	font-weight: 700;
	font-size: 0.9rem;
	margin-top: 2px;
}

.feature-item h4 {
	font-family: var(--ff-body);
	font-size: 1.05rem;
	font-weight: 600;
	margin-bottom: 2px;
}

.feature-item p {
	font-size: 0.9rem;
	color: var(--clr-text-muted);
	line-height: 1.5;
}

@media (max-width: 900px) {
	.features__inner {
		grid-template-columns: 1fr;
	}
	.features__visual {
		max-width: 440px;
		margin: 0 auto;
	}
}

/* ========================================
   COMING SOON SECTION
   ======================================== */
.coming-soon {
	padding: var(--section-space) 0;
	background: var(--clr-cream);
}

.coming-soon__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-md);
	margin-bottom: var(--space-lg);
}

.coming-soon__card {
	background: var(--clr-white);
	padding: var(--space-lg);
	border-radius: var(--radius-lg);
	border: 1px solid var(--clr-border);
	box-shadow: var(--shadow-sm);
	transition:
		transform 0.3s var(--ease),
		box-shadow 0.3s var(--ease);
}

.coming-soon__card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}

.coming-soon__icon {
	font-size: 2.2rem;
	margin-bottom: var(--space-sm);
}

.coming-soon__card h3 {
	font-family: var(--ff-heading);
	font-size: 1.15rem;
	margin-bottom: var(--space-xs);
}

.coming-soon__card p {
	font-size: 0.88rem;
	color: var(--clr-text-muted);
	line-height: 1.6;
}

.coming-soon__note {
	text-align: center;
	font-size: 1rem;
	color: var(--clr-text-light);
}

@media (max-width: 768px) {
	.coming-soon__grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 520px) {
	.coming-soon__grid {
		grid-template-columns: 1fr;
		max-width: 400px;
		margin-left: auto;
		margin-right: auto;
	}
}

/* ========================================
   SOCIAL PROOF SECTION
   ======================================== */
.social-proof {
	padding: var(--section-space) 0;
	background: var(--clr-white);
}

.social-proof__content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-xl);
	align-items: start;
}

.social-proof__quote {
	background: var(--clr-cream-dark);
	padding: var(--space-xl);
	border-radius: var(--radius-lg);
	border: 1px solid var(--clr-border);
}

.social-proof__quote p:first-child {
	font-size: 1.15rem;
	line-height: 1.7;
	color: var(--clr-text);
	margin-bottom: var(--space-sm);
}

.social-proof__author {
	font-size: 0.9rem;
	color: var(--clr-text-muted);
	font-weight: 500;
}

.social-proof__testimonials {
	display: flex;
	flex-direction: column;
	gap: var(--space-md);
}

.testimonial-placeholder {
	display: flex;
	gap: var(--space-sm);
	padding: var(--space-md);
	background: var(--clr-cream);
	border-radius: var(--radius-md);
	border: 1px solid var(--clr-border);
}

.testimonial-placeholder__avatar {
	font-size: 2rem;
	min-width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--clr-beige);
	border-radius: 50%;
}

.testimonial-placeholder__text {
	font-size: 0.92rem;
	font-style: italic;
	color: var(--clr-text-light);
	margin-bottom: 4px;
}

.testimonial-placeholder__name {
	font-size: 0.8rem;
	color: var(--clr-text-muted);
	font-weight: 500;
}

@media (max-width: 768px) {
	.social-proof__content {
		grid-template-columns: 1fr;
	}
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */
.final-cta {
	padding: var(--section-space) 0;
	background: var(--clr-cream-dark);
}

.final-cta__inner {
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
}

.final-cta__title {
	font-size: clamp(2rem, 4vw, 2.8rem);
	margin-bottom: var(--space-sm);
}

.final-cta__subtitle {
	font-size: 1.1rem;
	color: var(--clr-text-light);
	margin-bottom: var(--space-lg);
}

.final-cta__form .form-group {
	margin: 0 auto;
}

.final-cta__note {
	font-size: 0.85rem;
	color: var(--clr-text-muted);
	font-weight: 600;
	margin-top: var(--space-sm);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
	padding: var(--space-xl) 0 var(--space-lg);
	background: var(--clr-cream-dark);
	border-top: 1px solid var(--clr-border);
}

.footer__inner {
	text-align: center;
}

.footer__brand {
	margin-bottom: var(--space-md);
}

.footer__brand .navbar__logo {
	justify-content: center;
	margin-bottom: var(--space-xs);
}

.footer__brand p {
	font-size: 0.9rem;
	color: var(--clr-text-muted);
}

.footer__links {
	display: flex;
	justify-content: center;
	gap: var(--space-lg);
	margin-bottom: var(--space-md);
}

.footer__links a {
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--clr-text-light);
	transition: color 0.2s;
}

.footer__links a:hover {
	color: var(--clr-primary);
}

.footer__copy {
	font-size: 0.8rem;
	color: var(--clr-text-muted);
}

/* ========================================
   ANIMATIONS — Fade In on Scroll
   ======================================== */
.fade-in {
	opacity: 0;
	transform: translateY(24px);
	transition:
		opacity 0.7s var(--ease),
		transform 0.7s var(--ease);
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

.fade-in--delay {
	transition-delay: 0.15s;
}

/* Staggered children in grids */
.problem__card:nth-child(2).visible,
.coming-soon__card:nth-child(2).visible {
	transition-delay: 0.1s;
}

.problem__card:nth-child(3).visible,
.coming-soon__card:nth-child(3).visible {
	transition-delay: 0.2s;
}

.coming-soon__card:nth-child(4).visible {
	transition-delay: 0.3s;
}

.coming-soon__card:nth-child(5).visible {
	transition-delay: 0.4s;
}

/* Feature items stagger */
.feature-item:nth-child(2) {
	transition-delay: 0.08s;
}
.feature-item:nth-child(3) {
	transition-delay: 0.16s;
}
.feature-item:nth-child(4) {
	transition-delay: 0.24s;
}
.feature-item:nth-child(5) {
	transition-delay: 0.32s;
}

/* ========================================
   SUCCESS STATE — Form submission
   ======================================== */
.form-success {
	text-align: center;
	padding: var(--space-sm) 0;
}

.form-success p {
	font-size: 1rem;
	font-weight: 600;
	color: #3b6e3b;
}

.form-success span {
	font-size: 0.85rem;
	color: var(--clr-text-muted);
	display: block;
	margin-top: 4px;
}

/* ========================================
   MOBILE RESPONSIVE FINE–TUNING
   ======================================== */
@media (max-width: 600px) {
	.hero {
		padding-top: calc(72px + var(--section-space-mobile));
		padding-bottom: var(--section-space-mobile);
	}

	.hero__title {
		font-size: 2rem;
	}

	.form-group {
		flex-direction: column;
		border-radius: var(--radius-lg);
		padding: 6px;
	}

	.form-group input {
		text-align: center;
		padding: 12px 16px;
	}

	.form-group .btn {
		width: 100%;
		border-radius: var(--radius-md);
	}

	.problem,
	.book-spotlight,
	.features,
	.coming-soon,
	.social-proof,
	.final-cta {
		padding: var(--section-space-mobile) 0;
	}

	.section-title {
		font-size: 1.7rem;
	}
}

/* ========================================
   PRINT STYLES (minimal)
   ======================================== */
@media print {
	.navbar,
	.hero__wave,
	.mockup__glow {
		display: none;
	}
	body {
		background: white;
		color: black;
	}
}
