/* ==========================================================================
   Section: Home / Hero (+ partner strip). Ported from home-styles.css.
   ========================================================================== */

.hero {
	position: relative;
	padding: 150px 0 110px;
	/* Tinted under the nav, dissolving into the white "focus" section over a
	   long sweep so the boundary is imperceptible. */
	background: linear-gradient(180deg, var(--bg-alt) 0, var(--bg-alt) 40%, var(--bg) 92%);
	overflow: hidden;
}
/* Decorative glows sit BEHIND the content (z-index:0) — never over the cards. */
.hero::before {
	content:''; position: absolute; z-index: 0; top: -120px; right: -80px; width: 620px; height: 620px;
	background: radial-gradient(circle, rgba(24,173,231,0.10), transparent 62%);
	pointer-events: none;
}
/* Green glow kept in the upper-left, well clear of the bottom edge so the
   overflow:hidden clip never cuts a visible line. */
.hero::after {
	content:''; position: absolute; z-index: 0; top: 22%; left: -160px; width: 480px; height: 420px;
	background: radial-gradient(circle, rgba(98,207,95,0.09), transparent 70%);
	pointer-events: none;
}
/* Content above the glows. */
.hero > .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; position: relative; }
.hero-copy { display: flex; flex-direction: column; gap: 26px; }
.hero h1 { font-size: clamp(40px, 4.6vw, 64px); line-height: 1.04; }
.hero h1 .grad-text {
	background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-lead { font-size: 18px; color: var(--body); max-width: 560px; }
.hero-rule { height: 1px; background: linear-gradient(90deg, var(--line), transparent); margin: 2px 0; max-width: 560px; }
.hero-meta { font-size: 14.5px; color: var(--muted); }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-art { display: flex; align-items: center; justify-content: center; position: relative; }
.hero-art svg { width: 100%; max-width: 644px; height: auto; overflow: visible; } /* honeycomb +15% */
.hero-hex .hex-group { cursor: default; }

/* ---------- Partner strip ---------- */
.partner-strip {
	margin-top: 64px;
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
	box-shadow: var(--shadow); overflow: hidden; position: relative;
}
.partner-cell { padding: 26px 28px; border-left: 1px solid var(--line-soft); }
.partner-cell:first-child { border-left: none; }
.partner-cell h4 { font-size: 16px; margin-bottom: 7px; color: var(--navy); }
.partner-cell p { font-size: 13.5px; color: var(--muted); line-height: 1.55; }

@media (max-width: 1080px) {
	.hero-grid { grid-template-columns: 1fr; gap: 44px; }
	.hero-art { order: -1; }
}
@media (max-width: 820px) {
	.partner-strip { grid-template-columns: 1fr 1fr; }
	.partner-cell:nth-child(3) { border-left: none; }
}
@media (max-width: 520px) {
	.partner-strip { grid-template-columns: 1fr; }
	.partner-cell { border-left: none; border-top: 1px solid var(--line-soft); }
	.partner-cell:first-child { border-top: none; }
	.hero-btns { flex-direction: column; align-items: stretch; }
}
