/* ============================================================
   GridLink — IT Staffing, Consulting & Infrastructure
   Design system
   ============================================================ */

:root {
  /* Surfaces — dark, warm-neutral with a faint green cast */
  --bg:        #0a0e0d;
  --bg-2:      #0f1413;
  --surface:   #131a18;
  --surface-2: #18211e;
  --line:      rgba(232, 239, 233, 0.09);
  --line-2:    rgba(232, 239, 233, 0.16);

  /* Text */
  --text:   #e9efeb;
  --muted:  #97a39d;
  --faint:  #62706a;

  /* Accent — electric "signal" green (EV/energy heritage) */
  --accent:      #38e8a0;
  --accent-deep: #14b178;
  --accent-soft: rgba(56, 232, 160, 0.12);
  --accent-line: rgba(56, 232, 160, 0.35);

  /* Secondary accent — used sparingly */
  --accent-2: #5fb6ff;

  /* Inverted (light) band */
  --inv-bg:    #eef2ef;
  --inv-bg-2:  #e3e9e4;
  --inv-text:  #0d1311;
  --inv-muted: #51605a;
  --inv-line:  rgba(13, 19, 17, 0.12);

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 14px;
  --radius-lg: 22px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "IBM Plex Sans", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: #04140d; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---- Eyebrow / mono label ---- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent);
}
.eyebrow.dark { color: var(--accent-deep); }
.eyebrow.dark::before { background: var(--accent-deep); box-shadow: none; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  --b: var(--accent);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 14px 24px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform .35s var(--ease), background .3s var(--ease),
              color .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--accent);
  color: #04140d;
  box-shadow: 0 0 0 0 var(--accent-soft);
}
.btn-primary:hover {
  background: #4cf2ac;
  box-shadow: 0 10px 40px -8px var(--accent-line);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-2);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-arrow svg { transition: transform .35s var(--ease); }
.btn:hover .btn-arrow svg { transform: translateX(4px); }

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  transition: background .4s var(--ease), border-color .4s var(--ease), padding .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10, 14, 13, 0.78);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
  padding-block: 13px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.brand .mark { width: 30px; height: 30px; flex: none; }
.brand b { font-weight: 600; }
.brand .lnk { color: var(--accent); }
.brand .mark [fill="#38e8a0"] { fill: var(--accent); }
.brand .mark [stroke="#38e8a0"] { stroke: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  font-size: 14.5px;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color .25s, background .25s;
}
.nav-links a:hover { color: var(--text); background: var(--surface); }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 11px 20px; }

.nav-toggle { display: none; background: none; border: 0; color: var(--text); cursor: pointer; }

@media (max-width: 940px) {
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 80px;
  overflow: hidden;
}
#net {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero::after {
  /* vignette to seat the content */
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(120% 90% at 15% 30%, transparent 30%, var(--bg) 78%),
    linear-gradient(180deg, transparent 55%, var(--bg) 100%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 2; }

.hero-inner { max-width: 880px; }
.hero h1 {
  font-size: clamp(40px, 7vw, 84px);
  margin-top: 26px;
  letter-spacing: -0.035em;
}
.hero h1 .grad {
  background: linear-gradient(100deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  margin-top: 26px;
  font-size: clamp(17px, 2vw, 21px);
  color: var(--muted);
  max-width: 620px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  margin-top: 38px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 38px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.hero-stats .s-num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.hero-stats .s-num span { color: var(--accent); }
.hero-stats .s-lab {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
  margin-top: 4px;
}
.hero-stats .div { width: 1px; background: var(--line); align-self: stretch; }

/* ============================================================
   Marquee trust strip
   ============================================================ */
.strip {
  border-block: 1px solid var(--line);
  background: var(--bg-2);
  padding: 22px 0;
  overflow: hidden;
}
.strip .lab {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
  text-align: center;
  margin-bottom: 18px;
}
.marquee {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: scroll-x 32s linear infinite;
}
.marquee:hover { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) { .marquee { animation: none; } }
.marquee span {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--faint);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 64px;
  transition: color .3s;
}
.marquee span:hover { color: var(--muted); }
.marquee span::after {
  content: "";
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent-line);
}
@keyframes scroll-x {
  to { transform: translateX(-50%); }
}

/* ============================================================
   Section scaffold
   ============================================================ */
section { position: relative; }
.band { padding-block: clamp(80px, 12vh, 150px); }
.sec-head { max-width: 720px; margin-bottom: 56px; }
.sec-head h2 {
  font-size: clamp(30px, 4.6vw, 54px);
  margin-top: 20px;
}
.sec-head p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 19px;
}

/* ============================================================
   Pillars
   ============================================================ */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px){ .pillars { grid-template-columns: 1fr; } }

.pillar {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 30px 30px;
  overflow: hidden;
  transition: border-color .4s var(--ease), transform .4s var(--ease), background .4s var(--ease);
}
.pillar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 50% -10%, var(--accent-soft), transparent 60%);
  opacity: 0;
  transition: opacity .45s var(--ease);
}
.pillar:hover {
  border-color: var(--accent-line);
  transform: translateY(-5px);
  background: var(--surface-2);
}
.pillar:hover::before { opacity: 1; }
.pillar > * { position: relative; }

.pillar .idx {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--faint);
  letter-spacing: 0.1em;
}
.pillar .p-icon {
  width: 46px; height: 46px;
  margin: 18px 0 22px;
  color: var(--accent);
}
.pillar h3 { font-size: 25px; }
.pillar p { margin-top: 12px; color: var(--muted); font-size: 16px; }
.pillar .tags {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pillar .tags span {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 5px 11px;
  border-radius: 100px;
  white-space: nowrap;
}
.pillar .more {
  margin-top: 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pillar .more svg { transition: transform .35s var(--ease); }
.pillar:hover .more svg { transform: translateX(4px); }

/* ============================================================
   Dual track (employers / candidates)
   ============================================================ */
.toggle {
  display: inline-flex;
  padding: 5px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 100px;
  margin-bottom: 44px;
  position: relative;
}
.toggle button {
  position: relative;
  z-index: 2;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--muted);
  background: none;
  border: 0;
  padding: 11px 26px;
  border-radius: 100px;
  cursor: pointer;
  transition: color .3s var(--ease);
}
.toggle button.on { color: #04140d; }
.toggle .pill {
  position: absolute;
  z-index: 1;
  top: 5px; bottom: 5px;
  background: var(--accent);
  border-radius: 100px;
  transition: transform .45s var(--ease), width .45s var(--ease);
}

.track {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 880px){ .track { grid-template-columns: 1fr; gap: 36px; } }

.track-panel { display: none; }
.track-panel.on { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 880px){ .track-panel.on { grid-template-columns: 1fr; gap: 36px; } }

.track h3 { font-size: clamp(28px, 3.4vw, 40px); }
.track .lead { margin-top: 20px; color: var(--muted); font-size: 18px; }
.feature-list { margin-top: 30px; display: grid; gap: 2px; }
.feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.feature:last-child { border-bottom: 1px solid var(--line); }
.feature .fi {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex: none;
}
.feature h4 { font-family: var(--font-body); font-weight: 600; font-size: 16.5px; }
.feature p { margin-top: 4px; color: var(--muted); font-size: 15px; }
.track .btn { margin-top: 34px; }

/* Image placeholder */
.ph {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.022) 0 12px, transparent 12px 24px),
    var(--surface);
  display: grid;
  place-items: center;
  min-height: 380px;
  overflow: hidden;
}
.ph .ph-lab {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--faint);
  text-align: center;
  padding: 10px 16px;
  border: 1px dashed var(--line-2);
  border-radius: 8px;
}
.ph.tall { min-height: 460px; }

/* ============================================================
   Dual-track connector card (dashed line between nodes)
   ============================================================ */
.link-card {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(56,232,160,0.06), transparent 60%),
    linear-gradient(180deg, var(--surface), var(--bg-2));
  min-height: 460px;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}
.link-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(80% 80% at 50% 50%, #000 25%, transparent 80%);
  -webkit-mask-image: radial-gradient(80% 80% at 50% 50%, #000 25%, transparent 80%);
  opacity: 0.5;
}
.link-flow {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
}
.link-node {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.14em;
  color: var(--text);
  background: rgba(10,14,13,0.72);
  border: 1px solid var(--accent-line);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 100px;
  padding: 14px 26px;
}
.link-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent);
}
.link-dash {
  width: 0;
  height: 92px;
  border-left: 2px dashed var(--accent-line);
  margin: 6px 0;
}

/* ============================================================
   Inverted band — process
   ============================================================ */
.inverted {
  background: var(--inv-bg);
  color: var(--inv-text);
}
.inverted h2, .inverted h3, .inverted h4 { color: var(--inv-text); }
.inverted .sec-head p { color: var(--inv-muted); }

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 20px;
  counter-reset: step;
}
@media (max-width: 920px){ .steps { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 560px){ .steps { grid-template-columns: 1fr; } }

.step {
  position: relative;
  padding: 34px 24px 30px 0;
}
.step:not(:last-child) { border-right: 1px solid var(--inv-line); padding-right: 30px; }
@media (max-width: 920px){ .step { border-right: 0 !important; } }
.step .num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent-deep);
  letter-spacing: 0.1em;
}
.step .dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent-deep);
  margin: 16px 0 20px;
  position: relative;
}
.step .dot::after {
  content: "";
  position: absolute;
  left: 12px; top: 5px;
  width: calc(100% + 30px); height: 1px;
  background: var(--inv-line);
}
.step:last-child .dot::after { display: none; }
@media (max-width: 920px){ .step .dot::after { display: none; } }
.step h4 { font-family: var(--font-display); font-size: 21px; }
.step p { margin-top: 10px; color: var(--inv-muted); font-size: 15px; }

/* ============================================================
   Specializations grid
   ============================================================ */
.specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
}
@media (max-width: 860px){ .specs { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .specs { grid-template-columns: 1fr; } }

.spec {
  position: relative;
  padding: 32px 30px 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  transition: background .4s var(--ease);
  cursor: default;
}
.spec::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .45s var(--ease);
}
.spec:hover { background: var(--surface-2); }
.spec:hover::before { transform: scaleY(1); }
.spec .s-icon { color: var(--accent); width: 30px; height: 30px; margin-bottom: 22px; transition: transform .45s var(--ease); }
.spec:hover .s-icon { transform: translateY(-3px); }
.spec h4 { font-family: var(--font-display); font-size: 20px; }
.spec p { margin-top: 10px; color: var(--muted); font-size: 14.5px; }
.spec .roles {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--faint);
  line-height: 1.9;
}

/* ============================================================
   Stats band
   ============================================================ */
.statband {
  background: var(--bg-2);
  border-block: 1px solid var(--line);
}
.statgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 760px){ .statgrid { grid-template-columns: 1fr 1fr; gap: 44px; } }
.stat .big {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 68px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat .big .u { color: var(--accent); }
.stat .lab { margin-top: 14px; color: var(--muted); font-size: 15px; }

/* ============================================================
   EV platform (secondary heritage band)
   ============================================================ */
.ev {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px){ .ev { grid-template-columns: 1fr; gap: 40px; } }
.ev .ev-card {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    radial-gradient(100% 100% at 100% 0, var(--accent-soft), transparent 55%),
    var(--surface);
  padding: 40px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.ev .ev-meter {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--faint);
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.ev .bars { display: flex; align-items: flex-end; gap: 8px; height: 150px; margin: 30px 0; }
.ev .bars i {
  flex: 1;
  background: linear-gradient(180deg, var(--accent), var(--accent-deep));
  border-radius: 5px 5px 0 0;
  opacity: 0.85;
  transition: height .8s var(--ease);
}
.ev .chips { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.ev .chip {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 7px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ev .chip::before { content:""; width:6px; height:6px; border-radius:50%; background: var(--accent); }

/* ============================================================
   Contact / CTA
   ============================================================ */
.cta {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    radial-gradient(90% 130% at 50% 0, rgba(56,232,160,0.10), transparent 60%),
    var(--surface);
  padding: clamp(40px, 6vw, 80px);
  overflow: hidden;
}
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
@media (max-width: 860px){ .cta-grid { grid-template-columns: 1fr; gap: 40px; } }
.cta h2 { font-size: clamp(32px, 4.6vw, 52px); }
.cta .lead { margin-top: 20px; color: var(--muted); font-size: 18px; max-width: 440px; }
.contact-row {
  margin-top: 34px;
  display: grid;
  gap: 14px;
}
.contact-row a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  color: var(--text);
  transition: color .25s;
}
.contact-row a:hover { color: var(--accent); }
.contact-row .ci {
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--accent);
  flex: none;
}

/* Form */
.form { display: grid; gap: 14px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 480px){ .form .row { grid-template-columns: 1fr; } }
.field { display: grid; gap: 7px; }
.field label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
}
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 15px;
  transition: border-color .25s, box-shadow .25s;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 92px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.field select { appearance: none; cursor: pointer; }
.form .btn-primary { justify-content: center; margin-top: 6px; }
.form-note {
  font-size: 13px;
  color: var(--faint);
  text-align: center;
  margin-top: 2px;
}
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.on { display: block; }
.form-success .check {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid; place-items: center;
  margin: 0 auto 20px;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  padding-block: 64px 30px;
}
.foot-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 800px){ .foot-top { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 480px){ .foot-top { grid-template-columns: 1fr; } }
.foot-top .brand { margin-bottom: 18px; }
.foot-blurb { color: var(--muted); font-size: 15px; max-width: 300px; }
.foot-col h5 {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
  margin: 0 0 18px;
}
.foot-col a {
  display: block;
  color: var(--muted);
  font-size: 15px;
  padding: 6px 0;
  transition: color .25s;
}
.foot-col a:hover { color: var(--accent); }
.foot-col a.foot-li { display: inline-flex; align-items: center; gap: 8px; }
.foot-col a.foot-li svg { flex: none; }
.foot-bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13.5px;
  color: var(--faint);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal {
  opacity: 0;
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   Real logo + product render + spec strip
   ============================================================ */
.logo-img { height: 38px; width: auto; display: block; }
.logo-img.foot { height: 50px; }
@media (max-width: 560px){ .logo-img { height: 32px; } }

.spec-strip {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.spec-strip span {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--muted);
  border: 1px solid var(--line-2);
  border-radius: 100px;
  padding: 7px 14px;
  white-space: nowrap;
}

.charger-shot {
  margin: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  isolation: isolate;
}
.charger-shot::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 6% 12% 14%;
  background: radial-gradient(60% 55% at 50% 42%, var(--accent-soft), transparent 70%);
  filter: blur(10px);
}
.charger-shot img {
  width: auto;
  max-width: 100%;
  max-height: 620px;
  object-fit: contain;
  filter: drop-shadow(0 28px 55px rgba(0,0,0,0.5));
}
.charger-shot figcaption {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.03em;
  color: var(--faint);
  text-align: center;
}

/* ============================================================
   Platform dashboard mockup
   ============================================================ */
.dash-frame {
  border: 1px solid var(--line-2);
  border-radius: 16px;
  overflow: hidden;
  background: #0a0f0e;
  box-shadow: 0 40px 120px -50px rgba(0,0,0,0.9), 0 0 0 1px rgba(255,255,255,0.02);
}
.dash-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #0e1413;
  border-bottom: 1px solid var(--line);
}
.dash-chrome .cdot { width: 11px; height: 11px; border-radius: 50%; background: #2c3633; }
.dash-chrome .cdot:nth-child(1){ background:#e06a5a; } .dash-chrome .cdot:nth-child(2){ background:#e0b14a; } .dash-chrome .cdot:nth-child(3){ background:#5cc46b; }
.dash-url {
  margin-left: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--faint);
  background: #0a0f0e;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 5px 14px;
  flex: 1;
  max-width: 340px;
}
.dash { display: grid; grid-template-columns: 54px 1fr; min-height: 460px; }

.dash-side {
  background: #0c1210;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px 0;
}
.dash-side .side-ic {
  width: 34px; height: 34px;
  border-radius: 9px;
  display: grid; place-items: center;
  color: var(--faint);
}
.dash-side .side-ic.side-logo { color: var(--accent); }
.dash-side .side-ic.active { background: var(--accent-soft); color: var(--accent); }

.dash-main { padding: 22px 24px 26px; }
.dash-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.dash-top h3 { font-family: var(--font-display); font-size: 26px; }
.dash-top-actions { display: flex; align-items: center; gap: 12px; }
.dash-top-actions .dta {
  width: 34px; height: 34px;
  border-radius: 9px;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--muted);
  position: relative;
}
.dash-top-actions .bell .badge {
  position: absolute; top: -5px; right: -5px;
  background: var(--accent); color: #04140d;
  font-family: var(--font-mono); font-size: 9px; font-weight: 600;
  font-style: normal;
  width: 16px; height: 16px; border-radius: 50%;
  display: grid; place-items: center;
}
.dash-top-actions .avatar { border: none; background: linear-gradient(135deg, var(--accent), var(--accent-2)); }

.dash-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 16px; }
@media (max-width: 820px){ .dash-grid { grid-template-columns: 1fr; } }
.dash-left { display: grid; gap: 14px; align-content: start; }

.dash-welcome {
  display: flex; align-items: center; gap: 18px;
  background: linear-gradient(110deg, #122433, #0e1a24);
  border: 1px solid rgba(95,182,255,0.14);
  border-radius: 14px;
  padding: 22px 24px;
}
.dash-welcome .dw-text h4 { font-family: var(--font-display); font-size: 21px; color: #eaf2f8; }
.dash-welcome .dw-text p { margin-top: 6px; font-size: 13.5px; color: #9bb2c4; }
.dash-welcome .dw-art { flex: none; width: 70px; height: 64px; position: relative; }
.dash-welcome .dw-art span { position: absolute; border-radius: 8px; }
.dash-welcome .dw-art span:nth-child(1){ inset: 6px 8px 18px 4px; background: rgba(95,182,255,0.28); }
.dash-welcome .dw-art span:nth-child(2){ width: 26px; height: 26px; right: 2px; bottom: 6px; border-radius: 50%; background: var(--accent); }
.dash-welcome .dw-art span:nth-child(3){ width: 14px; height: 14px; left: 8px; top: 0; border-radius: 4px; background: rgba(255,255,255,0.25); }

.dash-stats3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.dash-stats3 .ds {
  border-radius: 12px;
  padding: 16px 16px 18px;
  display: flex; flex-direction: column; gap: 10px;
  min-height: 88px;
  border: 1px solid rgba(255,255,255,0.05);
}
.ds .dl { font-size: 12.5px; color: rgba(255,255,255,0.62); }
.ds .dv { font-family: var(--font-display); font-size: 28px; font-weight: 600; color: #fff; letter-spacing: -0.02em; }
.ds.blue { background: #11324a; } .ds.blue2 { background: #122d40; }
.ds.maroon { background: #3e1c24; }
.ds.green, .ds.green2 { background: #133a2c; }
.ds.teal { background: #103a35; }

.dash-panel { border: 1px solid var(--line); border-radius: 14px; padding: 16px; background: #0c1211; }
.dash-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.dash-card-head > span:first-child { font-weight: 600; font-size: 15px; white-space: nowrap; }
.dash-card-head .dd { white-space: nowrap; }
.dash-card-head .dd {
  font-family: var(--font-mono); font-size: 11.5px; color: var(--muted);
  border: 1px solid var(--line); border-radius: 7px; padding: 5px 10px;
}
.dash-stats3.inner .dv { font-size: 24px; }

.dash-right { border: 1px solid var(--line); border-radius: 14px; padding: 18px; background: #0c1211; display: flex; flex-direction: column; }
.station-list { display: flex; flex-direction: column; }
.st-row {
  display: grid;
  grid-template-columns: auto minmax(0,1fr) auto auto auto;
  align-items: center;
  gap: 10px;
  padding: 13px 2px;
  border-top: 1px solid var(--line);
}
.st-row:first-child { border-top: none; }
.st-ic { width: 30px; height: 30px; border-radius: 8px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; }
.st-name { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; }
.st-name b { font-size: 14px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.st-name span { font-size: 11.5px; color: var(--faint); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.st-port { font-family: var(--font-mono); font-size: 12px; color: var(--muted); }
.st-rev { font-family: var(--font-display); font-size: 14px; font-weight: 600; }
.st-badge {
  font-size: 11px; font-weight: 600;
  color: #04140d; background: var(--accent);
  border-radius: 100px; padding: 4px 11px;
}
.station-foot {
  margin-top: auto;
  padding-top: 16px;
  display: flex; align-items: center; justify-content: space-between;
}
.station-foot .pager { font-family: var(--font-mono); font-size: 12.5px; color: var(--muted); }
.station-foot a { font-size: 13px; font-weight: 600; color: var(--accent); }
@media (max-width: 460px){
  .dash-stats3 { grid-template-columns: 1fr 1fr; }
  .st-rev { display: none; }
}
