/* ===================================================================
   HotelNet — Landing Page v2
   Self-contained stylesheet for the rebuilt marketing landing page.
   Loaded IN ADDITION to base.css + hotelnet.css (see main_v2.html), so
   it reuses the brand tokens (--red/--peach/etc.), the global .btn-*
   classes, .reveal scroll-reveal and the .stat-number counters, and
   only adds the v2-specific layout. Every class is prefixed `lp2-`
   so nothing here can leak into / collide with the v1 page.
   =================================================================== */

:root {
	--lp2-cream:      #FBF3F0;   /* soft peach-tint section bg            */
	--lp2-ink:        #1A1011;   /* near-black headings on light bg       */
	--lp2-muted:      #6A5E5E;   /* body copy on light bg                 */
	--lp2-line:       rgba(17, 10, 10, 0.08);
	--lp2-maxw:       1180px;    /* shared content max width              */
	--lp2-radius:     22px;
	--lp2-radius-sm:  14px;
	--lp2-shadow:     0 28px 70px -28px rgba(103, 6, 13, 0.38);
	--lp2-shadow-sm:  0 14px 34px -16px rgba(17, 10, 10, 0.30);
}

/* In-page anchor targets clear the (sticky) navbar when scrolled to. */
[id^="lp2-"] { scroll-margin-top: 92px; }

/* Shared centred container */
.lp2-wrap {
	max-width: var(--lp2-maxw);
	margin-inline: auto;
	width: 100%;
}

/* Section vertical rhythm (side padding comes from the global `section`
   rule in hotelnet.css). */
.lp2-pad   { padding-top: var(--hn-section-py);       padding-bottom: var(--hn-section-py); }
.lp2-pad-t { padding-top: var(--hn-section-py); }

/* Shared eyebrow pill (light surfaces) */
.lp2-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background-color: var(--peach);
	color: var(--red);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	padding: 6px 16px;
	border-radius: 3rem;
	margin-bottom: 22px;
}
.lp2-eyebrow .live-dot {
	width: 7px; height: 7px; border-radius: 50%;
	background-color: var(--red); display: inline-block;
	animation: pulse-dot 2s ease-in-out infinite;
}

/* Shared section heading block */
.lp2-h2 {
	font-family: 'Playfair Display', serif;
	font-weight: 900;
	font-size: clamp(2rem, 1.3rem + 2.4vw, 3rem);
	line-height: 1.12;
	color: var(--lp2-ink);
	margin-bottom: 18px;
}
/* Editorial accent: the coloured word(s) in a heading render in italic serif.
   `padding-right` keeps the slanted final glyph from clipping at the edge. */
.lp2-h2 .red {
	font-style: italic;
	padding-right: 0.06em;
}
.lp2-lead {
	font-size: 15.5px;
	line-height: 1.8;
	color: var(--lp2-muted);
	max-width: 540px;
}

/* ===================================================================
   1. HERO  — full-bleed 3-pillar slider
   Coordinated minimalist hotel photography (Institutions / Professionals
   / Suppliers). Each scene keeps a large light negative-space area on the
   LEFT; a warm per-slide veil lifts that area so the deep-rosewood copy
   stays legible while the imagery + people on the RIGHT stay clear. The
   whole hero tucks under the sticky nav, which floats transparently over
   it at the very top (see 1b).
   =================================================================== */
.lp2-hero {
	position: relative;
	min-height: 100vh;
	min-height: 100svh;   /* fill the initial viewport; svh ignores mobile URL-bar chrome */
	margin-top: calc(-1 * var(--hn-nav-h, 72px) - 2px);   /* fallback tuck; JS (tuckHero) sets the exact px */
	overflow: hidden;
	isolation: isolate;
	color: var(--rosewood);
	/* Light fallback (shows if the photos fail) — keeps the dark copy readable. */
	background: linear-gradient(120deg, #FBEFE8 0%, #F6E7DD 60%, #F1DECF 100%);
}

/* ---- Slides: absolutely stacked, cross-dissolved ---- */
.lp2-hero-track { position: absolute; inset: 0; z-index: 0; }
.lp2-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.9s ease, visibility 0s linear 0.9s;
}
.lp2-slide.is-active {
	opacity: 1;
	visibility: visible;
	transition: opacity 0.9s ease;
}

/* Per-slide identity: --veil = RGB of the wall tint used for the readability
   scrim; --focus = object-position that keeps each scene's subject in frame. */
.lp2-slide--one   { --veil: 245, 240, 233; --focus: 60% 50%; }
.lp2-slide--two   { --veil: 237, 239, 233; --focus: 72% 50%; }
.lp2-slide--three { --veil: 250, 238, 229; --focus: 57% 50%; }

.lp2-slide-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: #EFE7DF; }
.lp2-slide-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: var(--focus, center);
	display: block;
	transform: scale(1.05);
	transform-origin: var(--focus, center);
}
/* Slow Ken-Burns push on the active slide only. */
.lp2-slide.is-active .lp2-slide-media img { animation: lp2HeroZoom 8.5s ease-out forwards; }
@keyframes lp2HeroZoom { from { transform: scale(1.05); } to { transform: scale(1.13); } }

/* Readability veil — strong over the empty LEFT wall, gone before the people
   on the right; plus a whisper of lift along the bottom for the controls.
   Tinted per slide (--veil) so it reads as light, never grey. */
.lp2-slide-scrim {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(100deg,
			rgba(var(--veil), 0.96) 0%,
			rgba(var(--veil), 0.90) 24%,
			rgba(var(--veil), 0.62) 45%,
			rgba(var(--veil), 0.20) 60%,
			rgba(var(--veil), 0)   72%),
		linear-gradient(0deg,
			rgba(var(--veil), 0.52) 0%,
			rgba(var(--veil), 0)   20%);
}

/* ---- Copy ---- */
.lp2-slide-body {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	align-items: flex-start;   /* anchor the copy near the top — tight, deliberate gap under the bar */
	/* top: clear the nav bar + a small margin; bottom: keep clear of the controls */
	padding: calc(var(--hn-nav-h, 72px) + 44px) 0 128px;
}
.lp2-hero-shell {
	max-width: var(--lp2-maxw);
	width: 100%;
	padding-inline: 54px;
}
.lp2-hero-copy { max-width: min(94%, 820px); }

/* Eyebrow — frosted pill that reads on the cream, sage and peach walls alike. */
.lp2-hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	background: rgba(255, 255, 255, 0.74);
	color: var(--red);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	padding: 7px 16px;
	border-radius: 3rem;
	border: 1px solid rgba(103, 6, 13, 0.12);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
	box-shadow: 0 12px 28px -20px rgba(103, 6, 13, 0.55);
	margin-bottom: 22px;
}
.lp2-hero-eyebrow .live-dot {
	width: 7px; height: 7px; border-radius: 50%;
	background: var(--red); display: inline-block;
	animation: pulse-dot 2s ease-in-out infinite;
}

.lp2-hero h1 {
	font-family: 'Playfair Display', serif;
	font-weight: 900;
	font-size: clamp(2.2rem, 1.1rem + 3.1vw, 3.55rem);
	line-height: 1.08;
	letter-spacing: -0.01em;
	color: var(--rosewood);
	margin: 0 0 18px;
}
.lp2-hero h1 .accent { color: var(--red); font-style: italic; padding-right: 0.06em; }

.lp2-hero-sub {
	font-size: clamp(13.5px, 12.75px + 0.25vw, 15px);
	line-height: 1.7;
	color: #4A3B3B;
	max-width: 34em;
	margin: 0 0 30px;
}

.lp2-hero-cta { display: flex; align-items: center; gap: 14px; flex-wrap: nowrap; }
/* Compact the hero CTAs — the global .btn-large padding (20px 72px) is far too
   wide and forced the two buttons to wrap; this keeps them on one row. */
.lp2-hero-cta .btn { padding: 15px 30px; font-size: 13.5px; white-space: nowrap; }
/* Secondary CTA — outline tuned for the light imagery (the old white ghost
   was built for the dark hero and would vanish here). */
.lp2-hero-ghost {
	color: var(--rosewood);
	background: rgba(255, 255, 255, 0.5);
	border: 1.5px solid rgba(103, 6, 13, 0.28) !important;
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
}
.lp2-hero-ghost:hover {
	color: var(--peach);
	background: var(--rosewood);
	border-color: var(--rosewood) !important;
}

/* Staggered rise-in for the active slide's copy. */
.lp2-hero-copy > * { opacity: 0; transform: translateY(22px); }
.lp2-slide.is-active .lp2-hero-copy > * {
	animation: lp2HeroRise 0.85s cubic-bezier(0.22, 0.72, 0.2, 1) forwards;
}
.lp2-slide.is-active .lp2-hero-eyebrow { animation-delay: 0.12s; }
.lp2-slide.is-active .lp2-hero h1      { animation-delay: 0.22s; }
.lp2-slide.is-active .lp2-hero-sub     { animation-delay: 0.36s; }
.lp2-slide.is-active .lp2-hero-cta     { animation-delay: 0.50s; }
@keyframes lp2HeroRise { to { opacity: 1; transform: none; } }

/* ---- Controls: pillar tabs (left) + arrows (right), aligned to the copy ---- */
.lp2-hero-controls {
	position: absolute;
	left: 0; right: 0; bottom: 0;
	z-index: 3;
	padding-bottom: 40px;
	pointer-events: none;   /* let clicks fall through the gap; re-enabled on the controls */
}
.lp2-hero-controls-row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
}
.lp2-hero-controls-row > * { pointer-events: auto; }

.lp2-hero-dots { display: flex; gap: 10px; flex-wrap: wrap; }
.lp2-hero-dot {
	position: relative;
	appearance: none;
	background: none;
	border: 0;
	border-top: 2px solid rgba(103, 6, 13, 0.18);
	padding: 11px 2px 0;
	min-width: 116px;
	text-align: left;
	cursor: pointer;
	color: var(--rosewood);
	opacity: 0.7;
	transition: opacity 0.25s ease;
}
.lp2-hero-dot .i {
	display: block;
	font-size: 10.5px; font-weight: 700; letter-spacing: 0.14em;
	opacity: 0.55;
}
.lp2-hero-dot .t {
	display: block;
	font-family: 'Playfair Display', serif;
	font-weight: 700; font-size: 15px; margin-top: 2px;
}
.lp2-hero-dot .bar {
	position: absolute;
	top: -2px; left: 0;
	height: 2px; width: 0;
	background: var(--red);
}
.lp2-hero-dot[aria-current="true"] { opacity: 1; }
.lp2-hero-dot:hover, .lp2-hero-dot:focus-visible { opacity: 1; }

.lp2-hero-arrows { display: flex; gap: 10px; flex-shrink: 0; }
.lp2-hero-arrow {
	width: 46px; height: 46px;
	border-radius: 50%;
	display: inline-flex; align-items: center; justify-content: center;
	background: rgba(255, 255, 255, 0.55);
	border: 1.5px solid rgba(103, 6, 13, 0.24);
	color: var(--rosewood);
	cursor: pointer;
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
	transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.lp2-hero-arrow:hover {
	background: var(--rosewood);
	border-color: var(--rosewood);
	color: var(--peach);
}
.lp2-hero-arrow i, .lp2-hero-arrow svg { font-size: 15px; }

/* Visually-hidden live region for slide announcements. */
.lp2-vh {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0 0 0 0);
	white-space: nowrap; border: 0;
}

/* ===================================================================
   1b. NAVBAR — blends into the hero: fully transparent (no background,
       border or shadow) the whole time the hero is behind it, so the
       imagery bleeds edge-to-edge under the bar. The `hn-nav--on-hero`
       class is added ONLY by the v2 homepage JS (main_v2.html) while the
       hero sits behind the (sticky) nav; once the page scrolls PAST the
       hero the class drops and the standard white/blurred bar (hotelnet.css)
       returns. Same specificity as `.nav-scrolled` but loaded later, so it
       wins even mid-scroll over the hero. The default dark links, red logo
       and red "Get Started" already read cleanly on the light scenes.
   =================================================================== */
#mainNav.hn-nav.hn-nav--on-hero {
	background: transparent !important;   /* beat the base white + .nav-scrolled bg */
	box-shadow: none !important;
	border-bottom: 0 !important;
	-webkit-backdrop-filter: none;
	backdrop-filter: none;
}
/* The collapsed mega-menu bar (.hn-subnav, max-height:0) still paints a 1px
   white seam via its background/border — invisible on white pages, but a
   visible line under the transparent hero bar. Hide it while on the hero and
   closed; the open mega-menu (nav-is-open) keeps its own white surface. */
#mainNav.hn-nav--on-hero:not(.nav-is-open) .hn-subnav {
	background: transparent;
	border-top-color: transparent;
}
/* Menu (hamburger) icon in the brand rosewood over the hero (default is grey). */
#mainNav.hn-nav--on-hero .hn-mobile-toggle { color: var(--rosewood); }

/* ===================================================================
   2. PATHWAYS  — three audience entry tiles, raised card overlapping hero
   =================================================================== */
/* White breathing room above the card separates it from the red hero.
   Small trailing pad only — the metrics belong to the pathways block, so the
   gap to the next section is owned by that section's own top padding (avoids a
   doubled-up void between the metrics and "For Hotels"). */
.lp2-pathways { background: #fff; position: relative; z-index: 3; padding-top: 72px; padding-bottom: 72px; }
.lp2-pathways-card {
	max-width: var(--lp2-maxw);
	margin: 0 auto;
	background: #fff;
	border-radius: var(--lp2-radius);
	box-shadow: var(--lp2-shadow);
	border: 1px solid var(--lp2-line);
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	overflow: hidden;
}
.lp2-path {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 34px 30px;
	border-right: 1px solid var(--lp2-line);
	transition: background 0.25s ease, transform 0.25s ease;
}
.lp2-path:last-child { border-right: none; }
.lp2-path:hover { background: var(--lp2-cream); }
.lp2-path-ico {
	width: 52px; height: 52px;
	border-radius: 14px;
	display: flex; align-items: center; justify-content: center;
	background: var(--peach);
	color: var(--red);
	font-size: 21px;
}
.lp2-path-kicker {
	font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
	text-transform: uppercase; color: var(--red);
}
.lp2-path h3 {
	font-family: 'Playfair Display', serif;
	font-weight: 800; font-size: 1.4rem; color: var(--lp2-ink); margin: 0;
}
.lp2-path p { font-size: 13.5px; line-height: 1.65; color: var(--lp2-muted); margin: 0; flex: 1; }
.lp2-path-link {
	font-size: 13px; font-weight: 600; color: var(--red);
	display: inline-flex; align-items: center; gap: 7px;
	margin-top: 4px;
}
.lp2-path-link i { transition: transform 0.25s ease; }
.lp2-path:hover .lp2-path-link i { transform: translateX(4px); }

/* ===================================================================
   3. AUDIENCE sections  (For Hotels / Job Seekers / Suppliers)
   (The "by the numbers" metrics now use the reused v1 stats_bar.html,
    styled by hotelnet.css — no v2 metrics styles needed here.)
   =================================================================== */
.lp2-aud { overflow: hidden; }
.lp2-aud--cream { background: var(--lp2-cream); }
.lp2-aud-grid {
	max-width: var(--lp2-maxw);
	margin-inline: auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}
.lp2-aud--flip .lp2-aud-media { order: -1; }   /* image on the left */

.lp2-aud-copy { min-width: 0; }
.lp2-aud-copy .lp2-h2 .red { color: var(--red); }

.lp2-checklist { list-style: none; margin: 32px 0 0; padding: 0; }
.lp2-checklist li {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	margin-bottom: 20px;
	font-size: 15px;
	line-height: 1.55;
	color: var(--dark-grey);
}
.lp2-checklist li:last-child { margin-bottom: 0; }
/* A light peach "chip" check — cleaner and calmer than repeated solid red dots.
   FontAwesome's JS replaces the <i> with an <svg>, so style both element types. */
.lp2-checklist li > i,
.lp2-checklist li > svg {
	box-sizing: content-box;
	width: 12px;
	height: 12px;
	padding: 7px;
	border-radius: 8px;
	background: var(--peach);
	color: var(--red);
	font-size: 12px;
	line-height: 1;
	flex-shrink: 0;
	margin-top: 1px;
	overflow: visible;
}

.lp2-aud-cta { margin-top: 30px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.lp2-link {
	font-weight: 600; font-size: 14px; color: var(--red);
	display: inline-flex; align-items: center; gap: 8px;
}
.lp2-link i { transition: transform 0.25s ease; }
.lp2-link:hover i { transform: translateX(4px); }

/* Audience media — one clean framed photo (no busy offset panel). */
.lp2-aud-media { position: relative; }
.lp2-aud-figure {
	position: relative;
	margin: 0;                 /* drop the UA/Bootstrap <figure> bottom margin */
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 36px 70px -34px rgba(103, 6, 13, 0.34);
	aspect-ratio: 4 / 3.4;
	background: linear-gradient(135deg, var(--rosewood), var(--clay));
}
.lp2-aud-figure img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Small floating stat badge on the media */
.lp2-aud-badge {
	position: absolute;
	left: 20px; bottom: 20px;
	background: var(--peach);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
	border-radius: 14px;
	padding: 12px 18px;
	box-shadow: 0 14px 30px -14px rgba(103, 6, 13, 0.40);
	display: flex;
	align-items: center;
	gap: 13px;
}
/* FA swaps <i> for <svg>; colour both. */
.lp2-aud-badge i,
.lp2-aud-badge svg { color: var(--red); font-size: 18px; flex-shrink: 0; }
.lp2-aud-badge b { display: block; font-size: 15px; color: var(--rosewood); line-height: 1.15; }
.lp2-aud-badge span { font-size: 11.5px; color: var(--lp2-muted); line-height: 1.3; }

/* ===================================================================
   4. PLATFORM CAPABILITIES  — cream band; "everything in one platform".
   A calm 3×2 feature grid that shows the platform's breadth after the
   audience deep-dives. Reuses the shared eyebrow / h2 / lead header block.
   =================================================================== */
.lp2-caps { background: var(--lp2-cream); }
.lp2-caps-head { max-width: 680px; margin-inline: auto; text-align: center; }
.lp2-caps-head .lp2-lead { margin-inline: auto; }
.lp2-caps-grid {
	max-width: var(--lp2-maxw);
	margin: 52px auto 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}
.lp2-cap {
	background: #fff;
	border: 1px solid var(--lp2-line);
	border-radius: var(--lp2-radius);
	padding: 32px 28px;
	box-shadow: var(--lp2-shadow-sm);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.lp2-cap:hover { transform: translateY(-4px); box-shadow: 0 26px 50px -26px rgba(103, 6, 13, 0.34); }
.lp2-cap-ico {
	width: 54px; height: 54px;
	border-radius: 15px;
	display: flex; align-items: center; justify-content: center;
	background: var(--peach);
	color: var(--red);
	font-size: 22px;
	margin-bottom: 20px;
}
/* FA swaps <i> for <svg>; keep the glyph from clipping the rounded tile. */
.lp2-cap-ico i, .lp2-cap-ico svg { overflow: visible; }
.lp2-cap h3 {
	font-family: 'Playfair Display', serif;
	font-weight: 800;
	font-size: 1.3rem;
	color: var(--lp2-ink);
	margin: 0 0 10px;
}
.lp2-cap p { font-size: 13.5px; line-height: 1.7; color: var(--lp2-muted); margin: 0; }

/* ===================================================================
   4b. PLANS TEASER  — white band; "start free, scale when ready".
   Data-driven from frontend.views._pricing_teaser() so the "from" figures
   never drift from the real pricing page. Three audience entry cards.
   =================================================================== */
.lp2-plans { background: #fff; }
.lp2-plans-head { max-width: 680px; margin-inline: auto; text-align: center; }
.lp2-plans-head .lp2-lead { margin-inline: auto; }
.lp2-plans-grid {
	max-width: 980px;
	margin: 52px auto 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}
.lp2-plan {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 6px;
	background: var(--lp2-cream);
	border: 1px solid var(--lp2-line);
	border-radius: var(--lp2-radius);
	padding: 30px 28px;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.lp2-plan:hover {
	transform: translateY(-4px);
	border-color: var(--peach);
	box-shadow: var(--lp2-shadow-sm);
}
.lp2-plan-ico {
	width: 50px; height: 50px;
	border-radius: 14px;
	display: flex; align-items: center; justify-content: center;
	background: #fff;
	color: var(--red);
	font-size: 20px;
	margin-bottom: 12px;
	box-shadow: 0 8px 18px -10px rgba(103, 6, 13, 0.40);
}
.lp2-plan-aud {
	font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
	text-transform: uppercase; color: var(--red);
}
.lp2-plan-free {
	font-family: 'Playfair Display', serif;
	font-weight: 800; font-size: 1.5rem; color: var(--lp2-ink); line-height: 1.1;
}
.lp2-plan-from { font-size: 13px; color: var(--lp2-muted); line-height: 1.5; }
.lp2-plan-from b { color: var(--rosewood); font-weight: 700; }
.lp2-plan-link {
	margin-top: 10px;
	font-size: 13px; font-weight: 600; color: var(--red);
	display: inline-flex; align-items: center; gap: 7px;
}
.lp2-plan-link i { transition: transform 0.25s ease; }
.lp2-plan:hover .lp2-plan-link i { transform: translateX(4px); }
.lp2-plans-foot { text-align: center; margin-top: 40px; }

/* ===================================================================
   5. INFORMATION CENTRE  — dark rosewood band
   =================================================================== */
.lp2-info {
	position: relative;
	overflow: hidden;
	color: #fff;
	background: linear-gradient(150deg, #5C050B 0%, #910911 60%, #7A0710 100%);
}
.lp2-info .lp2-eyebrow {
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.28);
}
.lp2-info .lp2-eyebrow .live-dot { background: #fff; }
.lp2-info-head { max-width: 720px; margin-inline: auto; text-align: center; }
.lp2-info-head .lp2-h2 { color: #fff; }
.lp2-info-head .lp2-lead { color: rgba(255, 255, 255, 0.86); margin-inline: auto; }

.lp2-info-grid {
	max-width: var(--lp2-maxw);
	margin: 48px auto 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}
.lp2-info-card {
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--lp2-radius);
	padding: 30px 26px;
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
	position: relative;
}
.lp2-info-ico {
	width: 50px; height: 50px;
	border-radius: 14px;
	display: flex; align-items: center; justify-content: center;
	background: var(--peach);
	color: var(--red);
	font-size: 20px;
	margin-bottom: 18px;
}
.lp2-info-card h3 {
	font-family: 'Playfair Display', serif;
	font-weight: 800;
	font-size: 1.3rem;
	color: #fff;
	margin: 0 0 10px;
}
.lp2-info-card p { font-size: 13.5px; line-height: 1.65; color: rgba(255, 255, 255, 0.82); margin: 0; }
.lp2-tag {
	display: inline-flex; align-items: center; gap: 6px;
	font-size: 10.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
	padding: 4px 11px; border-radius: 3rem; margin-bottom: 14px;
}
.lp2-tag--live    { background: rgba(255,255,255,0.18); color: #fff; }
.lp2-tag--live .dot { width: 6px; height: 6px; border-radius: 50%; background: #7CF2B0; display: inline-block; }
.lp2-tag--soon    { background: var(--peach); color: var(--rosewood); }
.lp2-info-cta { text-align: center; margin-top: 44px; }

/* ===================================================================
   6. CLOSING CTA  — solid red band
   =================================================================== */
.lp2-close {
	background: var(--red);
	color: var(--peach);
	text-align: center;
	position: relative;
	overflow: hidden;
}
.lp2-close-inner { max-width: 900px; margin-inline: auto; position: relative; z-index: 2; }
.lp2-close h2 {
	font-family: 'Playfair Display', serif;
	font-weight: 900;
	font-size: clamp(1.9rem, 1.3rem + 2vw, 2.9rem);
	color: #fff;
	margin: 0 0 16px;
}
.lp2-close p { color: rgba(255, 255, 255, 0.88); font-size: 15px; margin: 0 0 30px; }
.lp2-close-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
/* Three path buttons — trimmer than the global btn-large so all three sit on one row. */
.lp2-close-cta .btn { padding: 16px 32px; }
.lp2-close-blob {
	position: absolute;
	width: 460px; height: 460px; border-radius: 50%;
	background: radial-gradient(circle, rgba(254,215,201,0.18), transparent 70%);
	z-index: 1;
}
.lp2-close-blob-1 { top: -180px; left: -120px; }
.lp2-close-blob-2 { bottom: -220px; right: -120px; }

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 992px) {
	.lp2-hero-copy { max-width: min(94%, 680px); }

	.lp2-aud-grid { grid-template-columns: 1fr; gap: 44px; }
	.lp2-aud--flip .lp2-aud-media { order: 0; }      /* image back below copy */
	.lp2-info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
	/* Hero: full-bleed image behind bottom-anchored copy. The veil flips to a
	   bottom-up wash so the copy reads over the lower (light) part of each
	   scene, and the pillar tabs become three equal progress segments. */
	.lp2-slide-scrim {
		/* Copy is vertically centred on mobile → veil is strongest across the
		   middle band (keeps the copy legible) and lets the photo peek top + bottom. */
		background: linear-gradient(180deg,
			rgba(var(--veil), 0.30) 0%,
			rgba(var(--veil), 0.74) 18%,
			rgba(var(--veil), 0.85) 34%,
			rgba(var(--veil), 0.85) 76%,
			rgba(var(--veil), 0.60) 100%);
	}
	.lp2-slide-body {
		align-items: center;   /* vertically centre the copy between the nav and the controls */
		padding: calc(var(--hn-nav-h, 64px) + 16px) 0 108px;
	}
	.lp2-hero-shell { padding-inline: 24px; }
	.lp2-hero-copy { max-width: 100%; }
	.lp2-hero-eyebrow { margin-bottom: 16px; }
	.lp2-hero h1 { font-size: clamp(1.8rem, 1.35rem + 2.6vw, 2.25rem); margin-bottom: 14px; }
	.lp2-hero h1 br { display: none; }   /* the forced break is for the desktop 2-line layout; let it wrap naturally on mobile */
	.lp2-hero-sub { margin-bottom: 22px; }
	.lp2-hero-sub { max-width: 100%; }
	.lp2-hero-cta { flex-wrap: wrap; }               /* allow the two CTAs to stack on very narrow screens */
	.lp2-close-cta .btn-large { padding: 16px 40px; }

	.lp2-hero-controls { padding-bottom: 24px; }
	.lp2-hero-arrows { display: none; }              /* swipe + tabs on touch */
	.lp2-hero-dots { width: 100%; gap: 8px; }
	.lp2-hero-dot { min-width: 0; flex: 1 1 0; padding-top: 9px; }
	.lp2-hero-dot .t { font-size: 12.5px; }

	.lp2-pathways { padding-top: 48px; padding-bottom: 48px; }
	.lp2-pathways-card { grid-template-columns: 1fr; margin-top: 0; }
	.lp2-path { border-right: none; border-bottom: 1px solid var(--lp2-line); }
	.lp2-path:last-child { border-bottom: none; }

	.lp2-aud-cta { gap: 14px; }
}

/* Short desktop/tablet viewports: the hero stays full-height, so tighten the
   copy (top gap, headline, spacing) to guarantee it never collides with the
   bottom controls. Scoped to ≥769px so the mobile layout is untouched. */
@media (min-width: 769px) and (max-height: 680px) {
	.lp2-slide-body { padding-top: calc(var(--hn-nav-h, 72px) + 24px); padding-bottom: 92px; }
	.lp2-hero-eyebrow { margin-bottom: 15px; }
	.lp2-hero h1 { font-size: clamp(2rem, 1rem + 2.2vw, 2.85rem); margin-bottom: 14px; }
	.lp2-hero-sub { margin-bottom: 22px; }
}

/* Respect reduced-motion: freeze the Ken-Burns, autoplay progress and copy
   rise; keep only a short cross-fade so manual navigation isn't a hard cut. */
@media (prefers-reduced-motion: reduce) {
	.lp2-slide { transition: opacity 0.2s linear, visibility 0s linear 0.2s; }
	.lp2-slide.is-active { transition: opacity 0.2s linear; }
	.lp2-slide-media img,
	.lp2-slide.is-active .lp2-slide-media img { animation: none; transform: none; }
	.lp2-hero-copy > * { opacity: 1; transform: none; }
	.lp2-slide.is-active .lp2-hero-copy > * { animation: none; }
	.lp2-hero-dot .bar { display: none; }
	.lp2-path, .lp2-path-link i, .lp2-link i { transition: none; }
	.lp2-cap, .lp2-plan { transition: none; }
}

/* New v2 sections (capabilities + plans) — collapse the grids on small screens.
   6 capability cards read best 2-up on tablet, then single-column on phones;
   the 3 plan cards stack straight to one column. */
@media (max-width: 992px) {
	.lp2-caps-grid  { grid-template-columns: repeat(2, 1fr); }
	.lp2-plans-grid { grid-template-columns: 1fr; max-width: 440px; }
}
@media (max-width: 600px) {
	.lp2-caps-grid { grid-template-columns: 1fr; }
}
