/**
 * Homepage-only layout: hero, stat strip, RUO bar, shop teaser (native
 * WooCommerce [products] shortcode — same markup as the shop archive, so
 * this also carries over there), process chain, trust band, testimonial,
 * newsletter band. Tokens/buttons/section shell live in altitude-aminos.css.
 */

/* === Hero === */
.hero {
	position: relative;
	color: #fff;
	overflow: hidden;
	background: radial-gradient(120% 140% at 15% 0%, var(--blue-600), var(--navy-950) 60%);
}
.hero-inner {
	padding: 96px 32px 64px;
	max-width: 720px;
}
.hero h1 {
	font-size: clamp(38px, 5vw, 64px);
	margin: 18px 0 20px;
}
.hero h1 em { font-style: normal; color: var(--cyan-400); }
.hero p.lede {
	font-size: 17px;
	color: var(--ice-200);
	max-width: 480px;
	margin-bottom: 32px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

/* Trust chain row (node-and-line motif from the logo) */
.trust-chain { display: flex; align-items: center; gap: 0; }
.trust-chain .node {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	text-align: center;
	width: 140px;
}
.trust-chain .dot {
	width: 14px; height: 14px;
	border-radius: 50%;
	background: var(--navy-800);
	border: 2px solid var(--cyan-400);
	box-shadow: 0 0 0 4px rgba(79,209,255,.12);
}
.trust-chain .line {
	flex: 1;
	height: 1px;
	background: linear-gradient(90deg, rgba(79,209,255,.5), rgba(79,209,255,.15));
	margin-top: -34px;
}
.trust-chain .node span {
	font-family: var(--font-mono);
	font-size: 11.5px;
	letter-spacing: .03em;
	color: var(--ice-200);
}

/* === Stat strip === */
.stat-strip { background: var(--navy-800); color: #fff; padding: 26px 32px; }
.stat-row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 18px; font-family: var(--font-mono); }
.stat-row .stat { text-align: left; }
.stat-row .stat b { display: block; font-size: 20px; color: var(--cyan-400); font-weight: 600; }
.stat-row .stat small { font-size: 11.5px; color: var(--slate-500); letter-spacing: .03em; }

/* === RUO notice bar === */
.ruo-bar { background: rgba(255,255,255,.04); padding: 11px 32px; text-align: center; }
.ruo-bar p { font-family: var(--font-mono); font-size: 11px; letter-spacing: .04em; color: var(--slate-500); }

/* Shop teaser section background — loop card styling lives in
   shop-loop.css, shared with the real shop archive. */
.shop { background: var(--navy-950); }

/* === Trust band === */
.trust-band { background: var(--navy-950); }
.trust-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.trust-col {
	background: var(--navy-800);
	border-radius: 16px;
	padding: 28px;
	border: 1px solid rgba(255,255,255,.08);
}
.trust-col .icon-wrap {
	width: 44px; height: 44px;
	border-radius: 12px;
	background: var(--navy-950);
	display: flex; align-items: center; justify-content: center;
	margin-bottom: 16px;
}
.trust-col .icon-wrap svg { width: 22px; height: 22px; stroke: var(--cyan-400); }
.trust-col h3 { font-size: 17px; margin-bottom: 8px; }
.trust-col p { font-size: 13.8px; color: var(--slate-700); margin-bottom: 10px; }
.trust-col .cite {
	font-family: var(--font-mono);
	font-size: 11px;
	color: var(--slate-500);
	border-top: 1px solid rgba(255,255,255,.08);
	padding-top: 10px;
}

/* === Testimonial === */
.quote-section { padding: 80px 32px; text-align: center; }
.quote-section blockquote {
	font-family: var(--font-display);
	font-size: clamp(20px,2.6vw,30px);
	max-width: 780px;
	margin: 0 auto 20px;
	line-height: 1.35;
	color: var(--ice-100);
}
.quote-section cite { font-family: var(--font-mono); font-size: 12.5px; color: var(--slate-500); font-style: normal; }

/* === Newsletter CTA === */
.cta-band {
	background: linear-gradient(120deg, var(--blue-600), var(--navy-950) 70%);
	color: #fff;
	padding: 64px 32px;
	border-radius: 28px;
	margin: 0 32px 88px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
}
.cta-band h2 { font-size: clamp(24px,3vw,32px); max-width: 420px; }
.cta-form { display: flex; gap: 10px; flex-wrap: wrap; }
.cta-form input {
	padding: 14px 18px;
	border-radius: 999px;
	border: 1px solid rgba(255,255,255,.25);
	background: rgba(255,255,255,.08);
	color: #fff;
	font-family: var(--font-body);
	min-width: 240px;
}
.cta-form input::placeholder { color: rgba(255,255,255,.6); }
.cta-form input:focus {
	outline: none;
	background: rgba(255,255,255,.14);
	border-color: rgba(255,255,255,.5);
	color: #fff;
}
/* Browser autofill forces its own white/light background + dark text by
   default; the box-shadow inset trick is the only reliable cross-browser way
   to override it back to the form's own colors. */
.cta-form input:-webkit-autofill,
.cta-form input:-webkit-autofill:hover,
.cta-form input:-webkit-autofill:focus {
	-webkit-text-fill-color: #fff;
	-webkit-box-shadow: 0 0 0 1000px rgba(11,24,70,.9) inset;
	box-shadow: 0 0 0 1000px rgba(11,24,70,.9) inset;
	caret-color: #fff;
}
.cta-form-message { flex-basis: 100%; margin: 4px 0 0; font-size: 14px; color: rgba(255,255,255,.85); }

/* === Responsive === */
@media (max-width: 980px) {
	.hero-inner { padding-top: 44px; }
	.trust-cols { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
	.cta-band { flex-direction: column; align-items: flex-start; margin: 0 16px 64px; }
	.stat-row { gap: 22px 28px; }
	.trust-chain { flex-wrap: wrap; gap: 20px; }
	.trust-chain .line { display: none; }
}
