@import url('./docs.css');

.eco-section { position: relative; }

.eco-section .eco-stage {
  position: relative;
  margin: 28px 0 40px;
  border-radius: var(--radius-md);
  overflow: hidden;
  isolation: isolate;
}

.eco-section .eco-stage--padded { padding: 32px; }

.eco-section .eco-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.eco-section .eco-split--text-left { grid-template-columns: 1.05fr 0.95fr; }
.eco-section .eco-split--text-right { grid-template-columns: 0.95fr 1.05fr; }
@media (max-width: 900px) {
  .eco-section .eco-split,
  .eco-section .eco-split--text-left,
  .eco-section .eco-split--text-right {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.eco-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent-base);
  padding: 5px 12px;
  background: var(--accent-soft);
  border: 1px solid color-mix(in srgb, var(--accent-base) 26%, transparent);
  border-radius: 999px;
  margin-bottom: 18px;
}
.eco-eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-base);
  box-shadow: 0 0 8px var(--accent-base);
}

.eco-fact-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 28px 0;
}
.eco-fact {
  padding: 16px;
  border-radius: 12px;
  background: var(--card);
  border: 1px solid var(--card-line);
}
.eco-fact b {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 200;
  color: var(--headline);
  display: block;
  letter-spacing: -0.01em;
}
.eco-fact span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--mute);
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .eco-fact-row { grid-template-columns: repeat(2, 1fr); }
}

/* 1. CONSTELLATION (Overview) */
.eco-constellation {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 520px;
  margin-left: auto;
}
.eco-constellation svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  overflow: visible;
}
.eco-constellation .center {
  position: absolute;
  top: 50%; left: 50%;
  width: 120px; height: 120px;
  margin: -60px 0 0 -60px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff 0%, var(--accent-base) 35%, color-mix(in srgb, var(--accent-base) 55%, #000) 75%, transparent 100%);
  box-shadow: 0 0 80px color-mix(in srgb, var(--accent-base) 60%, transparent), inset 0 0 24px rgba(255,255,255,0.4);
  z-index: 3;
}
.eco-constellation .center::after {
  content: ""; position: absolute; inset: -16px;
  border-radius: 50%;
  border: 1px dashed color-mix(in srgb, var(--accent-base) 45%, transparent);
  animation: ecoSpin 18s linear infinite;
}
.eco-constellation .center::before {
  content: ""; position: absolute; inset: -36px;
  border-radius: 50%;
  border: 1px dotted color-mix(in srgb, var(--accent-base) 30%, transparent);
  animation: ecoSpin 28s linear infinite reverse;
}
@keyframes ecoSpin { to { transform: rotate(360deg); } }

.eco-node {
  position: absolute;
  width: 78px; height: 78px;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--card-line);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px;
  z-index: 4;
  box-shadow: 0 12px 30px -16px rgba(0,0,0,0.4);
  transform-origin: center;
}
.eco-node svg { width: 24px; height: 24px; color: var(--accent-base); }
.eco-node span {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--body);
  text-transform: uppercase;
}
.eco-node[data-pos="n"]  { top: 0%;   left: 50%; transform: translate(-50%, -10%); }
.eco-node[data-pos="ne"] { top: 18%;  right: 6%; }
.eco-node[data-pos="se"] { bottom: 18%; right: 6%; }
.eco-node[data-pos="sw"] { bottom: 18%; left: 6%; }
.eco-node[data-pos="nw"] { top: 18%;  left: 6%; }

/* 2. PHONE MOCKUP (Mobile) */
.eco-phone-wrap {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}
.eco-phone {
  position: relative;
  width: 240px;
  height: 480px;
  background: #0A1530;
  border-radius: 38px;
  border: 8px solid #060B1C;
  box-shadow: 0 32px 60px -20px rgba(0,0,0,0.45), 0 0 0 2px rgba(255,255,255,0.04) inset;
  overflow: hidden;
  transform: perspective(900px) rotateY(-14deg) rotateX(4deg) rotateZ(-2deg);
  transform-style: preserve-3d;
}
.eco-phone::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 96px; height: 22px;
  background: #060B1C;
  border-radius: 0 0 16px 16px;
  z-index: 5;
}
.eco-phone__screen {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 25%, #1B3D7A 0%, #0A1F44 40%, #050B1E 100%);
  display: flex; flex-direction: column;
  padding: 36px 16px 18px;
}
.eco-phone__statusbar {
  display: flex; justify-content: space-between;
  font-family: var(--mono);
  font-size: 9px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}
.eco-phone__orb {
  align-self: center;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff 0%, #4F8AFF 30%, #1E4D9B 70%, transparent 100%);
  box-shadow: 0 0 50px rgba(79, 138, 255, 0.45), inset 0 0 24px rgba(255,255,255,0.3);
  position: relative;
  margin-bottom: 16px;
}
.eco-phone__orb::after {
  content: ""; position: absolute; inset: -8px;
  border-radius: 50%;
  border: 1px dashed rgba(79, 138, 255, 0.45);
  animation: ecoSpin 22s linear infinite;
}
.eco-phone__status {
  text-align: center;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: #6FA3FF;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eco-phone__bubble {
  margin: 6px 12px;
  padding: 9px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.85);
  font-size: 11px;
  line-height: 1.4;
  border: 1px solid rgba(255,255,255,0.08);
}
.eco-phone__bubble--user {
  background: linear-gradient(135deg, #1E4D9B, #4F8AFF);
  margin-left: 40px;
  color: #fff;
  border-color: transparent;
}

.eco-feature-list { display: grid; gap: 12px; margin-top: 8px; }
.eco-feature {
  display: flex; gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--card);
  border: 1px solid var(--card-line);
  align-items: flex-start;
}
.eco-feature__icon {
  flex: 0 0 36px; height: 36px;
  border-radius: 10px;
  background: var(--accent-soft);
  border: 1px solid color-mix(in srgb, var(--accent-base) 25%, transparent);
  color: var(--accent-base);
  display: flex; align-items: center; justify-content: center;
}
.eco-feature__icon svg { width: 18px; height: 18px; }
.eco-feature__body b {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  color: var(--headline);
  display: block;
  margin-bottom: 2px;
}
.eco-feature__body span {
  font-size: 13px;
  color: var(--body);
  line-height: 1.5;
}

/* 3. TERMINAL (CLI) */
.eco-terminal {
  position: relative;
  border-radius: 14px;
  background: linear-gradient(180deg, #050B1E 0%, #0A1530 100%);
  border: 1px solid rgba(79, 138, 255, 0.16);
  overflow: hidden;
  box-shadow: 0 30px 60px -28px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.04);
}
.eco-terminal__bar {
  display: flex; align-items: center;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  gap: 14px;
}
.eco-terminal__dots {
  display: flex; gap: 6px;
}
.eco-terminal__dots span {
  width: 11px; height: 11px; border-radius: 50%; display: block;
}
.eco-terminal__dots span:nth-child(1) { background: #FF5F57; }
.eco-terminal__dots span:nth-child(2) { background: #FEBC2E; }
.eco-terminal__dots span:nth-child(3) { background: #28C840; }
.eco-terminal__title {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
}
.eco-terminal__ansi {
  display: flex; gap: 2px;
  margin-left: auto;
  align-items: center;
}
.eco-terminal__ansi span {
  display: block; width: 4px; height: 4px;
  background: #4F8AFF;
  border-radius: 50%;
  box-shadow: 0 0 6px #4F8AFF;
  opacity: 0.4;
}
.eco-terminal__body {
  position: relative;
  padding: 18px 22px;
  font-family: var(--mono);
  font-size: 13px;
  color: #C7D8F2;
  line-height: 1.6;
  min-height: 240px;
}
.eco-terminal__line { display: block; opacity: 0; }
.eco-terminal__line .prompt { color: #4F8AFF; }
.eco-terminal__line .ok { color: #5fd0a0; }
.eco-terminal__line .warn { color: #F5B45A; }
.eco-terminal__line .key { color: #a78bfa; }
.eco-terminal__line .dim { color: rgba(199, 216, 242, 0.4); }
.eco-terminal__caret {
  display: inline-block;
  width: 7px; height: 14px;
  background: #4F8AFF;
  vertical-align: middle;
  animation: ecoBlink 1s steps(2) infinite;
  margin-left: 2px;
}
@keyframes ecoBlink { 50% { opacity: 0; } }

/* 4. POWERBOARD (Companion) */
.eco-powerboard {
  position: relative;
  border-radius: 18px;
  padding: 18px;
  background:
    radial-gradient(circle at 20% 20%, color-mix(in srgb, var(--accent-base) 18%, transparent), transparent 50%),
    linear-gradient(135deg, #1B3168 0%, #050B1E 100%);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
.eco-powerboard::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.eco-powerboard__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.eco-tile {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 12px;
  color: rgba(255,255,255,0.9);
  position: relative;
  overflow: hidden;
  min-height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.eco-tile__label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}
.eco-tile__value {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 200;
  color: #fff;
  letter-spacing: -0.01em;
}
.eco-tile__delta { font-family: var(--mono); font-size: 10px; color: #5fd0a0; }
.eco-tile__delta.down { color: #F87171; }
.eco-tile--accent {
  background: linear-gradient(135deg, #4F8AFF, #1E4D9B);
  border-color: rgba(255,255,255,0.18);
}
.eco-tile--accent .eco-tile__label { color: rgba(255,255,255,0.7); }
.eco-tile--orb {
  display: flex; align-items: center; justify-content: center;
}
.eco-tile--orb::before {
  content: ""; width: 36px; height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff 0%, #4F8AFF 30%, transparent 70%);
  box-shadow: 0 0 24px #4F8AFF;
  animation: ecoPulse 2.4s ease-in-out infinite;
}
@keyframes ecoPulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.12); opacity: 1; }
}

.eco-flicker {
  position: absolute;
  top: 16px; right: 16px;
  width: 14px; height: 14px;
  border-radius: 4px;
  background: #fff;
  animation: ecoFlicker 1.4s steps(6) infinite;
  box-shadow: 0 0 12px currentColor;
}
@keyframes ecoFlicker {
  0%   { background: #FF5F57; color: #FF5F57; }
  16%  { background: #FEBC2E; color: #FEBC2E; }
  32%  { background: #28C840; color: #28C840; }
  48%  { background: #4F8AFF; color: #4F8AFF; }
  64%  { background: #a78bfa; color: #a78bfa; }
  80%  { background: #fff; color: #fff; }
  100% { background: #FF5F57; color: #FF5F57; }
}

/* 5. WATCH FACE */
.eco-watch-wrap {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  padding: 20px 0;
}
.eco-watch {
  position: relative;
  width: 260px; height: 310px;
  background: linear-gradient(160deg, #1B3168, #050B1E);
  border-radius: 56px;
  border: 4px solid #0A1530;
  box-shadow:
    0 30px 60px -25px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 -1px 0 rgba(0,0,0,0.4);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.eco-watch::before {
  content: ""; position: absolute;
  right: -8px; top: 35%;
  width: 14px; height: 36px;
  background: #1B3168;
  border-radius: 4px;
  border: 2px solid #0A1530;
}
.eco-watch::after {
  content: ""; position: absolute;
  right: -8px; top: 56%;
  width: 14px; height: 22px;
  background: #1B3168;
  border-radius: 4px;
  border: 2px solid #0A1530;
}
.eco-watch__face {
  position: relative;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, #122B5A 0%, #050B1E 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.eco-watch__orb {
  position: absolute;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff 0%, #6FA3FF 30%, #1E4D9B 70%, transparent 100%);
  box-shadow: 0 0 40px #6FA3FF;
}
.eco-watch__particles {
  position: absolute; inset: 0;
}
.eco-watch__particles span {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: #6FA3FF;
  box-shadow: 0 0 4px #6FA3FF;
  top: 50%; left: 50%;
  transform-origin: 0 0;
}
.eco-watch__time {
  position: absolute;
  top: 20px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.18em;
}
.eco-watch__state {
  position: absolute;
  bottom: 22px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: #5fd0a0;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(95, 208, 160, 0.16);
  border: 1px solid rgba(95, 208, 160, 0.3);
}

/* 6. BROWSER MOCKUP */
.eco-browser {
  position: relative;
  border-radius: 14px;
  background: var(--card);
  border: 1px solid var(--card-line);
  overflow: hidden;
  box-shadow: 0 30px 60px -28px rgba(0,0,0,0.35);
}
.eco-browser__chrome {
  padding: 10px 14px;
  background: var(--canvas-soft);
  border-bottom: 1px solid var(--card-line);
  display: flex; align-items: center; gap: 12px;
}
.eco-browser__lights { display: flex; gap: 6px; }
.eco-browser__lights span {
  display: block; width: 11px; height: 11px; border-radius: 50%;
}
.eco-browser__lights span:nth-child(1) { background: #FF5F57; }
.eco-browser__lights span:nth-child(2) { background: #FEBC2E; }
.eco-browser__lights span:nth-child(3) { background: #28C840; }
.eco-browser__tabs {
  display: flex; gap: 6px;
  margin-left: 8px;
}
.eco-browser__tab {
  padding: 5px 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--body);
  background: var(--card);
  border-radius: 7px 7px 0 0;
  border: 1px solid var(--card-line);
  border-bottom: none;
  text-transform: uppercase;
}
.eco-browser__tab.is-active { color: var(--accent-base); background: var(--card); font-weight: 600; }
.eco-browser__url {
  flex: 1;
  padding: 5px 12px;
  background: var(--card);
  border: 1px solid var(--card-line);
  border-radius: 8px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--body);
  display: flex; align-items: center; gap: 8px;
}
.eco-browser__url svg { width: 12px; height: 12px; color: #5fd0a0; }
.eco-browser__body {
  position: relative;
  min-height: 220px;
  padding: 20px;
  background:
    repeating-linear-gradient(0deg, transparent 0 30px, var(--canvas-soft) 30px 31px),
    var(--card);
}
.eco-browser__skeleton {
  display: grid;
  gap: 8px;
}
.eco-browser__skeleton div {
  height: 10px;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--canvas-soft), var(--card-line), var(--canvas-soft));
  background-size: 200% 100%;
  animation: ecoShimmer 2.4s linear infinite;
}
.eco-browser__skeleton div:nth-child(1) { width: 70%; }
.eco-browser__skeleton div:nth-child(2) { width: 92%; }
.eco-browser__skeleton div:nth-child(3) { width: 80%; }
.eco-browser__skeleton div:nth-child(4) { width: 60%; }
@keyframes ecoShimmer {
  to { background-position: -200% 0; }
}
.eco-ext-popup {
  position: absolute;
  top: 12px; right: 12px;
  width: 200px;
  background: var(--card);
  border: 1px solid var(--accent-base);
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 24px 40px -20px rgba(0,0,0,0.4);
}
.eco-ext-popup__head {
  display: flex; gap: 10px; align-items: center;
  margin-bottom: 8px;
}
.eco-ext-popup__head .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent-base);
  box-shadow: 0 0 8px var(--accent-base);
}
.eco-ext-popup__head b {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--headline);
  text-transform: uppercase;
}
.eco-ext-popup p {
  font-size: 12px;
  color: var(--body);
  line-height: 1.45;
  margin-bottom: 10px;
}
.eco-ext-popup__action {
  display: inline-flex;
  padding: 5px 10px;
  background: var(--accent-base);
  color: #fff;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  border-radius: 999px;
  text-transform: uppercase;
}

/* 7. ORB STAGE (Living Orb) */
.eco-orb-stage {
  position: relative;
  height: 360px;
  border-radius: 18px;
  background: radial-gradient(circle at 50% 50%, color-mix(in srgb, var(--accent-base) 12%, transparent), transparent 65%), linear-gradient(180deg, var(--card-soft), var(--card));
  border: 1px solid var(--card-line);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.eco-orb-stage::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(79,138,255,0.08), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(167,139,250,0.08), transparent 40%);
  pointer-events: none;
}
.eco-orb-big {
  position: relative;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff 0%, var(--accent-base) 30%, color-mix(in srgb, var(--accent-base) 40%, #000) 80%, transparent 100%);
  box-shadow: 0 0 80px color-mix(in srgb, var(--accent-base) 50%, transparent), inset 0 0 30px rgba(255,255,255,0.4);
}
.eco-orb-big::before,
.eco-orb-big::after {
  content: ""; position: absolute;
  border-radius: 50%;
  border: 1px dashed currentColor;
  color: color-mix(in srgb, var(--accent-base) 45%, transparent);
}
.eco-orb-big::before { inset: -22px; animation: ecoSpin 16s linear infinite; }
.eco-orb-big::after { inset: -50px; border-style: dotted; animation: ecoSpin 30s linear infinite reverse; opacity: 0.6; }

.eco-state-ring {
  position: absolute; inset: 0;
  pointer-events: none;
}
.eco-state {
  position: absolute;
  display: flex; flex-direction: column; align-items: center;
  gap: 6px;
  text-align: center;
  width: 90px;
}
.eco-state__dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  box-shadow: 0 0 14px currentColor;
}
.eco-state b {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--headline);
  text-transform: uppercase;
}
.eco-state span {
  font-size: 11px;
  color: var(--body);
}
.eco-state[data-state="idle"]      { top: 14%; left: 8%;  color: #E5E7EB; }
.eco-state[data-state="listening"] { top: 14%; right: 8%; color: #6FA3FF; }
.eco-state[data-state="speaking"]  { top: 50%; right: 0%; transform: translateY(-50%); color: #a78bfa; }
.eco-state[data-state="processing"]{ bottom: 14%; right: 8%; color: #4F8AFF; }
.eco-state[data-state="error"]     { bottom: 14%; left: 8%;  color: #F87171; }

/* 8. CHOREOGRAPHY FLOW */
.eco-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  padding: 28px 18px;
  background: linear-gradient(180deg, var(--card-soft), var(--card));
  border: 1px solid var(--card-line);
  border-radius: 18px;
  align-items: center;
}
.eco-flow__node {
  position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 14px 6px;
  text-align: center;
  z-index: 3;
}
.eco-flow__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--accent-soft);
  border: 1px solid color-mix(in srgb, var(--accent-base) 30%, transparent);
  color: var(--accent-base);
  display: flex; align-items: center; justify-content: center;
}
.eco-flow__icon svg { width: 22px; height: 22px; }
.eco-flow__node b {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--headline);
  text-transform: uppercase;
}
.eco-flow__line {
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 1px;
  background: repeating-linear-gradient(90deg, color-mix(in srgb, var(--accent-base) 40%, transparent) 0 6px, transparent 6px 12px);
  z-index: 1;
}
.eco-flow__dot {
  position: absolute;
  top: 50%;
  left: 10%;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-base);
  box-shadow: 0 0 12px var(--accent-base);
  transform: translate(-50%, -50%);
  z-index: 2;
}

.eco-wave {
  display: flex; align-items: center; gap: 4px;
  margin-top: 14px;
  padding: 14px 18px;
  border-radius: 12px;
  background: var(--card-soft);
  border: 1px solid var(--card-line);
}
.eco-wave__bar {
  width: 4px;
  border-radius: 2px;
  background: var(--accent-base);
  opacity: 0.7;
}
.eco-wave__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--mute);
  margin-right: 14px;
  text-transform: uppercase;
}

/* 9. WORKFORCE HUB */
.eco-hub {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}
.eco-hub svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  overflow: visible;
}
.eco-hub__center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 130px; height: 130px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--accent-base), color-mix(in srgb, var(--accent-base) 50%, #000));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 0 60px color-mix(in srgb, var(--accent-base) 40%, transparent);
  z-index: 3;
}
.eco-hub__center b {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.04em;
}
.eco-hub__center span {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
}
.eco-hub__node {
  position: absolute;
  display: flex; flex-direction: column; align-items: center;
  gap: 4px;
  width: 84px;
  padding: 10px 6px;
  background: var(--card);
  border: 1px solid var(--card-line);
  border-radius: 12px;
  z-index: 4;
  text-align: center;
}
.eco-hub__node svg { width: 20px; height: 20px; color: var(--accent-base); }
.eco-hub__node b {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--headline);
  text-transform: uppercase;
}

.eco-hub__node[data-pos="0"] { top: 0%;   left: 50%; transform: translate(-50%, 0); }
.eco-hub__node[data-pos="1"] { top: 30%;  right: 0; }
.eco-hub__node[data-pos="2"] { bottom: 8%; right: 12%; }
.eco-hub__node[data-pos="3"] { bottom: 8%; left: 12%; }
.eco-hub__node[data-pos="4"] { top: 30%;  left: 0; }

/* Accent variants - per section colour tint */
.eco-section[data-eco="mobile"]    { --eco-tint: #4F8AFF; }
.eco-section[data-eco="cli"]       { --eco-tint: #5fd0a0; }
.eco-section[data-eco="companion"] { --eco-tint: #a78bfa; }
.eco-section[data-eco="watch"]     { --eco-tint: #6FA3FF; }
.eco-section[data-eco="extension"] { --eco-tint: #F5B45A; }
.eco-section[data-eco="orb"]       { --eco-tint: #fff; }
.eco-section[data-eco="choreography"] { --eco-tint: #a78bfa; }
.eco-section[data-eco="workforce"] { --eco-tint: #4F8AFF; }

.eco-section .eco-tint-icon { color: var(--eco-tint, var(--accent-base)); }

/* Section header tag - the little pill on top of each surface block */
.eco-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--eco-tint, var(--accent-base)) 15%, transparent);
  border: 1px solid color-mix(in srgb, var(--eco-tint, var(--accent-base)) 35%, transparent);
  color: var(--eco-tint, var(--accent-base));
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eco-tag::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 6px currentColor;
}

@media (max-width: 700px) {
  .eco-phone { transform: none; width: 200px; height: 400px; }
  .eco-watch { width: 220px; height: 270px; }
  .eco-watch__face { width: 170px; height: 170px; }
  .eco-orb-stage { height: 320px; }
  .eco-orb-big { width: 160px; height: 160px; }
  .eco-state[data-state="speaking"] { right: -10px; }
  .eco-fact-row { grid-template-columns: 1fr 1fr; }
  .eco-flow { grid-template-columns: repeat(5, 1fr); padding: 18px 6px; gap: 4px; }
  .eco-flow__icon { width: 40px; height: 40px; }
  .eco-flow__node b { font-size: 8px; }
}
