/* =============================================================
   MSU Carbide — main stylesheet
   Industrial dark-hero style, blue accent, condensed display type.
   ============================================================= */

/* ---- Fonts ---- */
@font-face {
	font-family: 'Oswald';
	font-style: normal;
	font-weight: 400 700;
	font-display: swap;
	src: url('../fonts/oswald-var.woff2') format('woff2');
}

/* ---- Tokens ---- */
:root {
	--blue: #1e6bff;
	--blue-600: #155ce0;
	--blue-700: #1149b3;
	--blue-glow: rgba(30, 107, 255, .35);
	--ink: #0d1420;
	--ink-2: #121a28;
	--ink-3: #1a2436;
	--near-black: #080b11;
	--text: #1a2130;
	--muted: #5c6676;
	--muted-2: #8b94a3;
	--line: #e5e8ee;
	--line-2: #eef0f4;
	--bg: #ffffff;
	--bg-soft: #f4f6f9;
	--bg-soft-2: #eef1f6;
	--white: #ffffff;
	--radius: 4px;
	--radius-lg: 8px;
	--container: 1240px;
	--gutter: 24px;
	--display: 'Oswald', 'Arial Narrow', 'Helvetica Neue', sans-serif;
	--body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'PingFang SC', 'Microsoft YaHei', sans-serif;
	--shadow-sm: 0 1px 2px rgba(13, 20, 32, .06), 0 2px 8px rgba(13, 20, 32, .05);
	--shadow-md: 0 6px 24px rgba(13, 20, 32, .10);
	--shadow-lg: 0 20px 60px rgba(13, 20, 32, .18);
	--ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---- Reset-ish ---- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--body);
	color: var(--text);
	background: var(--bg);
	line-height: 1.6;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color .2s var(--ease); }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, h5 { font-family: var(--display); font-weight: 600; line-height: 1.05; margin: 0 0 .4em; color: var(--ink); letter-spacing: .01em; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

.screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); white-space: nowrap; }
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 1000; background: var(--blue); color: #fff; padding: 10px 16px; }
.skip-link:focus { left: 8px; top: 8px; }

/* ---- Icons ---- */
.msu-ico { width: 20px; height: 20px; flex: none; }
.ico-sm { width: 16px; height: 16px; flex: none; vertical-align: middle; }

/* ---- Buttons ---- */
.btn {
	--btn-bg: var(--blue);
	display: inline-flex; align-items: center; gap: 9px;
	font-family: var(--display); font-weight: 600; text-transform: uppercase;
	letter-spacing: .06em; font-size: 14px; line-height: 1;
	padding: 14px 24px; border: 1.5px solid transparent; border-radius: var(--radius);
	background: var(--btn-bg); color: #fff; cursor: pointer;
	transition: transform .18s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
	white-space: nowrap;
}
.btn .msu-ico, .btn .ico-sm { transition: transform .2s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn:hover .msu-ico, .btn:hover .ico-sm { transform: translateX(3px); }
.btn--primary { background: var(--blue); color: #fff; box-shadow: 0 8px 24px var(--blue-glow); }
.btn--primary:hover { background: var(--blue-600); color: #fff; box-shadow: 0 12px 30px var(--blue-glow); }
.btn--ghost { background: transparent; border-color: rgba(255,255,255,.35); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; color: #fff; }
.btn--outline { background: transparent; border-color: var(--line); color: var(--ink); }
.btn--outline:hover { border-color: var(--blue); color: var(--blue); }
.btn--lg { padding: 17px 30px; font-size: 15px; }
.btn--sm { padding: 10px 16px; font-size: 12.5px; }
.btn--block { width: 100%; justify-content: center; }

.eyebrow { display: inline-block; font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: .22em; font-size: 13px; color: var(--blue); margin-bottom: 14px; }
.eyebrow--light { color: #6ea0ff; }
.link-more { display: inline-flex; align-items: center; gap: 6px; font-family: var(--display); font-weight: 500; text-transform: uppercase; letter-spacing: .08em; font-size: 13.5px; color: var(--ink); }
.link-more:hover { color: var(--blue); }
.link-more:hover .ico-sm { transform: translateX(3px); transition: transform .2s var(--ease); }

.section-title { font-size: clamp(28px, 4vw, 44px); text-transform: uppercase; letter-spacing: .015em; }
.section-lead { color: var(--muted); font-size: 17px; max-width: 640px; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 40px; }
.section-head--center { flex-direction: column; align-items: center; text-align: center; margin-bottom: 48px; }
.section-head--center .section-lead { margin-inline: auto; }

/* =============================================================
   TOP BAR + HEADER
   ============================================================= */
.topbar { background: var(--near-black); color: rgba(255,255,255,.7); font-size: 13px; border-bottom: 1px solid rgba(255,255,255,.06); }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; height: 40px; }
.topbar a, .topbar span { display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,.72); }
.topbar__contact { display: flex; gap: 26px; }
.topbar a:hover { color: #fff; }
.topbar .ico-sm { color: var(--blue); opacity: .9; }

.site-header {
	position: sticky; top: 0; z-index: 200;
	background: rgba(9, 13, 20, .96);
	backdrop-filter: saturate(140%) blur(8px);
	border-bottom: 1px solid rgba(255,255,255,.07);
}
.site-header__inner { display: flex; align-items: center; gap: 32px; height: 76px; }
.site-branding { flex: none; }
.brand { display: inline-flex; }

/* Brand logo */
.brand-logo { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark { width: 40px; height: 40px; flex: none; filter: drop-shadow(0 4px 10px var(--blue-glow)); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--display); font-weight: 700; font-size: 24px; letter-spacing: .02em; text-transform: uppercase; }
.brand-name b { font-weight: 400; opacity: .82; }
.brand-tag { font-family: var(--display); font-weight: 500; font-size: 8.5px; letter-spacing: .2em; margin-top: 3px; }
.custom-logo { max-height: 50px; width: auto; }

/* Nav */
.main-nav { margin-left: auto; }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu li { position: relative; }
.nav-menu a { display: flex; align-items: center; gap: 5px; font-family: var(--display); font-weight: 500; text-transform: uppercase; letter-spacing: .07em; font-size: 15px; color: rgba(255,255,255,.85); padding: 12px 15px; border-radius: var(--radius); }
.nav-menu a:hover, .nav-menu .current-menu-item > a, .nav-menu .current_page_item > a { color: #fff; background: rgba(255,255,255,.06); }
.nav-menu .menu-item-has-children > a::after { content: ""; width: 6px; height: 6px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); opacity: .6; }
.sub-menu {
	position: absolute; top: 100%; left: 0; min-width: 240px;
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg); padding: 8px; opacity: 0; visibility: hidden;
	transform: translateY(8px); transition: all .2s var(--ease); z-index: 10;
}
.nav-menu li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.sub-menu li a { color: var(--text); font-size: 14px; padding: 11px 14px; letter-spacing: .04em; }
.sub-menu li a:hover { background: var(--bg-soft); color: var(--blue); }

.header-actions { display: flex; align-items: center; gap: 14px; flex: none; }
.header-quote { }

/* Hamburger */
.nav-toggle { display: none; width: 44px; height: 44px; background: transparent; border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius); position: relative; }
.nav-toggle span { position: absolute; left: 11px; right: 11px; height: 2px; background: #fff; transition: all .25s var(--ease); }
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
.nav-open .nav-toggle span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* =============================================================
   HERO
   ============================================================= */
.hero {
	position: relative; color: #fff; overflow: hidden;
	background: radial-gradient(115% 105% at 78% 42%, #16233d 0%, #101a2e 40%, #0a1120 70%, #080b11 100%);
	background-color: #080b11;
	min-height: 660px; display: flex; align-items: center;
}
.hero__overlay { position: absolute; inset: 0; background: radial-gradient(120% 90% at 12% 25%, rgba(30,107,255,.16), transparent 55%); pointer-events: none; }

/* Decorative right-side visuals (animated machining core) */
.hero__deco { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero__glow { position: absolute; top: 50%; right: 4%; width: 640px; height: 640px; transform: translateY(-50%); background: radial-gradient(circle, rgba(30,107,255,.30) 0%, rgba(30,107,255,.10) 40%, transparent 68%); filter: blur(8px); animation: heroGlowPulse 6s ease-in-out infinite; }
@keyframes heroGlowPulse { 0%,100% { opacity: .8; transform: translateY(-50%) scale(1); } 50% { opacity: 1; transform: translateY(-50%) scale(1.06); } }
.hero__grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(110,160,255,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(110,160,255,.055) 1px, transparent 1px); background-size: 46px 46px; mask-image: radial-gradient(120% 100% at 80% 42%, #000 8%, transparent 60%); -webkit-mask-image: radial-gradient(120% 100% at 80% 42%, #000 8%, transparent 60%); }

.hero__core { position: absolute; top: 50%; right: 4%; width: 540px; height: 540px; transform: translateY(-50%); }
.hero__core > * { position: absolute; top: 50%; left: 50%; }
.hx { width: 540px; height: 540px; margin: -270px 0 0 -270px; transform-origin: center; filter: drop-shadow(0 0 10px rgba(30,107,255,.25)); }
.hx--outer { animation: spinCW 60s linear infinite; }
.hx--mid { width: 440px; height: 440px; margin: -220px 0 0 -220px; animation: spinCCW 42s linear infinite; }
.hx-dash { width: 360px; height: 360px; margin: -180px 0 0 -180px; border: 1px dashed rgba(110,160,255,.35); border-radius: 50%; animation: spinCW 28s linear infinite; }
.hx-sweep { width: 460px; height: 460px; margin: -230px 0 0 -230px; border-radius: 50%; background: conic-gradient(from 0deg, transparent 0deg 296deg, rgba(110,160,255,.20) 336deg, rgba(140,180,255,.32) 352deg, transparent 360deg); -webkit-mask: radial-gradient(circle, transparent 30%, #000 31%, #000 100%); mask: radial-gradient(circle, transparent 30%, #000 31%, #000 100%); animation: spinCW 7s linear infinite; }
@keyframes spinCW { to { transform: rotate(360deg); } }
@keyframes spinCCW { to { transform: rotate(-360deg); } }

/* orbiting nodes */
.orbit { margin: 0; transform-origin: 0 0; }
.orbit i { position: absolute; width: 9px; height: 9px; border-radius: 50%; background: #7eb0ff; box-shadow: 0 0 12px 2px rgba(110,160,255,.85); }
.orbit--1 { animation: spinCW 14s linear infinite; }
.orbit--1 i { top: -150px; left: -4px; }
.orbit--2 { animation: spinCCW 22s linear infinite; }
.orbit--2 i { top: -205px; left: -3px; width: 7px; height: 7px; background: #a9cbff; }
.orbit--3 { animation: spinCW 9s linear infinite; }
.orbit--3 i { top: -110px; left: -3px; width: 6px; height: 6px; }

/* spinning end mill */
.endmill { width: 120px; height: 300px; margin: -150px 0 0 -60px; animation: millFloat 5s ease-in-out infinite; filter: drop-shadow(0 12px 26px rgba(0,0,0,.5)) drop-shadow(0 0 16px rgba(30,107,255,.25)); }
.endmill svg { display: block; }
.endmill .flutes { animation: fluteSpin .7s linear infinite; }
@keyframes fluteSpin { to { transform: translateY(-18px); } }
@keyframes millFloat { 0%,100% { transform: translateY(0) rotate(-1.2deg); } 50% { transform: translateY(-12px) rotate(1.2deg); } }
.endmill__spark { position: absolute; left: 56px; bottom: 26px; width: 4px; height: 4px; border-radius: 50%; background: #ffd9a8; box-shadow: 0 0 8px 2px rgba(255,190,120,.9); opacity: 0; animation: spark 1.6s ease-out infinite; }
.endmill__spark--2 { left: 62px; animation-delay: .5s; }
.endmill__spark--3 { left: 58px; animation-delay: 1s; }
@keyframes spark { 0% { opacity: 0; transform: translate(0,0) scale(1); } 10% { opacity: 1; } 100% { opacity: 0; transform: translate(22px, 20px) scale(.3); } }

.hero__inner { position: relative; width: 100%; padding-block: 90px; z-index: 2; }
.hero__content { max-width: 640px; }
.hero__kicker { font-family: var(--display); font-weight: 500; text-transform: uppercase; letter-spacing: .3em; font-size: 14px; color: #7ea6ff; margin-bottom: 22px; }
.hero__title { font-size: clamp(46px, 7.2vw, 92px); line-height: .95; text-transform: uppercase; letter-spacing: .005em; margin-bottom: 24px; text-shadow: 0 4px 30px rgba(0,0,0,.4); }
.hero__title-1 { display: block; color: #fff; }
.hero__title-2 { display: block; color: var(--blue); text-shadow: 0 0 40px var(--blue-glow); }
.hero__sub { font-size: 19px; line-height: 1.6; color: rgba(255,255,255,.82); max-width: 540px; margin-bottom: 34px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 54px; }
.hero__stats { display: flex; gap: 44px; }
.hero__stats li { display: flex; flex-direction: column; }
.hero__stats strong { font-family: var(--display); font-weight: 700; font-size: 40px; line-height: 1; color: #fff; }
.hero__stats span { font-size: 13.5px; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.6); margin-top: 8px; }
.hero__scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); width: 24px; height: 38px; border: 2px solid rgba(255,255,255,.3); border-radius: 12px; }
.hero__scroll span { position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 3px; height: 8px; background: #fff; border-radius: 2px; animation: scrolldot 1.6s infinite; }
@keyframes scrolldot { 0% { opacity: 0; top: 7px; } 40% { opacity: 1; } 80% { opacity: 0; top: 18px; } 100% { opacity: 0; } }

/* =============================================================
   CATEGORY STRIP
   ============================================================= */
.cat-strip { background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.cat-strip__grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.cat-card {
	position: relative; display: flex; flex-direction: column; padding: 34px 26px 30px;
	background: linear-gradient(180deg, #fff 0%, #fbfcfe 100%);
	border-right: 1px solid var(--line);
	transition: background .3s var(--ease), transform .3s var(--ease);
	min-height: 360px; color: var(--text);
}
.cat-strip__grid .cat-card:last-child { border-right: none; }
.cat-card::before { content: ""; position: absolute; left: 26px; top: 0; width: 42px; height: 3px; background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.cat-card:hover { background: #fff; box-shadow: var(--shadow-md); z-index: 2; }
.cat-card:hover::before { transform: scaleX(1); }
.cat-card__title { font-size: 21px; text-transform: uppercase; letter-spacing: .01em; margin-bottom: 8px; }
.cat-card__tag { font-size: 13.5px; color: var(--muted); line-height: 1.5; margin: 0; }
.cat-card__media { flex: 1; display: flex; align-items: center; justify-content: center; padding: 18px 0; }
.cat-card__media img { max-height: 150px; width: auto; object-fit: contain; mix-blend-mode: multiply; transition: transform .4s var(--ease); }
.cat-card:hover .cat-card__media img { transform: scale(1.06); }
.cat-card__more { display: inline-flex; align-items: center; gap: 7px; font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: .09em; font-size: 13px; color: var(--ink); margin-top: auto; }
.cat-card:hover .cat-card__more { color: var(--blue); }
.cat-card:hover .cat-card__more .ico-sm { transform: translateX(4px); transition: transform .2s var(--ease); }

/* =============================================================
   SOLUTIONS / INDUSTRIES
   ============================================================= */
.solutions { padding: 96px 0; background: var(--bg); }
.solutions__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-bottom: 48px; }
.industry {
	position: relative; display: block; min-height: 300px; border-radius: var(--radius-lg); overflow: hidden;
	background: var(--ink-3); background-image: var(--ind-img, none); background-size: cover; background-position: center;
	color: #fff; isolation: isolate;
}
.industry__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,11,17,.15) 0%, rgba(8,11,17,.55) 55%, rgba(8,11,17,.9) 100%); transition: background .3s var(--ease); z-index: -1; }
.industry:hover .industry__overlay { background: linear-gradient(180deg, rgba(30,107,255,.25) 0%, rgba(8,11,17,.6) 55%, rgba(8,11,17,.92) 100%); }
.industry__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 24px 22px; }
.industry__title { font-size: 20px; text-transform: uppercase; color: #fff; margin-bottom: 6px; letter-spacing: .02em; }
.industry__desc { font-size: 13px; color: rgba(255,255,255,.78); line-height: 1.5; margin: 0; max-height: 0; opacity: 0; overflow: hidden; transition: all .35s var(--ease); }
.industry:hover .industry__desc { max-height: 90px; opacity: 1; margin-top: 4px; }
.industry__more { position: absolute; top: 20px; right: 20px; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); display: grid; place-items: center; transition: all .3s var(--ease); }
.industry:hover .industry__more { background: var(--blue); border-color: var(--blue); transform: rotate(-45deg); }
.solutions__cta { text-align: center; }

/* =============================================================
   PRODUCT GRID + CARDS
   ============================================================= */
.featured { padding: 96px 0; background: var(--bg-soft); }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-grid--archive { grid-template-columns: repeat(4, 1fr); }
.product-card {
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
	transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
	display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.product-card__link { display: flex; flex-direction: column; height: 100%; color: var(--text); }
.product-card__media { position: relative; aspect-ratio: 4 / 3; background: linear-gradient(135deg, #f2f4f8 0%, #e7ebf1 100%); overflow: hidden; }
.product-card__media img { width: 100%; height: 100%; object-fit: contain; padding: 20px; transition: transform .4s var(--ease); mix-blend-mode: multiply; }
.product-card:hover .product-card__media img { transform: scale(1.07); }
.product-card__badge { position: absolute; top: 12px; left: 12px; font-family: var(--display); font-weight: 500; text-transform: uppercase; letter-spacing: .06em; font-size: 10.5px; color: #fff; background: rgba(13,20,32,.78); padding: 5px 10px; border-radius: 3px; backdrop-filter: blur(4px); }
.product-card__body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.product-card__title { font-size: 17px; line-height: 1.2; text-transform: capitalize; margin-bottom: 8px; color: var(--ink); transition: color .2s var(--ease); }
.product-card:hover .product-card__title { color: var(--blue); }
.product-card__excerpt { font-size: 13.5px; color: var(--muted); margin-bottom: 12px; }
.product-card__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.tag { font-size: 11px; font-weight: 600; letter-spacing: .03em; color: var(--blue-700); background: rgba(30,107,255,.09); padding: 4px 9px; border-radius: 3px; display: inline-flex; align-items: center; gap: 4px; }
.tag--lg { font-size: 13px; padding: 7px 12px; }
.product-card__more { margin-top: auto; display: inline-flex; align-items: center; gap: 6px; font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; font-size: 12.5px; color: var(--ink); padding-top: 6px; }
.product-card:hover .product-card__more { color: var(--blue); }

/* =============================================================
   FEATURE BAR
   ============================================================= */
.feature-bar { background: var(--ink); color: #fff; padding: 60px 0; }
.feature-bar__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature__ico { flex: none; width: 52px; height: 52px; border-radius: var(--radius); background: rgba(30,107,255,.14); border: 1px solid rgba(30,107,255,.3); display: grid; place-items: center; color: #6ea0ff; }
.feature__ico .msu-ico { width: 24px; height: 24px; }
.feature h4 { font-size: 18px; text-transform: uppercase; color: #fff; margin-bottom: 6px; letter-spacing: .03em; }
.feature p { font-size: 13.5px; color: rgba(255,255,255,.66); margin: 0; line-height: 1.55; }

/* =============================================================
   CTA BAND
   ============================================================= */
.cta-band { background: linear-gradient(120deg, var(--blue-700), var(--blue)); color: #fff; padding: 66px 0; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 120% at 90% 20%, rgba(255,255,255,.14), transparent 50%); }
.cta-band__inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { font-size: clamp(28px, 4vw, 42px); text-transform: uppercase; color: #fff; margin-bottom: 8px; }
.cta-band p { font-size: 17px; color: rgba(255,255,255,.88); margin: 0; max-width: 560px; }
.cta-band .btn--primary { background: #fff; color: var(--blue-700); box-shadow: 0 10px 30px rgba(0,0,0,.2); }
.cta-band .btn--primary:hover { background: #f0f4ff; color: var(--blue-700); }

/* =============================================================
   FOOTER
   ============================================================= */
.site-footer { background: var(--near-black); color: rgba(255,255,255,.66); }
.site-footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; padding: 72px 0 56px; }
.footer-col--brand .brand-logo { margin-bottom: 20px; }
.footer-about { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,.6); margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 40px; height: 40px; border-radius: var(--radius); background: rgba(255,255,255,.07); display: grid; place-items: center; color: rgba(255,255,255,.7); transition: all .2s var(--ease); }
.footer-social a svg { width: 18px; height: 18px; }
.footer-social a:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }
.footer-heading { font-size: 15px; text-transform: uppercase; letter-spacing: .12em; color: #fff; margin-bottom: 20px; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.62); }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 13px; font-size: 14px; color: rgba(255,255,255,.66); }
.footer-contact .ico-sm { color: var(--blue); margin-top: 3px; flex: none; }
.footer-contact a { color: rgba(255,255,255,.66); }
.footer-contact a:hover { color: #fff; }
.footer-col--contact .btn { margin-top: 8px; }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,.08); }
.site-footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; font-size: 13px; color: rgba(255,255,255,.5); }
.site-footer__bottom p { margin: 0; }
.footer-legal { display: flex; gap: 10px; }
.footer-legal a { color: rgba(255,255,255,.5); }
.footer-legal a:hover { color: #fff; }

/* =============================================================
   PAGE HERO (inner pages)
   ============================================================= */
.page-hero { position: relative; background: var(--ink); background-image: linear-gradient(120deg, rgba(8,11,17,.95), rgba(8,11,17,.7)); color: #fff; padding: 78px 0 66px; overflow: hidden; }
.page-hero.has-bg { background-image: linear-gradient(120deg, rgba(8,11,17,.92), rgba(8,11,17,.6)), var(--phero-img); background-size: cover; background-position: center; }
.page-hero--products { background-image: linear-gradient(120deg, rgba(8,11,17,.95) 0%, rgba(17,73,179,.55) 100%); }
.page-hero.has-bg.page-hero--products { background-image: linear-gradient(120deg, rgba(8,11,17,.9) 0%, rgba(17,73,179,.5) 100%), var(--phero-img); }
.page-hero__overlay { position: absolute; inset: 0; background: radial-gradient(100% 120% at 12% 20%, rgba(30,107,255,.16), transparent 55%); }
.page-hero > .container { position: relative; }
.page-hero__title { font-size: clamp(34px, 5vw, 58px); text-transform: uppercase; color: #fff; letter-spacing: .01em; }
.page-hero__lead { font-size: 18px; color: rgba(255,255,255,.8); max-width: 680px; margin: 12px 0 0; }

/* Breadcrumbs */
.breadcrumbs { background: var(--bg-soft); border-bottom: 1px solid var(--line); font-size: 13px; }
.breadcrumbs .container { padding-block: 14px; }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--blue); }
.breadcrumbs span { color: var(--muted-2); margin: 0 4px; }
.breadcrumbs .current { color: var(--ink); font-weight: 600; }

/* =============================================================
   PRODUCTS ARCHIVE
   ============================================================= */
.products-section { padding: 44px 0 90px; background: var(--bg); }
.products-toolbar { padding-top: 6px; padding-bottom: 30px; }
.filter-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { display: inline-flex; align-items: center; gap: 7px; font-family: var(--display); font-weight: 500; text-transform: uppercase; letter-spacing: .05em; font-size: 13.5px; color: var(--text); background: var(--bg-soft); border: 1px solid var(--line); padding: 9px 16px; border-radius: 100px; transition: all .2s var(--ease); }
.chip em { font-style: normal; font-size: 11px; color: var(--muted-2); background: #fff; border-radius: 100px; padding: 1px 7px; }
.chip:hover { border-color: var(--blue); color: var(--blue); }
.chip.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }
.chip.is-active em { background: rgba(255,255,255,.15); color: #fff; }

.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 54px; }
.pagination .page-numbers { display: inline-grid; place-items: center; min-width: 44px; height: 44px; padding: 0 12px; border: 1px solid var(--line); border-radius: var(--radius); font-family: var(--display); font-weight: 500; color: var(--text); background: #fff; transition: all .2s var(--ease); }
.pagination .page-numbers:hover { border-color: var(--blue); color: var(--blue); }
.pagination .page-numbers.current { background: var(--blue); border-color: var(--blue); color: #fff; }
.pagination .dots { border: none; background: transparent; }

.empty-state { text-align: center; padding: 60px 0; }
.empty-state p { color: var(--muted); font-size: 18px; margin-bottom: 20px; }

/* =============================================================
   SINGLE PRODUCT
   ============================================================= */
.single-product { padding: 50px 0 90px; }
.single-product__top { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; margin-bottom: 66px; }

.pgallery__main { background: linear-gradient(135deg, #f2f4f8, #e7ebf1); border: 1px solid var(--line); border-radius: var(--radius-lg); aspect-ratio: 1/1; display: grid; place-items: center; overflow: hidden; }
.pgallery__main img { width: 100%; height: 100%; object-fit: contain; padding: 40px; mix-blend-mode: multiply; }
.pgallery__thumbs { display: flex; gap: 12px; margin-top: 14px; flex-wrap: wrap; }
.pgallery__thumb { width: 84px; height: 84px; border: 1.5px solid var(--line); border-radius: var(--radius); background: linear-gradient(135deg,#f2f4f8,#e7ebf1); overflow: hidden; padding: 0; transition: border-color .2s var(--ease); }
.pgallery__thumb img { width: 100%; height: 100%; object-fit: contain; padding: 8px; mix-blend-mode: multiply; }
.pgallery__thumb.is-active { border-color: var(--blue); }

.psummary__cat { display: inline-block; font-family: var(--display); font-weight: 500; text-transform: uppercase; letter-spacing: .1em; font-size: 13px; color: var(--blue); margin-bottom: 12px; }
.psummary__title { font-size: clamp(28px, 3.6vw, 42px); text-transform: capitalize; margin-bottom: 16px; }
.psummary__lead { font-size: 17px; color: var(--muted); line-height: 1.65; margin-bottom: 26px; }
.psummary__block { margin-bottom: 24px; }
.psummary__block h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 12px; font-family: var(--body); font-weight: 700; }
.psummary__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.psummary__usp { margin: 26px 0; display: grid; gap: 12px; }
.psummary__usp li { display: flex; align-items: center; gap: 11px; font-size: 15px; color: var(--text); }
.psummary__usp .ico-sm { color: #fff; background: var(--blue); border-radius: 50%; padding: 3px; width: 22px; height: 22px; flex: none; }
.psummary__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; padding-top: 28px; border-top: 1px solid var(--line); }

.single-product__details { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.pdetails__section { margin-bottom: 44px; }
.pdetails__heading { font-size: 26px; text-transform: uppercase; padding-bottom: 14px; border-bottom: 2px solid var(--blue); display: inline-block; margin-bottom: 24px; }
.pdetails__content { color: var(--text); font-size: 15.5px; line-height: 1.8; }
.pdetails__content h2, .pdetails__content h3 { text-transform: none; margin-top: 1.4em; }
.pdetails__content img { border-radius: var(--radius); margin: 1.4em 0; }
.pdetails__content ul { list-style: disc; padding-left: 1.3em; margin: 1em 0; }
.pdetails__content li { margin-bottom: .5em; }

.spec-table-wrap { overflow-x: auto; margin-bottom: 20px; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.spec-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 480px; }
.spec-table th { background: var(--ink); color: #fff; font-family: var(--display); font-weight: 500; text-transform: uppercase; letter-spacing: .04em; text-align: left; padding: 13px 16px; font-size: 13px; }
.spec-table td { padding: 12px 16px; border-bottom: 1px solid var(--line-2); color: var(--text); }
.spec-table tr:nth-child(even) td { background: var(--bg-soft); }
.spec-table tr:last-child td { border-bottom: none; }

.pdetails__cta { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; text-align: left; }
.pdetails__cta h3 { font-size: 22px; text-transform: uppercase; margin-bottom: 8px; }
.pdetails__cta p { color: var(--muted); margin-bottom: 18px; }

.paside { position: sticky; top: 96px; }
.paside__card { background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: 30px 26px; }
.paside__card h4 { font-size: 19px; text-transform: uppercase; color: #fff; margin-bottom: 20px; }
.paside__list { display: grid; gap: 16px; margin-bottom: 24px; }
.paside__list li { display: flex; align-items: center; gap: 12px; font-size: 14px; color: rgba(255,255,255,.8); }
.paside__list .ico-sm { color: #6ea0ff; width: 20px; height: 20px; flex: none; }

.related { padding: 80px 0; background: var(--bg-soft); border-top: 1px solid var(--line); }

/* =============================================================
   GENERIC PAGE / ENTRY
   ============================================================= */
.page-content { padding: 66px 0 90px; }
.entry { font-size: 16.5px; line-height: 1.85; color: var(--text); }
.entry--narrow { max-width: 820px; }
.entry h2 { font-size: 30px; text-transform: uppercase; margin: 1.6em 0 .6em; }
.entry h3 { font-size: 23px; margin: 1.4em 0 .5em; }
.entry h2:first-child, .entry h3:first-child { margin-top: 0; }
.entry p { margin-bottom: 1.2em; }
.entry ul { list-style: none; padding: 0; margin: 1.2em 0; display: grid; gap: 12px; }
.entry ul li { position: relative; padding-left: 30px; }
.entry ul li::before { content: ""; position: absolute; left: 0; top: 9px; width: 16px; height: 16px; background: var(--blue); border-radius: 3px; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/12px no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/12px no-repeat; }
.entry img { border-radius: var(--radius-lg); }
.entry .aligncenter { margin-inline: auto; }
.entry blockquote { border-left: 4px solid var(--blue); padding: 8px 24px; margin: 1.6em 0; color: var(--muted); font-size: 19px; font-style: italic; }

/* Rich content sections (used on About/Solutions) */
.rich-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin: 40px 0; }
.rich-stat { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 24px; text-align: center; }
.rich-stat strong { display: block; font-family: var(--display); font-weight: 700; font-size: 42px; color: var(--blue); line-height: 1; }
.rich-stat span { display: block; margin-top: 8px; font-size: 13.5px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.rich-cols { display: grid; grid-template-columns: repeat(2,1fr); gap: 26px; margin: 36px 0; }
.rich-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; }
.rich-card h3 { display: flex; align-items: center; gap: 12px; font-size: 21px; text-transform: uppercase; margin-bottom: 12px; }
.rich-card .num { font-family: var(--display); color: var(--blue); font-size: 15px; border: 2px solid var(--blue); border-radius: 50%; width: 40px; height: 40px; display: grid; place-items: center; flex: none; }
.rich-card p { color: var(--muted); font-size: 15px; margin: 0; }

/* =============================================================
   CONTACT
   ============================================================= */
.contact-section { padding: 66px 0 90px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact-cards { display: grid; gap: 16px; margin-top: 28px; }
.contact-card { display: flex; gap: 16px; align-items: center; background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 20px 22px; }
.contact-card__ico { width: 48px; height: 48px; border-radius: var(--radius); background: rgba(30,107,255,.1); color: var(--blue); display: grid; place-items: center; flex: none; }
.contact-card h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .09em; color: var(--muted); margin-bottom: 3px; font-family: var(--body); font-weight: 700; }
.contact-card a, .contact-card span { color: var(--ink); font-size: 16px; font-weight: 500; }
.contact-card a:hover { color: var(--blue); }

.contact-form-wrap { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-md); }
.contact-form-title { font-size: 26px; text-transform: uppercase; margin-bottom: 24px; }
.contact-form label { display: block; font-size: 13.5px; font-weight: 600; color: var(--text); margin-bottom: 16px; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input, .contact-form textarea { width: 100%; margin-top: 7px; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius); font-family: var(--body); font-size: 15px; font-weight: 400; color: var(--text); background: var(--bg-soft); transition: border-color .2s var(--ease), background .2s var(--ease); }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 3px var(--blue-glow); }
.contact-form textarea { resize: vertical; }
.msu-hp { position: absolute; left: -9999px; }
.form-fineprint { font-size: 12.5px; color: var(--muted-2); margin: 14px 0 0; font-weight: 400; }
.form-notice { display: flex; align-items: center; gap: 10px; padding: 14px 18px; border-radius: var(--radius); margin-bottom: 20px; font-size: 14.5px; }
.form-notice--ok { background: rgba(22,163,74,.1); color: #15803d; border: 1px solid rgba(22,163,74,.3); }
.form-notice--err { background: rgba(220,38,38,.08); color: #b91c1c; border: 1px solid rgba(220,38,38,.25); }

/* Search form */
.search-form { display: flex; max-width: 420px; }
.search-field { flex: 1; padding: 12px 16px; border: 1.5px solid var(--line); border-right: none; border-radius: var(--radius) 0 0 var(--radius); font-size: 15px; }
.search-submit { background: var(--blue); border: none; color: #fff; padding: 0 18px; border-radius: 0 var(--radius) var(--radius) 0; }

/* 404 */
.error-404 { text-align: center; padding: 110px 0; }
.error-404__code { font-family: var(--display); font-weight: 700; font-size: 140px; line-height: 1; color: var(--blue); text-shadow: 0 20px 50px var(--blue-glow); }
.error-404 h1 { font-size: 36px; text-transform: uppercase; margin: 10px 0 12px; }
.error-404 p { color: var(--muted); font-size: 18px; margin-bottom: 28px; }
.error-404__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Post grid (blog) */
.post-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.post-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.post-card__media img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.post-card__body { padding: 24px; }
.post-card__date { font-size: 12.5px; text-transform: uppercase; letter-spacing: .08em; color: var(--blue); font-weight: 600; }
.post-card__title { font-size: 20px; text-transform: none; margin: 8px 0 10px; }
.post-card__title a { color: var(--ink); }
.post-card__title a:hover { color: var(--blue); }
.post-card p { color: var(--muted); font-size: 14.5px; margin-bottom: 14px; }

/* =============================================================
   MOTION
   ============================================================= */
.site-header.is-scrolled { height: 64px; box-shadow: 0 8px 30px rgba(0,0,0,.3); }
.site-header.is-scrolled .site-header__inner { height: 64px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }
.product-grid .reveal:nth-child(2), .cat-strip__grid .reveal:nth-child(2), .solutions__grid .reveal:nth-child(2) { transition-delay: .06s; }
.product-grid .reveal:nth-child(3), .cat-strip__grid .reveal:nth-child(3), .solutions__grid .reveal:nth-child(3) { transition-delay: .12s; }
.product-grid .reveal:nth-child(4), .cat-strip__grid .reveal:nth-child(4), .solutions__grid .reveal:nth-child(4) { transition-delay: .18s; }
.cat-strip__grid .reveal:nth-child(5), .solutions__grid .reveal:nth-child(5) { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
	.reveal { opacity: 1; transform: none; }
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1200px) {
	.cat-strip__grid { grid-template-columns: repeat(3, 1fr); }
	.cat-strip__grid .cat-card:nth-child(3) { border-right: none; }
	.solutions__grid { grid-template-columns: repeat(3, 1fr); }
	.product-grid, .product-grid--archive { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
	.site-footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
	.single-product__details { grid-template-columns: 1fr; }
	.paside { position: static; }
	.paside__card { display: none; }
	.hero__core { transform: translateY(-50%) scale(.8); right: -6%; opacity: .85; }
}
@media (max-width: 900px) {
	.main-nav { position: fixed; inset: 0 0 0 auto; width: min(360px, 84vw); background: var(--ink); padding: 90px 24px 40px; transform: translateX(100%); transition: transform .3s var(--ease); overflow-y: auto; box-shadow: var(--shadow-lg); }
	.nav-open .main-nav { transform: translateX(0); }
	.nav-menu { flex-direction: column; align-items: stretch; gap: 2px; }
	.nav-menu a { font-size: 17px; padding: 14px 16px; }
	.sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: rgba(255,255,255,.04); border: none; margin: 4px 0 8px 12px; }
	.sub-menu li a { color: rgba(255,255,255,.75); }
	.sub-menu li a:hover { background: rgba(255,255,255,.06); color: #fff; }
	.nav-toggle { display: block; }
	.header-quote { display: none; }
	.hero__stats { gap: 28px; flex-wrap: wrap; }
	.hero__stats strong { font-size: 32px; }
	.hero__core { display: none; }
	.single-product__top { grid-template-columns: 1fr; gap: 32px; }
	.contact-grid { grid-template-columns: 1fr; gap: 40px; }
	.rich-cols { grid-template-columns: 1fr; }
	.rich-stats { grid-template-columns: repeat(2,1fr); }
	.nav-open { overflow: hidden; }
	.nav-open::after { content: ""; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 150; }
}
@media (max-width: 720px) {
	.topbar__meta { display: none; }
	.topbar__contact { gap: 16px; font-size: 12px; }
	.section-head { flex-direction: column; align-items: flex-start; gap: 12px; }
	.cat-strip__grid { grid-template-columns: repeat(2, 1fr); }
	.cat-strip__grid .cat-card { border-right: 1px solid var(--line); }
	.cat-strip__grid .cat-card:nth-child(2n) { border-right: none; }
	.cat-card { min-height: 300px; }
	.solutions__grid { grid-template-columns: repeat(2, 1fr); }
	.product-grid, .product-grid--archive { grid-template-columns: repeat(2, 1fr); gap: 16px; }
	.feature-bar__grid { grid-template-columns: 1fr 1fr; gap: 26px; }
	.post-grid { grid-template-columns: 1fr; }
	.contact-form .form-row { grid-template-columns: 1fr; gap: 0; }
	.psummary__actions .btn { flex: 1; justify-content: center; }
	.solutions, .featured { padding: 64px 0; }
	.hero { min-height: 560px; }
	.hero__inner { padding-block: 60px; }
}
@media (max-width: 480px) {
	:root { --gutter: 18px; }
	.cat-strip__grid, .solutions__grid, .product-grid, .product-grid--archive, .feature-bar__grid, .rich-stats { grid-template-columns: 1fr; }
	.cat-strip__grid .cat-card { border-right: none; border-bottom: 1px solid var(--line); }
	.hero__actions .btn { width: 100%; justify-content: center; }
	.hero__stats { gap: 20px; }
	.hero__stats li { flex: 1; min-width: 90px; }
	.cta-band__inner { flex-direction: column; align-items: flex-start; }
	.site-footer__top { grid-template-columns: 1fr; }
	.site-footer__bottom-inner { flex-direction: column; gap: 10px; }
	.contact-form-wrap { padding: 26px 20px; }
}

/* =============================================================
   PAGE ENHANCEMENTS (About / Solutions / Contact)
   ============================================================= */

/* Section rhythm inside .entry */
.entry .block { margin: 56px 0; }
.entry .block:first-child { margin-top: 8px; }
.block-head { margin-bottom: 28px; }
.block-head .eyebrow { margin-bottom: 10px; }
.block-head h2 { font-size: clamp(26px,3.4vw,38px); text-transform: uppercase; margin: 0; }
.block-head p { color: var(--muted); font-size: 16.5px; margin: 10px 0 0; max-width: 720px; }

/* Lead split: text + highlight panel */
.about-lead { display: grid; grid-template-columns: 1.5fr 1fr; gap: 44px; align-items: center; margin: 8px 0 8px; }
.about-lead__text h2 { font-size: clamp(28px,3.6vw,40px); text-transform: uppercase; margin-bottom: 18px; }
.about-lead__text p { color: var(--muted); font-size: 16.5px; }
.about-panel { background: linear-gradient(155deg, var(--ink) 0%, var(--ink-3) 100%); border-radius: var(--radius-lg); padding: 34px 30px; color: #fff; position: relative; overflow: hidden; box-shadow: var(--shadow-md); }
.about-panel::before { content: ""; position: absolute; top: -40px; right: -40px; width: 160px; height: 160px; background: radial-gradient(circle, rgba(30,107,255,.4), transparent 70%); }
.about-panel h3 { color: #fff; font-size: 20px; text-transform: uppercase; margin-bottom: 18px; position: relative; }
.about-panel .kpi { display: flex; align-items: baseline; gap: 10px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.1); position: relative; }
.about-panel .kpi:last-child { border-bottom: none; }
.about-panel .kpi b { font-family: var(--display); font-size: 30px; color: #6ea0ff; min-width: 84px; }
.about-panel .kpi span { color: rgba(255,255,255,.75); font-size: 14px; }

/* Feature / capability cards with icons */
.feature-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.feature-cards--4 { grid-template-columns: repeat(4,1fr); }
.fcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 26px; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease); }
.fcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.fcard__ico { width: 56px; height: 56px; border-radius: var(--radius); background: rgba(30,107,255,.1); color: var(--blue); display: grid; place-items: center; margin-bottom: 18px; }
.fcard__ico .msu-ico { width: 28px; height: 28px; }
.fcard h3 { font-size: 19px; text-transform: uppercase; margin-bottom: 8px; }
.fcard p { color: var(--muted); font-size: 14.5px; margin: 0; }

/* Process / steps */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; counter-reset: step; }
.step { position: relative; padding: 0 22px; }
.step:not(:last-child)::after { content: ""; position: absolute; top: 26px; right: 0; width: 100%; height: 2px; background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px); transform: translateX(50%); z-index: 0; }
.step__num { width: 54px; height: 54px; border-radius: 50%; background: var(--ink); color: #fff; display: grid; place-items: center; font-family: var(--display); font-weight: 600; font-size: 22px; margin-bottom: 18px; position: relative; z-index: 1; box-shadow: 0 0 0 6px var(--bg); }
.step h4 { font-size: 17px; text-transform: uppercase; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14px; margin: 0; }

/* Split: visual + checklist */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { border-radius: var(--radius-lg); overflow: hidden; background: var(--ink); aspect-ratio: 4/3; position: relative; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__media--dark { display: grid; place-items: center; background: linear-gradient(150deg, var(--ink), var(--ink-3)); }
.split__body h2 { font-size: clamp(24px,3vw,34px); text-transform: uppercase; margin-bottom: 16px; }
.split__body > p { color: var(--muted); font-size: 16px; margin-bottom: 20px; }
.check-list { display: grid; gap: 14px; }
.check-list li { position: relative; padding-left: 34px; color: var(--text); font-size: 15.5px; line-height: 1.5; list-style: none; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 1px; width: 22px; height: 22px; border-radius: 50%; background: var(--blue); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/13px no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/13px no-repeat; }
.check-list li strong { display: block; color: var(--ink); font-weight: 700; margin-bottom: 2px; }

/* Certifications row */
.cert-row { display: flex; flex-wrap: wrap; gap: 14px; }
.cert-badge { display: inline-flex; align-items: center; gap: 10px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 100px; padding: 12px 22px; font-family: var(--display); font-weight: 500; text-transform: uppercase; letter-spacing: .05em; font-size: 14px; color: var(--ink); }
.cert-badge .msu-ico { color: var(--blue); }

/* Number stat strip (dark) */
.stat-strip { background: linear-gradient(120deg, var(--ink) 0%, var(--ink-2) 100%); border-radius: var(--radius-lg); padding: 40px; display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; position: relative; overflow: hidden; }
.stat-strip::before { content: ""; position: absolute; inset: 0; background: radial-gradient(90% 140% at 85% 10%, rgba(30,107,255,.18), transparent 55%); }
.stat-strip .s { position: relative; text-align: center; }
.stat-strip .s b { display: block; font-family: var(--display); font-weight: 700; font-size: 44px; color: #fff; line-height: 1; }
.stat-strip .s span { display: block; margin-top: 8px; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: #6ea0ff; }

/* Inline callout / mini-cta */
.mini-cta { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; background: var(--bg-soft); border: 1px solid var(--line); border-left: 4px solid var(--blue); border-radius: var(--radius-lg); padding: 28px 32px; }
.mini-cta h3 { font-size: 21px; text-transform: uppercase; margin: 0 0 4px; }
.mini-cta p { color: var(--muted); margin: 0; }

/* Contact: hours + quick + steps */
.contact-hours { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px 26px; margin-top: 16px; }
.contact-hours h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .09em; color: var(--muted); margin-bottom: 14px; font-family: var(--body); font-weight: 700; display: flex; align-items: center; gap: 8px; }
.contact-hours h4 .ico-sm { color: var(--blue); }
.contact-hours ul { display: grid; gap: 8px; }
.contact-hours li { display: flex; justify-content: space-between; font-size: 14.5px; color: var(--text); border-bottom: 1px dashed var(--line); padding-bottom: 8px; }
.contact-hours li:last-child { border-bottom: none; }
.contact-hours li span:last-child { color: var(--ink); font-weight: 600; }

.contact-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 8px; }
.cstep { text-align: center; padding: 20px; }
.cstep__n { width: 46px; height: 46px; border-radius: 50%; border: 2px solid var(--blue); color: var(--blue); font-family: var(--display); font-weight: 600; display: grid; place-items: center; margin: 0 auto 14px; }
.cstep h4 { font-size: 16px; text-transform: uppercase; margin-bottom: 6px; }
.cstep p { color: var(--muted); font-size: 13.5px; margin: 0; }

/* Responsive */
@media (max-width: 1000px) {
	.about-lead { grid-template-columns: 1fr; gap: 30px; }
	.feature-cards, .feature-cards--4 { grid-template-columns: repeat(2,1fr); }
	.steps { grid-template-columns: repeat(2,1fr); gap: 32px 0; }
	.step:nth-child(2)::after { display: none; }
	.split { grid-template-columns: 1fr; gap: 28px; }
	.split--reverse .split__media { order: 0; }
	.stat-strip { grid-template-columns: repeat(2,1fr); gap: 28px; }
}
@media (max-width: 560px) {
	.feature-cards, .feature-cards--4, .contact-steps { grid-template-columns: 1fr; }
	.steps { grid-template-columns: 1fr; }
	.step::after { display: none !important; }
	.stat-strip { grid-template-columns: 1fr 1fr; padding: 28px 20px; }
	.mini-cta { flex-direction: column; align-items: flex-start; }
}
