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

/* —— Home: borderless, fluid sections —— */
.lotsa-light-home .jg-home {
	font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
	background: transparent;
	color: #0f172a;
}

.jg-home-orbs {
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	background:
		radial-gradient(ellipse 85% 55% at 10% -10%, var(--lv-brand-muted), transparent 50%),
		radial-gradient(ellipse 70% 45% at 92% 18%, rgba(56, 189, 248, 0.11), transparent 48%),
		radial-gradient(ellipse 55% 40% at 50% 105%, rgba(244, 114, 182, 0.08), transparent 45%);
}

.jg-home > section,
.jg-home > .jg-home-wave {
	position: relative;
	z-index: 1;
}

.jg-home-wrap {
	width: 100%;
	max-width: min(var(--lv-content-max, 80rem), 100%);
	margin-left: auto;
	margin-right: auto;
	padding-left: max(var(--lv-gutter-x, 1rem), env(safe-area-inset-left, 0px));
	padding-right: max(var(--lv-gutter-x, 1rem), env(safe-area-inset-right, 0px));
	box-sizing: border-box;
}

/* Hero */
.jg-home-hero {
	padding: clamp(3.5rem, 10vw, 6.5rem) 0 clamp(3rem, 8vw, 5rem);
	min-height: min(88vh, 52rem);
	display: flex;
	align-items: flex-end;
	background:
		linear-gradient(165deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.55) 52%, rgba(248, 250, 252, 0.92) 100%),
		url("../image/hero-bg-128x222.webp") center top / cover no-repeat;
}

.jg-home-hero__grid {
	display: grid;
	gap: clamp(2rem, 5vw, 3.5rem);
	align-items: end;
}

@media (min-width: 1024px) {
	.jg-home-hero__grid {
		grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.52fr);
		gap: 3rem 4rem;
	}
}

.jg-home-eyebrow {
	margin: 0;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--lv-text-accent-warm);
}

.jg-home-hero__title {
	margin: 0.75rem 0 0;
	font-family: "Space Grotesk", sans-serif;
	font-size: clamp(2rem, 5.2vw, 3.55rem);
	line-height: 1.05;
	font-weight: 700;
	letter-spacing: -0.03em;
	color: #020617;
	max-width: 20ch;
}

.jg-home-lead {
	margin: 1.25rem 0 0;
	max-width: 52ch;
	font-size: clamp(1rem, 1.35vw, 1.12rem);
	line-height: 1.75;
	color: #334155;
}

.jg-home-hero__actions {
	margin-top: 1.75rem;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.jg-home-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.9rem 1.75rem;
	font-size: 0.95rem;
	font-weight: 700;
	text-decoration: none;
	border-radius: 999px;
	transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.jg-home-btn--gold {
	color: var(--lv-on-brand);
	background: linear-gradient(145deg, var(--lv-brand-mid), var(--lv-brand) 45%, var(--lv-brand-hover));
	box-shadow: 0 16px 38px var(--lv-brand-glow);
}

.jg-home-btn--gold:hover {
	transform: translateY(-2px);
	box-shadow: 0 22px 48px var(--lv-brand-glow-strong);
}

.jg-home-btn--ghost {
	color: #0f172a;
	background: rgba(255, 255, 255, 0.55);
	box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
}

.jg-home-btn--ghost:hover {
	background: rgba(255, 255, 255, 0.88);
	transform: translateY(-2px);
}

.jg-home-hero__aside {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.jg-home-stat {
	padding: 1.15rem 1.25rem;
	border-radius: 1.25rem;
	background: rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	box-shadow: 0 20px 50px rgba(15, 23, 42, 0.07);
	border: 0;
	display: grid;
	gap: 0.2rem;
}

.jg-home-stat__value {
	font-family: "Space Grotesk", sans-serif;
	font-size: clamp(1.65rem, 3.5vw, 2.1rem);
	font-weight: 700;
	color: #020617;
	line-height: 1.1;
}

.jg-home-stat__label {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #64748b;
}

.jg-home-stat__hint {
	font-size: 0.85rem;
	line-height: 1.45;
	color: #475569;
	margin-top: 0.25rem;
}

/* Wave divider */
.jg-home-wave {
	height: clamp(2.5rem, 6vw, 4rem);
	background: linear-gradient(180deg, rgba(248, 250, 252, 0.92) 0%, rgba(244, 246, 251, 0.4) 100%);
	mask-image: radial-gradient(120% 100% at 50% 100%, #000 35%, transparent 72%);
	-webkit-mask-image: radial-gradient(120% 100% at 50% 100%, #000 35%, transparent 72%);
}

/* Asymmetric about band */
.jg-home-band {
	padding: clamp(3rem, 8vw, 5.5rem) 0;
}

.jg-home-band--slant {
	background: linear-gradient(118deg, rgba(255, 255, 255, 0.65) 0%, rgba(241, 245, 249, 0.85) 52%, rgba(254, 252, 247, 0.9) 100%);
}

.jg-home-about {
	display: grid;
	gap: 2.5rem;
	align-items: center;
}

@media (min-width: 900px) {
	.jg-home-about {
		grid-template-columns: minmax(0, 1fr) minmax(0, 44%);
		gap: clamp(2rem, 5vw, 4rem);
	}
}

.jg-home-about__media {
	margin: 0;
	border-radius: clamp(1rem, 2.5vw, 1.75rem);
	overflow: hidden;
	box-shadow: 0 28px 70px rgba(15, 23, 42, 0.12);
}

.jg-home-about__media img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

/* Categories: one row × three columns (desktop) */
.jg-home-cats {
	padding: clamp(3rem, 8vw, 5.5rem) 0;
}

.jg-home-cats__head {
	max-width: 40rem;
	margin-bottom: 2.5rem;
}

.jg-home-deck {
	margin: 0.75rem 0 0;
	font-size: 1.02rem;
	color: #64748b;
	line-height: 1.65;
}

.jg-home-cats__list {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(2rem, 4vw, 2.75rem);
}

@media (min-width: 960px) {
	.jg-home-cats__list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: clamp(1.25rem, 2.5vw, 2rem);
		align-items: start;
	}
}

.jg-home-cat {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 1.25rem;
	padding: 0;
	border-bottom: 0;
	box-shadow: none;
	background: transparent;
}

@media (min-width: 960px) {
	.jg-home-cat {
		gap: 1.1rem;
	}
}

.jg-home-cat__body {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}

.jg-home-cat__body .jg-section-desc {
	text-align: center;
}

.jg-home-cat__visual img {
	width: 100%;
	max-width: min(200px, 52vw);
	height: auto;
	display: block;
	filter: drop-shadow(0 22px 36px rgba(15, 23, 42, 0.12));
}

.jg-home-link {
	display: inline-flex;
	margin-top: 0.85rem;
	font-weight: 700;
	font-size: 0.92rem;
	color: var(--lv-text-accent-warm);
	text-decoration: none;
	border-bottom: 2px solid var(--lv-brand-border);
	padding-bottom: 2px;
	transition: color 0.2s ease, border-color 0.2s ease;
}

.jg-home-link:hover {
	color: #0f172a;
	border-bottom-color: #0f172a;
}

/* Dual strip */
.jg-home-band--soft {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, rgba(248, 250, 252, 0.95) 45%, rgba(255, 255, 255, 0.4) 100%);
}

.jg-home-dual {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 0;
}

.jg-home-dual__panel {
	padding: clamp(1.5rem, 3vw, 2.25rem) 0;
	border-radius: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
}

.jg-home-dual__panel:not(:last-child) {
	padding-bottom: clamp(1.75rem, 4vw, 2.5rem);
	margin-bottom: clamp(1.25rem, 3vw, 2rem);
	border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.jg-home-dual__panel--accent {
	background: linear-gradient(125deg, rgba(254, 226, 226, 0.4) 0%, rgba(255, 255, 255, 0) 65%);
	padding-left: clamp(0.75rem, 2vw, 1.5rem);
	padding-right: clamp(0.75rem, 2vw, 1.5rem);
	padding-top: clamp(1.5rem, 3vw, 2rem);
	padding-bottom: clamp(1.5rem, 3vw, 2rem);
	border-radius: 1.5rem;
	margin-bottom: 0;
	border-bottom: 0;
}

.jg-home-steps {
	margin-top: 0.5rem;
	counter-reset: jstep;
	list-style: none;
	padding-left: 0;
}

.jg-home-steps li {
	position: relative;
	padding-left: 2.25rem;
	margin-bottom: 0.75rem;
}

.jg-home-steps li::before {
	counter-increment: jstep;
	content: counter(jstep);
	position: absolute;
	left: 0;
	top: 0.1rem;
	width: 1.65rem;
	height: 1.65rem;
	border-radius: 999px;
	background: linear-gradient(145deg, var(--lv-brand), var(--lv-brand-light));
	color: var(--lv-on-brand);
	font-size: 0.72rem;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 14px var(--lv-brand-glow);
}

/* FAQ mosaic: CSS columns, no boxes */
.jg-home-faqblock {
	padding: clamp(3rem, 8vw, 5.5rem) 0;
}

.jg-home-faqblock__title {
	max-width: 20ch;
}

.jg-home-faqgrid {
	margin-top: 2rem;
	columns: 1;
	column-gap: 2.5rem;
}

@media (min-width: 700px) {
	.jg-home-faqgrid {
		columns: 2;
	}
}

@media (min-width: 1100px) {
	.jg-home-faqgrid {
		columns: 3;
	}
}

.jg-home-faqcell {
	break-inside: avoid;
	margin-bottom: 2rem;
	padding: 0 0 1.5rem;
	border-bottom: 1px solid rgba(15, 23, 42, 0.08);
	background: transparent;
	box-shadow: none;
	border-radius: 0;
}

.jg-home-faqcell:last-child {
	margin-bottom: 0;
}

/* Value */
.jg-home-value {
	padding: clamp(3rem, 8vw, 5rem) 0;
}

.jg-home-value__grid {
	display: grid;
	gap: 2.5rem;
	align-items: center;
}

@media (min-width: 960px) {
	.jg-home-value__grid {
		grid-template-columns: minmax(0, 1fr) minmax(0, 38%);
	}
}

.jg-home-value__list {
	margin-top: 1rem;
}

.jg-home-value__fig {
	margin: 0;
	border-radius: 1.25rem;
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(15, 23, 42, 0.11);
}

.jg-home-value__fig img {
	display: block;
	width: 100%;
	height: auto;
}

/* Trio */
.jg-home-trio {
	padding: clamp(2.5rem, 7vw, 4.5rem) 0 clamp(3rem, 8vw, 5rem);
	background: linear-gradient(180deg, transparent 0%, rgba(254, 226, 226, 0.22) 40%, transparent 100%);
}

.jg-home-trio__cols {
	margin-top: 1.75rem;
	display: grid;
	gap: 2rem;
}

@media (min-width: 768px) {
	.jg-home-trio__cols {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 1.5rem 2rem;
	}
}

.jg-home-trio__col {
	padding: 1.5rem 0 0;
	border-top: 3px solid var(--lv-brand);
	background: transparent;
	border-radius: 0;
	box-shadow: none;
}

/* Footer-ish closer */
.jg-home-band--footerish {
	padding: clamp(3rem, 8vw, 5rem) 0 clamp(4rem, 10vw, 6rem);
	background: linear-gradient(180deg, rgba(248, 250, 252, 0.9) 0%, rgba(241, 245, 249, 0.65) 100%);
}

.jg-home-closer {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 0;
}

.jg-home-closer__faq {
	padding-top: clamp(1.75rem, 4vw, 2.75rem);
	margin-top: clamp(1.25rem, 3vw, 2rem);
	border-top: 1px solid rgba(15, 23, 42, 0.08);
}

/* Shared typographic tokens */
.jg-chip {
	display: inline-block;
	font-size: 0.68rem;
	font-weight: 700;
	padding: 0.28rem 0.65rem;
	border-radius: 999px;
	background: var(--lv-chip-bg);
	color: var(--lv-chip-fg);
	margin-bottom: 0.75rem;
}

.jg-section-title {
	font-family: "Space Grotesk", sans-serif;
	margin: 0;
	font-size: clamp(1.45rem, 3.2vw, 2.15rem);
	line-height: 1.12;
	letter-spacing: -0.02em;
	color: #020617;
}

.jg-card-title {
	font-family: "Space Grotesk", sans-serif;
	font-size: clamp(1.05rem, 1.5vw, 1.2rem);
	margin: 0 0 0.5rem;
	color: #0f172a;
}

.jg-section-desc {
	margin: 0.85rem 0 0;
	color: #334155;
	line-height: 1.78;
	font-size: 1.02rem;
}

.jg-section-desc:first-of-type {
	margin-top: 0.65rem;
}

ul.jg-steps {
	padding-left: 1.1rem;
	display: grid;
	gap: 0.55rem;
	color: #1e293b;
	font-size: 1.02rem;
	line-height: 1.65;
}

/* Accordion */
.jg-faq-item {
	border-bottom: 1px solid rgba(15, 23, 42, 0.09);
	padding-bottom: 0.85rem;
}

.jg-faq-item:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.jg-faq-trigger {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.4rem 0;
	text-align: left;
	font-family: "Space Grotesk", sans-serif;
	font-size: clamp(0.98rem, 1.6vw, 1.15rem);
	line-height: 1.35;
	color: #0f172a;
	background: transparent;
	border: 0;
	cursor: pointer;
}

.jg-faq-trigger .faq-icon {
	flex-shrink: 0;
	font-size: 1.35rem;
	line-height: 1;
	color: var(--lv-brand);
	transition: transform 0.35s ease;
}

.jg-faq-trigger[aria-expanded="true"] .faq-icon {
	transform: rotate(180deg);
}

.faq-panel--smooth {
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	transition: max-height 0.45s ease, opacity 0.35s ease;
}

.faq-panel--smooth.open {
	max-height: 18rem;
	opacity: 1;
}

.jg-faq-answer {
	padding-top: 0.4rem;
}

.jg-extra-faq {
	margin-top: 0;
	padding-top: 0;
}

/* Remove old per-section padding hook */
.jg-home.jg-page > .jg-home-hero,
.jg-home.jg-page > section {
	padding-left: 0;
	padding-right: 0;
}
