/* ═══════════════════════════════════════════════════════════════════════════
   JT Industrial Supply Group — "Industrial Dark" theme v2
   Gradient-flow dark canvas, orange as the star. Colours fade section to
   section; bold display type; pill buttons; interactive radial hub; strong,
   original motion. (Homepage template.)
   ═══════════════════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #111319;
  --bg-soft:     #0e0f14;
  --surface:     #15161c;
  --surface-2:   #1b1d25;
  --hair:        rgba(255,255,255,0.08);

  --text:        #f4f5f7;
  --text-dim:    #b8bec9;
  --text-faint:  #7c8290;

  --accent:      #E2521D;
  --accent-2:    #ff7a2e;
  --accent-3:    #ffb07a;
  --accent-deep: #b83f13;
  --accent-soft: rgba(226,82,29,0.16);
  --accent-glow: rgba(255,122,46,0.5);

  /* Gradients */
  --grad-accent:  linear-gradient(135deg, #ff8a3d 0%, #E2521D 52%, #c2410c 100%);
  --grad-text:    linear-gradient(96deg, #ffc39a 0%, #ff7a2e 42%, #E2521D 100%);
  --grad-surface: linear-gradient(155deg, rgba(255,255,255,0.055) 0%, rgba(255,255,255,0.012) 60%);
  --grad-hair:    linear-gradient(90deg, transparent, rgba(255,255,255,0.12) 20%, rgba(255,122,46,0.35) 50%, rgba(255,255,255,0.12) 80%, transparent);

  --radius:      14px;
  --radius-lg:   22px;
  --radius-pill: 999px;

  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.4, 0.5, 1);
  --maxw: 1200px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-dim);
  background-color: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
/* Layered orange glows on a single fixed, GPU-composited layer. Painted once
   and never repainted on scroll (replaces background-attachment:fixed, which
   forced a full-viewport repaint on every scroll frame). */
body::before {
  content: ''; position: fixed; inset: 0; z-index: -10; pointer-events: none;
  transform: translateZ(0);
  background-image:
    radial-gradient(1200px 820px at 82% -6%,  rgba(226,82,29,0.16), transparent 60%),
    radial-gradient(1100px 900px at 2% 32%,   rgba(226,82,29,0.07), transparent 55%),
    radial-gradient(1200px 900px at 100% 68%, rgba(255,122,46,0.10), transparent 55%),
    radial-gradient(1000px 900px at 20% 100%, rgba(226,82,29,0.09), transparent 55%),
    linear-gradient(180deg, #0a0b0e 0%, #0d0e13 45%, #0a0b0e 100%);
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--accent); color: #fff; }

/* ─── Typography ──────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  color: var(--text);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(2.8rem, 6.4vw, 5.4rem); }
h2 { font-size: clamp(2.1rem, 4.4vw, 3.6rem); }
h3 { font-size: 1.32rem; letter-spacing: -0.01em; }

.accent {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.kicker {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  background: var(--grad-text); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.kicker::before { content: ''; width: 26px; height: 1.5px; background: var(--accent); border-radius: 2px; }

/* ─── Layout ──────────────────────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 2.5rem); }
section { position: relative; padding-block: clamp(4.5rem, 9vw, 8.5rem); }

/* fading hairline separator (replaces hard borders so colours flow) */
.sep { position: relative; }
.sep::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: var(--grad-hair); opacity: 0.6; }

.section-head { max-width: 760px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); text-align: center; }
.section-head h2 { margin-top: 1rem; }
.section-head p { margin-top: 1.15rem; font-size: 1.1rem; }
.section-head .kicker { justify-content: center; }

/* ─── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.98rem 1.75rem; border-radius: var(--radius-pill);
  font-family: 'Space Grotesk', sans-serif; font-size: 0.98rem; font-weight: 500;
  cursor: pointer; border: 1px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.4s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.3s var(--ease); }
.btn-accent { background: var(--grad-accent); color: #fff; box-shadow: 0 12px 34px -10px var(--accent-glow); }
.btn-accent:hover { box-shadow: 0 20px 46px -10px var(--accent-glow); }
.btn-accent:hover svg { transform: translateX(4px); }
.btn-ghost { background: rgba(255,255,255,0.04); color: var(--text); border-color: rgba(255,255,255,0.16); }
.btn-ghost:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.32); }

/* ─── Header / nav ────────────────────────────────────────────────────────── */
.nav { position: sticky; top: 0; z-index: 100; border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s; }
.nav.is-stuck {
  background: rgba(10,11,14,0.72);
  backdrop-filter: blur(12px) saturate(140%); -webkit-backdrop-filter: blur(12px) saturate(140%);
  box-shadow: 0 12px 40px -20px rgba(0,0,0,0.7);
  border-bottom-color: rgba(255,255,255,0.07);
}
.nav-inner { display: flex; align-items: center; gap: 1.5rem; padding-block: 1.05rem; transition: padding 0.35s var(--ease); }
.nav.is-stuck .nav-inner { padding-block: 0.82rem; }
.brand { display: flex; align-items: center; gap: 0.7rem; margin-right: auto; }
.brand-mark { width: 46px; height: 46px; }
.brand-name { display: flex; flex-direction: column; font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1.2rem; color: #fff; line-height: 1.12; letter-spacing: -0.012em; }
.brand-name em { font-style: normal; font-family: 'Inter', sans-serif; font-weight: 500; font-size: 0.64rem; color: var(--accent-3); opacity: 0.85; letter-spacing: 0.06em; text-transform: uppercase; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 1.9rem; }
.nav-links a { position: relative; font-size: 0.95rem; color: var(--text-dim); transition: color 0.25s var(--ease); padding-block: 0.3rem; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px; background: var(--grad-accent); transition: width 0.3s var(--ease); }
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after, .nav-links a.is-active::after { width: 100%; }
.nav-links a.is-active { color: var(--text); }
.nav-cta { padding: 0.66rem 1.3rem; font-size: 0.92rem; }
.nav-cta svg { width: 15px; height: 15px; }
.nav-toggle { display: none; background: rgba(255,255,255,0.05); border: 1px solid var(--hair); border-radius: 10px; width: 44px; height: 44px; color: var(--text); cursor: pointer; align-items: center; justify-content: center; }

/* ─── Hero ────────────────────────────────────────────────────────────────── */
.hero { position: relative; isolation: isolate; overflow: hidden;
  padding-block: clamp(2.5rem, 6vw, 5rem) clamp(3rem, 6vw, 5rem);
  min-height: min(82vh, 820px); display: flex; align-items: center; }
.hero-glow { position: absolute; z-index: -3; top: -28%; left: 50%; width: 92vw; height: 72vw; max-width: 1200px; max-height: 940px;
  background: radial-gradient(circle, rgba(255,122,46,0.24) 0%, rgba(226,82,29,0.09) 36%, transparent 66%);
  pointer-events: none; filter: blur(6px); transform: translateX(-50%);
  animation: glowPulse 9s ease-in-out infinite; }
@keyframes glowPulse { 0%,100% { transform: translateX(-50%) scale(1); opacity: 0.85; } 50% { transform: translateX(-50%) scale(1.07); opacity: 1; } }
.hero-rings { position: absolute; z-index: -3; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 940px; height: 940px; border-radius: 50%;
  background: repeating-radial-gradient(circle at center, transparent 0 58px, rgba(255,255,255,0.035) 59px 60px);
  -webkit-mask-image: radial-gradient(circle, #000 24%, transparent 66%); mask-image: radial-gradient(circle, #000 24%, transparent 66%);
  opacity: 0.6; animation: ringDrift 44s linear infinite; pointer-events: none; }
@keyframes ringDrift { to { transform: translate(-50%,-50%) rotate(360deg); } }
.hero::before { content: ''; position: absolute; inset: 0; z-index: -4;
  background: linear-gradient(180deg, rgba(6,7,10,0.4) 0%, transparent 34%); }

.hero-inner { position: relative; z-index: 2; }
.hero-copy { max-width: 840px; margin: 0 auto; text-align: center; position: relative; }
/* dark vignette behind the centred headline so orbiting parts never hurt readability */
.hero-copy::before { content: ''; position: absolute; z-index: -1; inset: -30% -20%;
  background: radial-gradient(58% 66% at 50% 50%, rgba(10,11,14,0.9) 0%, rgba(10,11,14,0.5) 48%, transparent 78%);
  pointer-events: none; }
.hero .kicker { margin-bottom: 1.5rem; }
.hero-title { margin-bottom: 1.7rem; }
.hero-sub { font-size: clamp(1.08rem, 1.8vw, 1.3rem); color: var(--text-dim); max-width: 640px; margin: 0 auto 2.5rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* headline word-rise */
.word-rise { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: 0.08em; }
.word-rise > span { display: inline-block; transform: translateY(106%); animation: wordRise 0.9s var(--ease) forwards; animation-delay: var(--d, 0ms); }
@keyframes wordRise { to { transform: translateY(0); } }

/* section-heading word-rise (triggers when scrolled into view) */
.wr { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: 0.08em; }
.wr > span { display: inline-block; transform: translateY(112%); transition: transform 0.75s var(--ease); transition-delay: var(--wd, 0ms); }
.wr-on .wr > span { transform: translateY(0); }

/* WebGL parts canvas */
.industrial-3d-canvas { position: absolute; inset: 0; z-index: -1; width: 100%; height: 100%; pointer-events: none;
  filter: drop-shadow(0 0 32px rgba(226,82,29,0.18));
  -webkit-mask-image: radial-gradient(60% 66% at 50% 50%, transparent 2%, rgba(0,0,0,0.3) 40%, #000 76%);
          mask-image: radial-gradient(60% 66% at 50% 50%, transparent 2%, rgba(0,0,0,0.3) 40%, #000 76%);
  opacity: 0; animation: canvasFade 1.5s var(--ease) 0.4s forwards; }
@keyframes canvasFade { to { opacity: 0.95; } }

/* page-wide ambient drifting parts, fixed behind all content */
.ambient-3d-canvas {
  position: fixed; inset: 0; width: 100vw; height: 100vh; z-index: -1;
  pointer-events: none;
  opacity: 0; animation: ambientFade 1.8s var(--ease) 0.6s forwards;
  /* fade the centre (where text sits), keep the edges — parts frame the content */
  -webkit-mask-image: radial-gradient(closest-side at 50% 50%, transparent 3%, rgba(0,0,0,0.30) 26%, rgba(0,0,0,0.85) 55%, #000 82%);
          mask-image: radial-gradient(closest-side at 50% 50%, transparent 3%, rgba(0,0,0,0.30) 26%, rgba(0,0,0,0.85) 55%, #000 82%);
}
@keyframes ambientFade { to { opacity: 0.8; } }

/* inner-page 2D ambient backgrounds (constellation / grid / aurora) */
.ambient-bg-canvas {
  position: fixed; inset: 0; width: 100vw; height: 100vh; z-index: -1; pointer-events: none;
  opacity: 0; animation: ambientFade 1.8s var(--ease) 0.5s forwards;
  -webkit-mask-image: radial-gradient(closest-side at 50% 50%, transparent 2%, rgba(0,0,0,0.5) 24%, rgba(0,0,0,0.9) 54%, #000 82%);
          mask-image: radial-gradient(closest-side at 50% 50%, transparent 2%, rgba(0,0,0,0.5) 24%, rgba(0,0,0,0.9) 54%, #000 82%);
}
/* stronger, more-visible variant for grid + constellation */
.ambient-bg-canvas.bg-strong {
  animation: ambientFadeStrong 1.8s var(--ease) 0.5s forwards;
  -webkit-mask-image: radial-gradient(closest-side at 50% 50%, transparent 2%, rgba(0,0,0,0.42) 20%, rgba(0,0,0,0.85) 50%, #000 80%);
          mask-image: radial-gradient(closest-side at 50% 50%, transparent 2%, rgba(0,0,0,0.42) 20%, rgba(0,0,0,0.85) 50%, #000 80%);
}
@keyframes ambientFadeStrong { to { opacity: 0.92; } }
/* framed variant — keeps the whole perimeter visible, clears only the central
   text zone (for the automated-warehouse background) */
.ambient-bg-canvas.bg-frame {
  animation: ambientFadeStrong 1.8s var(--ease) 0.5s forwards;
  -webkit-mask-image: radial-gradient(ellipse 58% 50% at 50% 50%, transparent 28%, rgba(0,0,0,0.5) 54%, #000 82%);
          mask-image: radial-gradient(ellipse 58% 50% at 50% 50%, transparent 28%, rgba(0,0,0,0.5) 54%, #000 82%);
}

/* soft orange glow that trails the cursor across the whole page */
.cursor-glow { position: fixed; top: 0; left: 0; width: 560px; height: 560px; margin: -280px 0 0 -280px; border-radius: 50%;
  pointer-events: none; z-index: -1; will-change: transform; opacity: 0; transition: opacity 0.7s var(--ease);
  background: radial-gradient(circle, rgba(255,122,46,0.11), transparent 62%); }

/* hero marquee */
.hero-marquee { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; overflow: hidden; padding-block: 0.95rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 3rem; width: max-content; animation: marquee 34s linear infinite; }
.marquee-track span { font-family: 'Space Grotesk', sans-serif; font-size: 0.92rem; letter-spacing: 0.04em; color: var(--text-faint); display: inline-flex; align-items: center; gap: 3rem; white-space: nowrap; }
.marquee-track span::after { content: '◆'; color: var(--accent-2); font-size: 0.55rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ─── Reveal utilities ────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s var(--ease), transform 0.72s var(--ease); transition-delay: var(--reveal-delay, 0ms); }
.reveal.from-left  { transform: translateX(-44px); }
.reveal.from-right { transform: translateX(44px); }
.reveal.from-up    { transform: translateY(40px); }
.reveal.is-visible { opacity: 1; transform: none; }
main { overflow-x: clip; } /* contain the horizontal fly-in so it never adds a sideways scrollbar */
.reveal-scale { opacity: 0; transform: scale(0.965) translateY(14px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); transition-delay: var(--reveal-delay, 0ms); }
.reveal-scale.is-visible { opacity: 1; transform: none; }
/* elements the scroll engine drives (cards, headings) */
[data-parallax] { will-change: transform; }
.tilt { will-change: transform; transform-style: preserve-3d; }

/* scroll progress bar */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 200;
  background: var(--grad-accent); box-shadow: 0 0 12px var(--accent-glow); }

/* ─── Stats band ──────────────────────────────────────────────────────────── */
.stats { padding-block: clamp(3rem, 5vw, 4.5rem); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.stat { padding: 1.7rem 1.4rem; border-radius: var(--radius); background: var(--grad-surface); border: 1px solid transparent;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease); }
.stat:hover { border-color: rgba(255,122,46,0.5); box-shadow: 0 22px 40px -22px var(--accent-glow); background: var(--surface-2); }
.stat-num { display: block; font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: clamp(2.1rem, 3.6vw, 3rem); line-height: 1; letter-spacing: -0.03em;
  background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.stat-label { display: block; margin-top: 0.65rem; font-size: 0.9rem; color: var(--text-dim); }

/* ─── Supply grid (cursor-spotlight cards) ────────────────────────────────── */
.supply-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.supply-card { position: relative; display: flex; flex-direction: column; padding: 2.1rem 1.9rem 1.9rem; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--grad-surface); border: 1px solid transparent;
  transition: border-color 0.45s var(--ease), box-shadow 0.45s var(--ease); }
.supply-card::after { content: ''; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; opacity: 0; transition: opacity 0.4s var(--ease);
  background: radial-gradient(230px circle at var(--mx, 50%) var(--my, 50%), rgba(255,122,46,0.18), transparent 62%); }
.supply-card:hover { border-color: rgba(255,122,46,0.55); box-shadow: 0 30px 60px -30px var(--accent-glow); }
.supply-card:hover::after { opacity: 1; }
.supply-icon { position: relative; width: 56px; height: 56px; display: grid; place-items: center; border-radius: 14px; margin-bottom: 1.5rem;
  background: linear-gradient(150deg, rgba(255,122,46,0.22), rgba(226,82,29,0.08)); color: var(--accent-2);
  transition: transform 0.45s var(--ease-spring), background 0.45s var(--ease), color 0.45s var(--ease); }
.supply-card:hover .supply-icon { transform: translateY(-3px) rotate(-5deg); background: var(--grad-accent); color: #fff; }
.supply-icon svg { width: 28px; height: 28px; }
.supply-card h3 { margin-bottom: 0.7rem; color: var(--text); position: relative; }
.supply-card p { font-size: 0.96rem; color: var(--text-dim); position: relative; }
.supply-more { position: relative; display: inline-flex; align-self: flex-start; align-items: center; gap: 0.4rem; margin-top: auto; padding-top: 1.4rem; font-family: 'Space Grotesk', sans-serif; font-size: 0.9rem; font-weight: 500; color: var(--accent-2); }
.supply-more svg { width: 15px; height: 15px; transition: transform 0.3s var(--ease); }
.supply-card:hover .supply-more svg { transform: translateX(4px); }

/* ─── Interactive radial hub ──────────────────────────────────────────────── */
.hub-wrap { display: grid; grid-template-columns: 1fr; gap: 2.75rem; justify-items: center; text-align: center; }
.hub-wrap > div:first-child { max-width: 660px; }
.hub-wrap .kicker { justify-content: center; }
.hub { position: relative; width: 100%; max-width: 540px; margin-inline: auto; aspect-ratio: 1; }
.hub-lines { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.hub-lines line { stroke: rgba(255,122,46,0.25); stroke-width: 0.4; stroke-dasharray: 2 2; transition: stroke 0.4s var(--ease); }
.hub-ring { position: absolute; inset: 12%; border-radius: 50%; border: 1px dashed rgba(255,255,255,0.1); animation: ringDrift 60s linear infinite; }
.hub-ring::after { content: ''; position: absolute; inset: 12%; border-radius: 50%; border: 1px dashed rgba(255,122,46,0.16); }
.hub-core { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 27%; height: 27%; border-radius: 50%;
  display: grid; place-items: center; background: var(--grad-accent);
  box-shadow: 0 0 0 10px rgba(226,82,29,0.10), 0 0 60px rgba(255,122,46,0.5); animation: corePulse 4s ease-in-out infinite; }
@keyframes corePulse { 0%,100% { box-shadow: 0 0 0 8px rgba(226,82,29,0.10), 0 0 44px rgba(255,122,46,0.4); } 50% { box-shadow: 0 0 0 16px rgba(226,82,29,0.06), 0 0 72px rgba(255,122,46,0.6); } }
.hub-core img { width: 52%; height: 52%; object-fit: contain; filter: brightness(0) invert(1); }
.hub-node { position: absolute; transform: translate(-50%,-50%); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; width: 96px; text-align: center; cursor: default; }
.hub-node .dot { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; color: var(--accent-2);
  background: linear-gradient(150deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02)); border: 1px solid var(--hair);
  transition: transform 0.4s var(--ease-spring), background 0.4s var(--ease), color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  animation: nodeFloat 5s ease-in-out infinite; animation-delay: var(--fd, 0ms); }
.hub-node .dot svg { width: 26px; height: 26px; }
.hub-node span { font-family: 'Space Grotesk', sans-serif; font-size: 0.82rem; color: var(--text-dim); transition: color 0.3s var(--ease); }
.hub-node:hover .dot { background: var(--grad-accent); color: #fff; transform: scale(1.12); box-shadow: 0 0 40px rgba(255,122,46,0.5); }
.hub-node:hover span { color: var(--text); }
@keyframes nodeFloat { 0%,100% { transform: translateY(-4px); } 50% { transform: translateY(4px); } }
/* node positions (6 around a circle) */
.hub-node:nth-child(1) { top: 8%;  left: 50%; }
.hub-node:nth-child(2) { top: 30%; left: 90%; }
.hub-node:nth-child(3) { top: 70%; left: 90%; }
.hub-node:nth-child(4) { top: 92%; left: 50%; }
.hub-node:nth-child(5) { top: 70%; left: 10%; }
.hub-node:nth-child(6) { top: 30%; left: 10%; }

/* ─── Why / value props ───────────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.why-item { position: relative; text-align: center; }
.why-num { font-family: 'Space Grotesk', sans-serif; font-size: 0.9rem; font-weight: 600; letter-spacing: 0.1em;
  background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.why-item h3 { margin: 0.85rem 0 0.7rem; color: var(--text); }
.why-item p { font-size: 0.98rem; }

/* ─── Inverted orange band (edge-faded so it blends) ──────────────────────── */
.band { position: relative; isolation: isolate; color: #1a0d05;
  background: linear-gradient(125deg, #ffb26b 0%, #ff7a2e 40%, #E2521D 78%, #c2410c 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
  padding-block: clamp(5rem, 9vw, 8rem); }
.band::before { content: ''; position: absolute; inset: 0; z-index: -1; opacity: 0.5;
  background: repeating-linear-gradient(45deg, rgba(0,0,0,0.05) 0 2px, transparent 2px 18px); }
.band-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center; }
.band h2 { color: #180b04; }
.band .kicker { -webkit-text-fill-color: #6b3113; color: #6b3113; background: none; }
.band .kicker::before { background: #6b3113; }
.band p { color: #3d2413; font-size: 1.1rem; margin-top: 1.15rem; }
.band-docs { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.9rem; }
.band-chip { background: rgba(0,0,0,0.12); border: 1px solid rgba(0,0,0,0.16); border-radius: var(--radius-pill); padding: 0.55rem 1.05rem; font-family: 'Space Grotesk', sans-serif; font-size: 0.85rem; font-weight: 500; color: #1a0d05; }
.band-visual { aspect-ratio: 1; border-radius: var(--radius-lg); background: linear-gradient(160deg, rgba(0,0,0,0.18), rgba(0,0,0,0.05)); border: 1px solid rgba(0,0,0,0.16); display: grid; place-items: center; color: #2a1608; }
.band-visual svg { width: 45%; height: 45%; }

/* ─── Industries ──────────────────────────────────────────────────────────── */
.sectors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2.5rem; }
.sector-card { position: relative; padding: 1.9rem 1.7rem; border-radius: var(--radius-lg); overflow: hidden; text-align: left;
  background: var(--grad-surface); border: 1px solid transparent;
  transition: border-color 0.45s var(--ease), box-shadow 0.45s var(--ease); }
.sector-card::after { content: ''; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; opacity: 0; transition: opacity 0.4s var(--ease);
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 50%), rgba(255,122,46,0.16), transparent 62%); }
.sector-card:hover { border-color: rgba(255,122,46,0.5); box-shadow: 0 26px 54px -30px var(--accent-glow); }
.sector-card:hover::after { opacity: 1; }
.sector-icon { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 12px; margin-bottom: 1.15rem;
  background: linear-gradient(150deg, rgba(255,122,46,0.2), rgba(226,82,29,0.06)); color: var(--accent-2);
  transition: transform 0.45s var(--ease-spring), background 0.4s var(--ease), color 0.4s var(--ease); }
.sector-card:hover .sector-icon { background: var(--grad-accent); color: #fff; transform: translateY(-2px) rotate(-4deg); }
.sector-icon svg { width: 26px; height: 26px; }
.sector-card h3 { font-size: 1.14rem; margin-bottom: 0.5rem; color: var(--text); position: relative; }
.sector-card p { font-size: 0.93rem; color: var(--text-dim); position: relative; }

/* ─── Closing CTA ─────────────────────────────────────────────────────────── */
.cta { text-align: center; }
.cta::before { content: ''; position: absolute; z-index: -1; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 1150px; height: 1000px; max-width: 150vw;
  background: radial-gradient(ellipse at center, rgba(255,122,46,0.16), transparent 70%); }
.cta h2 { max-width: 16ch; margin: 1rem auto 1.2rem; }
.cta p { max-width: 54ch; margin: 0 auto 2.3rem; font-size: 1.12rem; }
.cta .btn { margin-inline: auto; }

/* ─── Footer ──────────────────────────────────────────────────────────────── */
.footer { position: relative; background: linear-gradient(180deg, transparent, rgba(0,0,0,0.35)); padding-block: 4.5rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer-brand .brand { margin-bottom: 1.1rem; }
.footer-brand p { font-size: 1rem; max-width: 32ch; line-height: 1.6; padding-left: calc(46px + 0.7rem); color: var(--text); opacity: 0.9; }
.footer h4 { font-family: 'Space Grotesk', sans-serif; font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 1.1rem; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer a { font-size: 0.95rem; color: var(--text-dim); transition: color 0.25s; }
.footer a:hover { color: var(--accent-2); }
.footer address { font-style: normal; font-size: 0.95rem; line-height: 1.9; color: var(--text-dim); }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 1.05rem; }
.contact-list li { display: flex; align-items: flex-start; gap: 0.8rem; font-size: 0.95rem; color: var(--text-dim); }
.contact-list .ci { flex: 0 0 auto; width: 32px; height: 32px; display: grid; place-items: center; border-radius: 10px;
  background: rgba(255,122,46,0.1); border: 1px solid rgba(255,122,46,0.22); color: var(--accent-2);
  margin-top: calc((1.6em - 32px) / 2); /* vertically centre the chip on the first text line */
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease); }
.contact-list .ci svg { width: 15px; height: 15px; }
.contact-list li:hover .ci { background: rgba(255,122,46,0.18); border-color: rgba(255,122,46,0.45); transform: translateY(-1px); }
.contact-list a, .contact-list address { font-size: 0.95rem; line-height: 1.6; }
.contact-list address { font-style: normal; text-wrap: balance; max-width: 27ch; }
.contact-list address span { white-space: nowrap; }
.footer-bottom { padding-top: 1.6rem; font-size: 0.85rem; color: var(--text-faint); }

/* ─── WhatsApp float ──────────────────────────────────────────────────────── */
.wa-float { position: fixed; right: max(1.1rem, env(safe-area-inset-right)); bottom: max(1.1rem, env(safe-area-inset-bottom)); z-index: 160;
  display: inline-flex; align-items: center; gap: 0.55rem; padding: 0.8rem 1.15rem 0.8rem 0.9rem; border-radius: var(--radius-pill);
  color: #fff; background: #25D366; font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 0.9rem;
  box-shadow: 0 14px 34px rgba(0,0,0,0.45); transition: transform 0.35s var(--ease); }
.wa-float:hover { transform: translateY(-3px) scale(1.03); }

/* ─── Mobile menu ─────────────────────────────────────────────────────────── */
.mobile-menu { position: fixed; inset: 0; z-index: 120; background: rgba(10,11,14,0.97); backdrop-filter: blur(22px);
  display: flex; flex-direction: column; padding: 6rem 2rem 2rem; gap: 0.5rem; transform: translateY(-100%); transition: transform 0.5s var(--ease); visibility: hidden; }
.mobile-menu.open { transform: translateY(0); visibility: visible; }
.mobile-menu a { font-family: 'Space Grotesk', sans-serif; font-size: 1.6rem; color: var(--text); padding-block: 0.9rem; border-bottom: 1px solid var(--hair); }
.mobile-menu .btn { margin-top: 1.5rem; justify-content: center; }
.mobile-close { position: absolute; top: 1.5rem; right: 1.5rem; width: 44px; height: 44px; border-radius: 10px; background: rgba(255,255,255,0.06); border: 1px solid var(--hair); color: var(--text); cursor: pointer; display: grid; place-items: center; }

/* ─── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .supply-grid, .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .band-inner { grid-template-columns: 1fr; }
  .band-visual { max-width: 320px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .hub-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .hub { max-width: 380px; }
  .hub-node { width: 74px; }
  .hub-node span { font-size: 0.72rem; }
}
@media (max-width: 620px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .supply-grid, .sectors-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-list address { max-width: none; }
  .footer-brand p { padding-left: 0; }
  .hero { min-height: auto; }
  .brand-name { font-size: 1.05rem; }
  /* collapse hub into a simple grid */
  .hub { aspect-ratio: auto; max-width: none; display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .hub-lines, .hub-ring, .hub-core { display: none; }
  .hub-node { position: static; transform: none; width: auto; flex-direction: row; gap: 0.9rem; justify-content: flex-start; padding: 0.9rem; border: 1px solid var(--hair); border-radius: var(--radius); background: var(--grad-surface); }
  .hub-node .dot { animation: none; }
}

/* ═══ Inner-page components ════════════════════════════════════════════════ */
/* shorter masthead for interior pages */
.hero--page { min-height: auto; padding-block: clamp(5.5rem, 9vw, 8rem) clamp(2rem, 5vw, 3.5rem); }
.hero--page .hero-copy .hero-sub:not(:last-child) { margin-bottom: 1.1rem; }

/* rich text block */
.prose { max-width: 760px; margin: 0 auto; text-align: center; }
.prose p { font-size: 1.08rem; color: var(--text-dim); }
.prose p + p { margin-top: 1.15rem; }

/* generic surface panel */
.panel { position: relative; background: var(--grad-surface); border: 1px solid transparent; border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.5rem); }

/* two-column layouts */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: stretch; }
.form-layout { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 2rem; align-items: start; }
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.compare .panel.is-ours { border-color: rgba(255,122,46,0.4); box-shadow: 0 24px 50px -30px var(--accent-glow); }
.tag { display: inline-block; font-family: 'Space Grotesk', sans-serif; font-size: 0.75rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 0.8rem; }
.compare .panel.is-ours .tag { color: var(--accent-2); }
.compare p { color: var(--text-dim); font-size: 1rem; }

/* centered highlight panel */
.highlight-panel { max-width: 860px; margin: 0 auto; text-align: center; }
.highlight-panel .h-icon { width: 60px; height: 60px; margin: 0 auto 1.3rem; display: grid; place-items: center; border-radius: 16px;
  background: linear-gradient(150deg, rgba(255,122,46,0.22), rgba(226,82,29,0.08)); color: var(--accent-2); }
.highlight-panel .h-icon svg { width: 30px; height: 30px; }
.highlight-panel .tag { color: var(--accent-2); }
.highlight-panel h2 { margin-bottom: 0.4rem; }
.highlight-panel p { margin: 1rem auto 0; max-width: 62ch; font-size: 1.06rem; color: var(--text-dim); }
.highlight-panel .btn { margin-top: 1.6rem; }

/* contact info list */
.info-item { display: flex; gap: 1rem; padding: 1.05rem 0; border-bottom: 1px solid var(--hair); }
.info-item:first-child { padding-top: 0; }
.info-item:last-child { border-bottom: 0; padding-bottom: 0; }
.info-item > svg { width: 22px; height: 22px; color: var(--accent-2); flex: none; margin-top: 3px; }
.info-label { font-family: 'Space Grotesk', sans-serif; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-faint); display: block; margin-bottom: 0.25rem; }
.info-value { color: var(--text); font-style: normal; line-height: 1.6; }
.info-value a { color: var(--text); transition: color 0.25s; }
.info-value a:hover { color: var(--accent-2); }
.info-sub { color: var(--text-faint); font-size: 0.9rem; }

/* embedded map, tinted to the dark theme */
.map-frame { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--hair); min-height: 380px; }
.map-frame iframe { width: 100%; height: 100%; min-height: 380px; display: block; filter: invert(0.92) hue-rotate(180deg) brightness(0.95) contrast(0.9); }

/* numbered steps */
.steps { list-style: none; display: flex; flex-direction: column; gap: 1.35rem; }
.steps li { display: flex; gap: 1rem; }
.step-n { flex: none; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  background: var(--grad-accent); color: #fff; font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 0.95rem; box-shadow: 0 8px 20px -8px var(--accent-glow); }
.steps strong { display: block; color: var(--text); font-family: 'Space Grotesk', sans-serif; font-weight: 600; margin-bottom: 0.2rem; }
.steps p { font-size: 0.94rem; color: var(--text-dim); }
.aside-contact { margin-top: 2rem; padding-top: 1.6rem; border-top: 1px solid var(--hair); }
.aside-contact > p { font-size: 0.92rem; margin-bottom: 0.8rem; }
.aside-link { display: flex; align-items: center; gap: 0.6rem; color: var(--text); font-family: 'Space Grotesk', sans-serif; font-size: 0.95rem; padding: 0.4rem 0; }
.aside-link svg { color: var(--accent-2); }
.aside-link:hover { color: var(--accent-2); }

/* forms */
.form { display: flex; flex-direction: column; gap: 1.3rem; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field > label { font-family: 'Space Grotesk', sans-serif; font-size: 0.9rem; color: var(--text); font-weight: 500; }
.req { color: var(--accent-2); }
.field input, .field textarea, .field select {
  width: 100%; padding: 0.9rem 1rem; border-radius: var(--radius);
  background: rgba(255,255,255,0.03); border: 1px solid var(--hair); color: var(--text);
  font-family: 'Inter', sans-serif; font-size: 0.98rem;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.field input::placeholder, .field textarea::placeholder { color: var(--text-faint); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--accent); background: rgba(255,255,255,0.05); box-shadow: 0 0 0 3px var(--accent-soft); }
.field textarea { resize: vertical; min-height: 150px; line-height: 1.6; }
.hint { color: var(--text-faint); font-size: 0.85rem; font-weight: 400; }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
.check { display: flex; align-items: center; gap: 0.6rem; padding: 0.75rem 0.9rem; border: 1px solid var(--hair); border-radius: var(--radius); cursor: pointer; font-size: 0.92rem; color: var(--text-dim);
  transition: border-color 0.3s, background 0.3s, color 0.3s; }
.check:hover { border-color: rgba(255,122,46,0.45); background: rgba(255,255,255,0.03); }
.check input { accent-color: var(--accent); width: 16px; height: 16px; flex: none; }
.file input[type="file"] { width: 100%; padding: 0.8rem 1rem; border-radius: var(--radius); background: rgba(255,255,255,0.03); border: 1px dashed var(--hair); color: var(--text-dim); font-size: 0.9rem; cursor: pointer; }
.file input[type="file"]::file-selector-button { margin-right: 1rem; padding: 0.5rem 1rem; border-radius: var(--radius-pill); border: 1px solid var(--hair); background: rgba(255,255,255,0.05); color: var(--text); font-family: 'Space Grotesk', sans-serif; font-size: 0.85rem; cursor: pointer; }
.form-note { font-size: 0.85rem; color: var(--text-faint); }
.form .btn-accent { align-self: flex-start; }

/* alternating feature rows (zig-zag) */
.feature-rows { display: flex; flex-direction: column; gap: clamp(2.5rem, 5vw, 4.5rem); }
.frow { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(2rem, 4vw, 4rem); align-items: center; }
.frow-media { order: 0; } .frow-body { order: 1; }
.frow:nth-child(even) .frow-media { order: 1; } .frow:nth-child(even) .frow-body { order: 0; }
.frow-media { position: relative; border-radius: var(--radius-lg); padding: clamp(2rem, 4vw, 3rem); min-height: 240px; overflow: hidden;
  background: var(--grad-surface); border: 1px solid transparent; display: grid; place-items: center;
  transition: border-color 0.45s var(--ease), box-shadow 0.45s var(--ease); }
.frow:hover .frow-media { border-color: rgba(255,122,46,0.5); box-shadow: 0 30px 60px -30px var(--accent-glow); }
.frow-index { position: absolute; top: 0.4rem; left: 1.3rem; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(5rem, 11vw, 9rem); line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(255,122,46,0.28); opacity: 0.55; pointer-events: none; }
.frow-media .m-icon { position: relative; z-index: 1; width: 96px; height: 96px; display: grid; place-items: center; border-radius: 22px;
  background: linear-gradient(150deg, rgba(255,122,46,0.22), rgba(226,82,29,0.08)); color: var(--accent-2);
  transition: transform 0.45s var(--ease-spring), background 0.45s var(--ease), color 0.45s var(--ease); }
.frow:hover .frow-media .m-icon { transform: translateY(-4px) rotate(-5deg); background: var(--grad-accent); color: #fff; }
.frow-media .m-icon svg { width: 48px; height: 48px; }
.frow-body .kicker { margin-bottom: 0.85rem; }
.frow-body h3 { font-size: clamp(1.5rem, 2.4vw, 2.15rem); line-height: 1.08; margin-bottom: 0.85rem; }
.frow-body p { font-size: 1.03rem; color: var(--text-dim); }

/* sticky-side heading + scrolling list */
.sticky-split { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2rem, 4vw, 4.5rem); align-items: start; }
.ss-head { position: sticky; top: 96px; }
.ss-head .kicker { margin-bottom: 1rem; }
.ss-head p { margin-top: 1.1rem; font-size: 1.05rem; }
.ss-list { display: flex; flex-direction: column; }
.ss-item { display: flex; gap: 1.2rem; padding: 1.6rem 0; border-bottom: 1px solid var(--hair); }
.ss-item:first-child { padding-top: 0; }
.ss-item:last-child { border-bottom: 0; }
.ss-item .ss-icon { width: 48px; height: 48px; flex: none; border-radius: 13px; display: grid; place-items: center;
  background: linear-gradient(150deg, rgba(255,122,46,0.2), rgba(226,82,29,0.06)); color: var(--accent-2); }
.ss-item .ss-icon svg { width: 26px; height: 26px; }
.ss-item h3 { font-size: 1.14rem; margin-bottom: 0.35rem; }
.ss-item p { font-size: 0.96rem; color: var(--text-dim); }

/* vertical timeline (numbered spine) */
.timeline { max-width: 820px; margin: 0 auto; position: relative; }
.timeline::before { content: ''; position: absolute; left: 23px; top: 10px; bottom: 10px; width: 2px;
  background: linear-gradient(180deg, var(--accent) 0%, rgba(255,122,46,0.15) 100%); }
.tl-item { position: relative; display: grid; grid-template-columns: 48px 1fr; gap: 1.5rem; padding-bottom: 2.6rem; }
.tl-item:last-child { padding-bottom: 0; }
.tl-node { position: relative; z-index: 1; width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  background: var(--grad-accent); color: #fff; font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1.05rem;
  box-shadow: 0 8px 24px -8px var(--accent-glow), 0 0 0 6px var(--bg); }
.tl-node svg { width: 22px; height: 22px; }
.tl-body { padding-top: 0.35rem; }
.tl-body h3 { font-size: 1.28rem; margin-bottom: 0.5rem; }
.tl-body p { color: var(--text-dim); }

/* horizontal timeline (steps across) */
.timeline-h { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.th-item { position: relative; text-align: center; padding: 0 0.5rem; }
.th-item::before { content: ''; position: absolute; top: 24px; left: 50%; width: 100%; height: 2px;
  background: rgba(255,122,46,0.22); z-index: 0; }
.th-item:last-child::before { display: none; }
.th-item .tl-node { margin: 0 auto 1.3rem; }
.th-item h3 { font-size: 1.18rem; margin-bottom: 0.5rem; }
.th-item p { font-size: 0.96rem; color: var(--text-dim); }

/* compact fact strip */
.factstrip { display: grid; grid-template-columns: repeat(4, 1fr); border-radius: var(--radius-lg); overflow: hidden;
  background: var(--grad-surface); border: 1px solid transparent; }
.fact { padding: clamp(1.6rem, 3vw, 2.3rem) 1.4rem; text-align: center; border-left: 1px solid var(--hair); }
.fact:first-child { border-left: 0; }
.fact-num { display: block; font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: clamp(1.35rem, 2.3vw, 1.95rem); line-height: 1.1;
  background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.fact-label { display: block; margin-top: 0.5rem; font-size: 0.9rem; color: var(--text-dim); }

/* concrete item chips — turn a paragraph into a scannable, memorable list */
.cat-items { margin-top: 1.4rem; }
.cat-items .cat-items-label { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 0.72rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 0.75rem; }
.item-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.item-tag { display: inline-flex; align-items: center; gap: 0.45rem; font-family: 'Space Grotesk', sans-serif; font-size: 0.82rem; padding: 0.42rem 0.85rem; border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.04); border: 1px solid var(--hair); color: var(--text-dim);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease), background 0.3s var(--ease); }
.item-tag::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--accent-2); opacity: 0.75; }
.item-tag:hover { border-color: rgba(255,122,46,0.5); color: var(--text); background: rgba(255,122,46,0.08); }
.range-link { display: inline-flex; align-items: center; gap: 0.45rem; margin-top: 1.3rem; font-family: 'Space Grotesk', sans-serif; font-size: 0.9rem; font-weight: 500; color: var(--accent-2); }
.range-link svg { width: 15px; height: 15px; transition: transform 0.3s var(--ease); }
.range-link:hover svg { transform: translateX(4px); }

/* category detail pages — grouped item lists */
.backlink { display: inline-flex; align-items: center; gap: 0.45rem; font-family: 'Space Grotesk', sans-serif; font-size: 0.9rem; color: var(--text-dim); margin-bottom: 1.5rem; transition: color 0.25s var(--ease); }
.backlink svg { width: 16px; height: 16px; }
.backlink:hover { color: var(--accent-2); }
.item-groups { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.item-groups .panel h3 { font-size: 1.12rem; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem; }
.item-groups .panel h3 .g-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--grad-accent); flex: none; box-shadow: 0 0 10px var(--accent-glow); }
.item-groups .panel h3 .gicon { width: 42px; height: 42px; flex: none; display: grid; place-items: center; border-radius: 12px;
  background: linear-gradient(150deg, rgba(255,122,46,0.22), rgba(226,82,29,0.08)); color: var(--accent-2);
  transition: transform 0.4s var(--ease-spring), background 0.4s var(--ease), color 0.4s var(--ease); }
.item-groups .panel:hover h3 .gicon { transform: translateY(-2px) rotate(-4deg); background: var(--grad-accent); color: #fff; }
.item-groups .panel h3 .gicon svg { width: 23px; height: 23px; }
@media (max-width: 760px) { .item-groups { grid-template-columns: 1fr; } }

@media (max-width: 960px) {
  .split, .form-layout, .compare { grid-template-columns: 1fr; }
  .frow { grid-template-columns: 1fr; gap: 1.4rem; }
  .frow .frow-media, .frow .frow-body,
  .frow:nth-child(even) .frow-media, .frow:nth-child(even) .frow-body { order: 0; }
  .frow-media { min-height: 180px; }
  .sticky-split { grid-template-columns: 1fr; gap: 1.5rem; }
  .ss-head { position: static; }
}
@media (max-width: 760px) {
  .factstrip { grid-template-columns: 1fr 1fr; }
  .fact:nth-child(odd) { border-left: 0; }
  .fact:nth-child(3), .fact:nth-child(4) { border-top: 1px solid var(--hair); }
  .timeline-h { grid-template-columns: 1fr; gap: 2rem; }
  .th-item::before { display: none; }
}
@media (max-width: 620px) {
  .form-row-2, .check-grid { grid-template-columns: 1fr; }
}

/* ─── Reduced motion ──────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal, .reveal-scale { opacity: 1; transform: none; }
  .word-rise > span { transform: none; }
  .industrial-3d-canvas { opacity: 0.9; }
  .ambient-3d-canvas, .ambient-bg-canvas, .cursor-glow, .scroll-progress { display: none !important; }
  .tilt { transform: none !important; }
  [data-parallax] { transform: none !important; }
  .wr > span { transform: none !important; }
}
