/* HunterTech hub + Evan + Jade */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&family=Sora:wght@300;400;500;600;700&display=swap');
@import './core.css';
@import './hubs.css';
@import './site-chrome.css';
@import './worlds-interiors.css';

/* Evan zone — dark minimal studio */
body.zone-evan {
  --ej-paper: #0b0d10;
  --ej-ink: #e8eaef;
  --ej-muted: #9aa3b2;
  --ej-line: rgba(232, 234, 239, 0.12);
  --ej-sans: 'Sora', system-ui, sans-serif;
  background: radial-gradient(900px 500px at 80% -10%, rgba(100, 180, 255, 0.08), transparent),
    var(--ej-paper);
  color: var(--ej-ink);
}

body.zone-evan .chrome-head .hub__bar {
  box-shadow: 0 0 40px rgba(0, 140, 255, 0.06);
}

body.zone-evan .hub__feet {
  border-top-color: var(--ej-line);
}

body.zone-evan .ej-btn--primary {
  background: #e8eaef;
  color: #0b0d10;
}

body.zone-evan .ej-btn--ghost {
  border-color: var(--ej-line);
  color: var(--ej-ink);
}

.evan-hero {
  padding: clamp(3rem, 10vw, 6rem) 0 3rem;
}

.evan-hero h1 {
  font-family: var(--ej-sans);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: -0.04em;
  margin: 0 0 1rem;
  line-height: 1.05;
}

.evan-hero .lead {
  font-size: 1.15rem;
  color: var(--ej-muted);
  max-width: 44ch;
  margin: 0 0 1.75rem;
}

.evan-section {
  padding: 3.5rem 0;
  border-top: 1px solid var(--ej-line);
}

.evan-section h2 {
  font-family: var(--ej-sans);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

.evan-grid-services {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.evan-svc {
  padding: 1.25rem;
  border-radius: 12px;
  border: 1px solid var(--ej-line);
  background: rgba(255, 255, 255, 0.03);
}

.evan-svc h3 {
  font-size: 1rem;
  margin: 0 0 0.35rem;
  font-weight: 600;
}

.evan-svc p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ej-muted);
}

.evan-testimonials {
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .evan-testimonials {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.evan-t {
  padding: 1.25rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--ej-line);
  font-size: 0.92rem;
  color: var(--ej-muted);
}

.evan-t strong {
  color: var(--ej-ink);
  display: block;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.evan-blog-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.evan-blog-list a {
  display: block;
  padding: 1rem 1.1rem;
  border-radius: 10px;
  border: 1px solid var(--ej-line);
  text-decoration: none;
  transition: background 0.15s ease;
}

.evan-blog-list a:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* Jade zone — B2B consulting (dark “command deck” interior; tokens match worlds-interiors) */
body.zone-jade {
  --ej-sans: 'IBM Plex Sans', system-ui, sans-serif;
  --ej-paper: #060a0c;
  --ej-ink: #eef2f5;
  --ej-muted: rgba(238, 242, 245, 0.74);
  --ej-line: rgba(64, 200, 190, 0.16);
  --jade-accent: #5ee0d4;
  --jade-accent-dim: rgba(94, 224, 212, 0.14);
  color: var(--ej-ink);
}

.jade-hero {
  padding: clamp(2.75rem, 9vw, 5rem) 0 clamp(2rem, 5vw, 3.25rem);
  background: linear-gradient(
    125deg,
    rgba(6, 22, 30, 0.98) 0%,
    rgba(4, 14, 20, 0.92) 40%,
    rgba(8, 32, 42, 0.55) 100%
  );
  border-bottom: none;
  box-shadow: 0 1px 0 0 rgba(100, 220, 205, 0.22);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.jade-hero::before {
  content: '';
  position: absolute;
  width: min(120%, 52rem);
  height: min(120%, 52rem);
  right: -25%;
  top: -45%;
  background: radial-gradient(circle, rgba(60, 200, 185, 0.22) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.jade-hero::after {
  content: '';
  position: absolute;
  left: -20%;
  bottom: -30%;
  width: min(90%, 36rem);
  height: min(90%, 36rem);
  background: radial-gradient(circle, rgba(80, 120, 200, 0.1) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.jade-hero > * {
  position: relative;
  z-index: 1;
}

.jade-hero h1 {
  font-size: clamp(1.95rem, 4.2vw, 2.95rem);
  margin: 0 0 0.65rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  max-width: 18ch;
  color: #f2faf9;
  text-shadow:
    0 0 80px rgba(94, 224, 212, 0.18),
    0 0 1px rgba(255, 255, 255, 0.15);
}

@supports (-webkit-background-clip: text) or (background-clip: text) {
  body.zone-jade .jade-hero h1 {
    background: linear-gradient(105deg, #ffffff 0%, #d4f7f2 42%, #6fe0d4 88%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: none;
  }
}

@media (min-width: 640px) {
  .jade-hero h1 {
    max-width: 22ch;
  }
}

.jade-hero .sub {
  color: var(--ej-muted);
  max-width: 52ch;
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.6;
}

.jade-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 1.75rem;
  align-items: center;
}

.jade-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 2.25rem;
  max-width: 52rem;
}

@media (max-width: 640px) {
  .jade-hero__stats {
    grid-template-columns: 1fr;
  }
}

.jade-stat {
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--ej-line);
  background: rgba(6, 14, 18, 0.65);
  backdrop-filter: blur(8px);
}

.jade-stat strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--jade-accent);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.jade-stat span {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ej-muted);
  margin-top: 0.35rem;
}

body.zone-jade .ej-btn--ghost {
  border: 1px solid rgba(94, 224, 212, 0.35);
  color: var(--ej-ink);
  background: rgba(6, 14, 18, 0.4);
}

body.zone-jade .ej-btn--ghost:hover {
  border-color: rgba(94, 224, 212, 0.55);
  background: rgba(94, 224, 212, 0.08);
}

.jade-proof {
  margin: 0;
  padding: 1.5rem 1.35rem 1.5rem 1.75rem;
  border-radius: 14px;
  border: 1px solid var(--ej-line);
  background: rgba(6, 14, 18, 0.55);
  backdrop-filter: blur(10px);
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(238, 242, 245, 0.92);
  position: relative;
}

.jade-proof::before {
  content: '“';
  position: absolute;
  top: 0.35rem;
  left: 0.75rem;
  font-size: 2.5rem;
  line-height: 1;
  opacity: 0.2;
  font-family: Georgia, serif;
}

.jade-proof p {
  margin: 0;
}

.jade-proof cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ej-muted);
}

.jade-service-lede {
  color: var(--ej-muted);
  max-width: 62ch;
  margin: 0 0 1.25rem;
  font-size: 1.02rem;
}

.jade-why article strong.lede {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--jade-accent);
  margin-bottom: 0.35rem;
}

.jade-project__meta {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--jade-accent);
  margin: 0 0 0.4rem;
}

.jade-project__outcome {
  margin: 0.65rem 0 0;
  padding-top: 0.65rem;
  border-top: 1px solid var(--ej-line);
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(238, 242, 245, 0.88);
}

.jade-insights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.jade-insights li {
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--ej-line);
  background: rgba(6, 14, 18, 0.45);
  font-size: 0.95rem;
  color: var(--ej-muted);
}

.jade-insights li strong {
  display: block;
  color: var(--ej-ink);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.jade-band {
  padding: 3rem 0;
  border-top: 1px solid var(--ej-line);
  position: relative;
}

/* Alternate section rhythm: lifted “panels” so the page reads as layers, not one flat void */
body.zone-jade .ej-shell__main > section.jade-band:nth-child(even) {
  background: linear-gradient(
    100deg,
    rgba(10, 36, 42, 0.42) 0%,
    rgba(6, 16, 22, 0.28) 38%,
    transparent 72%
  );
  border-top-color: rgba(100, 220, 205, 0.14);
}

body.zone-jade .ej-shell__main > section.jade-band:nth-child(even)::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(94, 224, 212, 0.55), rgba(94, 224, 212, 0.08));
  border-radius: 0 2px 2px 0;
  opacity: 0.85;
  pointer-events: none;
}

.jade-band h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

body.zone-jade .jade-band h2 {
  color: rgba(248, 252, 251, 0.98);
}

.jade-why {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.jade-why article {
  padding: 1.25rem;
  background: white;
  border-radius: 12px;
  border: 1px solid var(--ej-line);
  box-shadow: 0 8px 24px rgba(26, 29, 36, 0.06);
}

.jade-why h3 {
  font-size: 1rem;
  margin: 0 0 0.35rem;
}

.jade-why p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ej-muted);
}

.jade-projects {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .jade-projects {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.jade-project {
  padding: 1.35rem;
  background: white;
  border-radius: 12px;
  border: 1px solid var(--ej-line);
}

.jade-project h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.jade-project p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ej-muted);
}

.jade-team {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.jade-person {
  padding: 1.25rem;
  background: white;
  border-radius: 12px;
  border: 1px solid var(--ej-line);
}

.jade-person h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
}

.jade-person .role {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--jade-accent, #5ee0d4);
  margin: 0 0 0.5rem;
}

.jade-person p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ej-muted);
}

.jade-faq details {
  border: 1px solid var(--ej-line);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  background: white;
  margin-bottom: 0.5rem;
}

.jade-faq summary {
  font-weight: 600;
  cursor: pointer;
}

.jade-faq p {
  margin: 0.75rem 0 0;
  font-size: 0.92rem;
  color: var(--ej-muted);
}

.jade-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.jade-stack span {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  background: var(--jade-accent-dim, rgba(94, 224, 212, 0.12));
  color: rgba(238, 242, 245, 0.92);
  border: 1px solid rgba(64, 200, 190, 0.12);
}

.jade-cta {
  padding: 2.5rem;
  border-radius: var(--ej-radius);
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(120deg, #1a2330, #3d5568);
}

.jade-cta h2 {
  font-family: var(--ej-sans);
  margin: 0 0 0.5rem;
  color: rgba(255, 255, 255, 0.98);
}

.jade-cta p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.82);
}

.jade-cta .ej-btn--primary {
  background: linear-gradient(165deg, #f8fffe, #d8f7f3);
  color: #0a1218;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

body.zone-jade .jade-cta .ej-btn--primary:hover {
  box-shadow: 0 10px 36px rgba(94, 224, 212, 0.25);
}

body.zone-jade .ej-flow-ribbon {
  height: 5px;
  background: linear-gradient(
    90deg,
    rgba(94, 224, 212, 0.95) 0%,
    rgba(65, 130, 195, 0.85) 38%,
    rgba(140, 110, 210, 0.55) 72%,
    rgba(35, 55, 70, 0.45) 100%
  );
  box-shadow: 0 0 32px rgba(94, 224, 212, 0.28);
}

.jade-steps {
  display: grid;
  gap: 1rem;
  counter-reset: step;
}

@media (min-width: 700px) {
  .jade-steps:not(.jade-steps--five) {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Five-phase methodology (legacy site alignment) */
.jade-steps--five {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .jade-steps--five {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .jade-steps--five {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.jade-step {
  padding: 1rem;
  background: white;
  border-radius: 12px;
  border: 1px solid var(--ej-line);
  position: relative;
  padding-top: 2rem;
}

.jade-step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 0.75rem;
  left: 1rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: #1a2330;
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jade-step h3 {
  font-size: 0.95rem;
  margin: 0 0 0.35rem;
}

.jade-step p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--ej-muted);
}

.jade-quote-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .jade-quote-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .jade-quote-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.jade-checklist {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: grid;
  gap: 0.55rem;
  max-width: 42rem;
}

.jade-checklist li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.95rem;
  color: var(--ej-muted);
}

.jade-checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 2px;
  background: linear-gradient(145deg, var(--jade-accent, #5ee0d4), #1a7a72);
  box-shadow: 0 0 12px rgba(94, 224, 212, 0.35);
}

/* Vertical timeline — “Our journey” */
.jade-timeline-v {
  position: relative;
  margin: 0;
  padding-left: 1.65rem;
  max-width: 52rem;
}

.jade-timeline-v::before {
  content: '';
  position: absolute;
  left: 0.35rem;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(
    180deg,
    rgba(94, 224, 212, 0.95) 0%,
    rgba(100, 140, 200, 0.45) 45%,
    rgba(94, 224, 212, 0.15) 100%
  );
  box-shadow: 0 0 24px rgba(94, 224, 212, 0.15);
}

.jade-timeline-v__item {
  position: relative;
  padding-bottom: 1.4rem;
}

.jade-timeline-v__item:last-child {
  padding-bottom: 0;
}

.jade-timeline-v__item::before {
  content: '';
  position: absolute;
  left: -1.34rem;
  top: 0.32rem;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: linear-gradient(145deg, #5ee0d4, #1a6b62);
  box-shadow:
    0 0 0 3px rgba(6, 14, 18, 0.96),
    0 0 20px rgba(94, 224, 212, 0.55);
  z-index: 1;
}

.jade-timeline-v__date {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--jade-accent, #5ee0d4);
  margin-bottom: 0.35rem;
}

.jade-timeline-v__item p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ej-muted);
  line-height: 1.55;
}

.jade-day-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.jade-day-slot {
  padding: 1rem 1.1rem;
  border-radius: 12px;
  border: 1px solid var(--ej-line);
  background: rgba(255, 255, 255, 0.03);
}

.jade-day-slot strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--jade-accent, #5ee0d4);
  margin-bottom: 0.45rem;
}

.jade-day-slot p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ej-muted);
  line-height: 1.5;
}

/* Horizontal “week scrub” — example project */
.jade-week-rail {
  overflow-x: auto;
  overflow-y: visible;
  margin: 0 -0.25rem;
  padding: 0 0.25rem 0.35rem;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.jade-week-rail__track {
  display: flex;
  gap: 1rem;
  align-items: stretch;
  min-width: min-content;
  padding: 1.5rem 0.25rem 0.5rem;
  position: relative;
}

.jade-week-rail__track::before {
  content: '';
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  top: 0.65rem;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(
    90deg,
    rgba(94, 224, 212, 0.25),
    rgba(94, 224, 212, 0.85) 35%,
    rgba(140, 110, 210, 0.45) 100%
  );
  z-index: 0;
  pointer-events: none;
}

.jade-week-node {
  position: relative;
  flex: 0 0 min(270px, 78vw);
  scroll-snap-align: start;
  margin: 0;
  padding: 1.35rem 1rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--ej-line);
  background: rgba(6, 14, 18, 0.55);
  z-index: 1;
}

.jade-week-node::before {
  content: '';
  position: absolute;
  top: -0.55rem;
  left: 1.15rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff 0%, #5ee0d4 45%, #0a3028 100%);
  box-shadow: 0 0 18px rgba(94, 224, 212, 0.65);
  z-index: 2;
}

.jade-week-node__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--jade-accent, #5ee0d4);
  margin-bottom: 0.45rem;
}

.jade-week-node p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ej-muted);
  line-height: 1.5;
}

.jade-partners {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.jade-partner-card {
  padding: 1.25rem;
  border-radius: 12px;
  border: 1px solid var(--ej-line);
  background: rgba(255, 255, 255, 0.03);
}

.jade-partner-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.jade-partner-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ej-muted);
  line-height: 1.55;
}

.jade-newsletter .ej-form {
  max-width: 420px;
}

.jade-blog-teasers {
  display: grid;
  gap: 0.85rem;
  max-width: 52rem;
}

.jade-blog-teasers a {
  display: block;
  padding: 1rem 1.15rem;
  border-radius: 12px;
  border: 1px solid var(--ej-line);
  text-decoration: none;
  color: inherit;
  background: rgba(6, 14, 18, 0.35);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.jade-blog-teasers a:hover {
  border-color: rgba(120, 230, 215, 0.35);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.jade-blog-teasers strong {
  display: block;
  font-size: 1.02rem;
  margin-bottom: 0.35rem;
  color: var(--ej-ink);
}

.jade-blog-teasers span {
  font-size: 0.88rem;
  color: var(--ej-muted);
  line-height: 1.45;
}

.jade-fun-facts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.jade-fun-facts li {
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--ej-muted);
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(100, 220, 205, 0.12);
  background: rgba(4, 10, 14, 0.35);
}

.jade-impact-row {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  max-width: 48rem;
  margin-top: 1.5rem;
}

.jade-impact-row .jade-stat {
  text-align: left;
}

/* —— Animated counters —— */
.jade-counter-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  max-width: 56rem;
}

.jade-counter {
  text-align: center;
  padding: 1.5rem 1rem 1.35rem;
  border-radius: 16px;
  border: 1px solid var(--ej-line);
  background: rgba(6, 14, 18, 0.55);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}

.jade-counter__value {
  font-size: clamp(2rem, 5.5vw, 2.85rem);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  color: var(--jade-accent, #5ee0d4);
  text-shadow: 0 0 40px rgba(94, 224, 212, 0.25);
}

.jade-counter__label {
  display: block;
  margin-top: 0.65rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ej-muted);
  line-height: 1.35;
}

/* —— Testimonial slider —— */
.jade-slider {
  max-width: 40rem;
  margin: 0 auto;
  outline: none;
}

.jade-slider:focus-visible {
  box-shadow: 0 0 0 2px rgba(94, 224, 212, 0.45);
  border-radius: 16px;
}

.jade-slider__viewport {
  overflow: hidden;
  border-radius: 16px;
}

.jade-slider__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (prefers-reduced-motion: reduce) {
  .jade-slider__track {
    transition: none;
  }
}

.jade-slider__slide {
  flex: 0 0 100%;
  min-width: 0;
  box-sizing: border-box;
}

.jade-slider__slide .jade-proof {
  margin: 0;
}

.jade-slider__toolbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.jade-slider__btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(100, 220, 205, 0.35);
  background: rgba(6, 14, 18, 0.65);
  color: var(--ej-ink);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.jade-slider__btn:hover {
  border-color: rgba(120, 230, 215, 0.55);
  background: rgba(94, 224, 212, 0.1);
}

.jade-slider__dots {
  display: flex;
  gap: 0.45rem;
  align-items: center;
}

.jade-slider__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(100, 220, 205, 0.25);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.jade-slider__dot[aria-current='true'] {
  background: var(--jade-accent, #5ee0d4);
  transform: scale(1.25);
  box-shadow: 0 0 12px rgba(94, 224, 212, 0.45);
}

/* —— Tech stack marquee —— */
.jade-stack-deck {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.jade-stack-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.jade-stack-marquee__track {
  display: flex;
  width: max-content;
  animation: jade-marquee-scroll 42s linear infinite;
}

.jade-stack-marquee--rtl .jade-stack-marquee__track {
  animation-direction: reverse;
}

@media (prefers-reduced-motion: reduce) {
  .jade-stack-marquee__track {
    animation: none;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 52rem;
    margin: 0 auto;
  }

  .jade-stack-marquee__chunk:last-child {
    display: none;
  }
}

@keyframes jade-marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.jade-stack-marquee__chunk {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.55rem;
  padding: 0.35rem 0.75rem;
  align-items: center;
}

.jade-stack-chip {
  flex-shrink: 0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(100, 220, 205, 0.28);
  background: linear-gradient(155deg, rgba(20, 40, 48, 0.95), rgba(8, 16, 22, 0.9));
  color: rgba(248, 252, 251, 0.95);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 4px 20px rgba(0, 0, 0, 0.35),
    0 0 28px rgba(40, 180, 170, 0.08);
  white-space: nowrap;
}
