/**
 * Site-wide dark ("black") theme with AI-feeling motion.
 * Loaded wherever indus_is_dark_page() is true (functions.php) and scoped to body.indus-dark.
 * Functional app screens (LMS app, shop/account, BuddyPress, assessments) stay light. Every animation respects prefers-reduced-motion.
 */
body.indus-dark {
	--hd-bg: #05070B;
	--hd-bg-2: #0A0E16;
	--hd-panel: #0E1420;
	--hd-line: rgba(255, 255, 255, .10);
	--hd-line-2: rgba(255, 255, 255, .18);
	--hd-ink: #F2F5F9;
	--hd-ink-2: #97A3B4;
	--hd-cyan: #35E0C8;
	--hd-blue: #4C8DFF;
	--hd-gold: #E3B457;
	--hd-glow: 0 0 0 1px rgba(53, 224, 200, .22), 0 18px 60px rgba(0, 0, 0, .55);
	background: var(--hd-bg);
	color: var(--hd-ink);
}

/* ---------- base overrides inside the dark home ---------- */
body.indus-dark .elementor-widget-container,
body.indus-dark p,
body.indus-dark li { color: var(--hd-ink-2); }
body.indus-dark h1, body.indus-dark h2, body.indus-dark h3, body.indus-dark h4 { color: var(--hd-ink); }
body.indus-dark .indus-eyebrow { color: var(--hd-cyan) !important; letter-spacing: .16em; }
body.indus-dark a { color: var(--hd-cyan); }
body.indus-dark .e-con-inner, body.indus-dark .e-con { background-color: transparent; }

/* ---------- ambient background: slow aurora + grid ---------- */
body.indus-dark::before {
	content: ""; position: fixed; inset: 0; z-index: 0; pointer-events: none;
	background:
		radial-gradient(60% 45% at 18% 8%, rgba(76, 141, 255, .20), transparent 60%),
		radial-gradient(50% 40% at 82% 22%, rgba(53, 224, 200, .16), transparent 62%),
		radial-gradient(45% 45% at 50% 100%, rgba(227, 180, 87, .10), transparent 60%);
	animation: hd-aurora 22s ease-in-out infinite alternate;
}
body.indus-dark::after {
	content: ""; position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: .5;
	background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: radial-gradient(75% 60% at 50% 0%, #000 30%, transparent 78%);
	-webkit-mask-image: radial-gradient(75% 60% at 50% 0%, #000 30%, transparent 78%);
}
body.indus-dark .site-content, body.indus-dark main, body.indus-dark .elementor { position: relative; z-index: 1; }
@keyframes hd-aurora {
	0%   { transform: translate3d(0, 0, 0) scale(1); }
	50%  { transform: translate3d(-2%, 1.5%, 0) scale(1.06); }
	100% { transform: translate3d(1.5%, -1%, 0) scale(1.03); }
}

/* ---------- hero ---------- */
.hd-hero { position: relative; }
.hd-hero__eyebrow { display: inline-flex; align-items: center; gap: 9px; font: 700 12px/1 'Source Sans 3', system-ui, sans-serif; letter-spacing: .16em; text-transform: uppercase; color: var(--hd-cyan); }
.hd-hero__eyebrow i { width: 7px; height: 7px; border-radius: 50%; background: var(--hd-cyan); box-shadow: 0 0 0 0 rgba(53,224,200,.7); animation: hd-pulse 2.4s infinite; }
@keyframes hd-pulse { 0% { box-shadow: 0 0 0 0 rgba(53,224,200,.7); } 70% { box-shadow: 0 0 0 12px rgba(53,224,200,0); } 100% { box-shadow: 0 0 0 0 rgba(53,224,200,0); } }

.hd-h1 { font-family: 'DM Serif Display', Georgia, serif; font-weight: 400; font-size: clamp(38px, 5.4vw, 64px); line-height: 1.06; color: var(--hd-ink); margin: 14px 0 0; text-wrap: balance; }
.hd-h1 .w { display: inline-block; opacity: 0; transform: translateY(16px); animation: hd-rise .7s cubic-bezier(.2,.7,.3,1) forwards; }
@keyframes hd-rise { to { opacity: 1; transform: none; } }
.hd-h1 .grad {
	background: linear-gradient(100deg, var(--hd-cyan), var(--hd-blue) 45%, var(--hd-gold));
	-webkit-background-clip: text; background-clip: text; color: transparent;
	background-size: 220% 100%; animation: hd-shift 9s ease-in-out infinite;
}
@keyframes hd-shift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

/* rotating outcome word */
.hd-rotator { display: inline-grid; vertical-align: bottom; }
.hd-rotator span { grid-area: 1/1; opacity: 0; transform: translateY(12px); animation: hd-rot 12s infinite; color: var(--hd-cyan); }
.hd-rotator span:nth-child(2) { animation-delay: 3s; }
.hd-rotator span:nth-child(3) { animation-delay: 6s; }
.hd-rotator span:nth-child(4) { animation-delay: 9s; }
@keyframes hd-rot { 0% { opacity: 0; transform: translateY(12px); } 4%,22% { opacity: 1; transform: none; } 27%,100% { opacity: 0; transform: translateY(-10px); } }

.hd-lede { font-size: 18.5px; line-height: 1.6; color: var(--hd-ink-2); max-width: 60ch; }
.hd-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; }
.hd-btn { display: inline-flex; align-items: center; gap: 9px; border-radius: 8px; font: 600 15px/1 'Source Sans 3', system-ui, sans-serif; padding: 14px 24px; text-decoration: none !important; transition: transform .18s, box-shadow .25s, background .25s; position: relative; overflow: hidden; }
.hd-btn--p { background: linear-gradient(100deg, var(--hd-cyan), var(--hd-blue)); color: #04121A !important; box-shadow: 0 10px 34px rgba(53,224,200,.28); }
.hd-btn--p::after { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.55) 45%, transparent 70%); transform: translateX(-120%); animation: hd-sheen 4.5s 1.2s infinite; }
@keyframes hd-sheen { 0% { transform: translateX(-120%); } 55%, 100% { transform: translateX(160%); } }
.hd-btn--s { border: 1px solid var(--hd-line-2); color: var(--hd-ink) !important; background: rgba(255,255,255,.03); }
.hd-btn:hover { transform: translateY(-2px); }
.hd-btn--s:hover { background: rgba(255,255,255,.08); border-color: var(--hd-cyan); }

/* ---------- the interactive engine (replaces the team photo) ---------- */
.hd-engine { position: relative; border: 1px solid var(--hd-line); border-radius: 18px; background: linear-gradient(180deg, rgba(20,28,42,.92), rgba(8,12,20,.92)); box-shadow: var(--hd-glow); overflow: hidden; }
.hd-engine__bar { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-bottom: 1px solid var(--hd-line); font: 600 12.5px/1 'Source Sans 3', system-ui, sans-serif; letter-spacing: .06em; text-transform: uppercase; color: var(--hd-ink-2); }
.hd-engine__bar b { color: var(--hd-cyan); font-weight: 700; }
.hd-engine__bar .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--hd-cyan); animation: hd-blink 1.6s infinite; }
@keyframes hd-blink { 0%,100% { opacity: 1; } 50% { opacity: .25; } }
.hd-engine__canvas { display: block; width: 100%; height: 340px; }
.hd-engine__hint { margin-left: auto; font-size: 11.5px; letter-spacing: .06em; color: var(--hd-ink-2); border: 1px solid var(--hd-line); padding: 4px 9px; border-radius: 999px; }
.hd-engine__read { border-top: 1px solid var(--hd-line); padding: 14px 18px 16px; min-height: 92px; }
.hd-engine__read .k { font: 700 11px/1 'Source Sans 3', system-ui, sans-serif; letter-spacing: .12em; text-transform: uppercase; color: var(--hd-cyan); }
.hd-engine__read .v { margin: 7px 0 0; color: var(--hd-ink); font-size: 16.5px; line-height: 1.5; }
.hd-engine__read .o { margin: 8px 0 0; color: var(--hd-ink-2); font-size: 14.5px; }
.hd-engine__read .o b { color: var(--hd-gold); font-weight: 600; }
@media (max-width: 760px) { .hd-engine__canvas { height: 300px; } }

/* ---------- stat rail with count-up ---------- */
.hd-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; margin-top: 18px; }
.hd-stat { border: 1px solid var(--hd-line); border-radius: 12px; padding: 16px 18px; background: rgba(255,255,255,.025); position: relative; overflow: hidden; }
.hd-stat::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 2px; background: linear-gradient(180deg, var(--hd-cyan), transparent); }
.hd-stat b { display: block; font: 400 34px/1 'DM Serif Display', Georgia, serif; color: var(--hd-ink); font-variant-numeric: tabular-nums; }
.hd-stat b i { font: inherit; font-style: normal; font-size: 18px; color: var(--hd-ink-2); margin-left: 3px; }
.hd-stat span { display: block; margin-top: 7px; font-size: 13.5px; color: var(--hd-ink-2); }

/* ---------- reveal on scroll ---------- */
.hd-reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.hd-reveal.is-in { opacity: 1; transform: none; }

/* ---------- capability chips ---------- */
.hd-chips { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.hd-chips a { display: inline-block; padding: 9px 15px; border-radius: 999px; border: 1px solid var(--hd-line); background: rgba(255,255,255,.03); color: var(--hd-ink) !important; font-size: 14.5px; text-decoration: none !important; transition: .22s; }
.hd-chips a:hover { border-color: var(--hd-cyan); background: rgba(53,224,200,.10); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(53,224,200,.16); }

/* ---------- cards ---------- */
.hd-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 16px; }
.hd-card { position: relative; border: 1px solid var(--hd-line); border-radius: 14px; padding: 24px 22px; background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015)); overflow: hidden; transition: transform .25s, border-color .25s; }
.hd-card::after { content: ""; position: absolute; width: 260px; height: 260px; border-radius: 50%; left: var(--mx, 50%); top: var(--my, 0%); transform: translate(-50%, -50%); background: radial-gradient(circle, rgba(53,224,200,.16), transparent 62%); opacity: 0; transition: opacity .3s; pointer-events: none; }
.hd-card:hover { transform: translateY(-4px); border-color: var(--hd-line-2); }
.hd-card:hover::after { opacity: 1; }
.hd-card h3 { font-family: 'DM Serif Display', Georgia, serif; font-weight: 400; font-size: 22px; margin: 0 0 8px; color: var(--hd-ink); }
.hd-card p { margin: 0 0 12px; font-size: 15.5px; color: var(--hd-ink-2); }
.hd-card .go { font-size: 14.5px; font-weight: 600; color: var(--hd-cyan); text-decoration: none; }
.hd-card .go::after { content: " →"; transition: .2s; display: inline-block; }
.hd-card:hover .go::after { transform: translateX(4px); }
.hd-card .num { position: absolute; right: 16px; top: 12px; font: 400 44px/1 'DM Serif Display', Georgia, serif; color: rgba(255,255,255,.06); }

/* ---------- section furniture ---------- */
.hd-sec { padding: 78px 0; position: relative; }
.hd-sec--line { border-top: 1px solid var(--hd-line); }
.hd-h2 { font-family: 'DM Serif Display', Georgia, serif; font-weight: 400; font-size: clamp(28px, 3.6vw, 42px); line-height: 1.1; color: var(--hd-ink); margin: 10px 0 12px; text-wrap: balance; }
.hd-sub { font-size: 17px; color: var(--hd-ink-2); max-width: 66ch; }
.hd-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; flex-wrap: wrap; margin-bottom: 26px; }

/* ---------- AI terminal (typing) ---------- */
.hd-term { border: 1px solid var(--hd-line); border-radius: 14px; background: #070A10; box-shadow: var(--hd-glow); overflow: hidden; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; }
.hd-term__bar { display: flex; gap: 6px; padding: 11px 14px; border-bottom: 1px solid var(--hd-line); }
.hd-term__bar i { width: 10px; height: 10px; border-radius: 50%; background: #2A3342; }
.hd-term__bar i:first-child { background: #E3B457; }
.hd-term__bar i:nth-child(2) { background: #35E0C8; }
.hd-term__body { padding: 18px 18px 22px; font-size: 14.5px; line-height: 1.85; min-height: 210px; color: var(--hd-ink-2); }
.hd-term__body .u { color: var(--hd-blue); }
.hd-term__body .a { color: var(--hd-ink); }
.hd-term__body .s { color: var(--hd-cyan); }
.hd-term__body .cursor { display: inline-block; width: 8px; height: 16px; background: var(--hd-cyan); vertical-align: -3px; animation: hd-blink 1s steps(1) infinite; }

/* ---------- marquee ---------- */
.hd-marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.hd-marquee__track { display: flex; gap: 48px; align-items: center; width: max-content; animation: hd-scroll 46s linear infinite; }
.hd-marquee:hover .hd-marquee__track { animation-play-state: paused; }
.hd-marquee img { height: 38px; width: auto; filter: brightness(0) invert(1); opacity: .55; transition: opacity .25s, filter .25s; }
.hd-marquee img:hover { opacity: 1; }
@keyframes hd-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- final CTA ---------- */
.hd-cta-band { border: 1px solid var(--hd-line); border-radius: 18px; padding: 44px 38px; background: linear-gradient(120deg, rgba(76,141,255,.14), rgba(53,224,200,.10) 55%, rgba(227,180,87,.10)); position: relative; overflow: hidden; }
.hd-cta-band::before { content: ""; position: absolute; inset: -40% -10%; background: conic-gradient(from 0deg, transparent, rgba(53,224,200,.18), transparent 40%); animation: hd-spin 14s linear infinite; }
@keyframes hd-spin { to { transform: rotate(360deg); } }
.hd-cta-band > * { position: relative; }

@media (prefers-reduced-motion: reduce) {
	body.indus-dark *, body.indus-dark *::before, body.indus-dark *::after { animation: none !important; transition: none !important; }
	.hd-h1 .w, .hd-reveal { opacity: 1 !important; transform: none !important; }
	.hd-rotator span { opacity: 0; } .hd-rotator span:first-child { opacity: 1; }
}

/* ---------- client logo strip, inverted for dark ---------- */
body.indus-dark .indus-logos-strip { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
body.indus-dark .indus-logos-track img { filter: brightness(0) invert(1); opacity: .5; transition: opacity .25s; }
body.indus-dark .indus-logos-track li:hover img { opacity: 1; }
body.indus-dark .indus-logos-strip:hover .indus-logos-track { animation-play-state: paused; }

/* ---------- responsive: the two-column grids stack ---------- */
@media (max-width: 900px) {
	.hd-hero .hd-grid, .hd-sec .hd-grid { grid-template-columns: 1fr !important; gap: 34px !important; }
	.hd-sec { padding: 54px 0; }
	.hd-head { align-items: flex-start; }
}
@media (max-width: 520px) {
	.hd-stats { grid-template-columns: 1fr 1fr; }
	.hd-btn { padding: 13px 18px; font-size: 14.5px; }
	.hd-engine__canvas { height: 260px; }
}

/* ---------- make the shared shell dark on the home page ---------- */
body.indus-dark .pusher,
body.indus-dark .site-content,
body.indus-dark #content { background: transparent !important; }
body.indus-dark .indus-header { background: rgba(5, 7, 11, .82) !important; backdrop-filter: saturate(140%) blur(14px); -webkit-backdrop-filter: saturate(140%) blur(14px); border-bottom: 1px solid var(--hd-line) !important; }
body.indus-dark .indus-header a, body.indus-dark .indus-nav__list > li > a { color: var(--hd-ink) !important; }
body.indus-dark .indus-nav__list > li > a:hover, body.indus-dark .indus-nav__item.is-current > a { color: var(--hd-cyan) !important; }
body.indus-dark .indus-nav__toggle { color: var(--hd-ink-2) !important; }
body.indus-dark .indus-nav__panel, body.indus-dark .indus-staff__panel, body.indus-dark .indus-mobile { background: #0B111B !important; border-color: var(--hd-line) !important; box-shadow: 0 22px 60px rgba(0,0,0,.6) !important; }
body.indus-dark .indus-nav__panel a, body.indus-dark .indus-staff__panel a, body.indus-dark .indus-mobile a { color: var(--hd-ink-2) !important; }
body.indus-dark .indus-nav__panel a:hover, body.indus-dark .indus-staff__panel a:hover, body.indus-dark .indus-mobile a:hover { color: var(--hd-cyan) !important; }
body.indus-dark .indus-header__logo img, body.indus-dark .indus-header img[src*="logo"] { filter: brightness(0) invert(1); }
body.indus-dark .indus-header .indus-btn--onGreen, body.indus-dark .indus-header .indus-btn { background: linear-gradient(100deg, var(--hd-cyan), var(--hd-blue)) !important; color: #04121A !important; border-color: transparent !important; }
body.indus-dark .indus-footer { background: #05070B !important; border-top: 1px solid var(--hd-line); }
body.indus-dark .indus-footer, body.indus-dark .indus-footer p, body.indus-dark .indus-footer li { color: var(--hd-ink-2) !important; }
body.indus-dark .indus-footer a { color: var(--hd-ink-2) !important; }
body.indus-dark .indus-footer a:hover { color: var(--hd-cyan) !important; }
body.indus-dark .indus-footer h3, body.indus-dark .indus-footer h4, body.indus-dark .indus-footer strong { color: var(--hd-ink) !important; }
body.indus-dark .indus-footer img { filter: brightness(0) invert(1); opacity: .85; }

/* gradient headline word keeps its gradient after the word-splitter wraps it */
.hd-h1 .grad .w { background: linear-gradient(100deg, var(--hd-cyan), var(--hd-blue) 45%, var(--hd-gold)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hd-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 1200px) { .hd-stats { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
body.indus-dark .indus-burger { color: var(--hd-ink) !important; border-color: var(--hd-line) !important; background: rgba(255,255,255,.05) !important; }
body.indus-dark .indus-burger svg { stroke: var(--hd-ink) !important; }
body.indus-dark .indus-mobile__actions a { color: var(--hd-ink) !important; }

/* =======================================================================
   AI-Enabled Learning section (page 898 and its children) in the dark theme.
   The section template's light surfaces are re-tinted; the hero already had a
   dark variant, so only the body, sidebar and modules need converting.
   ======================================================================= */
body.indus-dark .indus-section-hero { background: transparent !important; border-bottom: 1px solid var(--hd-line); }
body.indus-dark .indus-section-hero h1, body.indus-dark .indus-section-hero__lede { color: var(--hd-ink) !important; }
body.indus-dark .indus-section-hero__lede { color: var(--hd-ink-2) !important; }
body.indus-dark .indus-section-body, body.indus-dark .indus-main { background: transparent !important; }
body.indus-dark .indus-prose h2, body.indus-dark .indus-prose h3 { color: var(--hd-ink) !important; }
body.indus-dark .indus-prose p, body.indus-dark .indus-prose li { color: var(--hd-ink-2) !important; }
body.indus-dark .indus-prose strong, body.indus-dark .indus-prose b { color: var(--hd-ink) !important; }
body.indus-dark .indus-prose a { color: var(--hd-cyan) !important; }
body.indus-dark .indus-card, body.indus-dark .indus-side .indus-card { background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015)) !important; border: 1px solid var(--hd-line) !important; color: var(--hd-ink-2) !important; }
body.indus-dark .indus-card h3, body.indus-dark .indus-card h4 { color: var(--hd-ink) !important; }
body.indus-dark .indus-card--navy { background: linear-gradient(140deg, rgba(76,141,255,.16), rgba(53,224,200,.10)) !important; }
body.indus-dark .indus-side__list li, body.indus-dark .indus-small { color: var(--hd-ink-2) !important; }
body.indus-dark .indus-ai-outcome { background: linear-gradient(140deg, rgba(76,141,255,.14), rgba(53,224,200,.08)) !important; border: 1px solid var(--hd-line) !important; color: var(--hd-ink-2) !important; }
body.indus-dark .indus-ai-outcome h2, body.indus-dark .indus-ai-outcome h3, body.indus-dark .indus-ai-outcome b { color: var(--hd-ink) !important; }
body.indus-dark .indus-faq details, body.indus-dark details { border-color: var(--hd-line) !important; background: rgba(255,255,255,.03) !important; }
body.indus-dark summary { color: var(--hd-ink) !important; }
body.indus-dark .indus-chips span, body.indus-dark .indus-chips a { background: rgba(255,255,255,.05) !important; border: 1px solid var(--hd-line) !important; color: var(--hd-ink) !important; }
body.indus-dark .indus-facts, body.indus-dark .indus-facts div { border-color: var(--hd-line) !important; color: var(--hd-ink-2) !important; }
body.indus-dark .indus-facts b, body.indus-dark .indus-facts strong { color: var(--hd-ink) !important; }
body.indus-dark .indus-cta, body.indus-dark .indus-section-cta { background: linear-gradient(120deg, rgba(76,141,255,.14), rgba(53,224,200,.10)) !important; border: 1px solid var(--hd-line) !important; border-radius: 16px; }
body.indus-dark .indus-btn--primary { background: linear-gradient(100deg, var(--hd-cyan), var(--hd-blue)) !important; color: #04121A !important; border-color: transparent !important; }
body.indus-dark .indus-btn--link { color: var(--hd-cyan) !important; }
body.indus-dark .indus-cardgrid--children .indus-card { transition: transform .22s, border-color .22s; }
body.indus-dark .indus-cardgrid--children .indus-card:hover { transform: translateY(-3px); border-color: var(--hd-cyan) !important; }
body.indus-dark table { color: var(--hd-ink-2); }
body.indus-dark th, body.indus-dark td { border-color: var(--hd-line) !important; }
body.indus-dark th { color: var(--hd-ink) !important; }
body.indus-dark .indus-side__list a, body.indus-dark .indus-card a { color: var(--hd-ink) !important; }
body.indus-dark .indus-side__list a:hover, body.indus-dark .indus-card a:hover { color: var(--hd-cyan) !important; }
body.indus-dark .indus-card--navy a, body.indus-dark .indus-card--navy p, body.indus-dark .indus-card--navy li { color: var(--hd-ink) !important; }

/* =======================================================================
   SITE-WIDE DARK — token flip.
   Every Indus component reads the --in-* tokens, so flipping them converts
   most of the site at once. Navy is used both as a text colour (headings)
   and as a background (buttons, heroes, footer); the token becomes the light
   text colour and the background uses are overridden below.
   ======================================================================= */
body.indus-dark {
	--in-paper: #05070B; --in-sand: #0E1420; --in-line: rgba(255,255,255,.10); --in-mist: #2A3342;
	--in-ink: #F2F5F9; --in-ink-2: #A3AEBE;
	--in-navy: #F2F5F9; --in-navy-2: #DCE3EC;
	--in-green: #35E0C8; --in-green-soft: rgba(53,224,200,.10); --in-gold: #E3B457;
}
body.indus-dark .pusher { position: relative; z-index: 1; }

/* surfaces that hard-code white */
body.indus-dark .indus-card, body.indus-dark .indus-facts, body.indus-dark .indus-table-wrap,
body.indus-dark .indus-agent, body.indus-dark .indus-clients-grid li, body.indus-dark .indus-capstrip--plain span,
body.indus-dark .indus-report-filters, body.indus-dark .indus-photo {
	background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.018)) !important;
	border-color: var(--hd-line) !important; color: var(--hd-ink-2);
}
body.indus-dark .indus-clients-grid li img, body.indus-dark .indus-logos img { filter: brightness(0) invert(1); opacity: .62; transition: opacity .25s; }
body.indus-dark .indus-clients-grid li:hover img, body.indus-dark .indus-logos li:hover img { opacity: 1; }

/* surfaces that use navy / green as a background */
body.indus-dark .indus-prog-hero, body.indus-dark .indus-section-hero--dark, body.indus-dark .indus-assess-hero,
body.indus-dark .indus-hero-stats, body.indus-dark .indus-mock { background: transparent !important; border-bottom: 1px solid var(--hd-line); }
body.indus-dark .indus-mock__tile, body.indus-dark .indus-prose .stats li, body.indus-dark .indus-content .stats li { background: rgba(255,255,255,.05) !important; border: 1px solid var(--hd-line); color: var(--hd-ink) !important; }
body.indus-dark .indus-cta { background: linear-gradient(120deg, rgba(76,141,255,.14), rgba(53,224,200,.10) 55%, rgba(227,180,87,.08)) !important; border: 1px solid var(--hd-line); color: var(--hd-ink) !important; }
body.indus-dark .indus-cta h2, body.indus-dark .indus-cta h3, body.indus-dark .indus-cta p { color: var(--hd-ink) !important; }
body.indus-dark .indus-outcomes li { background: rgba(53,224,200,.07) !important; border: 1px solid rgba(53,224,200,.18); color: var(--hd-ink) !important; }
body.indus-dark .indus-tag { background: rgba(53,224,200,.12) !important; color: var(--hd-cyan) !important; }
body.indus-dark .indus-skip { background: var(--hd-cyan) !important; color: #04121A !important; }

/* buttons */
body.indus-dark .indus-btn--primary, body.indus-dark .forminator-ui .forminator-button-submit, body.indus-dark .indus-btn--onGreen {
	background: linear-gradient(100deg, var(--hd-cyan), var(--hd-blue)) !important; color: #04121A !important; border-color: transparent !important; }
body.indus-dark .indus-btn--primary:hover, body.indus-dark .forminator-ui .forminator-button-submit:hover, body.indus-dark .indus-btn--onGreen:hover { filter: brightness(1.1); color: #04121A !important; }
body.indus-dark .indus-btn--secondary { border-color: var(--hd-line-2) !important; color: var(--hd-ink) !important; background: rgba(255,255,255,.03) !important; }
body.indus-dark .indus-btn--secondary:hover { border-color: var(--hd-cyan) !important; background: rgba(53,224,200,.10) !important; color: var(--hd-ink) !important; }
body.indus-dark .indus-capstrip a:hover, body.indus-dark .indus-chips a:hover { background: rgba(53,224,200,.16) !important; color: var(--hd-ink) !important; }
body.indus-dark .indus-agent-close { background: rgba(255,255,255,.08) !important; color: var(--hd-ink) !important; }

/* forms (Forminator: contact, proposal) */
body.indus-dark .forminator-ui input, body.indus-dark .forminator-ui textarea, body.indus-dark .forminator-ui select,
body.indus-dark .forminator-ui .select2-selection, body.indus-dark input[type=text], body.indus-dark input[type=email],
body.indus-dark input[type=tel], body.indus-dark input[type=search], body.indus-dark textarea, body.indus-dark select {
	background: rgba(255,255,255,.04) !important; color: var(--hd-ink) !important; border: 1px solid var(--hd-line-2) !important; }
body.indus-dark input:focus, body.indus-dark textarea:focus, body.indus-dark select:focus { border-color: var(--hd-cyan) !important; box-shadow: 0 0 0 3px rgba(53,224,200,.18) !important; outline: none; }
body.indus-dark ::placeholder { color: #6B7788 !important; }
body.indus-dark .forminator-ui label, body.indus-dark .forminator-label { color: var(--hd-ink-2) !important; }

/* prose */
body.indus-dark .indus-prose a:not(.indus-btn) { color: var(--hd-cyan) !important; }
body.indus-dark .indus-muted, body.indus-dark .indus-small { color: var(--hd-ink-2) !important; }
body.indus-dark hr { border-color: var(--hd-line); }
body.indus-dark ::selection { background: rgba(53,224,200,.35); color: #fff; }

/* =======================================================================
   "AI WORKING BEHIND" — hover layer (driven by assets/indus-ai-fx.js)
   ======================================================================= */
/* neural field + cursor light, behind all content */
.ifx-field { position: fixed; inset: 0; z-index: 0; pointer-events: none; width: 100vw; height: 100vh; }
.ifx-glow { position: fixed; left: 0; top: 0; width: 520px; height: 520px; margin: -260px 0 0 -260px; z-index: 0; pointer-events: none; border-radius: 50%;
	background: radial-gradient(circle, rgba(53,224,200,.10), rgba(76,141,255,.05) 38%, transparent 68%); opacity: 0; transition: opacity .6s; will-change: transform; }
body.ifx-active .ifx-glow { opacity: 1; }

/* spotlight + scanning border on cards */
body.indus-dark .ifx-card { position: relative; isolation: isolate; }
body.indus-dark .ifx-card::before { content: ""; position: absolute; inset: 0; border-radius: inherit; z-index: -1; pointer-events: none;
	background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 50%), rgba(53,224,200,.13), transparent 60%); opacity: 0; transition: opacity .35s; }
body.indus-dark .ifx-card::after { content: ""; position: absolute; inset: -1px; border-radius: inherit; pointer-events: none; padding: 1px;
	background: conic-gradient(from var(--ifx-a, 0deg), transparent 0 70%, rgba(53,224,200,.9) 80%, rgba(76,141,255,.9) 88%, transparent 96%);
	-webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .35s; }
body.indus-dark .ifx-card:hover::before, body.indus-dark .ifx-card:hover::after { opacity: 1; }
body.indus-dark .ifx-card:hover::after { animation: ifx-orbit 2.4s linear infinite; }
@property --ifx-a { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
@keyframes ifx-orbit { to { --ifx-a: 360deg; } }
body.indus-dark .ifx-card .ifx-scan { position: absolute; left: 0; right: 0; top: 0; height: 40%; pointer-events: none; border-radius: inherit;
	background: linear-gradient(180deg, transparent, rgba(53,224,200,.10) 85%, rgba(53,224,200,.35) 100%); opacity: 0; transform: translateY(-100%); }
body.indus-dark .ifx-card:hover .ifx-scan { animation: ifx-scan 1.1s cubic-bezier(.3,.6,.3,1) 1; }
@keyframes ifx-scan { 0% { opacity: 0; transform: translateY(-100%); } 15% { opacity: 1; } 100% { opacity: 0; transform: translateY(260%); } }

/* text links draw a data-stream underline */
body.indus-dark .indus-prose a:not(.indus-btn), body.indus-dark .indus-side__list a, body.indus-dark .indus-footer a {
	background-image: linear-gradient(90deg, var(--hd-cyan), var(--hd-blue)); background-size: 0% 1px; background-repeat: no-repeat; background-position: 0 100%;
	transition: background-size .35s cubic-bezier(.2,.7,.3,1), color .2s; text-decoration: none !important; }
body.indus-dark .indus-prose a:not(.indus-btn):hover, body.indus-dark .indus-side__list a:hover, body.indus-dark .indus-footer a:hover { background-size: 100% 1px; }

/* decoding text keeps its width while it scrambles */
.ifx-decoding { display: inline-block; }

/* magnetic buttons */
body.indus-dark .ifx-mag { transition: transform .25s cubic-bezier(.2,.7,.3,1); }

/* the AI status chip — tells the visitor what the system is "doing" */
.ifx-status { position: fixed; left: 18px; bottom: calc(18px + env(safe-area-inset-bottom, 0px)); z-index: 950; display: flex; align-items: center; gap: 9px;
	max-width: min(420px, calc(100vw - 36px)); padding: 9px 14px 9px 12px; border-radius: 999px; border: 1px solid var(--hd-line-2);
	background: rgba(7,10,16,.82); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: 0 12px 34px rgba(0,0,0,.45);
	font: 500 12.5px/1.2 "Source Sans 3", system-ui, sans-serif; color: var(--hd-ink-2); opacity: 0; transform: translateY(10px); transition: opacity .4s, transform .4s; pointer-events: none; }
.ifx-status.is-on { opacity: 1; transform: none; }
.ifx-status i { flex: none; width: 8px; height: 8px; border-radius: 50%; background: var(--hd-cyan); box-shadow: 0 0 10px var(--hd-cyan); animation: hd-blink 1.4s infinite; }
.ifx-status b { color: var(--hd-ink); font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
@media (hover: none), (max-width: 760px) { .ifx-status, .ifx-glow { display: none; } }

@media (prefers-reduced-motion: reduce) {
	.ifx-glow, .ifx-status { display: none !important; }
	body.indus-dark .ifx-card::after, body.indus-dark .ifx-card .ifx-scan { display: none; }
}

/* Forminator: out-rank the light-theme rule in indus.css (same selector + .indus-dark) */
body.indus-shell.indus-dark .forminator-ui .forminator-input,
body.indus-shell.indus-dark .forminator-ui .forminator-textarea,
body.indus-shell.indus-dark .forminator-ui .forminator-select2 + .select2 .select2-selection {
	background: rgba(255,255,255,.04) !important; border: 1px solid rgba(255,255,255,.18) !important; color: #F2F5F9 !important; }
body.indus-shell.indus-dark .forminator-ui .forminator-input:focus,
body.indus-shell.indus-dark .forminator-ui .forminator-textarea:focus { border-color: #35E0C8 !important; box-shadow: 0 0 0 3px rgba(53,224,200,.18) !important; }
body.indus-shell.indus-dark .forminator-ui .select2-selection__rendered { color: #F2F5F9 !important; }
body.indus-shell.indus-dark .forminator-ui .select2-selection__arrow b { border-top-color: #97A3B4 !important; }
body.indus-shell.indus-dark .forminator-ui .forminator-label { color: #C9D2DD !important; }
body.indus-shell.indus-dark .forminator-ui .forminator-description, body.indus-shell.indus-dark .forminator-ui .forminator-error-message { color: #97A3B4 !important; }
body.indus-shell.indus-dark .forminator-ui .forminator-error-message { color: #FF9B8A !important; }
/* the option list select2 appends to <body> */
body.indus-dark .select2-container .select2-dropdown, body.indus-dark .forminator-select-dropdown-container .select2-dropdown {
	background: #0E1420 !important; border: 1px solid rgba(255,255,255,.18) !important; }
body.indus-dark .select2-results__option { color: #C9D2DD !important; background: transparent !important; }
body.indus-dark .select2-results__option--highlighted, body.indus-dark .select2-results__option[aria-selected=true] { background: rgba(53,224,200,.14) !important; color: #F2F5F9 !important; }
body.indus-dark .select2-search__field { background: rgba(255,255,255,.05) !important; color: #F2F5F9 !important; border-color: rgba(255,255,255,.18) !important; }

/* =======================================================================
   HOME v3 (24 Sep 2026) — hero slider, animated icons, tilt cards, 4D timeline.
   Markup: scripts/remote/build-home-dark.php · motion: assets/indus-home.js
   ======================================================================= */

/* ---------- icons: drawn in when their card is revealed ---------- */
.hd-ico { width: 46px; height: 46px; flex: none; display: grid; place-items: center; border-radius: 12px; position: relative;
	background: linear-gradient(140deg, rgba(53,224,200,.16), rgba(76,141,255,.10)); border: 1px solid rgba(53,224,200,.28);
	box-shadow: 0 0 0 0 rgba(53,224,200,0); transition: box-shadow .35s, transform .35s; }
.hd-ico svg { width: 24px; height: 24px; fill: none; stroke: var(--hd-cyan); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; overflow: visible; }
.hd-ico svg * { stroke-dasharray: 1; stroke-dashoffset: 0; }
.hd-reveal:not(.is-in) .hd-ico svg * { stroke-dashoffset: 1; }
.hd-reveal.is-in .hd-ico svg * { animation: hd-draw 1.3s cubic-bezier(.6,.1,.2,1) both; animation-delay: calc(var(--d, 0ms) + 250ms); }
@keyframes hd-draw { from { stroke-dashoffset: 1; } to { stroke-dashoffset: 0; } }
.hd-ico--lg { width: 58px; height: 58px; border-radius: 16px; }
.hd-ico--lg svg { width: 30px; height: 30px; }
.hd-card:hover .hd-ico, .hd-tile:hover .hd-ico { box-shadow: 0 0 0 6px rgba(53,224,200,.08), 0 0 28px rgba(53,224,200,.35); transform: translateY(-2px) rotate(-4deg); }
.hd-ico::after { content: ""; position: absolute; inset: -1px; border-radius: inherit; background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.25), transparent 55%); pointer-events: none; }

/* ---------- hero slider ---------- */
.hd-hs { position: relative; }
.hd-hs__kicker { display: inline-flex; align-items: center; flex-wrap: wrap; gap: 6px 9px; font: 700 12px/1.4 'Source Sans 3', system-ui, sans-serif; letter-spacing: .13em; text-transform: uppercase; color: var(--hd-cyan); }
.hd-hs__kicker i { width: 7px; height: 7px; border-radius: 50%; background: var(--hd-cyan); box-shadow: 0 0 0 0 rgba(53,224,200,.7); animation: hd-pulse 2.4s infinite; }
.hd-hs__viewport { display: grid; margin-top: 18px; }
.hd-hs__slide { grid-area: 1 / 1; visibility: hidden; opacity: 0; pointer-events: none; transition: opacity .5s, visibility 0s .5s; }
.hd-hs__slide.is-on { visibility: visible; opacity: 1; pointer-events: auto; transition: opacity .5s; }
.hd-hs__slide.is-on > * { animation: hd-hs-in .8s cubic-bezier(.2,.7,.2,1) both; animation-delay: calc(var(--i, 0) * 90ms); }
@keyframes hd-hs-in { from { opacity: 0; transform: translateY(18px); filter: blur(6px); } to { opacity: 1; transform: none; filter: none; } }
.hd-hs__tag { display: inline-flex; align-items: center; gap: 10px; font: 600 13px/1 'Source Sans 3', system-ui, sans-serif; color: var(--hd-ink-2); margin-bottom: 12px; }
.hd-hs__tag b { font-family: 'DM Serif Display', Georgia, serif; font-weight: 400; font-size: 18px; color: var(--hd-gold); }
.hd-hs__h { font-family: 'DM Serif Display', Georgia, serif; font-weight: 400; font-size: clamp(36px, 4.6vw, 60px); line-height: 1.05; color: var(--hd-ink); margin: 0 0 18px; text-wrap: balance; }
.hd-hs__h em { font-style: normal; background: linear-gradient(100deg, var(--hd-cyan), var(--hd-blue) 45%, var(--hd-gold)); background-size: 220% 100%; -webkit-background-clip: text; background-clip: text; color: transparent; animation: hd-shift 9s ease-in-out infinite; }
.hd-hs__p { font-size: 17.5px; line-height: 1.62; color: var(--hd-ink-2); max-width: 60ch; margin: 0 0 12px; }
.hd-hs__p strong { color: var(--hd-ink); font-weight: 600; }
.hd-hs__controls { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.hd-hs__tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.hd-hs__tab { appearance: none; position: relative; overflow: hidden; display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
	border: 1px solid var(--hd-line-2); background: rgba(255,255,255,.03); color: var(--hd-ink-2); border-radius: 999px; padding: 7px 13px 7px 8px; font: 600 13px/1 'Source Sans 3', system-ui, sans-serif; transition: border-color .25s, color .25s; }
.hd-hs__tab span { width: 20px; height: 20px; border-radius: 50%; border: 1px solid var(--hd-line-2); display: grid; place-items: center; font-size: 11px; transition: .25s; }
.hd-hs__tab[aria-selected="true"] { color: var(--hd-ink); border-color: rgba(53,224,200,.55); }
.hd-hs__tab[aria-selected="true"] span { background: var(--hd-cyan); border-color: var(--hd-cyan); color: #04121A; }
.hd-hs__tab::after { content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: linear-gradient(90deg, var(--hd-cyan), var(--hd-blue)); }
.hd-hs__tab[aria-selected="true"]::after { animation: hd-hs-fill var(--dur, 8s) linear forwards; }
.hd-hs.is-paused .hd-hs__tab::after { animation-play-state: paused; }
.hd-hs.is-manual .hd-hs__tab::after { animation: none; width: 0; }
@keyframes hd-hs-fill { to { width: 100%; } }
.hd-hs__nav { display: flex; gap: 6px; margin-left: auto; }
.hd-hs__nav button { appearance: none; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--hd-line-2); background: rgba(255,255,255,.03); color: var(--hd-ink); cursor: pointer; display: grid; place-items: center; transition: border-color .2s, background .2s; }
.hd-hs__nav button:hover { border-color: var(--hd-cyan); background: rgba(53,224,200,.10); }
.hd-hs__nav svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.hd-hs__tab:focus-visible, .hd-hs__nav button:focus-visible, .hd-btn:focus-visible { outline: 2px solid var(--hd-cyan); outline-offset: 3px; }

/* answer paragraph under the hero — plain facts for search engines, quiet for people */
.hd-answer { margin-top: 26px; padding: 16px 20px; border: 1px solid var(--hd-line); border-radius: 14px; background: rgba(255,255,255,.02); font-size: 15.5px; color: var(--hd-ink-2); display: flex; gap: 14px; align-items: flex-start; }
.hd-answer .hd-ico { width: 38px; height: 38px; border-radius: 10px; }
.hd-answer .hd-ico svg { width: 20px; height: 20px; }
.hd-answer p { margin: 0; }

/* ---------- section kicker with a line that grows in ---------- */
.hd-kick { display: inline-flex; align-items: center; gap: 10px; font: 700 12px/1 'Source Sans 3', system-ui, sans-serif; letter-spacing: .15em; text-transform: uppercase; color: var(--hd-cyan); }
.hd-kick::before { content: ""; width: 28px; height: 1px; background: linear-gradient(90deg, var(--hd-cyan), transparent); transform-origin: left; transform: scaleX(0); transition: transform .9s cubic-bezier(.2,.7,.2,1) .15s; }
.hd-reveal.is-in .hd-kick::before, .hd-head.is-in .hd-kick::before { transform: scaleX(1); }

/* ---------- tiles (icon + title + text + link) ---------- */
.hd-tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; }
.hd-tiles--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.hd-tile { position: relative; display: flex; flex-direction: column; gap: 12px; padding: 22px 22px 20px; border: 1px solid var(--hd-line); border-radius: 16px;
	background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.015)); transition: border-color .3s, transform .3s; }
.hd-tile:hover { border-color: rgba(53,224,200,.35); }
.hd-tile h3 { font-family: 'DM Serif Display', Georgia, serif; font-weight: 400; font-size: 21px; line-height: 1.2; color: var(--hd-ink); margin: 0; }
.hd-tile p { margin: 0; font-size: 15.3px; line-height: 1.55; color: var(--hd-ink-2); }
.hd-tile .go { margin-top: auto; padding-top: 4px; font-size: 14px; font-weight: 600; color: var(--hd-cyan); text-decoration: none; }
.hd-tile .go::after { content: " →"; display: inline-block; transition: transform .2s; }
.hd-tile:hover .go::after { transform: translateX(4px); }
.hd-tile .links { display: flex; flex-wrap: wrap; gap: 6px 14px; margin-top: auto; padding-top: 4px; }
.hd-tile .links a { font-size: 14px; font-weight: 600; color: var(--hd-cyan); text-decoration: none; }
.hd-tile .links a::after { content: " →"; }
.hd-tile--feature { border-color: rgba(227,180,87,.35); background: linear-gradient(160deg, rgba(227,180,87,.10), rgba(255,255,255,.015) 55%); }

/* ---------- programme run: three steps joined by a line ---------- */
.hd-run { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; position: relative; margin-top: 8px; }
.hd-run::before { content: ""; position: absolute; left: 8%; right: 8%; top: 29px; height: 2px; background: rgba(255,255,255,.08); }
.hd-run::after { content: ""; position: absolute; left: 8%; top: 29px; height: 2px; width: 0; background: linear-gradient(90deg, var(--hd-cyan), var(--hd-blue), var(--hd-gold)); box-shadow: 0 0 12px rgba(53,224,200,.6); transition: width 2.2s cubic-bezier(.4,.1,.2,1) .3s; }
.hd-run.is-in::after { width: 84%; }
.hd-step { position: relative; z-index: 1; text-align: left; }
.hd-step__n { width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; background: #0A0F18; border: 1px solid var(--hd-line-2); font: 400 22px/1 'DM Serif Display', Georgia, serif; color: var(--hd-ink-2); transition: border-color .4s, color .4s, box-shadow .4s; transition-delay: var(--d, 0s); }
.hd-run.is-in .hd-step__n { border-color: var(--hd-cyan); color: var(--hd-ink); box-shadow: 0 0 0 6px rgba(53,224,200,.08), 0 0 24px rgba(53,224,200,.35); }
.hd-step h3 { font-family: 'DM Serif Display', Georgia, serif; font-weight: 400; font-size: 20px; color: var(--hd-ink); margin: 14px 0 6px; }
.hd-step h3 small { display: block; font: 700 11px/1 'Source Sans 3', system-ui, sans-serif; letter-spacing: .12em; text-transform: uppercase; color: var(--hd-gold); margin-bottom: 6px; }
.hd-step p { margin: 0; font-size: 15.3px; color: var(--hd-ink-2); }

/* ---------- OJT feature band ---------- */
.hd-ojt { display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: start; padding: 26px 28px; border-radius: 18px; border: 1px solid rgba(53,224,200,.25);
	background: radial-gradient(120% 140% at 0% 0%, rgba(53,224,200,.12), transparent 55%), rgba(255,255,255,.02); margin: 22px 0; }
.hd-ojt h3 { font-family: 'DM Serif Display', Georgia, serif; font-weight: 400; font-size: 24px; color: var(--hd-ink); margin: 0 0 8px; }
.hd-ojt p { margin: 0; color: var(--hd-ink-2); max-width: 70ch; }

/* ---------- formats row ---------- */
.hd-formats { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-top: 18px; }
.hd-formats > b { font: 700 12px/1 'Source Sans 3', system-ui, sans-serif; letter-spacing: .12em; text-transform: uppercase; color: var(--hd-ink-2); margin-right: 4px; }
.hd-formats span { border: 1px solid var(--hd-line); border-radius: 999px; padding: 6px 12px; font-size: 14px; color: var(--hd-ink); background: rgba(255,255,255,.03); }

/* ---------- checklist with icons (bespoke AI) ---------- */
.hd-checks { list-style: none; padding: 0; margin: 14px 0 0; display: grid; gap: 10px; }
.hd-checks li { display: flex; gap: 12px; align-items: flex-start; color: var(--hd-ink); font-size: 16px; }
.hd-checks li::before { content: ""; flex: none; width: 20px; height: 20px; margin-top: 2px; border-radius: 6px; background: rgba(53,224,200,.14) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2335E0C8' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") center / 14px no-repeat; border: 1px solid rgba(53,224,200,.35); }

/* ---------- two-column feature ---------- */
.hd-split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }

/* ---------- 4D timeline ---------- */
.hd-4d { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; position: relative; }
.hd-4d::before { content: ""; position: absolute; left: 23px; right: 23px; top: 23px; height: 1px; background: rgba(255,255,255,.10); }
.hd-4d::after { content: ""; position: absolute; left: 23px; top: 23px; height: 1px; width: 0; background: linear-gradient(90deg, var(--hd-cyan), var(--hd-gold)); transition: width 2.4s cubic-bezier(.4,.1,.2,1) .2s; }
.hd-4d.is-in::after { width: calc(100% - 46px); }
.hd-4d .hd-tile { background: transparent; border: 0; padding: 0; }
.hd-4d .hd-ico { background: #0A0F18; }

/* ---------- named clients ---------- */
.hd-names { font-size: 17px; color: var(--hd-ink-2); margin: 0 0 18px; }
.hd-names b { color: var(--hd-ink); font-weight: 600; }

/* ---------- proof links ---------- */
.hd-proof { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.hd-proof a { display: flex; align-items: center; gap: 12px; padding: 16px; border: 1px solid var(--hd-line); border-radius: 14px; color: var(--hd-ink) !important; text-decoration: none; background: rgba(255,255,255,.025); transition: border-color .25s, transform .25s; font-weight: 600; font-size: 15px; }
.hd-proof a:hover { border-color: var(--hd-cyan); transform: translateY(-3px); }
.hd-proof .hd-ico { width: 40px; height: 40px; }
.hd-proof .hd-ico svg { width: 20px; height: 20px; }

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
	.hd-tiles--3, .hd-proof { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.hd-4d { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 28px; }
	.hd-4d::before, .hd-4d::after { display: none; }
	.hd-split { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 700px) {
	.hd-tiles--3, .hd-proof, .hd-run, .hd-4d { grid-template-columns: 1fr; }
	.hd-run::before, .hd-run::after { display: none; }
	.hd-ojt { grid-template-columns: 1fr; padding: 22px; }
	.hd-hs__nav { margin-left: 0; }
	.hd-hs__tab b { display: none; }
}
@media (prefers-reduced-motion: reduce) {
	.hd-hs__slide.is-on > *, .hd-reveal .hd-ico svg * { animation: none !important; stroke-dashoffset: 0 !important; }
	.hd-run::after, .hd-4d::after { transition: none; }
	.hd-hs__tab::after { display: none; }
}

/* slider tabs and arrows: out-rank the parent theme's button styling */
body.indus-dark .hd-hs .hd-hs__tab { background: rgba(255,255,255,.03) !important; color: var(--hd-ink-2) !important; border: 1px solid var(--hd-line-2) !important; border-radius: 999px !important; padding: 7px 13px 7px 8px !important; box-shadow: none !important; font: 600 13px/1 'Source Sans 3', system-ui, sans-serif !important; text-transform: none !important; letter-spacing: 0 !important; min-height: 0 !important; }
body.indus-dark .hd-hs .hd-hs__tab[aria-selected="true"] { color: var(--hd-ink) !important; border-color: rgba(53,224,200,.55) !important; background: rgba(53,224,200,.07) !important; }
body.indus-dark .hd-hs .hd-hs__nav button { background: rgba(255,255,255,.03) !important; color: var(--hd-ink) !important; border: 1px solid var(--hd-line-2) !important; border-radius: 50% !important; padding: 0 !important; width: 40px !important; height: 40px !important; min-height: 0 !important; box-shadow: none !important; }
body.indus-dark .hd-hs .hd-hs__nav button:hover { border-color: var(--hd-cyan) !important; background: rgba(53,224,200,.10) !important; }
/* arrow after single links: inline-block drops a leading space, so use a non-breaking one */
.hd-tile .go::after, .hd-card .go::after { content: "\00a0→"; }
/* only the tile under the pointer gets a compositor layer (37+ permanent layers can blank long pages on low-memory GPUs) */
.hd-tilt:hover { will-change: transform; }
/* slider headline: out-rank the theme's fixed h1 size so it scales down on phones */
body.indus-dark .hd-hs .hd-hs__h { font-size: clamp(32px, 4.6vw, 60px) !important; line-height: 1.06 !important; letter-spacing: -.005em; margin: 0 0 18px !important; }
@media (max-width: 480px) { body.indus-dark .hd-hs .hd-hs__h { font-size: 33px !important; } body.indus-dark .hd-hs__p { font-size: 16.5px; } }
