/* Maktune — v3 content pages (About, Contact, Bulk Orders, FAQ).
   Layered on top of home-v3.css, which supplies the tokens, the section head
   component, the button system and the reveal engine. Everything here is
   scoped to `body.v3-page` so nothing can leak back onto the homepage. */

/* ============================================================== Page hero */
body.v3-page .v3-pagehero {
	background: var(--v3-navy);
	color: rgba(255, 255, 255, .78);
	padding-block: 40px 52px;
	position: relative;
	overflow: hidden;
}
/* A soft off-centre glow keeps the flat navy from reading as a dead slab. */
body.v3-page .v3-pagehero::before {
	content: "";
	position: absolute;
	top: -40%;
	right: -10%;
	width: 60%;
	height: 180%;
	background: radial-gradient(closest-side, rgba(64, 96, 220, .30), transparent 70%);
	pointer-events: none;
}
body.v3-page .v3-pagehero > .container { position: relative; z-index: 1; }

.v3-crumbs {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12.5px;
	margin-bottom: 22px;
	color: rgba(255, 255, 255, .55);
}
body.v3-page .v3-crumbs a { color: rgba(255, 255, 255, .78); }
body.v3-page .v3-crumbs a:hover { color: #fff; }

.v3-pagehero-eyebrow {
	display: inline-block;
	font-family: var(--mono, ui-monospace, "SFMono-Regular", Menlo, monospace);
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: #8FA3EC;
	margin-bottom: 12px;
}
/* Same mask reveal as the homepage section titles. */
body.v3-page .v3-pagehero-title {
	overflow: hidden;
	margin: 0;
	font-size: clamp(30px, 4.4vw, 52px);
	font-weight: 800;
	line-height: 1.06;
	letter-spacing: -.025em;
	color: #fff;
	max-width: 20ch;
}
.v3-pagehero-title > span { display: block; }
@media (scripting: enabled) {
	.v3-pagehero-title > span {
		transform: translateY(105%);
		animation: v3-rise .8s var(--v3-ease) .1s forwards;
	}
}
@keyframes v3-rise { to { transform: none; } }
.v3-pagehero-lead {
	margin: 16px 0 0;
	font-size: 16px;
	line-height: 1.6;
	max-width: 62ch;
	color: rgba(255, 255, 255, .74);
}

/* ============================================================ Prose blocks */
.v3-prose { max-width: 68ch; }
body.v3-page .v3-prose p { font-size: 15.5px; line-height: 1.72; color: var(--v3-muted); margin: 0 0 16px; }
body.v3-page .v3-prose p:last-child { margin-bottom: 0; }
body.v3-page .v3-prose strong { color: var(--v3-ink); font-weight: 700; }
body.v3-page .v3-prose a { color: var(--v3-blue); font-weight: 600; }
body.v3-page .v3-prose a:hover { color: var(--v3-blue-dark); text-decoration: underline; }

/* Two-column: sticky heading beside flowing content. */
.v3-split { display: grid; grid-template-columns: .8fr 1.4fr; gap: 48px; align-items: start; }
.v3-split-side { position: sticky; top: 24px; }

/* ============================================================== Fact cards */
.v3-facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.v3-fact {
	padding: 26px 24px;
	border: 1px solid var(--v3-line);
	border-radius: var(--v3-r);
	background: #fff;
	transition: border-color .25s var(--v3-ease), box-shadow .25s var(--v3-ease), transform .25s var(--v3-ease);
}
.v3-fact:hover { border-color: #C9D2E2; box-shadow: 0 12px 28px rgba(15, 26, 50, .10); }
.v3-fact .ico {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: var(--v3-blue-tint, #EEF1FC);
	color: var(--v3-blue);
	margin-bottom: 14px;
}
body.v3-page .v3-fact h3 { font-size: 15.5px; font-weight: 700; margin: 0 0 6px; }
body.v3-page .v3-fact p { font-size: 13.5px; line-height: 1.6; color: var(--v3-muted); margin: 0; }

/* Numbered process steps. */
.v3-steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; counter-reset: v3step; }
.v3-step { position: relative; padding-top: 20px; border-top: 2px solid var(--v3-line); }
.v3-step::before {
	counter-increment: v3step;
	content: counter(v3step, decimal-leading-zero);
	display: block;
	font-family: var(--mono, ui-monospace, "SFMono-Regular", Menlo, monospace);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .1em;
	color: var(--v3-blue);
	margin-bottom: 10px;
}
body.v3-page .v3-step h3 { font-size: 16px; font-weight: 700; margin: 0 0 7px; }
body.v3-page .v3-step p { font-size: 14px; line-height: 1.62; color: var(--v3-muted); margin: 0; }

/* ============================================================= Contact card */
.v3-contact { display: grid; grid-template-columns: 1.1fr .9fr; gap: 20px; align-items: start; }
.v3-contact-card {
	padding: 32px;
	border-radius: var(--v3-r);
	background: var(--v3-navy);
	color: rgba(255, 255, 255, .76);
}
body.v3-page .v3-contact-card h2 { color: #fff; font-size: 21px; margin: 0 0 8px; }
body.v3-page .v3-contact-card p { font-size: 14.5px; line-height: 1.65; margin: 0 0 20px; }
.v3-mail {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: clamp(17px, 2.2vw, 23px);
	font-weight: 800;
	letter-spacing: -.01em;
	color: #fff;
	word-break: break-all;
}
body.v3-page .v3-mail:hover { color: #9DB0F0; }
/* The address also carries `.v3-copy`, whose homepage styling is a light grey
   pill — on this navy card that washes the text out completely. Reset it here
   and keep only the copy affordance. */
body.v3-page .v3-contact-card .v3-copy {
	padding: 0;
	border-radius: 0;
	background: transparent;
	color: #fff;
}
body.v3-page .v3-contact-card .v3-copy:hover { background: transparent; color: #9DB0F0; }
body.v3-page .v3-contact-card .v3-copy.is-copied { background: transparent; color: #6FE29B; }
body.v3-page .v3-contact-card .v3-copy svg { opacity: .55; }

/* Text links inside the fact cards need the link colour back — the card's own
   paragraph rule sets a muted grey that they would otherwise inherit. */
body.v3-page .v3-fact .v3-textlink { color: var(--v3-blue); font-size: 13.5px; }
body.v3-page .v3-fact .v3-textlink:hover { color: var(--v3-blue-dark); }
.v3-contact-meta {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 22px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, .14);
}
.v3-contact-meta span {
	font-size: 12px;
	font-weight: 600;
	padding: 6px 12px;
	border-radius: 100px;
	background: rgba(255, 255, 255, .1);
	color: #fff;
}

/* Checklist with drawn ticks. */
.v3-checks { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.v3-checks li { display: flex; gap: 11px; font-size: 14.5px; line-height: 1.55; color: var(--v3-muted); }
.v3-checks li::before {
	content: "";
	flex: 0 0 auto;
	width: 19px;
	height: 19px;
	margin-top: 1px;
	border-radius: 50%;
	background: rgba(17, 131, 59, .12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2311833B' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 13 4 4L19 7'/%3E%3C/svg%3E") center/11px no-repeat;
}

/* ============================================== Live range strip (About) */
.v3-range { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.v3-range-item {
	display: block;
	padding: 16px;
	border: 1px solid var(--v3-line);
	border-radius: var(--v3-r);
	background: #fff;
	transition: border-color .25s var(--v3-ease), transform .25s var(--v3-ease), box-shadow .25s var(--v3-ease);
}
.v3-range-item:hover { border-color: #C9D2E2; box-shadow: 0 10px 24px rgba(15, 26, 50, .10); }
.v3-range-item img { width: 100%; aspect-ratio: 1; object-fit: contain; background: #F7F8FA; border-radius: 6px; margin-bottom: 12px; }
body.v3-page .v3-range-item b { display: block; font-size: 14px; font-weight: 700; line-height: 1.3; color: var(--v3-ink); margin-bottom: 4px; }
.v3-range-item .sku {
	display: block;
	font-family: var(--mono, ui-monospace, "SFMono-Regular", Menlo, monospace);
	font-size: 11px;
	letter-spacing: .06em;
	color: var(--mk-muted-soft);
	margin-bottom: 6px;
}
.v3-range-item .amt { font-size: 14.5px; font-weight: 800; color: var(--v3-ink); }

/* =============================================== FAQ page (grouped sets) */
.v3-faqgroup + .v3-faqgroup { margin-top: 44px; }
.v3-faqgroup > h2 {
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--v3-blue);
	margin: 0 0 16px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--v3-line);
}

/* =========================================================== CTA banner */
.v3-cta {
	position: relative;
	overflow: hidden;
	border-radius: var(--v3-r);
	background: var(--v3-blue);
	color: #fff;
	padding: 44px 40px;
	text-align: center;
}
.v3-cta::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(closest-side at 80% 20%, rgba(255, 255, 255, .16), transparent 70%);
	pointer-events: none;
}
body.v3-page .v3-cta h2 { color: #fff; font-size: clamp(22px, 3vw, 32px); margin: 0 0 10px; letter-spacing: -.02em; }
body.v3-page .v3-cta p { color: rgba(255, 255, 255, .84); font-size: 15px; margin: 0 auto 22px; max-width: 56ch; }
.v3-cta-actions { position: relative; z-index: 1; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================================ Responsive */
@media (max-width: 1080px) {
	.v3-split { grid-template-columns: 1fr; gap: 24px; }
	.v3-split-side { position: static; }
	.v3-contact { grid-template-columns: 1fr; }
	.v3-range { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 860px) {
	.v3-facts, .v3-steps { grid-template-columns: 1fr; }
	body.v3-page .v3-pagehero { padding-block: 28px 38px; }
}
@media (max-width: 560px) {
	.v3-cta { padding: 32px 22px; }
	.v3-contact-card { padding: 24px; }
	.v3-range { gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
	.v3-pagehero-title > span { transform: none; animation: none; }
	.v3-fact, .v3-range-item { transition: none; }
	.v3-fact:hover, .v3-range-item:hover { transform: none; }
}
