/* ============================================================
   SYNE ONE — syne-styles.css
   Brand: #16C0EF (Sky Cyan) · All light backgrounds
   Aesthetic: Clean SaaS · Cyan-led · Crisp & modern
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&display=swap");

/* ── ROOT TOKENS ─────────────────────────────────────────── */
:root {
  /* Brand — #16C0EF led */
  --cyan: #16c0ef;
  --cyan-dark: #0ea5d4;
  --cyan-deep: #0885ae;
  --cyan-light: #4dd1f5;
  --cyan-pale: #e0f7fd;
  --cyan-xpale: #f0fbfe;
  --cyan-ghost: #f7fdff;

  /* Supporting palette — all light */
  --violet: #7c5cfc;
  --violet-dark: #6344e8;
  --violet-pale: #eee9ff;
  --violet-xpale: #f6f3ff;

  --emerald: #10b981;
  --emerald-dark: #059669;
  --emerald-pale: #d1fae5;
  --emerald-xpale: #ecfdf5;

  --amber: #f59e0b;
  --amber-dark: #d97706;
  --amber-pale: #fef3c7;
  --amber-xpale: #fffbeb;

  --coral: #f43f5e;
  --coral-dark: #e11d48;
  --coral-pale: #ffe4e6;
  --coral-xpale: #fff1f2;

  --indigo: #4f46e5;
  --indigo-dark: #4338ca;
  --indigo-pale: #e0e7ff;
  --indigo-xpale: #eef2ff;

  --sky: #0ea5e9;
  --sky-pale: #e0f2fe;
  --sky-xpale: #f0f9ff;

  --teal: #14b8a6;
  --teal-pale: #ccfbf1;
  --teal-xpale: #f0fdfa;

  --orange: #f97316;
  --orange-pale: #ffedd5;
  --orange-xpale: #fff7ed;

  /* ── Section backgrounds ── */
  --bg-white: #ffffff;
  --bg-ice: #f7fdff; /* ghost cyan tint */
  --bg-frost: #f0f8ff; /* alice blue */
  --bg-snow: #f8fafc;
  --bg-mist: #eff8fc; /* mid-cyan tint */
  --bg-lilac: #f6f3ff; /* violet tint */
  --bg-mint: #ecfdf5; /* emerald tint */
  --bg-cream: #fffbeb; /* amber tint */
  --bg-blush: #fff1f2; /* coral tint */

  /* ── Neutrals ── */
  --ink: #0a1628;
  --ink-mid: #1e3050;
  --text: #1a2b3c;
  --text-mid: #3b4f63;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --border: #e2ecf4;
  --border-mid: #cbd8e6;
  --white: #ffffff;

  /* ── Typography ── */
  --font: "Plus Jakarta Sans", system-ui, sans-serif;

  /* ── Radius ── */
  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-2xl: 32px;
  --r-3xl: 48px;
  --r-full: 999px;

  /* ── Shadows ── */
  --sh-xs: 0 1px 3px rgba(22, 192, 239, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --sh-sm: 0 2px 8px rgba(22, 192, 239, 0.08), 0 1px 4px rgba(0, 0, 0, 0.05);
  --sh-md: 0 6px 24px rgba(22, 192, 239, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
  --sh-lg: 0 16px 48px rgba(22, 192, 239, 0.14), 0 4px 16px rgba(0, 0, 0, 0.08);
  --sh-xl: 0 32px 80px rgba(22, 192, 239, 0.18), 0 8px 24px rgba(0, 0, 0, 0.1);
  --sh-cyan: 0 8px 32px rgba(22, 192, 239, 0.32);
  --sh-card: 0 1px 4px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(22, 192, 239, 0.07);

  /* ── Misc ── */
  --nav-h: 68px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur: 0.28s;
}

/* ── RESET ───────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}
body {
  font-family: var(--font);
  background: var(--bg-white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 16px;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

/* ── CONTAINER ───────────────────────────────────────────── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}
.container-sm {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── SECTION BG CLASSES ──────────────────────────────────── */
.bg-white {
  background: var(--bg-white);
}
.bg-ice {
  background: var(--bg-ice);
}
.bg-frost {
  background: var(--bg-frost);
}
.bg-snow {
  background: var(--bg-snow);
}
.bg-mist {
  background: var(--bg-mist);
}
.bg-lilac {
  background: var(--bg-lilac);
}
.bg-mint {
  background: var(--bg-mint);
}
.bg-cream {
  background: var(--bg-cream);
}
.bg-blush {
  background: var(--bg-blush);
}

/* ── SECTION STRIPE (top accent line) ───────────────────── */
.stripe-cyan {
  border-top: 2px solid var(--cyan-pale);
}
.stripe-violet {
  border-top: 2px solid var(--violet-pale);
}
.stripe-emerald {
  border-top: 2px solid var(--emerald-pale);
}
.stripe-amber {
  border-top: 2px solid var(--amber-pale);
}
.stripe-coral {
  border-top: 2px solid var(--coral-pale);
}
.stripe-indigo {
  border-top: 2px solid var(--indigo-pale);
}
.stripe-teal {
  border-top: 2px solid var(--teal-pale);
}

/* ── REVEAL ANIMATION ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.55s var(--ease),
    transform 0.55s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── BADGE PILLS ─────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: var(--r-full);
  margin-bottom: 16px;
}
.badge-cyan {
  background: var(--cyan-pale);
  color: var(--cyan-deep);
}
.badge-violet {
  background: var(--violet-pale);
  color: var(--violet-dark);
}
.badge-emerald {
  background: var(--emerald-pale);
  color: var(--emerald-dark);
}
.badge-amber {
  background: var(--amber-pale);
  color: var(--amber-dark);
}
.badge-coral {
  background: var(--coral-pale);
  color: var(--coral-dark);
}
.badge-indigo {
  background: var(--indigo-pale);
  color: var(--indigo-dark);
}
.badge-teal {
  background: var(--teal-pale);
  color: var(--teal);
}

/* ── SECTION INTRO ───────────────────────────────────────── */
.sec-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.sec-intro h2 {
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
  color: var(--ink);
  letter-spacing: -0.025em;
}
.sec-intro h2 em {
  font-style: italic;
  color: var(--cyan-dark);
}
.sec-intro p {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 11px 24px;
  border-radius: var(--r-md);
  border: 2px solid transparent;
  transition:
    transform var(--dur) var(--spring),
    box-shadow var(--dur),
    background var(--dur),
    color var(--dur),
    border-color var(--dur);
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--cyan);
  color: var(--white);
  box-shadow: var(--sh-cyan);
}
.btn-primary:hover {
  background: var(--cyan-dark);
  box-shadow: 0 12px 40px rgba(22, 192, 239, 0.4);
}

.btn-secondary {
  background: var(--white);
  color: var(--cyan-deep);
  border-color: var(--cyan-pale);
  box-shadow: var(--sh-xs);
}
.btn-secondary:hover {
  border-color: var(--cyan);
  background: var(--cyan-xpale);
}

.btn-ghost {
  background: transparent;
  color: var(--text-mid);
  border-color: var(--border);
}
.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan-deep);
  background: var(--cyan-xpale);
}

.btn-violet {
  background: var(--violet);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(124, 92, 252, 0.3);
}
.btn-violet:hover {
  background: var(--violet-dark);
}

.btn-emerald {
  background: var(--emerald);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(16, 185, 129, 0.25);
}
.btn-emerald:hover {
  background: var(--emerald-dark);
}

.btn-sm {
  font-size: 0.82rem;
  padding: 8px 18px;
}
.btn-lg {
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--r-lg);
}

/* ── FEATURE TAGS ────────────────────────────────────────── */
.tag {
  font-size: 0.67rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: var(--r-full);
}
.tag-cyan {
  background: var(--cyan-pale);
  color: var(--cyan-deep);
}
.tag-violet {
  background: var(--violet-pale);
  color: var(--violet-dark);
}
.tag-emerald {
  background: var(--emerald-pale);
  color: var(--emerald-dark);
}
.tag-amber {
  background: var(--amber-pale);
  color: var(--amber-dark);
}
.tag-coral {
  background: var(--coral-pale);
  color: var(--coral-dark);
}
.tag-indigo {
  background: var(--indigo-pale);
  color: var(--indigo-dark);
}
.tag-teal {
  background: var(--teal-pale);
  color: var(--teal);
}

/* ═══════════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════════ */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition:
    border-color var(--dur),
    box-shadow var(--dur);
}
.top-nav.scrolled {
  border-color: var(--border);
  box-shadow: var(--sh-sm);
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
  margin-right: 8px;
}
.nav-logo-svg {
  display: flex;
  align-items: center;
}
.nav-logo-svg svg {
  height: 24px;
  width: auto;
}
.nav-logo-tagline {
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  border-left: 1.5px solid var(--border);
  padding-left: 10px;
  line-height: 1.3;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1px;
  margin-left: auto;
  justify-content: flex-end;
}
.nav-links a {
  font-size: 0.845rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition:
    background var(--dur),
    color var(--dur);
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--cyan-pale);
  color: var(--cyan-deep);
}

/* Dropdown indicator */
.nav-drop {
  position: relative;
}
.nav-drop > a::after {
  content: " ⌄";
  font-size: 0.7rem;
  opacity: 0.6;
}

/* Nav CTA */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}
.btn-nav-login {
  font-size: 0.845rem;
  font-weight: 600;
  color: var(--text-mid);
  padding: 8px 16px;
  border-radius: var(--r-sm);
  transition:
    background var(--dur),
    color var(--dur);
}
.btn-nav-login:hover {
  background: var(--bg-frost);
  color: var(--cyan-deep);
}
.btn-nav-primary {
  font-size: 0.845rem;
  font-weight: 700;
  color: var(--white);
  background: var(--cyan);
  padding: 9px 20px;
  border-radius: var(--r-md);
  box-shadow: var(--sh-cyan);
  transition:
    background var(--dur),
    transform var(--dur),
    box-shadow var(--dur);
}
.btn-nav-primary:hover {
  background: var(--cyan-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(22, 192, 239, 0.4);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition:
    transform var(--dur),
    opacity var(--dur);
}

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  background: var(--bg-white);
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  flex-direction: column;
}

/* Subtle dot grid */
.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(
    circle,
    rgba(22, 192, 239, 0.18) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  opacity: 0.55;
}

/* Glows */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.hg1 {
  width: 700px;
  height: 700px;
  background: rgba(22, 192, 239, 0.12);
  top: -200px;
  right: -100px;
}
.hg2 {
  width: 500px;
  height: 500px;
  background: rgba(124, 92, 252, 0.08);
  top: 50px;
  left: -150px;
}
.hg3 {
  width: 400px;
  height: 400px;
  background: rgba(16, 185, 129, 0.07);
  bottom: 0;
  right: 200px;
}

/* Hero content */
.hero-layout {
  flex: 1;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 52px;
  padding: 72px 0 48px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cyan-pale);
  border: 1px solid rgba(22, 192, 239, 0.3);
  color: var(--cyan-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 6px 15px;
  border-radius: var(--r-full);
  margin-bottom: 22px;
}
.eyebrow-dot {
  width: 7px;
  height: 7px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(22, 192, 239, 0.22);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(22, 192, 239, 0.22);
  }
  50% {
    box-shadow: 0 0 0 9px rgba(22, 192, 239, 0.04);
  }
}

.hero-h1 {
  font-size: clamp(2.8rem, 4.4vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.h1-cyan {
  color: var(--cyan);
}
.h1-cyan-dark {
  color: var(--cyan-dark);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-pill-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-mid);
  background: var(--bg-frost);
  border: 1px solid var(--border);
  padding: 5px 11px;
  border-radius: var(--r-full);
}
.hero-pill span {
  font-size: 0.85rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero right — dashboard panel */
.hero-visual {
  position: relative;
}
.hero-dash {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 20px;
  box-shadow: var(--sh-xl);
  position: relative;
  overflow: hidden;
}
.hero-dash::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--cyan),
    var(--violet),
    var(--cyan-light)
  );
}
.hd-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.hd-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse 2.4s ease-in-out infinite;
}
.hd-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink);
}
.hd-live {
  margin-left: auto;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--emerald);
  display: flex;
  align-items: center;
  gap: 4px;
}
.hd-live::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--emerald);
  border-radius: 50%;
  display: block;
  animation: pulse-g 2.4s ease-in-out infinite;
}
@keyframes pulse-g {
  0%,
  100% {
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.04);
  }
}

/* KPI row */
.hd-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}
.hd-kpi {
  background: var(--bg-ice);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 13px;
  text-align: center;
}
.hdk-v {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
  color: var(--ink);
}
.hdk-v.c-cyan {
  color: var(--cyan);
}
.hdk-v.c-violet {
  color: var(--violet);
}
.hdk-v.c-emerald {
  color: var(--emerald);
}
.hdk-l {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-top: 3px;
}
.hdk-badge {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--emerald);
  background: var(--emerald-pale);
  padding: 1px 5px;
  border-radius: var(--r-full);
  margin-top: 3px;
}

/* Chart bars */
.hd-chart-label {
  font-size: 0.67rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 7px;
}
.hd-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 60px;
  margin-bottom: 14px;
}
.hdb {
  flex: 1;
  border-radius: 4px 4px 0 0;
  height: var(--h, 50%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 3px;
  transition: height 1s var(--ease);
}
.hdb span {
  font-size: 0.58rem;
  color: var(--text-muted);
}
.hdb-cyan {
  background: linear-gradient(
    180deg,
    var(--cyan-pale),
    rgba(22, 192, 239, 0.25)
  );
}
.hdb-cyan-solid {
  background: var(--cyan);
}
.hdb-cyan-solid span {
  color: rgba(255, 255, 255, 0.9);
}

/* Activity feed */
.hd-feed {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 13px;
}
.hdf-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-mid);
  padding: 7px 9px;
  background: var(--bg-frost);
  border-radius: var(--r-md);
}
.hdf-ico {
  width: 22px;
  height: 22px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}
.hdf-txt {
  flex: 1;
}
.hdf-t {
  font-size: 0.64rem;
  color: var(--text-light);
  flex-shrink: 0;
}

/* Status chip */
.hd-status {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--cyan-xpale);
  border: 1px solid rgba(22, 192, 239, 0.2);
  border-radius: var(--r-md);
  padding: 10px 13px;
}
.hds-icon {
  font-size: 1rem;
  flex-shrink: 0;
}
.hds-text {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--cyan-deep);
}
.hds-sub {
  font-size: 0.67rem;
  color: var(--cyan);
  margin-top: 1px;
}
.hds-badge {
  margin-left: auto;
  font-size: 0.64rem;
  font-weight: 700;
  color: var(--white);
  background: var(--cyan);
  padding: 2px 8px;
  border-radius: var(--r-full);
  flex-shrink: 0;
}

/* Floating chips on dashboard */
.dash-chip {
  position: absolute;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--sh-md);
  animation: floatChip ease-in-out infinite;
}
.dash-chip span {
  font-size: 0.95rem;
  flex-shrink: 0;
}
.chip1 {
  top: -16px;
  right: -12px;
  animation-duration: 5.5s;
}
.chip2 {
  bottom: 80px;
  right: -20px;
  animation-duration: 7s;
  animation-delay: 0.6s;
}
.chip3 {
  bottom: -14px;
  left: 20px;
  animation-duration: 6s;
  animation-delay: 1.1s;
}
@keyframes floatChip {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* Hero strip */
.hero-strip {
  background: var(--bg-ice);
  border-top: 1px solid var(--cyan-pale);
  padding: 24px 0;
  position: relative;
  z-index: 1;
}
.strip-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.strip-item {
  text-align: center;
  padding: 10px 40px;
}
.si-val {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  display: inline;
}
.si-unit {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cyan);
  display: inline;
}
.si-lbl {
  font-size: 0.67rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 500;
  display: block;
  margin-top: 2px;
}
.strip-sep {
  width: 1px;
  height: 34px;
  background: var(--border);
}

/* ═══════════════════════════════════════════════════════════
   PRODUCT MODULES OVERVIEW
═══════════════════════════════════════════════════════════ */
.modules-sec {
  padding: 96px 0;
}
.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.mod-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition:
    box-shadow var(--dur),
    transform var(--dur),
    border-color var(--dur);
}
.mod-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
}
.mod-card-wide {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}

.mod-top-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}
.mod-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.mod-icon svg {
  width: 24px;
  height: 24px;
}
.mod-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.3;
}
.mod-card p {
  font-size: 0.855rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}
.mod-tags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.mod-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 14px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--cyan-deep);
  border-bottom: 1.5px solid var(--cyan-pale);
  padding-bottom: 1px;
  transition:
    gap var(--dur),
    border-color var(--dur);
}
.mod-link:hover {
  gap: 9px;
  border-color: var(--cyan);
}

/* Wide card mini-dash */
.mod-mini-dash {
  background: var(--bg-frost);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 18px;
}
.mmd-row {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  background: var(--white);
  border-radius: var(--r-md);
  margin-bottom: 8px;
}
.mmd-row:last-child {
  margin-bottom: 0;
}
.mmd-ico {
  width: 28px;
  height: 28px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.mmd-lbl {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
  flex: 1;
}
.mmd-val {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
}
.mmd-badge {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: var(--r-full);
}

/* ═══════════════════════════════════════════════════════════
   FINANCE MODULE
═══════════════════════════════════════════════════════════ */
.finance-sec {
  padding: 96px 0;
}
.finance-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Finance panel */
.fin-panel {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.fin-panel-head {
  background: linear-gradient(135deg, var(--cyan-xpale), var(--bg-frost));
  border-bottom: 1.5px solid var(--border);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 11px;
}
.fph-icon {
  width: 36px;
  height: 36px;
  background: var(--cyan);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.fph-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
}
.fph-date {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 1px;
}
.fph-right {
  margin-left: auto;
  text-align: right;
}
.fph-bal {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}
.fph-lbl {
  font-size: 0.67rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.fin-panel-body {
  padding: 18px 22px;
}

.fin-kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.fin-kpi {
  background: var(--bg-frost);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 13px;
  text-align: center;
}
.fkv {
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1;
}
.fkl {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-top: 3px;
}
.fk-chg {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: var(--r-full);
  margin-top: 3px;
}
.fk-up {
  background: var(--emerald-pale);
  color: var(--emerald-dark);
}
.fk-dn {
  background: var(--coral-pale);
  color: var(--coral-dark);
}

.fin-tx-label {
  font-size: 0.67rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.fin-txs {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 14px;
}
.fin-tx {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: background var(--dur);
}
.fin-tx:hover {
  background: var(--bg-frost);
}
.ftx-ico {
  width: 30px;
  height: 30px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  flex-shrink: 0;
}
.ftx-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
}
.ftx-date {
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 1px;
}
.ftx-amt {
  margin-left: auto;
  font-size: 0.88rem;
  font-weight: 700;
}
.ftx-status {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: var(--r-full);
  margin-top: 2px;
  display: block;
  text-align: right;
}
.status-paid {
  background: var(--emerald-pale);
  color: var(--emerald-dark);
}
.status-pending {
  background: var(--amber-pale);
  color: var(--amber-dark);
}
.status-overdue {
  background: var(--coral-pale);
  color: var(--coral-dark);
}

.fin-chart-row {
  background: var(--bg-frost);
  border-radius: var(--r-lg);
  padding: 14px;
}
.fin-chart-l {
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-bottom: 9px;
  font-weight: 500;
}
.fin-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 48px;
}
.fcb {
  flex: 1;
  border-radius: 3px 3px 0 0;
  height: var(--h, 50%);
}
.fcb-in {
  background: var(--cyan);
  opacity: 0.85;
}
.fcb-out {
  background: var(--violet);
  opacity: 0.6;
}
.fcb-in.hi {
  opacity: 1;
}
.fcb-out.hi {
  opacity: 1;
}

/* Finance feature list */
.fin-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.ff-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.ff-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.ff-item h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
}
.ff-item p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════
   SUPPLIER & CUSTOMER MANAGEMENT
═══════════════════════════════════════════════════════════ */
.supplier-sec {
  padding: 96px 0;
}
.supplier-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.sup-card-stack {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.sup-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 18px 20px;
  overflow: hidden;
  transition:
    box-shadow var(--dur),
    transform var(--dur);
}
.sup-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-2px);
}

.sc-head {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 12px;
}
.sc-av {
  width: 38px;
  height: 38px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  flex-shrink: 0;
  color: var(--white);
}
.sc-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
}
.sc-type {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 1px;
}
.sc-status {
  margin-left: auto;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: var(--r-full);
}
.sc-active {
  background: var(--emerald-pale);
  color: var(--emerald-dark);
}
.sc-contract {
  background: var(--cyan-pale);
  color: var(--cyan-deep);
}
.sc-pending {
  background: var(--amber-pale);
  color: var(--amber-dark);
}

.sc-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}
.scm {
  background: var(--bg-frost);
  border-radius: var(--r-md);
  padding: 9px;
  text-align: center;
}
.scmv {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}
.scml {
  font-size: 0.63rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.sc-tags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

/* Smart contract chip */
.sc-contract-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--violet-pale);
  border: 1px solid rgba(124, 92, 252, 0.18);
  border-radius: var(--r-md);
  padding: 8px 12px;
  margin-top: 11px;
}
.scc-icon {
  font-size: 0.9rem;
  flex-shrink: 0;
}
.scc-text {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--violet-dark);
}
.scc-sub {
  font-size: 0.64rem;
  color: var(--violet);
  margin-top: 1px;
}
.scc-sign {
  margin-left: auto;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--white);
  background: var(--violet);
  padding: 3px 9px;
  border-radius: var(--r-full);
  flex-shrink: 0;
  white-space: nowrap;
  cursor: pointer;
}

.sup-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.sf-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  transition:
    box-shadow var(--dur),
    transform var(--dur);
}
.sf-item:hover {
  box-shadow: var(--sh-sm);
  transform: translateX(4px);
}
.sf-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.sf-item h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
}
.sf-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════
   PROCUREMENT
═══════════════════════════════════════════════════════════ */
.procurement-sec {
  padding: 96px 0;
}
.proc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.proc-panel {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.proc-panel-head {
  background: linear-gradient(135deg, var(--violet-pale), var(--bg-lilac));
  border-bottom: 1.5px solid var(--border);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pph-icon {
  width: 34px;
  height: 34px;
  background: var(--violet);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.pph-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
}
.pph-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 1px;
}
.pph-badge {
  margin-left: auto;
  font-size: 0.65rem;
  font-weight: 700;
  background: var(--violet);
  color: var(--white);
  padding: 3px 9px;
  border-radius: var(--r-full);
  flex-shrink: 0;
}
.proc-panel-body {
  padding: 16px 20px;
}

.proc-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
  margin-bottom: 14px;
}
.proc-kpi {
  background: var(--bg-frost);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px;
  text-align: center;
}
.pkv {
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}
.pkl {
  font-size: 0.62rem;
  color: var(--text-muted);
  margin-top: 3px;
}

.proc-rfx-label {
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 9px;
}
.proc-rfx-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 14px;
}
.rfx-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 11px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: background var(--dur);
}
.rfx-item:hover {
  background: var(--bg-frost);
}
.rfx-type {
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: var(--r-full);
  flex-shrink: 0;
}
.rfx-rfi {
  background: var(--cyan-pale);
  color: var(--cyan-deep);
}
.rfx-rfp {
  background: var(--violet-pale);
  color: var(--violet-dark);
}
.rfx-rfq {
  background: var(--amber-pale);
  color: var(--amber-dark);
}
.rfx-ro {
  background: var(--emerald-pale);
  color: var(--emerald-dark);
}
.rfx-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
  flex: 1;
}
.rfx-deadline {
  font-size: 0.68rem;
  color: var(--text-muted);
  flex-shrink: 0;
}
.rfx-status {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--r-full);
  flex-shrink: 0;
}
.rfx-active {
  background: var(--emerald-pale);
  color: var(--emerald-dark);
}
.rfx-draft {
  background: var(--amber-pale);
  color: var(--amber-dark);
}
.rfx-eval {
  background: var(--violet-pale);
  color: var(--violet-dark);
}

.proc-scores {
  background: var(--bg-frost);
  border-radius: var(--r-lg);
  padding: 13px;
}
.pcs-lbl {
  font-size: 0.67rem;
  color: var(--text-muted);
  margin-bottom: 9px;
  font-weight: 600;
}
.pcs-bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 7px;
}
.pcs-bar-row:last-child {
  margin-bottom: 0;
}
.pcs-name {
  font-size: 0.73rem;
  color: var(--text-mid);
  width: 100px;
  flex-shrink: 0;
}
.pcs-track {
  flex: 1;
  height: 5px;
  background: var(--border);
  border-radius: var(--r-full);
  overflow: hidden;
}
.pcs-fill {
  height: 100%;
  border-radius: var(--r-full);
  width: var(--w, 0%);
  transition: width 1.1s var(--ease);
}
.pcs-val {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ink);
  width: 28px;
  text-align: right;
}

.proc-features {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 28px;
}
.pf-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.pf-icon {
  width: 36px;
  height: 36px;
  background: var(--violet-pale);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  flex-shrink: 0;
}
.pf-row h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
}
.pf-row p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════
   ANALYTICS
═══════════════════════════════════════════════════════════ */
.analytics-sec {
  padding: 96px 0;
}
.analytics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.an-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition:
    box-shadow var(--dur),
    transform var(--dur);
}
.an-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
}
.an-card-wide {
  grid-column: span 2;
}
.an-head {
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 9px;
}
.an-head-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  flex-shrink: 0;
}
.an-head-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
}
.an-badge {
  margin-left: auto;
  font-size: 0.63rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--r-full);
}
.an-body {
  padding: 16px 18px;
}
.an-big-val {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 3px;
}
.an-chg {
  font-size: 0.72rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.an-chg-up {
  color: var(--emerald);
}
.an-chg-dn {
  color: var(--coral);
}
.an-sub-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.an-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 56px;
}
.anb {
  flex: 1;
  border-radius: 3px 3px 0 0;
  height: var(--h, 40%);
}
.an-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.an-list-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.alr-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.alr-name {
  font-size: 0.78rem;
  color: var(--text-mid);
  flex: 1;
}
.alr-val {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
}
.an-track {
  flex: 1;
  height: 4px;
  background: var(--border);
  border-radius: var(--r-full);
  overflow: hidden;
  margin: 0 6px;
}
.an-fill {
  height: 100%;
  border-radius: var(--r-full);
  width: var(--w, 50%);
}

/* Emissions card */
.an-emissions {
  background: var(--teal-xpale);
  border-color: var(--teal-pale);
}
.an-emissions .an-head {
  background: var(--teal-pale);
  border-color: rgba(20, 184, 166, 0.2);
}
.em-scope-row {
  display: flex;
  gap: 9px;
  margin-bottom: 11px;
}
.ems-item {
  flex: 1;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 9px;
  text-align: center;
  border: 1px solid rgba(20, 184, 166, 0.15);
}
.ems-lbl {
  font-size: 0.62rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.ems-val {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--teal);
  margin-top: 2px;
}
.ems-chg {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--emerald);
}

/* ═══════════════════════════════════════════════════════════
   MARKETPLACE
═══════════════════════════════════════════════════════════ */
.marketplace-sec {
  padding: 96px 0;
}
.mp-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.mp-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}
.mp-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 18px;
  transition:
    box-shadow var(--dur),
    transform var(--dur),
    border-color var(--dur);
}
.mp-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
  border-color: var(--cyan);
}
.mp-cat-icon {
  font-size: 1.5rem;
  margin-bottom: 9px;
}
.mp-cat-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.mp-cat-count {
  font-size: 0.73rem;
  color: var(--text-muted);
  margin-bottom: 9px;
}
.mp-cat-tags {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.mp-cat-tags span {
  font-size: 0.6rem;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: var(--r-full);
  background: var(--bg-frost);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.mp-content h2 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.18;
  letter-spacing: -0.025em;
}
.mp-content h2 em {
  font-style: italic;
  color: var(--cyan-dark);
}
.mp-content p {
  font-size: 0.975rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 26px;
}
.mp-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
}
.mpf {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.875rem;
  color: var(--text-mid);
}
.mpf::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--cyan);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   EMISSIONS SECTION
═══════════════════════════════════════════════════════════ */
.emissions-sec {
  padding: 96px 0;
}
.em-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.em-panel {
  background: var(--white);
  border: 1.5px solid var(--teal-pale);
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.emp-head {
  background: linear-gradient(135deg, var(--teal-xpale), var(--bg-mint));
  border-bottom: 1.5px solid var(--teal-pale);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.emph-icon {
  width: 34px;
  height: 34px;
  background: var(--teal);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.emph-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
}
.emph-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 1px;
}
.emp-body {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.emp-scope-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}
.eps-item {
  background: var(--teal-xpale);
  border: 1px solid rgba(20, 184, 166, 0.18);
  border-radius: var(--r-lg);
  padding: 12px;
  text-align: center;
}
.eps-label {
  font-size: 0.63rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.eps-val {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}
.eps-chg {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--emerald);
  margin-top: 2px;
}
.emp-supply {
  background: var(--bg-frost);
  border-radius: var(--r-lg);
  padding: 13px;
}
.eps-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 9px;
}
.emp-sup-rows {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.emp-sup-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.esr-name {
  font-size: 0.76rem;
  color: var(--text-mid);
  width: 110px;
  flex-shrink: 0;
}
.esr-track {
  flex: 1;
  height: 5px;
  background: var(--border);
  border-radius: var(--r-full);
  overflow: hidden;
}
.esr-fill {
  height: 100%;
  border-radius: var(--r-full);
  width: var(--w, 50%);
}
.esr-val {
  font-size: 0.73rem;
  font-weight: 700;
  color: var(--ink);
  width: 55px;
  text-align: right;
}
.emp-insight {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--emerald-pale);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--r-lg);
  padding: 11px 13px;
}
.emi-icon {
  font-size: 0.95rem;
  flex-shrink: 0;
}
.emi-text {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--emerald-dark);
}
.emi-sub {
  font-size: 0.67rem;
  color: var(--emerald);
  margin-top: 1px;
}
.emi-badge {
  margin-left: auto;
  font-size: 0.63rem;
  font-weight: 700;
  background: var(--emerald);
  color: var(--white);
  padding: 2px 8px;
  border-radius: var(--r-full);
  flex-shrink: 0;
}

.em-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.emf-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.emf-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.emf-item h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
}
.emf-item p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════
   INTEGRATIONS
═══════════════════════════════════════════════════════════ */
.integrations-sec {
  padding: 96px 0;
}
.int-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 28px;
}
.int-chip {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-full);
  padding: 9px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  transition:
    border-color var(--dur),
    box-shadow var(--dur),
    transform var(--dur);
}
.int-chip:hover {
  border-color: var(--cyan);
  box-shadow: var(--sh-sm);
  transform: translateY(-2px);
}
.int-chip span {
  font-size: 1rem;
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════ */
.testimonials-sec {
  padding: 96px 0;
}
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.test-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 26px;
  transition:
    box-shadow var(--dur),
    transform var(--dur);
}
.test-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
}
.test-card.featured {
  /* border-color: var(--cyan); */
  border-width: 2px;
  /* background: var(--cyan-xpale); */
}
.test-stars {
  color: var(--amber);
  font-size: 0.88rem;
  letter-spacing: 2px;
  margin-bottom: 13px;
}
.test-quote {
  font-size: 0.88rem;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 16px;
}
.test-author {
  display: flex;
  align-items: center;
  gap: 11px;
}
.ta-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.76rem;
  font-weight: 800;
  flex-shrink: 0;
  color: var(--white);
}
.ta-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
}
.ta-role {
  font-size: 0.73rem;
  color: var(--text-muted);
  margin-top: 1px;
}

/* ═══════════════════════════════════════════════════════════
   CTA
═══════════════════════════════════════════════════════════ */
.cta-sec {
  padding: 100px 28px;
  background: var(--bg-ice);
  border-top: 1.5px solid var(--cyan-pale);
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.cta-g1 {
  width: 500px;
  height: 500px;
  background: rgba(22, 192, 239, 0.12);
  top: -150px;
  right: -80px;
}
.cta-g2 {
  width: 400px;
  height: 400px;
  background: rgba(124, 92, 252, 0.09);
  bottom: -100px;
  left: -80px;
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.cta-inner h2 {
  font-size: clamp(2.2rem, 3.6vw, 3rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.12;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}
.cta-inner h2 em {
  font-style: italic;
  color: var(--cyan);
}
.cta-inner p {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.cta-note {
  font-size: 0.78rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.cta-note span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.cta-note span::before {
  content: "✓";
  color: var(--emerald);
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer {
  background: #f0f8ff;
  border-top: 1.5px solid var(--border);
  padding: 64px 0 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 72px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-top: 14px;
  margin-bottom: 20px;
}
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 9px;
}
.footer-logo-wrap svg {
  height: 22px;
  width: auto;
}
.footer-logo-tag {
  font-size: 0.48rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  border-left: 1.5px solid var(--border);
  padding-left: 9px;
  line-height: 1.3;
}
.footer-social {
  display: flex;
  gap: 9px;
}
.footer-social a {
  width: 32px;
  height: 32px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition:
    border-color var(--dur),
    color var(--dur),
    background var(--dur);
}
.footer-social a:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: var(--cyan-pale);
}
.footer-social svg {
  width: 14px;
  height: 14px;
}
.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.fl-col h5 {
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 14px;
}
.fl-col ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.fl-col a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--dur);
}
.fl-col a:hover {
  color: var(--cyan-dark);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--text-light);
}
.fl-legal {
  display: flex;
  gap: 18px;
}
.fl-legal a {
  color: var(--text-light);
  transition: color var(--dur);
}
.fl-legal a:hover {
  color: var(--cyan-dark);
}

/* ═══════════════════════════════════════════════════════════
   ECOSYSTEM SECTION
═══════════════════════════════════════════════════════════ */
.ecosystem-sec {
  padding: 96px 0;
}

.eco-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.eco-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 26px;
  position: relative;
  overflow: hidden;
  transition:
    box-shadow var(--dur),
    transform var(--dur),
    border-color var(--dur);
}
.eco-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
}

.eco-card-wide {
  grid-column: span 3;
}

.eco-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.eco-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.eco-icon svg {
  width: 24px;
  height: 24px;
}

.eco-card h3 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.3;
}
.eco-card p {
  font-size: 0.845rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}
.eco-tags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

/* Wide card inner layout */
.eco-wide-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
}

.eco-int-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.eco-int-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--bg-frost);
  border: 1.5px solid var(--border);
  border-radius: var(--r-full);
  padding: 7px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-mid);
  transition:
    border-color var(--dur),
    background var(--dur),
    transform var(--dur);
}
.eco-int-chip:hover {
  border-color: var(--cyan);
  background: var(--cyan-xpale);
  transform: translateY(-2px);
}
.eco-int-chip span {
  font-size: 0.95rem;
}

/* ═══════════════════════════════════════════════════════════
   DUAL LAYOUT (Buyers / Sellers / Traceability)
═══════════════════════════════════════════════════════════ */
.buyers-sec,
.sellers-sec,
.trace-sec {
  padding: 96px 0;
}

.dual-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.dual-layout-rev {
  direction: rtl;
}
.dual-layout-rev > * {
  direction: ltr;
}

.dual-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.dfl-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.dfl-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.dfl-item h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
}
.dfl-item p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Shared panel (buyer/seller/trace) */
.dual-panel {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.dp-head {
  padding: 16px 20px;
  border-bottom: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.dp-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  color: var(--white);
}
.dp-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
}
.dp-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 1px;
}
.dp-body {
  padding: 16px 20px;
}
.dp-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-bottom: 14px;
}
.dp-kpi {
  background: var(--bg-frost);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 11px;
  text-align: center;
}
.dpkv {
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1;
}
.dpkl {
  font-size: 0.63rem;
  color: var(--text-muted);
  margin-top: 3px;
}
.dp-label {
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.dp-rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dpr-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  background: var(--bg-frost);
  border-radius: var(--r-md);
}
.dpr-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dpr-name {
  font-size: 0.78rem;
  color: var(--text-mid);
  flex: 1;
  font-weight: 500;
}
.dpr-badge {
  font-size: 0.63rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: var(--r-full);
  flex-shrink: 0;
}
.dp-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 50px;
  background: var(--bg-frost);
  border-radius: var(--r-md);
  padding: 8px 10px 0;
}
.dpb {
  flex: 1;
  border-radius: 3px 3px 0 0;
  height: var(--h, 50%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 2px;
}
.dpb span {
  font-size: 0.56rem;
  color: var(--text-muted);
}
.dp-chip {
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 9px 12px;
  margin-top: 11px;
}
.dp-chip > span {
  font-size: 0.95rem;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   GREEN FINANCE
═══════════════════════════════════════════════════════════ */
.greenfinance-sec {
  padding: 96px 0;
}

.gf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gf-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition:
    box-shadow var(--dur),
    transform var(--dur);
}
.gf-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
}
.gfc-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}
.gfc-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 14px;
}
.gf-card h3 {
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.3;
}
.gf-card p {
  font-size: 0.845rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}
.gfc-stat {
  display: flex;
  align-items: baseline;
  gap: 7px;
}
.gfcs-v {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ink);
}
.gfcs-l {
  font-size: 0.73rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════
   SUPPLY CHAIN TRACEABILITY
═══════════════════════════════════════════════════════════ */
.trace-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
}
.ts-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  position: relative;
}
.ts-node {
  width: 38px;
  height: 38px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  border: 1.5px solid var(--border);
}
.ts-line {
  position: absolute;
  left: 18px;
  top: 38px;
  bottom: -14px;
  width: 2px;
  background: linear-gradient(to bottom, var(--border), transparent);
  z-index: 0;
}
.ts-item > div:last-child {
  padding: 6px 0 20px;
}
.ts-item h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
}
.ts-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Trace panel nodes */
.trace-nodes {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 13px;
}
.tn-row {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--bg-frost);
  transition: background var(--dur);
}
.tn-row:hover {
  background: var(--white);
}
.tn-line {
  width: 2px;
  height: 8px;
  background: var(--border);
  margin: 0 0 0 19px;
}
.tn-icon {
  width: 26px;
  height: 26px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}
.tn-step {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
}
.tn-det {
  font-size: 0.67rem;
  color: var(--text-muted);
  margin-top: 1px;
}
.tn-info {
  flex: 1;
}
.tn-ok {
  font-size: 0.75rem;
  color: var(--emerald);
  font-weight: 700;
  flex-shrink: 0;
}

.trace-scope {
  display: flex;
  gap: 8px;
  margin-bottom: 11px;
}
.tsc-item {
  flex: 1;
  background: var(--bg-frost);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.tsc-item span {
  font-size: 0.62rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.tsc-item strong {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--ink);
}

.trace-regs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.tr-badge {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: var(--r-full);
  background: var(--teal-pale);
  color: var(--teal);
  border: 1px solid rgba(20, 184, 166, 0.2);
}

/* ═══════════════════════════════════════════════════════════
   FULL MARKETPLACE SECTION
═══════════════════════════════════════════════════════════ */
.marketplace-full-sec {
  padding: 96px 0;
}

.mp-hero-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 72px;
}
.mp-hero-content h2 {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.15;
  letter-spacing: -0.025em;
}
.mp-hero-content h2 em {
  font-style: italic;
  color: var(--amber-dark);
}
.mp-hero-content p {
  font-size: 0.975rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}
.mp-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.mps-item {
  background: var(--bg-cream);
  border: 1px solid var(--amber-pale);
  border-radius: var(--r-lg);
  padding: 14px;
  text-align: center;
}
.mpsv {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}
.mpsl {
  font-size: 0.67rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Marketplace live panel */
.mp-live-panel {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.mplp-head {
  padding: 14px 18px;
  border-bottom: 1.5px solid var(--border);
  background: linear-gradient(135deg, var(--bg-cream), var(--amber-xpale));
  display: flex;
  align-items: center;
  gap: 9px;
}
.mplp-icon {
  width: 32px;
  height: 32px;
  background: var(--amber);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.mplp-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
}
.mplp-live {
  margin-left: auto;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--emerald);
  display: flex;
  align-items: center;
  gap: 4px;
}
.mplp-live::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--emerald);
  border-radius: 50%;
  animation: pulse-g 2.4s ease-in-out infinite;
}
.mplp-body {
  padding: 14px 18px;
}
.mplp-filters {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 13px;
}
.mpf-chip {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: var(--r-full);
  cursor: pointer;
  background: var(--bg-frost);
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  transition: all var(--dur);
}
.mpf-chip.active,
.mpf-chip:hover {
  background: var(--cyan-pale);
  border-color: var(--cyan);
  color: var(--cyan-deep);
}

.mplp-listings {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}
.mpl-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--bg-frost);
  transition:
    background var(--dur),
    box-shadow var(--dur),
    transform var(--dur);
}
.mpl-item:hover {
  background: var(--white);
  box-shadow: var(--sh-sm);
  transform: translateX(3px);
}
.mpl-ico {
  width: 34px;
  height: 34px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  flex-shrink: 0;
}
.mpl-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
}
.mpl-sup {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 1px;
}
.mpl-info {
  flex: 1;
}
.mpl-score {
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: var(--r-full);
  flex-shrink: 0;
}
.mpl-price {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--ink);
  flex-shrink: 0;
}
.mpl-cert {
  font-size: 0.6rem;
  color: var(--text-muted);
  margin-top: 1px;
  text-align: right;
}

.mplp-cats-label {
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 9px;
}
.mplp-cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.mplp-cat {
  background: var(--bg-frost);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 10px 8px;
  text-align: center;
  transition:
    border-color var(--dur),
    background var(--dur),
    transform var(--dur);
}
.mplp-cat:hover {
  border-color: var(--amber);
  background: var(--amber-xpale);
  transform: translateY(-2px);
}
.mpc-icon {
  font-size: 1.2rem;
  margin-bottom: 4px;
}
.mpc-name {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--ink);
}
.mpc-count {
  font-size: 0.6rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Category cards below marketplace panel */
.mp-cats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.mp-cat-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 20px 18px;
  transition:
    box-shadow var(--dur),
    transform var(--dur),
    border-color var(--dur);
  position: relative;
  overflow: hidden;
}
.mp-cat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--c, var(--cyan));
}
.mp-cat-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
  border-color: var(--cyan);
}
.mpcc-icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.mpcc-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.mpcc-count {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 9px;
}
.mpcc-tags {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.mpcc-tags span {
  font-size: 0.6rem;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: var(--r-full);
  background: var(--bg-frost);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .modules-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mod-card-wide {
    grid-column: span 2;
  }
  .eco-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .eco-card-wide {
    grid-column: span 2;
  }
  .eco-wide-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .analytics-grid {
    grid-template-columns: 1fr 1fr;
  }
  .an-card-wide {
    grid-column: span 2;
  }
  .test-grid {
    grid-template-columns: 1fr 1fr;
  }
  .proc-kpis {
    grid-template-columns: repeat(2, 1fr);
  }
  .gf-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mp-cats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mp-hero-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 900px) {
  .hero-layout,
  .finance-layout,
  .supplier-layout,
  .proc-layout,
  .mp-layout,
  .em-layout,
  .dual-layout,
  .mp-hero-row {
    grid-template-columns: 1fr;
  }
  .dual-layout-rev {
    direction: ltr;
  }
  .hero-visual,
  .fin-panel {
    display: none;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 14px;
    box-shadow: var(--sh-md);
  }
  .modules-grid {
    grid-template-columns: 1fr;
  }
  .mod-card-wide {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
  .eco-grid {
    grid-template-columns: 1fr;
  }
  .eco-card-wide {
    grid-column: span 1;
  }
  .eco-wide-inner {
    grid-template-columns: 1fr;
  }
  .analytics-grid {
    grid-template-columns: 1fr;
  }
  .an-card-wide {
    grid-column: span 1;
  }
  .mp-cards {
    grid-template-columns: 1fr;
  }
  .gf-grid {
    grid-template-columns: 1fr;
  }
  .mp-cats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .test-grid {
    grid-template-columns: 1fr;
  }
  .strip-sep {
    display: none;
  }
  .strip-item {
    padding: 8px 16px;
  }
  .footer-links-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mplp-cats {
    grid-template-columns: repeat(2, 1fr);
  }
  .mp-hero-stats {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .hero-pill-row {
    display: none;
  }
  .footer-links-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mp-cats-grid {
    grid-template-columns: 1fr;
  }
}
