/* ==========================================================
   Homepage — home.css   (bright hero, pipeline visuals)
   ========================================================== */

/* ----------------------------------------------------------
   Shared utilities
   ---------------------------------------------------------- */
.hp-eyebrow {
	display: inline-block;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--color-teal);
}

.hp-eyebrow--coral { color: var(--color-coral); }

/* ----------------------------------------------------------
   Hero — bright/white, split layout
   ---------------------------------------------------------- */
.hp-hero {
	position: relative;
	min-height: calc(100vh - var(--nav-height));
	background: var(--color-white);
	display: flex;
	align-items: center;
	overflow: hidden;
}

/* Large teal circle — top right */
.hp-hero__shape-teal {
	position: absolute;
	top: -220px;
	right: -220px;
	width: 680px;
	height: 680px;
	border-radius: 50%;
	background: radial-gradient(circle at 40% 40%, rgba(2, 138, 134, 0.13) 0%, rgba(2, 138, 134, 0.04) 55%, transparent 75%);
	pointer-events: none;
}

/* Soft coral blob — bottom left */
.hp-hero__shape-coral {
	position: absolute;
	bottom: -160px;
	left: -160px;
	width: 480px;
	height: 480px;
	border-radius: 50%;
	background: radial-gradient(circle at 60% 60%, rgba(223, 116, 74, 0.10) 0%, transparent 65%);
	pointer-events: none;
}

/* Graph-grid overlay */
.hp-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(1, 33, 65, 0.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(1, 33, 65, 0.06) 1px, transparent 1px);
	background-size: 52px 52px;
	-webkit-mask-image: radial-gradient(ellipse 110% 100% at 50% 50%, black 10%, transparent 72%);
	mask-image: radial-gradient(ellipse 110% 100% at 50% 50%, black 10%, transparent 72%);
	pointer-events: none;
	z-index: 0;
}

/* Centered single-column inner */
.hp-hero__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding-top: 5rem;
	padding-bottom: 5rem;
	gap: 3.5rem;
}

/* ---- Top content block ---- */
.hp-hero__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}

.hp-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: #fff;
	background: var(--color-navy);
	border: 1px solid var(--color-navy);
	padding: 0.5rem 1.125rem;
	border-radius: 100px;
	margin-bottom: 2rem;
}

.hp-hero__badge-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--color-coral);
	box-shadow: 0 0 0 3px rgba(223, 116, 74, 0.35);
	animation: badge-pulse 2.6s ease-in-out infinite;
	flex-shrink: 0;
}

@keyframes badge-pulse {
	0%, 100% { opacity: 1;   transform: scale(1);   }
	50%       { opacity: 0.5; transform: scale(1.35); }
}

.hp-hero__h1 {
	color: var(--color-navy);
	font-size: clamp(2.25rem, 8vw, 7.5rem);
	line-height: 1.02;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	white-space: nowrap;
	margin-bottom: 1.75rem;
}

/* "CLINICAL TRIAL" — teal accent with freehand underline */
.hp-hero__h1-accent {
	color: var(--color-teal);
	display: inline-block;
	position: relative;
	padding-bottom: 0.2em;
}

.hp-hero__h1-accent::after {
	content: '';
	position: absolute;
	left: -1%;
	bottom: 0;
	width: 102%;
	height: 0.18em;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 18' preserveAspectRatio='none'%3E%3Cpath d='M3 12 C40 5, 90 16, 150 10 S230 4, 290 12 Q305 14, 317 11' stroke='%23028A86' stroke-width='5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

.hp-hero__sub {
	font-size: clamp(1.375rem, 2vw, 1.625rem);
	font-weight: 500;
	color: #4a5d72;
	line-height: 1.7;
	margin-bottom: 2.5rem;
	max-width: 64ch;
}

.hp-hero__sub strong {
	color: var(--color-navy);
	font-weight: 800;
}

.hp-hero__actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.hp-hero__cta {
	font-size: 1.0625rem;
	font-weight: 700;
	padding: 1rem 2.25rem;
	border-radius: 6px;
	box-shadow: 0 4px 20px rgba(223, 116, 74, 0.28);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hp-hero__cta:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 32px rgba(223, 116, 74, 0.44);
	color: var(--color-white);
}

.hp-hero__cta svg { flex-shrink: 0; transition: transform 0.2s ease; }
.hp-hero__cta:hover svg { transform: translateX(4px); }

.hp-hero__sec-link {
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--color-navy);
	border-bottom: 2px solid rgba(1, 33, 65, 0.2);
	padding-bottom: 2px;
	transition: color 0.2s ease, border-color 0.2s ease;
}

.hp-hero__sec-link:hover {
	color: var(--color-teal);
	border-color: var(--color-teal);
}

/* ---- Below text: dashboard mockup ---- */
.hp-hero__visual {
	position: relative;
	width: 100%;
	max-width: 560px;
	margin: 0 auto;
	padding: 2rem 1.5rem;
}

/* Main card */
.hp-mock {
	background: var(--color-white);
	border-radius: 20px;
	padding: 1.875rem;
	box-shadow:
		0 0 0 1px rgba(1, 33, 65, 0.07),
		0 4px 8px rgba(1, 33, 65, 0.05),
		0 24px 60px rgba(1, 33, 65, 0.13);
	position: relative;
	z-index: 2;
}

.hp-mock__head {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	padding-bottom: 1.25rem;
	border-bottom: 1px solid rgba(1, 33, 65, 0.07);
	margin-bottom: 1.375rem;
}

.hp-mock__dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	flex-shrink: 0;
}

.hp-mock__dot--green { background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,0.18); }
.hp-mock__dot--teal  { background: var(--color-teal); }
.hp-mock__dot--coral { background: var(--color-coral); }
.hp-mock__dot--gold  { background: var(--color-gold); }

.hp-mock__title {
	font-size: 0.9375rem;
	font-weight: 700;
	color: var(--color-navy);
}

.hp-mock__live {
	margin-left: auto;
	font-size: 0.625rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	color: #16a34a;
	background: rgba(34, 197, 94, 0.1);
	padding: 0.2rem 0.55rem;
	border-radius: 4px;
}

.hp-mock__metrics {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.75rem;
	margin-bottom: 1.375rem;
}

.hp-mock__metric {
	background: #f6f8fb;
	border-radius: 10px;
	padding: 1rem 0.75rem;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 0.375rem;
}

.hp-mock__metric strong {
	font-family: var(--font-heading);
	font-size: 2rem;
	line-height: 1;
	color: var(--color-navy);
}

.hp-mock__metric span {
	font-size: 0.6875rem;
	font-weight: 600;
	color: #6b7f95;
	line-height: 1.35;
}

.hp-mock__sep {
	height: 1px;
	background: rgba(1, 33, 65, 0.07);
	margin-bottom: 1rem;
}

.hp-mock__feed-hd {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #8a9cb0;
	margin-bottom: 0.875rem;
}

.hp-mock__feed {
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
}

.hp-mock__feed li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.hp-mock__feed li div {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.hp-mock__feed b {
	font-size: 0.9375rem;
	font-weight: 700;
	color: var(--color-navy);
}

.hp-mock__feed small {
	font-size: 0.75rem;
	font-weight: 500;
	color: #8a9cb0;
}

/* Floating chips */
.hp-chip {
	position: absolute;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.8125rem;
	font-weight: 700;
	padding: 0.625rem 1rem;
	border-radius: 100px;
	z-index: 3;
	white-space: nowrap;
}

.hp-chip--tr {
	top: 0.75rem;
	right: -0.5rem;
}

.hp-chip--bl {
	bottom: 0.75rem;
	left: -0.75rem;
}

.hp-chip--teal {
	background: var(--color-teal);
	color: var(--color-white);
	box-shadow: 0 4px 16px rgba(2, 138, 134, 0.35);
}

.hp-chip--navy {
	background: var(--color-navy);
	color: var(--color-white);
	box-shadow: 0 4px 16px rgba(1, 33, 65, 0.28);
}

/* ----------------------------------------------------------
   Stats Bar
   ---------------------------------------------------------- */
.hp-stats {
	padding: 4.5rem 0;
	background: linear-gradient(135deg, #011530 0%, var(--color-navy) 55%, #01284e 100%);
	position: relative;
	overflow: hidden;
}

.hp-stats::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
		radial-gradient(circle at 8%  50%, rgba(255,255,255,0.07) 0%, transparent 45%),
		radial-gradient(circle at 92% 50%, rgba(223,116,74,0.18)  0%, transparent 50%);
	background-size: 52px 52px, 52px 52px, auto, auto;
	pointer-events: none;
}

.hp-stats__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

.hp-stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 2.5rem 1.75rem;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 20px;
	gap: 1rem;
	transition: background 0.25s ease;
}

.hp-stat:hover { background: rgba(255, 255, 255, 0.13); }

.hp-stat__icon-wrap {
	width: 3.25rem;
	height: 3.25rem;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.18);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-white);
	flex-shrink: 0;
}

.hp-stat__text {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}

.hp-stat__fig {
	font-family: var(--font-heading);
	font-size: clamp(3.75rem, 6vw, 5.5rem);
	line-height: 1;
	color: var(--color-white);
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.hp-stat__label {
	font-size: 1.0625rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.5;
	text-transform: uppercase;
	letter-spacing: 0.07em;
}

.hp-stats__divider { display: none; }

/* Per-stat accent colours — coral / teal / gold */
.hp-stats__grid .hp-stat:nth-child(1) { border-top: 3px solid var(--color-coral); }
.hp-stats__grid .hp-stat:nth-child(1) .hp-stat__fig        { color: var(--color-coral); }
.hp-stats__grid .hp-stat:nth-child(1) .hp-stat__icon-wrap  { background: rgba(223,116,74,0.22); color: var(--color-coral); }

.hp-stats__grid .hp-stat:nth-child(2) { border-top: 3px solid var(--color-teal); }
.hp-stats__grid .hp-stat:nth-child(2) .hp-stat__fig        { color: var(--color-teal); }
.hp-stats__grid .hp-stat:nth-child(2) .hp-stat__icon-wrap  { background: rgba(2,138,134,0.22); color: var(--color-teal); }

.hp-stats__grid .hp-stat:nth-child(3) { border-top: 3px solid var(--color-gold); }
.hp-stats__grid .hp-stat:nth-child(3) .hp-stat__fig        { color: var(--color-gold); }
.hp-stats__grid .hp-stat:nth-child(3) .hp-stat__icon-wrap  { background: rgba(220,178,57,0.22); color: var(--color-gold); }

/* ----------------------------------------------------------
   Problem Section — white bg, split layout
   ---------------------------------------------------------- */
.hp-problem {
	padding: 8rem 0;
	background: var(--color-white);
}

.hp-problem__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: center;
}

.hp-problem__text {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.hp-problem__h2 {
	color: var(--color-navy);
	font-size: clamp(3rem, 5vw, 5rem);
	line-height: 1.04;
}

.hp-problem__body {
	font-size: 1.5rem;
	font-weight: 500;
	color: #3d5166;
	line-height: 1.75;
	margin-bottom: 0;
}

/* ----------------------------------------------------------
   Solution Section — light teal bg, split layout (reversed)
   ---------------------------------------------------------- */
.hp-solution {
	padding: 8rem 0;
	background: #EDF7F6;
}

.hp-solution__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: center;
}

.hp-solution__text {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.hp-solution__h2 {
	color: var(--color-navy);
	font-size: clamp(3rem, 5vw, 5rem);
	line-height: 1.04;
}

.hp-solution__body {
	font-size: 1.5rem;
	font-weight: 500;
	color: #3d5166;
	line-height: 1.75;
	margin-bottom: 0;
}

.hp-solution__punch {
	font-size: 1.625rem;
	font-weight: 800;
	color: var(--color-coral);
	line-height: 1.4;
}

/* ----------------------------------------------------------
   Pipeline Visualization (shared)
   ---------------------------------------------------------- */
.hp-pipeline {
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* Node circle */
.hp-pl__step {
	display: flex;
	justify-content: center;
}

.hp-pl__node {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 128px;
	height: 128px;
	border-radius: 50%;
	gap: 4px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	transition: transform 0.2s ease;
}

.hp-pl__node:hover { transform: scale(1.04); }

.hp-pl__num {
	font-family: var(--font-heading);
	font-size: 2.125rem;
	line-height: 1;
	letter-spacing: 0.01em;
}

.hp-pl__lbl {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	line-height: 1.2;
	text-align: center;
	max-width: 9ch;
}

/* Broken pipeline node colors */
.hp-pl__node--neutral {
	background: #F1F5FA;
	border: 2px solid #CBD5E1;
	color: var(--color-navy);
}

.hp-pl__node--warn {
	background: #FFF8EE;
	border: 2px solid #F59E0B;
	color: #92400E;
}

.hp-pl__node--danger {
	background: #FFF3EE;
	border: 2px solid var(--color-coral);
	color: #9A3412;
}

.hp-pl__node--critical {
	background: #FEF2F2;
	border: 2px solid #EF4444;
	color: #991B1B;
}

/* Fixed pipeline node color */
.hp-pl__node--teal {
	background: var(--color-teal);
	border: 2px solid #017572;
	color: var(--color-white);
}

/* Connectors */
.hp-pl__conn {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.25rem;
	padding: 0.5rem 0;
	position: relative;
}

/* Broken connector — dashed red line */
.hp-pl__conn--broken::before {
	content: '';
	display: block;
	width: 2px;
	height: 32px;
	background: repeating-linear-gradient(
		to bottom,
		#EF4444 0,
		#EF4444 5px,
		transparent 5px,
		transparent 10px
	);
}

/* Loss label */
.hp-pl__loss {
	font-size: 0.8125rem;
	font-weight: 700;
	color: #EF4444;
	background: #FEF2F2;
	border: 1px solid #FECACA;
	border-radius: 100px;
	padding: 0.2rem 0.625rem;
}

/* Clean connector — solid teal line */
.hp-pl__conn--clean::before {
	content: '';
	display: block;
	width: 2px;
	height: 28px;
	background: var(--color-teal);
}

/* Process tag */
.hp-pl__tag {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	font-size: 0.8125rem;
	font-weight: 700;
	color: var(--color-teal);
	background: rgba(2, 138, 134, 0.1);
	border-radius: 100px;
	padding: 0.25rem 0.75rem;
}

.hp-pl__tag svg { color: var(--color-teal); flex-shrink: 0; }

/* Pipeline caption */
.hp-pl__caption {
	margin-top: 1.25rem;
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #8a9cb0;
	text-align: center;
}

/* ----------------------------------------------------------
   Pillars Section
   ---------------------------------------------------------- */
.hp-pillars {
	padding: 8rem 0;
	background: #F2F6FB;
}

.hp-section-hd {
	text-align: center;
	margin-bottom: 4rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.25rem;
}

.hp-section-hd__h2 {
	color: var(--color-navy);
	font-size: clamp(3rem, 5vw, 5rem);
	line-height: 1.04;
}

.hp-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.875rem;
}

.hp-card {
	display: block;
	text-decoration: none;
	color: inherit;
	background: var(--color-white);
	border-radius: 16px;
	padding: 2.5rem 2.125rem;
	border-top: 4px solid var(--color-teal);
	box-shadow: 0 2px 4px rgba(1,33,65,0.04), 0 8px 24px rgba(1,33,65,0.07);
	position: relative;
	overflow: hidden;
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.hp-card:hover {
	transform: translateY(-7px);
	box-shadow: 0 4px 8px rgba(1,33,65,0.06), 0 18px 48px rgba(1,33,65,0.13);
}

.hp-card::after {
	content: '→';
	position: absolute;
	bottom: 1.5rem;
	right: 1.75rem;
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--color-teal);
	transition: transform 0.22s ease;
	line-height: 1;
}
.hp-card:hover::after {
	transform: translateX(5px);
}
.hp-cards .hp-card:nth-child(1)::after { color: var(--color-coral); }
.hp-cards .hp-card:nth-child(2)::after { color: var(--color-teal); }
.hp-cards .hp-card:nth-child(3)::after { color: var(--color-gold); }

.hp-card__num {
	position: absolute;
	top: 1.125rem;
	right: 1.5rem;
	font-family: var(--font-heading);
	font-size: 5rem;
	line-height: 1;
	color: rgba(2, 138, 134, 0.07);
	user-select: none;
	pointer-events: none;
}

.hp-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 4rem;
	height: 4rem;
	border-radius: 14px;
	margin-bottom: 1.5rem;
	flex-shrink: 0;
}

/* Per-card icon colour + background */
.hp-cards .hp-card:nth-child(1) {
	border-top-color: var(--color-coral);
}
.hp-cards .hp-card:nth-child(1) .hp-card__icon {
	background: rgba(223, 116, 74, 0.12);
	color: var(--color-coral);
}
.hp-cards .hp-card:nth-child(1) .hp-card__sub {
	color: var(--color-coral);
}

.hp-cards .hp-card:nth-child(2) {
	border-top-color: var(--color-teal);
}
.hp-cards .hp-card:nth-child(2) .hp-card__icon {
	background: rgba(2, 138, 134, 0.12);
	color: var(--color-teal);
}
.hp-cards .hp-card:nth-child(2) .hp-card__sub {
	color: var(--color-teal);
}

.hp-cards .hp-card:nth-child(3) {
	border-top-color: var(--color-gold);
}
.hp-cards .hp-card:nth-child(3) .hp-card__icon {
	background: rgba(220, 178, 57, 0.14);
	color: var(--color-gold);
}
.hp-cards .hp-card:nth-child(3) .hp-card__sub {
	color: var(--color-gold);
}

.hp-card__title {
	font-family: var(--font-heading);
	font-size: clamp(1.875rem, 2.5vw, 2.75rem);
	line-height: 1.08;
	color: var(--color-navy);
	letter-spacing: 0.01em;
	margin-bottom: 0.5rem;
}

.hp-card__sub {
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 1.125rem;
}

.hp-card__body {
	font-size: clamp(1.125rem, 1.4vw, 1.375rem);
	font-weight: 500;
	color: #4a5d72;
	line-height: 1.8;
	margin-bottom: 0;
}

/* ----------------------------------------------------------
   Final CTA Band
   ---------------------------------------------------------- */
.hp-cta-band {
	position: relative;
	padding: 9rem 0;
	background-color: var(--color-navy);
	background-image:
		radial-gradient(ellipse 65% 60% at 50% 115%, rgba(223, 116, 74, 0.22) 0%, transparent 58%),
		radial-gradient(ellipse 55% 50% at 92%  -15%, rgba(2, 138, 134, 0.16) 0%, transparent 52%),
		linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
	background-size: auto, auto, 56px 56px, 56px 56px;
	overflow: hidden;
}

.hp-cta-band__inner {
	position: relative;
	z-index: 1;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.hp-cta-band__h2 {
	color: var(--color-white);
	font-size: clamp(3rem, 5.5vw, 5.5rem);
	line-height: 1.04;
	margin-bottom: 1.375rem;
}

.hp-cta-band__sub {
	font-size: 1.5rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.62);
	max-width: 46ch;
	line-height: 1.75;
	margin-bottom: 2.75rem;
}

.hp-cta-band__btn {
	font-size: 1.125rem;
	font-weight: 700;
	padding: 1.125rem 2.5rem;
	border-radius: 6px;
	box-shadow: 0 4px 24px rgba(223, 116, 74, 0.30);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hp-cta-band__btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 36px rgba(223, 116, 74, 0.48);
	color: var(--color-white);
}

/* ==========================================================
   Responsive
   ========================================================== */

/* Tablet landscape */
@media (max-width: 1100px) {
	.hp-hero__inner        { gap: 3rem; }
	.hp-problem__grid,
	.hp-solution__grid     { gap: 3rem; }
	.hp-cards              { gap: 1.375rem; }
	.hp-card               { padding: 2rem 1.75rem; }
}

/* Tablet portrait — stacks */
@media (max-width: 900px) {
	.hp-hero {
		align-items: flex-start;
		min-height: 0;
	}

	.hp-hero__inner {
		padding-top: 2rem;
		padding-bottom: 4rem;
		gap: 2.5rem;
	}

	.hp-problem__grid,
	.hp-solution__grid {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.hp-solution__visual { order: -1; }

	.hp-problem,
	.hp-solution,
	.hp-pillars    { padding: 5rem 0; }

	.hp-cta-band   { padding: 5.5rem 0; }

	.hp-cards { grid-template-columns: 1fr 1fr; }

	/* Stats: 1 column, horizontal card layout */
	.hp-stats__grid {
		grid-template-columns: 1fr;
		gap: 0.875rem;
	}

	.hp-stat {
		flex-direction: row;
		text-align: left;
		align-items: center;
		gap: 1.25rem;
		padding: 1.5rem 1.75rem;
	}

	.hp-stat__text { text-align: left; }

	.hp-stat__fig {
		font-size: clamp(2.75rem, 8vw, 3.75rem);
		text-align: left;
	}
}

/* Large mobile */
@media (max-width: 680px) {
	.hp-cards {
		grid-template-columns: 1fr;
		max-width: 480px;
		margin-inline: auto;
	}

	.hp-pl__node { width: 100px; height: 100px; }
	.hp-pl__num  { font-size: 1.875rem; }

	.hp-problem,
	.hp-solution,
	.hp-pillars  { padding: 4rem 0; }
}

/* Mobile */
@media (max-width: 480px) {
	.hp-hero__badge  { font-size: 0.6875rem; padding: 0.35rem 0.65rem; white-space: nowrap; }
	.hp-hero__cta    { width: 100%; justify-content: center; }
	.hp-hero__visual { display: none; }
	.hp-hero__inner  { padding-top: 2.5rem; padding-bottom: 3rem; }

	.hp-problem,
	.hp-solution,
	.hp-pillars      { padding: 3.5rem 0; }

	.hp-cta-band     { padding: 4rem 0; }
	.hp-cta-band__h2 { font-size: 2.25rem; }

	.hp-card         { padding: 1.75rem 1.375rem; }

	.hp-pl__node     { width: 82px; height: 82px; }
	.hp-pl__num      { font-size: 1.625rem; }

	.hp-stat         { padding: 1.25rem 1.25rem; }
	.hp-stat__fig    { font-size: 2.5rem; }
	.hp-stat__label  { font-size: 0.875rem; }
}
