/* =============================================================
   LMS GrowthOrbit Digital — Home Page Styles
   ============================================================= */

/* ─── Tokens ─────────────────────────────────────────────── */
:root {
	--h-bg:          #E9F8F9;
	--h-white:       #ffffff;
	--h-black:       #111827;
	--h-text:        #374151;
	--h-muted:       #6b7280;
	--h-border:      #e5e7eb;
	--h-accent:      #7ed957;
	--h-accent-lt:   #e9fbd4;
	--h-cta:         #7ed957;
	--h-cta-hover:   #5cbe33;
	--h-blue-lt:     #dbeafe;
	--h-green-lt:    #d1fae5;
	--h-radius:      14px;
	--h-radius-sm:   8px;
	--h-shadow:      0 2px 12px rgba(0,0,0,.08);
	--h-shadow-lg:   0 8px 32px rgba(0,0,0,.10);
	--h-max:         1180px;
	--h-pad:         clamp(1.25rem, 4vw, 2.5rem);
	--h-font-serif:  'Comic Relief', system-ui, sans-serif;
	--h-font-sans:   'Comic Relief', system-ui, sans-serif;
}

/* ─── Reset ──────────────────────────────────────────────── */
.home-page *, .home-page *::before, .home-page *::after { box-sizing: border-box; }
.home-page { font-family: var(--h-font-sans); background: var(--h-bg); color: var(--h-text); }
#home-wrapper { overflow-x: clip; }

/* ─── Shared ─────────────────────────────────────────────── */
.h-container {
	max-width: var(--h-max);
	margin-inline: auto;
	padding-inline: var(--h-pad);
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	padding: .65rem 1.4rem;
	border-radius: 50px;
	font-size: .9rem;
	font-weight: 600;
	cursor: pointer;
	transition: all .18s;
	text-decoration: none;
	border: 2px solid transparent;
	white-space: nowrap;
}
.btn--primary  { background: var(--h-cta); color: #000; }
.btn--primary:hover { background: var(--h-cta-hover); color: #000; text-decoration: none; }
.btn--dark     { background: var(--h-cta); color: #000; }
.btn--dark:hover { background: var(--h-cta-hover); color: #000; text-decoration: none; }
.btn--outline  { background: var(--h-cta); border-color: var(--h-cta); color: #000; }
.btn--outline:hover { background: var(--h-cta-hover); border-color: var(--h-cta-hover); color: #000; text-decoration: none; }
.btn--green    { background: #7ed957; color: #000; }
.btn--green:hover { background: #5cbe33; color: #000; text-decoration: none; }
.btn--outline-dark { background: var(--h-cta); border-color: var(--h-cta); color: #000; }
.btn--outline-dark:hover { background: var(--h-cta-hover); border-color: var(--h-cta-hover); color: #000; text-decoration: none; }

/* ─── Section headings ───────────────────────────────────── */
.section-heading {
	font-family: var(--h-font-serif);
	font-size: clamp(2.75rem, 5.5vw, 4rem);
	font-weight: 900;
	color: var(--h-black);
	line-height: 1.1;
	margin: 0;
}
.section-heading__alt {
	display: block;
	color: var(--h-black);
}
.section-heading__emoji { font-size: 1.5rem; }

.section-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 2.5rem;
	gap: 1rem;
}
.section-header__nav { display: flex; gap: .5rem; flex-shrink: 0; }

/* Slider arrows */
.slider-arrow {
	width: 44px; height: 44px;
	border-radius: 50%;
	border: 2px solid var(--h-border);
	background: var(--h-white);
	font-size: 1.1rem;
	cursor: pointer;
	transition: all .18s;
	display: flex; align-items: center; justify-content: center;
}
.slider-arrow:hover { background: var(--h-black); color: #fff; border-color: var(--h-black); }

/* LifeNotes card (shared) */
.lifenotes { padding: 1.5rem; }
.lifenotes__header { display: flex; align-items: center; gap: .75rem; margin-bottom: .75rem; }
.lifenotes__icon { font-size: 1.5rem; }
.lifenotes__header strong { display: block; font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; color: var(--h-muted); }
.lifenotes__brand { font-family: var(--h-font-serif); font-size: 1.4rem; font-weight: 900; color: var(--h-black); line-height: 1.1; }
.lifenotes__desc { font-size: .875rem; color: var(--h-muted); margin-bottom: 1rem; line-height: 1.5; }
.lifenotes__socials { display: flex; gap: .5rem; margin-bottom: .75rem; }
.lifenotes__social-icon { font-size: 1.1rem; }
.lifenotes__stars { display: flex; align-items: center; gap: .5rem; }
.stars { color: #7ed957; font-size: 1rem; letter-spacing: 1px; }
.lifenotes__rating { font-size: .8rem; color: var(--h-muted); }

/* ─── NAV ────────────────────────────────────────────────── */
.hn {
	position: sticky;
	top: 0;
	z-index: 200;
	background: rgba(255,255,255,.95);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid transparent;
	box-shadow: none;
	transition: box-shadow .3s ease, border-color .3s ease, padding .3s ease, background .3s ease;
}
.hn.scrolled {
	background: rgba(255,255,255,.98);
	border-bottom-color: var(--h-border);
	box-shadow: 0 4px 24px rgba(0,0,0,.08);
}
.hn__inner {
	max-width: var(--h-max);
	margin-inline: auto;
	padding: 1rem var(--h-pad);
	display: flex;
	align-items: center;
	gap: 2rem;
	transition: padding .3s ease;
}
.hn.scrolled .hn__inner {
	padding-top: .6rem;
	padding-bottom: .6rem;
}
.hn.scrolled .hn__logo img.custom-logo {
	height: 38px;
	transition: height .3s ease;
}
.hn__logo {
	font-family: var(--h-font-serif);
	font-size: 1.3rem;
	font-weight: 900;
	color: var(--h-black);
	text-decoration: none;
	flex-shrink: 0;
	display: flex;
	align-items: center;
}
.hn__logo img.custom-logo {
	height: 48px;
	width: auto;
	max-width: 180px;
	display: block;
}
.hn__logo a { display: inline-flex; align-items: center; text-decoration: none; }
.hn__nav { flex: 1; }
.hn__nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 1.75rem; justify-content: center; }
.hn__nav a {
	font-size: .9rem;
	font-weight: 500;
	color: var(--h-black);
	text-decoration: none;
	position: relative;
	padding-bottom: 2px;
}
.hn__nav a::after {
	content: '';
	position: absolute;
	bottom: -2px; left: 0; right: 0;
	height: 2px;
	background: var(--h-black);
	transform: scaleX(0);
	transition: transform .2s;
	transform-origin: left;
}
.hn__nav a:hover::after { transform: scaleX(1); }
.hn__cta {
	flex-shrink: 0;
	background: var(--h-cta);
	color: #000;
	padding: .6rem 1.25rem;
	border-radius: 50px;
	font-size: .875rem;
	font-weight: 700;
	text-decoration: none;
	transition: background .18s;
}
.hn__cta:hover { background: var(--h-cta-hover); text-decoration: none; color: #000; }
.hn__toggle { display: none; }

/* ═══════════════════════════════════════════════════════════
   HERO TOP  —  Yellow blob + circular photo + greeting
   ═══════════════════════════════════════════════════════════ */

.htop {
	background: #E9F2F4;
	overflow: hidden;
}

.htop__wrap {
	max-width: var(--h-max);
	margin-inline: auto;
	display: grid;
	grid-template-columns: 46% 54%;
	min-height: 460px;
	align-items: center;
}

/* ── LEFT: visual column ─────────────────────────────────── */
.htop__visual {
	position: relative;
	align-self: stretch;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Hero photo */
.hphoto {
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.hphoto img {
	max-width: 320px;
	width: 100%;
	height: auto;
	display: block;
}


/* ── RIGHT: content column ───────────────────────────────── */
.htop__content {
	padding: 3rem 3rem 3rem 1.5rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-self: stretch;
}

.htop__title-block {
	margin-bottom: 1.75rem;
}

.htop__title {
	font-family: var(--h-font-serif);
	font-size: clamp(3rem, 5.5vw, 4.5rem);
	font-weight: 900;
	color: #1a1a2e;
	line-height: 1.05;
	margin: 0 0 .4rem 0;
	letter-spacing: -.02em;
}

/* Blue wavy SVG underline */
.htop__squiggle {
	display: block;
	width: 100%;
	max-width: 350px;
	height: auto;
	margin-top: .1rem;
}

/* Bio */
.htop__bio {
	font-family: var(--h-font-sans);
	font-size: clamp(1.1rem, 2vw, 1.35rem);
	color: #2a2a3a;
	line-height: 1.65;
	max-width: 500px;
	margin: 0;
}

/* "Feel-Good Productivity" — bold + underlined */
.htop__book {
	color: #1a1a2e;
	text-decoration: none;
}
.htop__book strong { font-weight: 800; }
.htop__book:hover { text-decoration: none; color: #1a1a2e; }

/* ═══════════════════════════════════════════════════════════
   HERO SUBSCRIBE  —  LifeNotes info + email form card
   ═══════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════
   HERO SUBSCRIBE  —  White card floating on cream + blobs
   ═══════════════════════════════════════════════════════════ */

.hsub {
	background: #E9F2F4;
	padding: 0 0 3.5rem;
	position: relative;
	overflow: hidden;
}

/* Organic blob — bottom-left background decoration */
.hsub::before {
	content: '';
	position: absolute;
	width: 650px; height: 500px;
	background: #E9F2F4;
	border-radius: 65% 35% 55% 45% / 40% 55% 45% 60%;
	bottom: -180px; left: -160px;
	z-index: 0;
	pointer-events: none;
}

/* Organic blob hint — top-right */
.hsub::after {
	content: '';
	position: absolute;
	width: 320px; height: 260px;
	background: #E9F2F4;
	border-radius: 55% 45% 40% 60% / 50% 60% 40% 50%;
	top: -80px; right: -80px;
	z-index: 0;
	pointer-events: none;
}

.hsub__wrap {
	max-width: var(--h-max);
	margin-inline: auto;
	padding: 0 var(--h-pad);
	position: relative;
	z-index: 1;
}

/* Coral spiral — top-right corner above the card */
.hsub__spiral {
	position: absolute;
	width: 54px; height: 82px;
	top: -1rem;
	right: var(--h-pad);
	z-index: 10;
	pointer-events: none;
}

/* ── Main white card ─────────────────────────────────────── */
.hsub__card {
	background: #ffffff;
	border-radius: 24px;
	box-shadow: 0 4px 32px rgba(0, 0, 0, .07);
	display: grid;
	grid-template-columns: 1fr auto 1fr;   /* left | divider | right */
	gap: 0;
	padding: 3rem;
	align-items: center;
}

/* Thin vertical divider between columns */
.hsub__divider {
	width: 1px;
	background: #e5e7eb;
	align-self: stretch;
	margin-inline: 2.5rem;
}

/* ── LEFT: LifeNotes panel ───────────────────────────────── */
.lnotes { /* sits directly in card */ }

.lnotes__head {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	margin-bottom: 1.25rem;
}

.lnotes__text-block { display: flex; flex-direction: column; flex: 1; min-width: 0; }

.lnotes__to {
	font-family: var(--h-font-serif);
	font-size: 1.5rem;
	font-weight: 400;
	color: #1a1a2e;
	margin: 0;
	line-height: 1.3;
}

.lnotes__brand {
	font-family: var(--h-font-serif);
	font-size: clamp(1.5rem, 2.5vw, 2.25rem);
	font-weight: 900;
	color: #1a1a2e;
	line-height: 1.15;
	margin: 0;
}

.lnotes__plane {
	width: 72px;
	height: 72px;
	flex-shrink: 0;
}

.lnotes__desc {
	font-size: 1rem;
	color: #374151;
	line-height: 1.65;
	margin-bottom: 1.5rem;
}
.lnotes__desc strong { font-weight: 700; }

.lnotes__proof { display: flex; align-items: center; gap: 1rem; }

/* Avatar stack */
.avatar-stack { display: flex; align-items: center; }

.avatar {
	width: 38px; height: 38px;
	border-radius: 50%;
	border: 2.5px solid #ffffff;
	overflow: hidden;
	margin-right: -10px;
	flex-shrink: 0;
	background: #d1d5db;
}
.avatar:last-child { margin-right: 0; }
.avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }

.avatar--a { background: #94a3b8; }
.avatar--b { background: #f87171; }
.avatar--c { background: #60a5fa; }

.lnotes__rating { display: flex; flex-direction: column; gap: .1rem; }
.lnotes__stars  { color: #7ed957; font-size: 1.15rem; letter-spacing: 2px; line-height: 1; }
.lnotes__reviews { font-size: .875rem; font-weight: 600; color: #374151; }

/* ── RIGHT: Form (inside white card, no extra background) ── */
.hform { /* no background — inherits white from card */ }

.hform__text {
	font-size: 1.05rem;
	color: #374151;
	line-height: 1.75;
	margin-bottom: 1.5rem;
}

/* Pill row: input + teal button share a rounded container */
.hform__pill {
	display: flex;
	align-items: center;
	background: #E9F2F4;
	border-radius: 50px;
	padding: .35rem .35rem .35rem 1.25rem;
	gap: .5rem;
	margin-bottom: 1rem;
}

.hform__pill input[type="email"] {
	flex: 1;
	border: none;
	background: transparent;
	font-size: 1rem;
	font-family: var(--h-font-sans);
	color: #374151;
	outline: none;
	min-width: 0;
}
.hform__pill input[type="email"]::placeholder { color: #9ca3af; }

.hform__pill button {
	padding: .8rem 1.85rem;
	background: #7ed957;
	color: #000;
	border: none;
	border-radius: 50px;
	font-size: 1rem;
	font-weight: 700;
	font-family: var(--h-font-sans);
	cursor: pointer;
	transition: background .18s;
	flex-shrink: 0;
	white-space: nowrap;
}
.hform__pill button:hover { background: #5cbe33; }

.hform__disclaimer {
	font-size: .78rem;
	color: #9ca3af;
	line-height: 1.65;
	margin: 0;
}
.hform__disclaimer a { color: #6b7280; text-decoration: none; }

/* ═══════════════════════════════════════════════════════════
   PRESS — "As featured in" logo strip
   ═══════════════════════════════════════════════════════════ */

.press {
	background: #ffffff;
	padding-block: 2.25rem;
	border-top: 1px solid #e5e7eb;
	border-bottom: 1px solid #e5e7eb;
}

.press__inner {
	max-width: var(--h-max);
	margin-inline: auto;
	padding-inline: var(--h-pad);
}

.press__logos {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 3rem;
	flex-wrap: wrap;
}

.press__logo-img {
	height: 65px;
	width: auto;
	object-fit: contain;
	opacity: 1;
	filter: grayscale(0%);
	transition: opacity .2s, transform .2s;
}
.press__logo-img:hover {
	opacity: 1;
	transform: scale(1.07);
}

/* ─── HELP ───────────────────────────────────────────────── */
.help {
	padding-block: 5rem;
	background: var(--h-bg);
}
.help__inner {
	max-width: var(--h-max);
	margin-inline: auto;
	padding-inline: var(--h-pad);
}

/* Two-column layout: left content | divider | right cards */
.help__wrap {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
}

/* Thin vertical divider */
.help__divider {
	width: 1px;
	background: #d0e6ea;
	align-self: stretch;
	margin-inline: 3rem;
}

/* Left column */
.help__col-left {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

/* Big heading */
.help__title {
	font-family: var(--h-font-serif);
	font-size: clamp(2.25rem, 4vw, 3.25rem);
	font-weight: 900;
	color: #1a1a2e;
	line-height: 1.05;
	margin: 0;
	letter-spacing: -.02em;
}

/* Span that wraps highlighted word — position:relative so oval SVG can overlay it */
.help__highlighted {
	position: relative;
	display: inline-block;
	white-space: nowrap;
}

/* Hand-drawn oval SVG */
.help__oval {
	position: absolute;
	top: -.2em;
	left: -.2em;
	width: calc(100% + .4em);
	height: calc(100% + .4em);
	pointer-events: none;
	overflow: visible;
}

/* Description paragraph */
.help__desc {
	font-size: 1.05rem;
	color: var(--h-text);
	line-height: 1.7;
	margin: 0;
	max-width: 480px;
}

/* Sub-heading */
.help__subheading {
	font-family: var(--h-font-serif);
	font-size: clamp(1.4rem, 2.5vw, 1.75rem);
	font-weight: 700;
	color: var(--h-black);
	margin: 0;
	line-height: 1.2;
}
.help__subheading-alt { color: var(--h-black); }

/* Right column */
.help__col-right {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	justify-content: center;
}

/* ── Shared card base ────────────────────────────────────── */
.hcard {
	display: flex;
	flex-direction: column;
	gap: 0;
}

/* Boxed card — vertical layout */
.hcard--box {
	background: #ffffff;
	border: 1.5px solid #d0e6ea;
	border-radius: 20px;
	padding: 2rem;
	transition: background .2s, box-shadow .2s, transform .2s;
}
.hcard--box:hover {
	transform: translateY(-2px);
}

/* Per-card hover colours */
.hcard--orange:hover { background: #ffedd5; border-color: #f97316; box-shadow: none; }
.hcard--purple:hover { background: #ede9fe; border-color: #9333ea; box-shadow: none; }
.hcard--yellow:hover { background: #fef08a; border-color: #eab308; box-shadow: none; }
.hcard--blue:hover   { background: #bfdbfe; border-color: #3b82f6; box-shadow: none; }

/* Line card (kept for backwards compat) */
.hcard--line {
	border-bottom: 1px solid #d0e6ea;
	padding-block: 1.75rem;
}
.hcard--line:first-child { padding-top: 0; }

/* "...and more!" row */
.hcard--and-more { border-bottom: none; }

/* Icon wrapper — sits at top of vertical card */
.hcard__icon-wrap {
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-bottom: 1.25rem;
}

/* Card body */
.hcard__body {}

.hcard__title {
	font-family: var(--h-font-serif);
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--h-black);
	margin: 0 0 .5rem;
	line-height: 1.25;
}

.hcard__desc {
	font-size: .9rem;
	color: var(--h-muted);
	line-height: 1.65;
	margin: 0 0 1rem;
}


.hcard__card-link {
	display: block;
	text-decoration: none;
	color: inherit;
}
.hcard__card-link:hover { text-decoration: none; color: inherit; }

.hcard__link {
	font-size: .875rem;
	font-weight: 600;
	color: var(--h-black);
	text-decoration: none;
}
.hcard__link:hover { text-decoration: none; }

.hcard--orange .hcard__link { color: #4CAF50; }
.hcard--orange .hcard__link:hover { color: #388E3C; }

.hcard--purple .hcard__link { color: #9333ea; }
.hcard--purple .hcard__link:hover { color: #7e22ce; }

.hcard--yellow .hcard__link { color: #d97706; }
.hcard--yellow .hcard__link:hover { color: #b45309; }

.hcard--blue .hcard__link { color: #3b82f6; }
.hcard--blue .hcard__link:hover { color: #2563eb; }

.hcard__more-text {
	font-family: var(--h-font-serif);
	font-size: 1.5rem;
	font-weight: 900;
	color: var(--h-black);
	margin: 0 0 .5rem;
}

/* ─── COLLAB ─────────────────────────────────────────────── */
.collab {
	background: var(--h-white);
	padding-block: 5rem;
}
.collab__inner {
	max-width: var(--h-max);
	margin-inline: auto;
	padding-inline: var(--h-pad);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}
.collab__image {
	background: #E9F2F4;
	border-radius: var(--h-radius);
	overflow: hidden;
	aspect-ratio: 4/3;
	display: flex; align-items: center; justify-content: center;
}
.collab__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.collab__eyebrow { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--h-accent); margin-bottom: .5rem; }
.collab__heading { font-family: var(--h-font-serif); font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 900; color: var(--h-black); line-height: 1.2; margin-bottom: 1rem; }
.collab__desc { font-size: 1rem; color: var(--h-text); line-height: 1.7; margin-bottom: .75rem; }
.collab__sub { font-size: .9rem; color: var(--h-muted); margin-bottom: 1.5rem; font-style: italic; }

/* ─── ABOUT ─────────────────────────────────────────────── */
.about {
	background: var(--h-bg);
	padding-block: 5.5rem 6rem;
}

.about__inner {
	max-width: var(--h-max);
	margin-inline: auto;
	padding-inline: var(--h-pad);
	display: grid;
	grid-template-columns: 5fr 7fr;
	gap: 3.5rem;
	align-items: center;
}

/* ── Left column ─────────────────────────────────────────── */
.about__text-col {}

.about__heading {
	font-family: var(--h-font-serif);
	line-height: 1.1;
	margin: 0;
}

.about__hey {
	display: block;
	font-size: clamp(1.35rem, 2.2vw, 1.85rem);
	font-weight: 400;
	color: #1a1a2e;
	letter-spacing: -.01em;
}

.about__name {
	display: block;
	font-size: clamp(2.5rem, 5.5vw, 4.25rem);
	font-weight: 900;
	color: #1a1a2e;
	letter-spacing: -.035em;
	line-height: .95;
}

/* Blue wavy squiggle under the name */
.about__squiggle {
	display: block;
	width: clamp(180px, 40%, 300px);
	height: auto;
	margin: .5rem 0 2rem;
}

.about__bio { margin-bottom: 0; }
.about__bio p {
	font-size: 1rem;
	color: var(--h-text);
	line-height: 1.8;
	margin-bottom: 1rem;
}
.about__bio p:last-child { margin-bottom: 0; }

.about__read-more {
	display: inline-flex;
	align-items: center;
	gap: .35rem;
	font-size: .9rem;
	font-weight: 600;
	color: var(--h-black);
	text-decoration: none;
	margin: 1.5rem 0 2rem;
}
.about__read-more:hover { text-decoration: none; color: var(--h-black); }

/* Centered buttons row below the two-column grid */
.about__buttons-row {
	display: flex;
	justify-content: center;
	gap: .75rem;
	flex-wrap: wrap;
	margin-top: 3rem;
	max-width: var(--h-max);
	margin-inline: auto;
	padding-inline: var(--h-pad);
}

.about__btn {
	display: inline-flex;
	align-items: center;
	padding: .7rem 1.35rem;
	background: #7ed957;
	color: #000;
	border-radius: 50px;
	font-size: .875rem;
	font-weight: 600;
	text-decoration: none;
	transition: background .18s;
	white-space: nowrap;
}
.about__btn:hover { background: #5cbe33; color: #000; text-decoration: none; }

/* ── Right column: single photo ──────────────────────────── */
.about__photo-col {
	display: flex;
	align-items: center;
	justify-content: center;
}

.about__single-photo {
	width: 100%;
	max-width: 500px;
	height: auto;
	border-radius: 20px;
	display: block;
	object-fit: cover;
	box-shadow: 0 8px 32px rgba(0,0,0,.10);
}

/* ─── TESTIMONIALS ───────────────────────────────────────── */
.testi {
	background: var(--h-white);
	padding-block: 5rem;
}
.testi__inner {
	max-width: var(--h-max);
	margin-inline: auto;
	padding-inline: var(--h-pad);
}
.testi__head {
	text-align: left;
	max-width: none;
	margin: 0 0 3.5rem;
}
.testi__eyebrow {
	font-size: .8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .12em;
	color: var(--h-accent, #3b9ede);
	margin: 0 0 .6rem;
}
.testi__title {
	font-family: var(--h-font-serif);
	font-size: clamp(2.25rem, 4vw, 3.25rem);
	font-weight: 900;
	color: var(--h-black);
	margin: 0 0 1rem;
	line-height: 1.2;
}
.testi__sub {
	font-size: .95rem;
	color: var(--h-muted);
	line-height: 1.7;
	margin: 0;
}

/* Social proof widget */
.testi__proof {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-top: 1.5rem;
}

.testi__proof-avatars {
	display: flex;
	align-items: center;
}

.testi__proof-av {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 2.5px solid #fff;
	margin-right: -10px;
	overflow: hidden;
	flex-shrink: 0;
	background: #d1fae5;
	display: flex;
	align-items: center;
	justify-content: center;
}
.testi__proof-av:last-child { margin-right: 0; }
.testi__proof-av img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
}
.testi__proof-av--initials {
	font-size: .72rem;
	font-weight: 700;
	color: #065f46;
}

.testi__proof-rating {
	display: flex;
	flex-direction: column;
	gap: .1rem;
}
.testi__proof-stars {
	color: #7ed957;
	font-size: 1.1rem;
	letter-spacing: 2px;
	line-height: 1;
}
.testi__proof-label {
	font-size: .875rem;
	font-weight: 600;
	color: #374151;
}

.testi__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}
.testi__card {
	background: #E9F8F9;
	border: 1.5px solid #d0e6ea;
	border-radius: 20px;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.testi__stars {
	color: #7ed957;
	font-size: 1rem;
	letter-spacing: .1em;
}
.testi__quote {
	font-size: .9rem;
	color: var(--h-text);
	line-height: 1.75;
	margin: 0;
	flex: 1;
}
.testi__author {
	display: flex;
	align-items: center;
	gap: .75rem;
	margin-top: .5rem;
}
.testi__avatar {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: .75rem;
	font-weight: 700;
}
.testi__avatar--photo {
	object-fit: cover;
	object-position: center top;
	border: 2px solid #7ed957;
	box-shadow: 0 0 0 3px rgba(126,217,87,.2);
}
.testi__name {
	font-size: .875rem;
	font-weight: 700;
	color: var(--h-black);
	margin: 0 0 .15rem;
}
.testi__role {
	font-size: .775rem;
	color: var(--h-muted);
	margin: 0;
}

/* ─── VIDEOS ─────────────────────────────────────────────── */
.videos {
	background: var(--h-white);
	padding-block: 5rem;
}
.videos__inner {
	max-width: var(--h-max);
	margin-inline: auto;
	padding-inline: var(--h-pad);
}

/* Section heading */
.vids-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1.5rem;
	margin-bottom: 2.5rem;
}
.vids-header__nav { display: flex; gap: .6rem; flex-shrink: 0; }

.vids-title {
	font-family: var(--h-font-serif);
	font-size: clamp(2.5rem, 5vw, 3.75rem);
	font-weight: 400;
	color: var(--h-black);
	line-height: 1.1;
	margin: 0 0 .5rem;
}
.vids-title strong {
	font-weight: 900;
	display: block;
}

.vids-wave {
	display: block;
	width: clamp(160px, 28vw, 260px);
	height: 12px;
	margin-top: .35rem;
}

/* Arrow buttons — amber */
.vids-arrow {
	width: 46px; height: 46px;
	border-radius: 50%;
	border: none;
	background: #7ed957;
	color: #1a1a2e;
	font-size: 1.15rem;
	cursor: pointer;
	transition: background .18s, transform .18s;
	display: flex; align-items: center; justify-content: center;
	flex-shrink: 0;
}
.vids-arrow:hover { background: #5cbe33; transform: scale(1.05); }

/* Slider */
.video-slider { overflow: hidden; margin-inline: calc(-1 * var(--h-pad)); padding-inline: var(--h-pad); }
.video-slider__track {
	display: flex;
	gap: 1.25rem;
	transition: transform .35s cubic-bezier(.25,.1,.25,1);
	will-change: transform;
}

/* Video card */
.vcard {
	flex: 0 0 300px;
	background: #E9F2F4;
	border: none;
	border-radius: 18px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: box-shadow .22s, transform .22s;
}
.vcard:hover { box-shadow: 0 8px 32px rgba(0,0,0,.12); transform: translateY(-4px); }

.vcard__thumb {
	width: 100%;
	height: 185px;
	overflow: hidden;
	background: #d0e6ea;
	flex-shrink: 0;
}
.vcard__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .35s;
}
.vcard:hover .vcard__thumb img { transform: scale(1.04); }

.vcard__body {
	padding: 1.5rem 1.5rem 1.75rem;
	display: flex;
	flex-direction: column;
	flex: 1;
}
.vcard__date {
	font-size: .76rem;
	color: var(--h-muted);
	display: block;
	margin-bottom: .6rem;
}
.vcard__title {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--h-black);
	line-height: 1.35;
	margin: 0 0 auto;
	padding-bottom: 1.25rem;
}
.vcard__link {
	font-size: .85rem;
	font-weight: 600;
	color: var(--h-black);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: .2rem;
}
.vcard__link:hover { text-decoration: none; }

.videos__footer { text-align: center; margin-top: 3rem; }

/* ─── RESOURCES (Blog Posts) ─────────────────────────────── */
.resources {
	background: var(--h-bg);
	padding-block: 5rem;
}
.resources__inner {
	max-width: var(--h-max);
	margin-inline: auto;
	padding-inline: var(--h-pad);
}

/* Header row */
.res-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1.5rem;
	margin-bottom: 2.5rem;
}
.res-header__nav { display: flex; gap: .6rem; flex-shrink: 0; }

.res-title {
	font-family: var(--h-font-serif);
	font-size: clamp(2.5rem, 5vw, 3.75rem);
	font-weight: 400;
	color: var(--h-black);
	line-height: 1.1;
	margin: 0 0 .5rem;
}
.res-title strong {
	font-weight: 900;
	display: block;
}

.res-wave {
	display: block;
	width: clamp(120px, 20vw, 200px);
	height: 12px;
	margin-top: .35rem;
}

/* Arrow buttons — amber (same as video section) */
.res-arrow {
	width: 46px; height: 46px;
	border-radius: 50%;
	border: none;
	background: #7ed957;
	color: #1a1a2e;
	font-size: 1.15rem;
	cursor: pointer;
	transition: background .18s, transform .18s;
	display: flex; align-items: center; justify-content: center;
	flex-shrink: 0;
}
.res-arrow:hover { background: #5cbe33; transform: scale(1.05); }

/* Slider */
.res-slider { overflow: hidden; margin-inline: calc(-1 * var(--h-pad)); padding-inline: var(--h-pad); }
.res-slider__track {
	display: flex;
	gap: 1.25rem;
	transition: transform .35s cubic-bezier(.25,.1,.25,1);
	will-change: transform;
}

/* Resource / Blog post card */
.rcard {
	flex: 0 0 300px;
	background: var(--h-white);
	border: none;
	border-radius: 18px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: box-shadow .22s, transform .22s;
}
.rcard:hover { box-shadow: 0 8px 32px rgba(0,0,0,.12); transform: translateY(-4px); }

.rcard__thumb {
	width: 100%;
	height: 185px;
	overflow: hidden;
	background: #d0e6ea;
	flex-shrink: 0;
	position: relative;
}
.rcard__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .35s;
}
.rcard:hover .rcard__thumb img { transform: scale(1.04); }

.rcard__cat {
	position: absolute;
	bottom: .65rem;
	left: .65rem;
	font-size: .68rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .06em;
	background: rgba(0,0,0,.62);
	color: #fff;
	padding: .22rem .55rem;
	border-radius: 5px;
}

.rcard__body {
	padding: 1.5rem 1.5rem 1.75rem;
	display: flex;
	flex-direction: column;
	flex: 1;
}
.rcard__date {
	font-size: .76rem;
	color: var(--h-muted);
	display: block;
	margin-bottom: .6rem;
}
.rcard__title {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--h-black);
	line-height: 1.35;
	margin: 0 0 .6rem;
}
.rcard__desc {
	font-size: .85rem;
	color: var(--h-muted);
	line-height: 1.6;
	margin: 0 0 auto;
	padding-bottom: 1.25rem;
}
.rcard__link {
	font-size: .85rem;
	font-weight: 600;
	color: var(--h-black);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: .2rem;
}
.rcard__link:hover { text-decoration: none; }

/* ─── NEWSLETTER ─────────────────────────────────────────── */
.newsletter {
	background: var(--h-bg);
	padding-block: 4rem;
}
.newsletter__inner {
	max-width: var(--h-max);
	margin-inline: auto;
	padding-inline: var(--h-pad);
}
.newsletter__card {
	background: var(--h-white);
	border: 1.5px solid var(--h-border);
	border-radius: 24px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	overflow: hidden;
	box-shadow: var(--h-shadow);
}
.newsletter__card-left { background: #E9F2F4; border-right: 1.5px solid var(--h-border); }
.newsletter__card-right { padding: 2.5rem; }
.newsletter__body { font-size: .95rem; color: var(--h-muted); line-height: 1.7; margin-bottom: 1.5rem; }
.newsletter__form { display: flex; flex-direction: column; gap: .75rem; margin-bottom: .75rem; }
.newsletter__form input[type="email"] {
	padding: .8rem 1rem;
	border: 1.5px solid var(--h-border);
	border-radius: var(--h-radius-sm);
	font-size: .9rem;
	font-family: var(--h-font-sans);
	outline: none;
	transition: border-color .18s;
}
.newsletter__form input[type="email"]:focus { border-color: var(--h-black); }
.newsletter__disclaimer { font-size: .75rem; color: var(--h-muted); }

/* ─── BOOKS ──────────────────────────────────────────────── */
.books {
	background: var(--h-white);
	padding-block: 4rem;
}
.books__inner {
	max-width: var(--h-max);
	margin-inline: auto;
	padding-inline: var(--h-pad);
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

.bcard { text-align: center; }
.bcard__cover {
	border-radius: var(--h-radius);
	aspect-ratio: 3/4;
	margin-bottom: 1rem;
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	padding: .75rem;
	position: relative;
}
.bcard__label {
	font-size: .7rem;
	font-weight: 700;
	background: var(--h-black);
	color: #fff;
	padding: .2rem .5rem;
	border-radius: 4px;
}
.bcard__title { font-size: .95rem; font-weight: 700; color: var(--h-black); margin-bottom: .35rem; }
.bcard__desc { font-size: .8rem; color: var(--h-muted); line-height: 1.5; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.hfooter {
	background: #fff;
	color: #374151;
	padding-top: 4rem;
	border-top: 1px solid #d0e6ea;
}
.hfooter__inner {
	max-width: var(--h-max);
	margin-inline: auto;
	padding-inline: var(--h-pad);
}
.hfooter__top {
	display: grid;
	grid-template-columns: 1.8fr 1fr 1fr 1fr;
	gap: 2.5rem;
	padding-bottom: 3rem;
	border-bottom: 1px solid #d0e6ea;
}
.hfooter__brand {
	display: flex;
	flex-direction: column;
}
.hfooter__logo {
	font-family: var(--h-font-serif);
	font-size: 1.4rem;
	font-weight: 900;
	color: #1a1a2e;
	text-decoration: none;
	display: block;
	margin-bottom: 1rem;
}
.hfooter__logo img.custom-logo {
	height: 48px;
	width: auto;
	max-width: 100%;
	display: block;
}
.hfooter__tagline {
	font-size: .82rem;
	color: #9ca3af;
	line-height: 1.65;
	margin: 0 0 1.5rem;
	margin-top: 18px;
}
.hfooter__socials { display: flex; gap: .35rem; flex-wrap: nowrap; }
.hfooter__social {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 8px;
	background: #E9F2F4;
	color: #6b7280;
	text-decoration: none;
	transition: background .18s, color .18s;
}
.hfooter__social:hover {
	background: #1a1a2e;
	color: #fff;
}

.hfooter__col h4 { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #1a1a2e; margin-bottom: 1rem; }
.hfooter__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .6rem; }
.hfooter__col a { font-size: .875rem; color: #6b7280; text-decoration: none; transition: color .15s; }
.hfooter__col a:hover { color: #1a1a2e; }

.hfooter__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-block: 1.5rem;
	font-size: .8rem;
	color: #9ca3af;
	border-top: 1px solid #d0e6ea;
	flex-wrap: wrap;
	gap: .5rem;
}
.hfooter__copy { color: #9ca3af; }
.hfooter__devby { color: #9ca3af; font-size: .78rem; }
.hfooter__devby a { color: #6b7280; text-decoration: none; transition: color .15s; }
.hfooter__devby a:hover { color: #1a1a2e; }

/* ─── HUB SECTION ───────────────────────────────────────────── */
.hub {
	background: #fff;
	padding: 5rem 0 6rem;
	border-top: 1px solid #d0e6ea;
}
.hub__inner {
	max-width: 780px;
	margin-inline: auto;
	padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.hub__head {
	text-align: center;
	margin-bottom: 3rem;
}
.hub__eyebrow {
	font-size: .78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .13em;
	color: #9ca3af;
	margin: 0 0 .75rem;
}
.hub__title {
	font-family: var(--h-font-serif);
	font-size: clamp(1.9rem, 4vw, 2.75rem);
	font-weight: 900;
	color: #1a1a2e;
	margin: 0;
	letter-spacing: -.025em;
	line-height: 1.1;
}
.hub__list {
	display: flex;
	flex-direction: column;
}
.hub__item {
	border-bottom: 1.5px solid #d0e6ea;
	padding: 2rem 0;
}
.hub__item:first-child { border-top: 1.5px solid #d0e6ea; }
.hub__item-header {
	display: flex;
	align-items: center;
	gap: .85rem;
	margin-bottom: 1rem;
}
.hub__item-icon {
	width: 42px;
	height: 42px;
	border-radius: 10px;
	background: #e9fbd4;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.hub__item-title {
	font-family: var(--h-font-serif);
	font-size: 1.2rem;
	font-weight: 700;
	color: #1a1a2e;
	margin: 0;
	flex: 1;
}
.hub__item-tag {
	font-size: .72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
	background: #e9fbd4;
	color: #2d7a0f;
	padding: .25rem .65rem;
	border-radius: 50px;
}
.hub__item-tag--paid {
	background: #fef3c7;
	color: #92400e;
}
.hub__item-body {}
.hub__item-desc {
	font-size: .9rem;
	color: #6b7280;
	line-height: 1.75;
	margin: 0 0 1rem;
	max-width: 620px;
}
.hub__item-link {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	font-size: .875rem;
	font-weight: 700;
	color: #1a1a2e;
	text-decoration: none;
	transition: color .15s, gap .15s;
}
.hub__item-link:hover {
	color: #7ed957;
	gap: .65rem;
}

/* ─── WAVY GREEN UNDERLINE ────────────────────────────────── */
.wavy-stroke {
	display: block;
	width: 260px;
	height: 10px;
	margin-top: .5rem;
}
.wavy-stroke--center { margin-inline: auto; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */

/* ── 1024px: Small desktop / large tablet ─────────────────── */
@media (max-width: 1024px) {
	/* Hero top */
	.htop__wrap { grid-template-columns: 1fr 1fr; }
	.hphoto img { max-width: 280px; }
	.htop__content { padding: 2.5rem 2rem 2.5rem 1.25rem; }

	/* Hero sub */
	.hsub__card { padding: 2.25rem; }
	.hsub__divider { margin-inline: 1.75rem; }
	.lnotes__brand { font-size: clamp(1.4rem, 2.2vw, 2rem); }

	/* About */
	.about__inner { grid-template-columns: 1fr 1fr; gap: 2rem; }

	/* Testimonials & books */
	.testi__grid { grid-template-columns: repeat(2, 1fr); }
	.books__inner { grid-template-columns: repeat(2, 1fr); }

	/* Footer */
	.hfooter__top { grid-template-columns: repeat(2, 1fr); }
}

/* ── 900px: Tablet ────────────────────────────────────────── */
@media (max-width: 900px) {
	/* Reduce section vertical padding */
	.help, .testi, .videos, .resources, .collab { padding-block: 3.5rem; }
	.about { padding-block: 3.5rem 4rem; }

	/* Press logos: slightly smaller */
	.press__logo-img { height: 50px; }

	/* Sliders: tighter cards so 2 are visible */
	.vcard { flex: 0 0 265px; }
	.rcard { flex: 0 0 265px; }
}

/* ── 768px: Mobile ────────────────────────────────────────── */
@media (max-width: 768px) {
	/* Nav */
	.hn__nav, .hn__cta { display: none; }
	.hn__inner { padding: .75rem var(--h-pad); }
	.hn__toggle {
		display: flex;
		flex-direction: column;
		gap: 5px;
		background: none;
		border: none;
		cursor: pointer;
		padding: 4px;
		margin-left: auto;
	}
	.hn__toggle span { display: block; width: 24px; height: 2px; background: var(--h-black); border-radius: 2px; transition: all .2s; }
	.hn.is-open { position: relative; }
	.hn.is-open .hn__nav {
		display: block;
		position: absolute;
		top: 100%; left: 0; right: 0;
		background: var(--h-white);
		border-bottom: 1px solid var(--h-border);
		padding: 1.25rem var(--h-pad);
		z-index: 100;
	}
	.hn.is-open .hn__nav ul { flex-direction: column; gap: 1rem; justify-content: flex-start; }
	.hn.is-open .hn__cta { display: block; margin: 1rem var(--h-pad) 0; }

	/* Hero top — single column, text first then image */
	.htop__wrap { grid-template-columns: 1fr; text-align: center; }
	.htop__visual { order: 1; padding: 0 var(--h-pad) 1rem; }
	.htop__content { order: 2; padding: 1.25rem var(--h-pad) 2rem; align-items: center; }
	.hphoto { justify-content: center; }
	.hphoto img { max-width: 200px; }
	.htop__title { font-size: 2.75rem; }
	.htop__squiggle { max-width: 260px; margin-inline: auto; }
	.htop__bio { font-size: 1rem; text-align: left; }

	/* Hero sub */
	.hsub { padding-bottom: 2.5rem; }
	.hsub__card { grid-template-columns: 1fr; padding: 1.75rem; }
	.hsub__divider { width: auto; height: 1px; margin-inline: 0; margin-block: 1.75rem; }
	.hsub__spiral { right: 1.5rem; top: -0.75rem; }
	.lnotes__brand { font-size: 1.5rem; }
	.lnotes__proof { flex-wrap: wrap; gap: .75rem; }

	/* Press logos: 3-column grid */
	.press { padding-block: 1.75rem; }
	.press__logos {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 1.25rem 1rem;
		justify-items: center;
	}
	.press__logo-img { height: 40px; width: auto; max-width: 100%; }

	/* Help */
	.help { padding-block: 3rem; }
	.help__wrap { grid-template-columns: 1fr; }
	.help__divider { width: auto; height: 1px; margin-inline: 0; margin-block: 2rem; }
	.help__title { font-size: clamp(1.9rem, 5vw, 2.5rem); }

	/* Sliders: 1 card + peek of next */
	.videos { padding-block: 3rem; }
	.vcard { flex: 0 0 80vw; }
	.resources { padding-block: 3rem; }
	.rcard { flex: 0 0 80vw; }

	/* Collab */
	.collab { padding-block: 3rem; }
	.collab__inner { grid-template-columns: 1fr; gap: 2rem; }

	/* About */
	.about { padding-block: 3rem 3.5rem; }
	.about__inner { grid-template-columns: 1fr; }

	.about__buttons-row { gap: .5rem; margin-top: 2rem; }

	/* Testimonials */
	.testi { padding-block: 3rem; }
	.testi__grid { grid-template-columns: 1fr; }
	.testi__proof { justify-content: flex-start; }
	.testi__head { text-align: left; }
	.wavy-stroke--center { margin-inline: auto; }

	/* Newsletter */
	.newsletter__card { grid-template-columns: 1fr; }
	.newsletter__card-left { border-right: none; border-bottom: 1.5px solid var(--h-border); }

	/* Books */
	.books__inner { grid-template-columns: 1fr 1fr; }

	/* Footer */
	.hfooter { padding-top: 2.5rem; }
	.hfooter__top { grid-template-columns: repeat(2, 1fr); }
}

/* ── 480px: Small phone ───────────────────────────────────── */
@media (max-width: 480px) {
	/* Hero top */
	.htop__title { font-size: 2.1rem; }
	.hphoto img { max-width: 170px; }

	/* Hero sub */
	.lnotes__brand { font-size: 1.35rem; }
	.lnotes__to { font-size: 1rem; }
	.hform__pill { flex-direction: column; border-radius: 14px; padding: .75rem 1rem; align-items: stretch; }
	.hform__pill button { border-radius: var(--h-radius-sm); width: 100%; justify-content: center; }

	/* Press logos: 2 columns on smallest screens */
	.press__logos { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
	.press__logo-img { height: 34px; }

	/* Sliders: near full width */
	.vcard { flex: 0 0 88vw; }
	.rcard { flex: 0 0 88vw; }

	/* About photo collage */
	.about__buttons-row { flex-direction: column; align-items: center; }

	/* Testimonials */
	.testi__head { text-align: left; }
	.testi__proof { justify-content: flex-start; }
	.wavy-stroke--center { margin-inline: 0; }

	/* Footer */
	.hfooter__top { grid-template-columns: 1fr; }
}
