/* WasteX Stream public site */
.wx-public {
  --ink: #14261f;
  --moss: #1f4d3a;
  --sage: #6f8f78;
  --copper: #c56a3c;
  --paper: #ffffff;
  --cream: #ffffff;
  --line: rgba(20, 38, 31, 0.1);
  background: #ffffff;
  color: var(--ink);
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-style: normal;
}

.wx-public em,
.wx-public i,
.wx-public .italic {
  font-style: normal !important;
}

.wx-public h1,
.wx-public h2,
.wx-public .wx-display {
  font-family: "Source Serif 4", Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: -0.012em;
}

.wx-kicker {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--moss);
}
.wx-kicker::before {
  display: none;
}
.wx-hero .wx-kicker,
.wx-band .wx-kicker {
  color: #d4b08c;
}

.wx-card {
  background: #ffffff;
  border: 1px solid rgba(20, 38, 31, 0.08);
  border-radius: 1.4rem;
  box-shadow: 0 4px 24px rgba(20, 38, 31, 0.06);
}

.wx-card-hover {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.wx-card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(20, 38, 31, 0.11);
  border-color: rgba(31, 77, 58, 0.18);
}

.wx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.2rem;
  border-radius: 999px;
  background: var(--moss);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 0;
  box-shadow: 0 14px 28px rgba(31, 77, 58, 0.18);
}
.wx-btn:hover { background: #16382b; color: #fff; transform: translateY(-2px); box-shadow: 0 18px 36px rgba(31, 77, 58, 0.24); }
.wx-btn.bg-copper {
  background: var(--copper) !important;
  color: #fff !important;
}
.wx-btn.bg-copper:hover { background: #a8562f !important; }

.wx-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  color: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
}
.wx-btn-ghost:hover { background: rgba(255,255,255,0.14); transform: translateY(-2px); }

.wx-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
}
.wx-btn-outline:hover { border-color: var(--moss); color: var(--moss); background: rgba(31, 77, 58, 0.04); transform: translateY(-2px); }

.wx-hero {
  background: #14261f;
  color: #ffffff;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

/* Pull the top-level hero under the fixed header (nested hero blocks should not overlap). */
.wx-public:not(.wx-app) main > .wx-hero,
.wx-public:not(.wx-app) main > div + .wx-hero {
  margin-top: -6rem;
  padding-top: 7.5rem;
}
.wx-hero h1,
.wx-hero h2,
.wx-band h1,
.wx-band h2 {
  color: #ffffff !important;
}
.wx-band p {
  color: rgba(255, 255, 255, 0.84) !important;
}

.wx-hero-orbs {
  display: block;
}
.wx-hero-orbs span {
  position: absolute;
  border-radius: 0.25rem;
  filter: blur(48px);
  opacity: 0.35;
  animation: wx-orb 9s ease-in-out infinite;
}
.wx-hero-orbs span:nth-child(1) {
  width: 22rem;
  height: 22rem;
  top: -6rem;
  right: -4rem;
  background: #3d7a5c;
}
.wx-hero-orbs span:nth-child(2) {
  width: 18rem;
  height: 18rem;
  bottom: -5rem;
  left: -3rem;
  background: #c56a3c;
  animation-delay: 2s;
}
.wx-hero-orbs span:nth-child(3) {
  width: 14rem;
  height: 14rem;
  top: 40%;
  left: 38%;
  background: #6f8f78;
  animation-delay: 4s;
}
@keyframes wx-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(24px, -36px) scale(1.08); }
  66% { transform: translate(-18px, 16px) scale(0.94); }
}

@keyframes wx-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes wx-slide-in {
  from { opacity: 0; transform: translateX(28px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes wx-fill {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.wx-anim,
.wx-anim-card {
  opacity: 0;
  animation: wx-rise 0.7s ease both;
  animation-delay: var(--wx-delay, 0s);
}
.wx-hero .wx-metric {
  animation: wx-rise 0.55s ease both;
}
.wx-hero .wx-metric:nth-child(1) { animation-delay: 0.4s; }
.wx-hero .wx-metric:nth-child(2) { animation-delay: 0.48s; }
.wx-hero .wx-metric:nth-child(3) { animation-delay: 0.56s; }
.wx-hero .wx-metric:nth-child(4) { animation-delay: 0.64s; }
.wx-hero .wx-progress {
  transform-origin: left center;
  animation: wx-fill 1.1s ease 0.9s both;
}
.wx-hero .wx-btn,
.wx-hero .wx-btn-ghost {
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}
.wx-hero .wx-btn:hover,
.wx-hero .wx-btn-ghost:hover {
  transform: translateY(-2px);
}
@media (prefers-reduced-motion: reduce) {
  .wx-hero-orbs span,
  .wx-anim,
  .wx-anim-card,
  .wx-hero .wx-metric,
  .wx-hero .wx-progress,
  .wx-stagger > * {
    animation: none;
    opacity: 1;
    transform: none;
  }
}


.wx-hero p { color: rgba(255, 255, 255, 0.78); }

.wx-hero .wx-card {
  color: var(--ink);
}
.wx-hero .wx-card p,
.wx-hero .wx-card span,
.wx-hero .wx-card strong,
.wx-hero .wx-card h3,
.wx-hero .wx-card h4 {
  color: var(--ink);
}
.wx-hero .wx-card .text-sage,
.wx-hero .wx-card .wx-metric span {
  color: var(--sage) !important;
}
.wx-hero .wx-card .text-copper {
  color: var(--copper) !important;
}
.wx-hero .wx-card .wx-chip-demo {
  color: #9a4e28;
}

.wx-band {
  background: var(--moss);
  color: #ffffff;
}

.wx-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.65rem;
  border-radius: 0.25rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wx-chip-now { background: #1f4d3a; color: #ffffff; }
.wx-chip-pilot { background: #c56a3c; color: #fff; }
.wx-chip-soon { background: #3d4a44; color: #ffffff; }
.wx-chip-demo { background: rgba(197, 106, 60, 0.12); color: #9a4e28; }

.wx-demo-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  background: rgba(197, 106, 60, 0.08);
  border-bottom: 1px solid var(--line);
  font-size: 0.8rem;
  color: #7a4a2e;
}

.wx-metric {
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: rgba(20, 38, 31, 0.03);
  border: 1px solid var(--line);
}
.wx-metric span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.35rem;
}
.wx-metric strong {
  font-family: "Source Serif 4", serif;
  font-size: 1.35rem;
  font-weight: 500;
  font-style: normal;
}

.wx-chart {
  position: relative;
  width: 100%;
  height: 220px;
}

.wx-step {
  position: relative;
  padding-left: 2.4rem;
}
.wx-step-num {
  position: absolute;
  left: 0;
  top: 0;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 0.25rem;
  background: var(--moss);
  color: #ffffff;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wx-process {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 0.375rem;
  padding: 1.2rem 1.15rem;
}
.wx-process .wx-step-num {
  position: static;
  margin-bottom: 0.75rem;
}

.wx-legal {
  max-width: 46rem;
}
.wx-legal h2 {
  font-size: 1.05rem;
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}
.wx-legal p,
.wx-legal li {
  color: rgba(20, 38, 31, 0.72);
  font-size: 0.95rem;
  line-height: 1.75;
}
.wx-legal ul {
  margin: 0.5rem 0 0;
  padding-left: 1.1rem;
  list-style: disc;
}
.wx-legal a { color: var(--moss); text-decoration: underline; }

.wx-public:not(.wx-app) header.wx-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0.75rem 1rem 0.75rem;
  background: #14261f;
  border: 0;
  transition: background 0.35s ease;
}
.wx-public:not(.wx-app):has(main > .wx-hero, main > div + .wx-hero) header.wx-nav {
  background: transparent;
}
.wx-public:not(.wx-app) header.wx-nav.wx-nav-scrolled,
.wx-public:not(.wx-app):has(main > .wx-hero, main > div + .wx-hero) header.wx-nav.wx-nav-scrolled {
  background: #14261f;
}
.wx-app header.wx-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0.75rem 1rem 0.75rem;
  background: #14261f;
  border: 0;
}

.wx-nav-shell {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 4.6rem;
  padding: 0.35rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  box-shadow: 0 18px 45px rgba(4, 11, 9, 0.22);
  backdrop-filter: blur(14px);
  animation: wx-nav-drop 0.55s ease both;
}
.wx-nav.wx-nav-scrolled .wx-nav-shell {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 44px rgba(4, 11, 9, 0.25);
  border-color: rgba(255, 255, 255, 0.12);
}

@keyframes wx-nav-drop {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

.wx-brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  background: transparent;
  border-radius: 0;
  padding: 0;
  text-decoration: none;
}
.wx-brand img {
  display: block;
  height: 3.1rem;
  width: auto;
  max-width: 15rem;
  object-fit: contain;
  background: transparent;
}
@media (min-width: 1024px) {
  .wx-brand img {
    height: 3.5rem;
    max-width: 17rem;
  }
}

.wx-foot-logo {
  display: inline-flex;
  background: transparent;
  border-radius: 0;
  padding: 0;
}
.wx-foot-logo img {
  display: block;
  height: 3.4rem;
  width: auto;
  max-width: 16rem;
  object-fit: contain;
  background: transparent;
}

.wx-rail {
  display: none;
  align-items: center;
  gap: 0.15rem;
  flex: 1;
  justify-content: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
@media (min-width: 1024px) {
  .wx-rail { display: flex; }
}

.wx-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.58rem 0.82rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
  opacity: 1;
}
.wx-link svg {
  width: 0.9rem;
  height: 0.9rem;
  flex-shrink: 0;
}
.wx-link::before,
.wx-link::after {
  display: none;
}
.wx-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}
.wx-link.is-active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
}

.wx-nav-actions {
  display: none;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .wx-nav-actions { display: flex; }
}
.wx-nav-login {
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
}
.wx-nav-login:hover { background: rgba(255, 255, 255, 0.12); }
.wx-nav-cta {
  padding: 0.5rem 0.95rem;
  font-size: 0.84rem;
}

.wx-burger {
  margin-left: auto;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .wx-burger { display: none; }
}

.wx-mobile {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0.9rem 0.5rem 1rem;
  border-radius: 1.5rem;
  background: rgba(20, 38, 31, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(5, 11, 9, 0.28);
  backdrop-filter: blur(14px);
}
.wx-mobile a {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 0.9rem;
  border-radius: 0.9rem;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
}
.wx-mobile a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transform: translateX(4px);
}
.wx-mobile a.is-active {
  background: #c56a3c;
  color: #ffffff;
}
.wx-mobile .wx-btn {
  margin-top: 0.4rem;
  width: 100%;
}

footer.wx-foot {
  position: relative;
  overflow: hidden;
  background: #0c1812;
  color: #ffffff;
  margin-top: 5rem;
  border-radius: 0;
}
footer.wx-foot::before {
  display: none;
}
.wx-foot-wave {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: translateY(-100%);
}
.wx-foot-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}
.wx-foot-top {
  padding: 3.5rem 0 2.5rem;
  position: relative;
  z-index: 1;
}
footer.wx-foot p,
footer.wx-foot li,
footer.wx-foot a,
footer.wx-foot span {
  color: rgba(255, 255, 255, 0.78) !important;
}
footer.wx-foot h3 {
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 0.72rem !important;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e8b089 !important;
  margin-bottom: 1.2rem;
}
footer.wx-foot ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer.wx-foot li {
  margin-bottom: 0.65rem;
}
footer.wx-foot li a {
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
footer.wx-foot .wx-foot-muted {
  color: rgba(255, 255, 255, 0.45) !important;
}
footer.wx-foot a:hover {
  color: #e8b089 !important;
}
footer.wx-foot .wx-foot-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff !important;
  font-size: 0.75rem;
}
footer.wx-foot .wx-foot-status::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.2);
}
.wx-foot-social {
  display: flex;
  gap: 0.5rem;
}
.wx-foot-social a {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.wx-foot-social a:hover {
  background: rgba(197, 106, 60, 0.15);
  border-color: rgba(197, 106, 60, 0.4);
}
.wx-foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
}
.wx-foot-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.2rem 0;
}
.wx-foot-mail {
  display: inline-flex;
  color: #e8b089 !important;
  font-size: 0.85rem;
  text-decoration: none;
}

.wx-timeline {
  position: relative;
  list-style: none;
  margin: 3.5rem auto 0;
  padding: 0.75rem 0 1.25rem;
  max-width: 64rem;
}
.wx-timeline::before {
  content: "";
  position: absolute;
  left: 1.35rem;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 3px;
  border-radius: 99px;
  background: #1f4d3a;
  box-shadow: none;
}
.wx-timeline::after {
  content: "";
  position: absolute;
  left: 1.35rem;
  top: 0.4rem;
  width: 3px;
  height: 4.5rem;
  border-radius: 99px;
  background: rgba(255,255,255,0.6);
  animation: wx-tl-travel 4.2s ease-in-out infinite;
  z-index: 1;
}
@keyframes wx-tl-travel {
  0% { top: 0.4rem; opacity: 0; }
  12% { opacity: 0.9; }
  88% { opacity: 0.9; }
  100% { top: calc(100% - 5rem); opacity: 0; }
}
.wx-tl-item {
  position: relative;
  padding: 0 0 2.4rem 4.4rem;
}
.wx-tl-item:last-child { padding-bottom: 0; }
.wx-tl-node {
  position: absolute;
  left: 0.28rem;
  top: 1.15rem;
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #14261f;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border: 2px solid #c56a3c;
  box-shadow: 0 0 0 7px rgba(197, 106, 60, 0.12), 0 10px 22px rgba(20, 38, 31, 0.16);
  z-index: 2;
  animation: wx-tl-ring 2.8s ease-out infinite;
}
.wx-tl-item:nth-child(2) .wx-tl-node {
  border-color: var(--moss);
  box-shadow: 0 0 0 7px rgba(31, 77, 58, 0.12), 0 10px 22px rgba(20, 38, 31, 0.16);
  animation-delay: 0.4s;
}
.wx-tl-item:nth-child(3) .wx-tl-node {
  border-color: var(--sage);
  box-shadow: 0 0 0 7px rgba(111, 143, 120, 0.16), 0 10px 22px rgba(20, 38, 31, 0.16);
  animation-delay: 0.8s;
}
.wx-tl-item:nth-child(4) .wx-tl-node {
  border-color: #d7b07a;
  box-shadow: 0 0 0 7px rgba(215, 176, 122, 0.18), 0 10px 22px rgba(20, 38, 31, 0.16);
  animation-delay: 1.2s;
}
@keyframes wx-tl-ring {
  0% { box-shadow: 0 0 0 0 rgba(197, 106, 60, 0.28), 0 10px 22px rgba(20, 38, 31, 0.16); }
  70% { box-shadow: 0 0 0 14px rgba(197, 106, 60, 0), 0 10px 22px rgba(20, 38, 31, 0.16); }
  100% { box-shadow: 0 0 0 0 rgba(197, 106, 60, 0), 0 10px 22px rgba(20, 38, 31, 0.16); }
}
.wx-tl-year {
  display: inline-block;
  margin-bottom: 0.55rem;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
}
.wx-tl-tag {
  margin: 0 0 0.45rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
}
.wx-tl-card {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(20, 38, 31, 0.08);
  border-radius: 1.2rem;
  padding: 1.25rem 1.35rem 1.3rem;
  box-shadow: 0 16px 38px rgba(20, 38, 31, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.wx-tl-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--copper);
}
.wx-tl-item:nth-child(2) .wx-tl-card::before { background: var(--moss); }
.wx-tl-item:nth-child(3) .wx-tl-card::before { background: var(--sage); }
.wx-tl-item:nth-child(4) .wx-tl-card::before { background: #d7b07a; }
.wx-tl-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(20, 38, 31, 0.12);
  border-color: rgba(31, 77, 58, 0.16);
}
.wx-tl-card h3 {
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  font-style: normal;
  letter-spacing: -0.01em;
  margin: 0;
}
.wx-tl-card p:not(.wx-tl-tag) {
  margin: 0.5rem 0 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(20, 38, 31, 0.7);
}

@media (min-width: 900px) {
  .wx-timeline::before,
  .wx-timeline::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .wx-tl-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 5.5rem;
    padding: 0 0 3rem;
    min-height: 8.25rem;
  }
  .wx-tl-node {
    left: 50%;
    top: 1.35rem;
    transform: translateX(-50%);
  }
  .wx-tl-item:nth-child(odd) .wx-tl-body {
    grid-column: 1;
    text-align: right;
  }
  .wx-tl-item:nth-child(odd) .wx-tl-card::before {
    left: auto;
    right: 0;
  }
  .wx-tl-item:nth-child(even) .wx-tl-body {
    grid-column: 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wx-timeline::after,
  .wx-tl-node {
    animation: none;
  }
}

.wx-stagger > * {
  opacity: 0;
  animation: wx-rise 0.65s ease both;
}
.wx-stagger > *:nth-child(1) { animation-delay: 0.05s; }
.wx-stagger > *:nth-child(2) { animation-delay: 0.12s; }
.wx-stagger > *:nth-child(3) { animation-delay: 0.19s; }
.wx-stagger > *:nth-child(4) { animation-delay: 0.26s; }
.wx-stagger > *:nth-child(5) { animation-delay: 0.33s; }
.wx-stagger > *:nth-child(6) { animation-delay: 0.4s; }

.wx-public .wx-card {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.wx-public .wx-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px rgba(20, 38, 31, 0.1);
  border-color: rgba(31, 77, 58, 0.18);
}

.wx-cap-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
}
@media (min-width: 640px) {
  .wx-cap-list { grid-template-columns: 1fr 1fr; }
}
.wx-cap-list li {
  position: relative;
  padding: 0.7rem 0.85rem 0.7rem 2.1rem;
  border-radius: 0.85rem;
  background: #f4f7f5;
  font-size: 0.9rem;
}
.wx-cap-list li::before {
  content: "";
  position: absolute;
  left: 0.8rem;
  top: 1rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 99px;
  background: var(--copper);
}

.wx-flow {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .wx-flow {
    grid-template-columns: repeat(5, 1fr);
    gap: 0.75rem;
  }
}
.wx-process {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0.375rem;
  padding: 1.25rem 1.1rem 1.2rem;
  height: 100%;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.wx-process:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(20, 38, 31, 0.08);
}

.wx-band .wx-btn {
  animation: wx-rise 0.7s ease 0.15s both;
}

.wx-form input,
.wx-form select,
.wx-form textarea {
  border: 1px solid var(--line) !important;
  border-radius: 0.85rem !important;
  background: #ffffff !important;
  color: var(--ink);
}
.wx-form input:focus,
.wx-form select:focus,
.wx-form textarea:focus {
  border-color: var(--moss) !important;
  outline: 2px solid rgba(31, 77, 58, 0.15) !important;
}
.wx-form input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  accent-color: var(--moss);
  border-radius: 0.25rem !important;
}

.wx-grain {
  display: none;
}

.wx-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.wx-mark {
  display: inline-flex;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1;
  color: var(--copper);
  letter-spacing: -0.04em;
}

.wx-feature {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.wx-feature::after {
  content: "";
  position: absolute;
  inset: auto -12% -55% auto;
  width: 16rem;
  height: 16rem;
  border-radius: 999px;
  background: rgba(197, 106, 60, 0.06);
  border-radius: 999px;
  pointer-events: none;
}
.wx-feature-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.35rem;
}
.wx-feature.is-soon {
  border-style: dashed;
  background: #f8faf9;
}

.wx-stat {
  padding: 1.15rem 1.2rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(20, 38, 31, 0.08);
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(20, 38, 31, 0.06);
}
.wx-stat strong {
  display: block;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--moss);
}
.wx-stat span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: rgba(20, 38, 31, 0.68);
}
.wx-hero .wx-stat,
.wx-band .wx-stat {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  box-shadow: none;
}
.wx-hero .wx-stat strong,
.wx-band .wx-stat strong {
  color: #ffffff;
}
.wx-hero .wx-stat span,
.wx-band .wx-stat span {
  color: rgba(255, 255, 255, 0.74);
}

.wx-learn {
  min-height: 5.5rem;
  display: flex;
  align-items: flex-end;
  padding: 1.15rem 1.2rem;
  font-size: 0.95rem;
  font-weight: 500;
  background: #ffffff;
}

.wx-topic-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.5rem 1.5rem;
  border-radius: 1.25rem;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 4px 20px rgba(20,38,31,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}
.wx-topic-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--tc-accent, #1f4d3a);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.wx-topic-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(20,38,31,0.10);
  border-color: rgba(31,77,58,0.18);
}
.wx-topic-card:hover::before { opacity: 1; }
.wx-topic-icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 0.85rem;
  background: var(--tc-wash, #e8f0ec);
  color: var(--tc-accent, #1f4d3a);
  margin-bottom: 1rem;
  transition: transform 0.25s ease;
}
.wx-topic-card:hover .wx-topic-icon { transform: scale(1.1) rotate(-4deg); }
.wx-topic-card h3 {
  font-size: 1.05rem;
  font-weight: 650;
  margin: 0 0 0.4rem;
  color: var(--ink);
}
.wx-topic-card p {
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(20,38,31,0.65);
  margin: 0;
  flex: 1;
}
.wx-topic-tag {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.2rem 0.65rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 999px;
  background: var(--tc-wash, #e8f0ec);
  color: var(--tc-accent, #1f4d3a);
}

.wx-status-col {
  border-top: 4px solid var(--moss);
}
.wx-status-col.is-pilot { border-top-color: var(--copper); }
.wx-status-col.is-soon { border-top-color: #8aa090; }

.wx-avatar {
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 0.375rem;
  background: #1f4d3a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.wx-scope {
  border: 1px solid rgba(197, 106, 60, 0.28);
  background: #fff;
}

.wx-mission {
  background: #1f4d3a;
  color: #fff;
}
.wx-mission h2,
.wx-mission p { color: #fff; }
.wx-mission p { color: rgba(255, 255, 255, 0.82); }

.wx-flow {
  position: relative;
}
@media (min-width: 768px) {
  .wx-flow::before {
    content: "";
    position: absolute;
    top: 1.65rem;
    left: 6%;
    right: 6%;
    height: 2px;
    background: #1f4d3a;
    opacity: 0.25;
  }
}
.wx-process {
  position: relative;
  z-index: 1;
}

.wx-num-card .wx-mark {
  display: block;
  margin-bottom: 0.85rem;
}

.wx-band {
  position: relative;
}

/* Learning — always loaded (module is public + authenticated) */
.wx-btn-sm {
  padding: 0.42rem 0.8rem;
  font-size: 0.78rem;
}
.wx-course {
  max-width: 56rem;
  margin: 0 auto;
  padding: 2rem 0 4rem;
}
.wx-course .wx-kicker { color: #c56a3c; }
.wx-learn-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
  padding: 1.65rem 1.7rem;
  border-radius: 1.35rem;
  color: #fff;
  isolation: isolate;
  background: #14261f;
  animation: wx-learn-in 0.55s ease;
}
.wx-learn-blob {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(18px);
  pointer-events: none;
  animation: wx-learn-float 6.5s ease-in-out infinite;
}
.wx-learn-blob:nth-child(1) {
  width: 9rem;
  height: 9rem;
  top: -2.4rem;
  right: 6rem;
  background: rgba(255, 214, 170, 0.55);
}
.wx-learn-blob:nth-child(2) {
  width: 7rem;
  height: 7rem;
  bottom: -2rem;
  left: 18%;
  background: rgba(120, 210, 180, 0.4);
  animation-delay: -2.4s;
}
.wx-learn-hero > :not(.wx-learn-blob) { position: relative; z-index: 1; }
.wx-public .wx-learn-hero h1,
.wx-app .wx-learn-hero h1,
.wx-learn-hero h1 {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-size: 1.9rem;
  margin: 0.25rem 0 0.45rem;
}
.wx-public .wx-learn-hero p,
.wx-app .wx-learn-hero p,
.wx-learn-hero p {
  margin: 0;
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 0.95rem;
  line-height: 1.5;
}
.wx-learn-hero .wx-kicker { color: #ffe1c4 !important; }
.wx-learn-ring {
  --p: 0;
  position: relative;
  width: 7.6rem;
  height: 7.6rem;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(#ffd7b0 calc(var(--p) * 1%), rgba(255,255,255,0.2) 0);
  box-shadow: 0 0 0 6px rgba(255,255,255,0.12), 0 12px 28px rgba(0,0,0,0.18);
  animation: wx-learn-pop 0.7s cubic-bezier(0.22, 1, 0.36, 1), wx-learn-glow 2.4s ease-in-out infinite;
}
.wx-learn-ring::before {
  content: "";
  position: absolute;
  inset: 0.72rem;
  border-radius: 50%;
  background: #16382b;
}
.wx-learn-ring strong {
  position: relative;
  z-index: 1;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: #fff;
}
.wx-learn-progress {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
  padding: 0.95rem 1.15rem;
  border-radius: 1rem;
  background: #f3f7f5;
  border: 1px solid var(--line);
  animation: wx-learn-in 0.55s ease;
}
.wx-learn-progress .wx-progress {
  flex: 1;
  height: 0.75rem;
  animation: none;
  transform: none;
  background: #e8eee9;
  border-radius: 999px;
  overflow: hidden;
}
.wx-learn-progress .wx-progress > i,
.wx-learn-progress .wx-progress > span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #1f4d3a;
  transition: width 1s ease;
}
.wx-learn-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 720px) {
  .wx-learn-grid { grid-template-columns: 1fr 1fr; }
}
.wx-learn-card {
  --accent: #1f4d3a;
  --wash: #e8f0ec;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.2rem 1.25rem 1.15rem;
  border-radius: 1.15rem;
  border: 1px solid color-mix(in srgb, var(--accent) 28%, #fff);
  border-left: 7px solid var(--accent);
  background: var(--wash, #f3f7f5);
  box-shadow: 0 10px 24px rgba(20, 38, 31, 0.05);
  animation: wx-learn-up 0.55s ease backwards;
  animation-delay: calc(var(--d, 0) * 0.1s);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.wx-learn-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(20, 38, 31, 0.12);
}
.wx-learn-card:nth-child(5n+1) { --accent: #1f4d3a; --wash: #dcefe4; }
.wx-learn-card:nth-child(5n+2) { --accent: #c56a3c; --wash: #f8e6dc; }
.wx-learn-card:nth-child(5n+3) { --accent: #2f6f8f; --wash: #d9eef8; }
.wx-learn-card:nth-child(5n+4) { --accent: #5a7d3c; --wash: #e5f3cf; }
.wx-learn-card:nth-child(5n+5) { --accent: #9a4e28; --wash: #f4e0d4; }
.wx-learn-card.is-locked {
  filter: saturate(0.55);
  opacity: 0.78;
}
.wx-learn-card.is-locked:hover { transform: none; }
.wx-learn-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.7rem;
}
.wx-learn-num {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.75rem;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  animation: wx-learn-pop 0.55s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  animation-delay: calc(var(--d, 0) * 0.1s + 0.12s);
}
.wx-learn-status {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: #fff;
  color: var(--accent);
}
.wx-learn-card h2 {
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0;
  color: var(--ink);
}
.wx-learn-card p {
  margin: 0.4rem 0 0;
  font-size: 0.88rem;
  color: rgba(20, 38, 31, 0.68);
  line-height: 1.45;
}
.wx-learn-meta {
  margin-top: 0.55rem !important;
  font-size: 0.8rem !important;
  font-weight: 600;
  color: var(--accent) !important;
}
.wx-learn-card .wx-course-actions {
  margin-top: auto;
  padding-top: 1rem;
}
.wx-learn-card .wx-btn {
  background: var(--accent);
}
.wx-learn-card .wx-btn:hover { filter: brightness(0.92); }
.wx-course-head {
  margin-bottom: 1.5rem;
  padding: 1.3rem 1.4rem;
  border-radius: 1.15rem;
  background: #e8f0ec;
  border: 1px solid var(--line);
  animation: wx-learn-in 0.5s ease;
}
.wx-course-head h1 {
  font-size: 1.75rem;
  margin: 0.2rem 0 0.4rem;
}
.wx-course-head p {
  margin: 0;
  color: rgba(20, 38, 31, 0.68);
  font-size: 0.95rem;
  line-height: 1.5;
}
.wx-course-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.9rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1f4d3a;
  text-decoration: none;
}
.wx-course-back:hover { color: #c56a3c; }
.wx-course-article {
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(20, 38, 31, 0.88);
  white-space: pre-line;
  padding: 1.25rem 1.35rem;
  border-radius: 1.1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 6px solid #1f4d3a;
  animation: wx-learn-up 0.5s ease;
}
.wx-course-note {
  margin-top: 1rem;
  padding: 1.1rem 1.25rem;
  border-radius: 1.1rem;
  animation: wx-learn-up 0.55s ease;
}
.wx-course-note.is-ideas {
  background: #d9eef8;
  border: 1px solid #b5d6e6;
}
.wx-course-note.is-fun {
  background: #f8e6dc;
  border: 1px solid #ebc9b4;
}
.wx-course-note h3 {
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 0 0.65rem;
}
.wx-course-note ul {
  margin: 0;
  padding-left: 1.15rem;
}
.wx-course-note li {
  margin: 0.4rem 0;
  font-size: 0.95rem;
  line-height: 1.55;
}
.wx-quiz-q {
  padding: 1.15rem 1.2rem;
  margin-bottom: 0.85rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  animation: wx-learn-up 0.45s ease backwards;
  animation-delay: calc(var(--d, 0) * 0.08s);
}
.wx-quiz-q h3 {
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0;
  margin: 0 0 0.55rem;
}
.wx-quiz-opt {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.75rem 0.85rem;
  margin-top: 0.45rem;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  cursor: pointer;
  font-size: 0.95rem;
  background: #f7faf8;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.wx-quiz-opt:hover {
  border-color: #1f4d3a;
  background: #e8f0ec;
  transform: translateX(6px);
}
.wx-quiz-opt:has(input:checked) {
  border-color: #c56a3c;
  background: #f8eee8;
  box-shadow: 0 0 0 3px rgba(197, 106, 60, 0.18);
}
.wx-quiz-opt input { width: auto; margin: 0.15rem 0 0; accent-color: #c56a3c; }
.wx-course-foot {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1.35rem;
}
.wx-learn-score {
  text-align: center;
  padding: 1.75rem 1rem 1.4rem;
  border-radius: 1.25rem;
  margin-bottom: 1.25rem;
  animation: wx-learn-pop 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.wx-learn-score.is-pass {
  background: #dcefe4;
  border: 1px solid #b7d4c4;
}
.wx-learn-score.is-retry {
  background: linear-gradient(180deg, #f8e6dc, #fff);
  border: 1px solid #ebc9b4;
}
.wx-learn-score strong {
  display: block;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 3.2rem;
  line-height: 1;
  color: #1f4d3a;
}
.wx-learn-score.is-retry strong { color: #c56a3c; }
.wx-learn-score span {
  display: block;
  margin-top: 0.45rem;
  font-weight: 600;
}
.wx-learn-board tr { animation: wx-learn-in 0.4s ease backwards; }
.wx-learn-board tr:nth-child(1) { animation-delay: 0.05s; }
.wx-learn-board tr:nth-child(2) { animation-delay: 0.1s; }
.wx-learn-board tr:nth-child(3) { animation-delay: 0.15s; }
.wx-learn-rank {
  display: inline-grid;
  place-items: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 0.5rem;
  background: #e8f0ec;
  color: #1f4d3a;
  font-weight: 700;
}
.wx-learn-rank.is-1 { background: #c56a3c; color: #fff; }
.wx-learn-rank.is-2 { background: #1f4d3a; color: #fff; }
.wx-learn-rank.is-3 { background: #2f6f8f; color: #fff; }
.wx-course-actions {
  display: flex;
  gap: 0.45rem;
  flex-shrink: 0;
}
@keyframes wx-learn-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
@keyframes wx-learn-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
@keyframes wx-learn-pop {
  from { opacity: 0; transform: scale(0.86); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes wx-learn-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes wx-learn-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(12px, -10px) scale(1.08); }
}
@keyframes wx-learn-glow {
  0%, 100% { box-shadow: 0 0 0 6px rgba(255,255,255,0.12), 0 12px 28px rgba(0,0,0,0.18); }
  50% { box-shadow: 0 0 0 10px rgba(255, 215, 170, 0.28), 0 16px 32px rgba(197, 106, 60, 0.28); }
}
@media (max-width: 640px) {
  .wx-learn-hero { padding: 1.2rem; }
  .wx-learn-card .wx-course-actions { flex-wrap: wrap; }
}
@media (prefers-reduced-motion: reduce) {
  .wx-learn-hero,
  .wx-learn-blob,
  .wx-learn-ring,
  .wx-learn-card,
  .wx-learn-num,
  .wx-learn-progress,
  .wx-learn-progress .wx-progress > i,
  .wx-learn-progress .wx-progress > span,
  .wx-course-head,
  .wx-course-article,
  .wx-course-note,
  .wx-quiz-q,
  .wx-learn-score,
  .wx-learn-board tr {
    animation: none !important;
  }
  .wx-learn-card:hover { transform: none; }
}

/* ── Page hero visuals (sub-pages) ─────────────────────────── */
.wx-page-hero-visual {
  position: relative;
  min-height: 16rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wx-phv-card {
  width: 100%;
  max-width: 20rem;
  padding: 1.25rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
}
.wx-phv-card-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.wx-phv-stack {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.wx-phv-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.65rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.72);
  transition: border-color 0.25s ease, background 0.25s ease;
}
.wx-phv-row:hover {
  border-color: rgba(74,222,128,0.2);
  background: rgba(74,222,128,0.04);
}
.wx-phv-row span:nth-child(2) { flex: 1; }
.wx-phv-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.wx-phv-num {
  width: 1.4rem;
  height: 1.4rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 0.35rem;
  background: rgba(74,222,128,0.12);
  color: #4ade80;
  font-size: 0.7rem;
  font-weight: 700;
}
.wx-phv-badge {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5);
}
.wx-phv-meters {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.wx-phv-meter-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.3rem;
}
.wx-phv-meter-head span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
}
.wx-phv-meter-head strong {
  font-size: 1rem;
}
.wx-phv-meter-bar {
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}
.wx-phv-meter-bar > div {
  height: 100%;
  border-radius: 999px;
  animation: wx-phv-fill 1.2s ease forwards;
}
@keyframes wx-phv-fill {
  from { width: 0; }
}

.wx-phv-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.75rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(15,29,24,0.85);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
}
.wx-phv-float-1 {
  top: 0.5rem;
  right: 0;
}
.wx-phv-float-2 {
  bottom: 0.5rem;
  left: 0;
}
@media (max-width: 1023px) {
  .wx-page-hero-visual { min-height: auto; margin-top: 1rem; }
  .wx-phv-card { max-width: 100%; }
  .wx-phv-float-1 { top: -0.5rem; right: 0.5rem; }
  .wx-phv-float-2 { bottom: -0.5rem; left: 0.5rem; }
}

/* ── About page cards ──────────────────────────────────────── */
.wx-about-card {
  position: relative;
  padding: 2rem 1.75rem;
  border-radius: 1.35rem;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 4px 20px rgba(20,38,31,0.04);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.wx-about-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ab-accent), transparent 80%);
}
.wx-about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(20,38,31,0.10);
}
.wx-about-card-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
}
.wx-about-card-icon {
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  border-radius: 0.8rem;
  background: var(--ab-wash);
  color: var(--ab-accent);
  transition: transform 0.25s ease;
}
.wx-about-card:hover .wx-about-card-icon { transform: scale(1.12) rotate(-5deg); }
.wx-about-card-kicker {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--ab-accent, #1f4d3a);
  margin: 0;
}
.wx-about-card h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: var(--ink);
}
.wx-about-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(20,38,31,0.68);
  margin: 0 0 0.6rem;
}
.wx-about-card p:last-child { margin-bottom: 0; }

.wx-founder-section {
  border-radius: 1.5rem;
  background: linear-gradient(145deg, #0c1812, #14261f 40%, #1a3328);
  padding: 2.5rem 2rem;
  overflow: hidden;
}
.wx-founder-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .wx-founder-grid { grid-template-columns: 280px 1fr; gap: 2.5rem; }
}

.wx-founder-profile-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1.25rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
}
.wx-founder-badge-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 0.6rem 0.75rem;
  border-radius: 0.6rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 1rem;
  font-size: 0.78rem;
  line-height: 1.4;
}
.wx-founder-badge-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
}
.wx-founder-badge-top strong {
  color: #4ade80;
  font-size: 0.95rem;
}
.wx-founder-badge-top > span { color: rgba(255,255,255,0.55); font-size: 0.78rem; }

.wx-founder-photo {
  position: relative;
  width: 7rem;
  height: 7rem;
  margin-bottom: 0.85rem;
}
.wx-founder-photo-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 0.85rem;
  background: linear-gradient(135deg, #1f4d3a, #2a5a42);
  display: grid;
  place-items: center;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  border: 2px solid rgba(255,255,255,0.1);
}
.wx-founder-verified {
  position: absolute;
  bottom: -0.3rem;
  right: -0.3rem;
  width: 1.6rem;
  height: 1.6rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 2px 8px rgba(74,222,128,0.4);
}
.wx-founder-profile-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.15rem;
}
.wx-founder-card-role {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
}
.wx-founder-card-company {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin: 0 0 0.85rem;
}
.wx-founder-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
}
.wx-founder-card-tags span {
  padding: 0.25rem 0.6rem;
  font-size: 0.68rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
}
.wx-founder-card-sub {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.5rem 0.65rem;
  border-radius: 0.55rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}
.wx-founder-badge-sm {
  padding: 0.15rem 0.45rem;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 0.35rem;
  background: #4ade80;
  color: #0c1812;
}
.wx-founder-card-sub div { text-align: left; line-height: 1.3; }
.wx-founder-card-sub strong { display: block; font-size: 0.8rem; color: #fff; }
.wx-founder-card-sub span { font-size: 0.7rem; color: rgba(255,255,255,0.4); }

.wx-founder-bio h2 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  margin: 0 0 1.25rem;
}
@media (max-width: 767px) {
  .wx-founder-bio h2 { font-size: 1.4rem; }
}
.wx-founder-accent {
  color: #4ade80;
}
.wx-founder-bio > p {
  font-size: 0.925rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  margin: 0 0 0.85rem;
}
.wx-founder-expertise-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  margin: 1.5rem 0 0.65rem;
}
.wx-founder-expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.wx-founder-expertise-tags span {
  padding: 0.4rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 500;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.65);
  transition: background 0.2s ease, color 0.2s ease;
}
.wx-founder-expertise-tags span:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.wx-ma-section {
  position: relative;
  border-radius: 1.5rem;
  background: linear-gradient(155deg, #0c1812, #14261f 45%, #1a3328);
  padding: 3rem 2rem 2.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wx-ma-orbit {
  position: relative;
  width: 6rem;
  height: 6rem;
  margin-bottom: 1.5rem;
}
.wx-ma-orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(74,222,128,0.12);
}
.wx-ma-ring-1 {
  inset: 0;
  animation: wx-ma-pulse 3s ease-in-out infinite;
}
.wx-ma-ring-2 {
  inset: -1rem;
  border-color: rgba(74,222,128,0.06);
  animation: wx-ma-pulse 3s ease-in-out 0.5s infinite;
}
.wx-ma-orbit-core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 3.2rem;
  height: 3.2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(74,222,128,0.08);
  border: 1px solid rgba(74,222,128,0.2);
  box-shadow: 0 0 30px rgba(74,222,128,0.12);
}
.wx-ma-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74,222,128,0.5);
}
.wx-ma-dot-1 { top: 15%; left: -8%; animation: wx-ma-float 4s ease-in-out infinite; }
.wx-ma-dot-2 { bottom: 30%; right: -12%; animation: wx-ma-float 4s ease-in-out 1.3s infinite; }
.wx-ma-dot-3 { bottom: -5%; left: 40%; animation: wx-ma-float 4s ease-in-out 2.6s infinite; }

.wx-ma-mission-text {
  max-width: 36rem;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  margin: 0 0 2rem;
}
.wx-ma-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  margin: 0 0 1rem;
}

.wx-ma-list {
  width: 100%;
  max-width: 38rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.wx-ma-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
  animation: wx-ma-slide-in 0.5s ease backwards;
}
.wx-ma-item:hover {
  border-color: rgba(74,222,128,0.25);
  background: rgba(74,222,128,0.05);
  transform: translateX(6px);
}
.wx-ma-item-icon {
  width: 2.2rem;
  height: 2.2rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 0.55rem;
  border: 1px solid rgba(74,222,128,0.18);
  background: rgba(74,222,128,0.06);
}
.wx-ma-item span { flex: 1; }
.wx-ma-item-dot {
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(74,222,128,0.35);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.wx-ma-item:hover .wx-ma-item-dot {
  background: #4ade80;
  box-shadow: 0 0 10px rgba(74,222,128,0.5);
}

@keyframes wx-ma-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.5; }
}
@keyframes wx-ma-float {
  0%, 100% { transform: translate(0,0); opacity: 0.7; }
  50% { transform: translate(6px, -8px); opacity: 1; }
}
@keyframes wx-ma-slide-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .wx-ma-ring-1, .wx-ma-ring-2, .wx-ma-dot, .wx-ma-item { animation: none !important; }
}
@media (max-width: 640px) {
  .wx-ma-section { padding: 2rem 1.25rem; }
  .wx-ma-mission-text { font-size: 0.95rem; }
}

/* ── Product Status cards ──────────────────────────────────── */
.wx-ps-summary {
  position: relative;
  padding: 1.5rem;
  border-radius: 1.35rem;
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(20,38,31,0.04);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.wx-ps-summary::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--ps-accent);
}
.wx-ps-summary:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(20,38,31,0.10);
}
.wx-ps-summary-top {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}
.wx-ps-summary-icon {
  width: 2.2rem;
  height: 2.2rem;
  display: grid;
  place-items: center;
  border-radius: 0.65rem;
  background: var(--ps-wash);
  color: var(--ps-accent);
  transition: transform 0.25s ease;
}
.wx-ps-summary:hover .wx-ps-summary-icon { transform: scale(1.12) rotate(-5deg); }
.wx-ps-summary-num {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--ps-accent);
  margin: 0;
}
.wx-ps-summary-desc {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(20,38,31,0.6);
  margin: 0.5rem 0 0;
}

.wx-ps-col {
  border-radius: 1.25rem;
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(20,38,31,0.04);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.wx-ps-col::before {
  content: "";
  display: block;
  height: 4px;
  background: var(--ps-accent);
}
.wx-ps-col:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(20,38,31,0.09);
}
.wx-ps-col-dev {
  border-style: dashed;
  background: linear-gradient(180deg, #fafcfb, #f7f9f8);
}
.wx-ps-col-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.15rem 1.25rem;
  border-bottom: 1px solid rgba(20,38,31,0.05);
  background: linear-gradient(135deg, var(--ps-wash) 0%, transparent 65%);
}
.wx-ps-col-badge {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 0.6rem;
  background: var(--ps-accent);
}
.wx-ps-col-head h2 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  color: var(--ink);
}
.wx-ps-list {
  list-style: none;
  padding: 1rem 1.25rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.wx-ps-list li {
  position: relative;
  padding: 0.5rem 0.7rem 0.5rem 1.7rem;
  font-size: 0.85rem;
  border-radius: 0.5rem;
  color: rgba(20,38,31,0.75);
  background: var(--ps-wash);
  transition: transform 0.2s ease;
}
.wx-ps-list li:hover { transform: translateX(4px); }
.wx-ps-list li::before {
  content: "";
  position: absolute;
  left: 0.6rem;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ps-accent);
}

/* ── Reporting cards ────────────────────────────────────────── */
.wx-rpt-card {
  position: relative;
  border-radius: 1.35rem;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 4px 20px rgba(20,38,31,0.04);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.wx-rpt-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: var(--rpt-accent, #1f4d3a);
}
.wx-rpt-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(20,38,31,0.10);
}
.wx-rpt-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(20,38,31,0.05);
  background: linear-gradient(135deg, var(--rpt-wash) 0%, transparent 65%);
}
.wx-rpt-num {
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 0.7rem;
  background: var(--rpt-accent);
  color: #fff;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 0.95rem;
  font-weight: 700;
}
.wx-rpt-icon {
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 0.7rem;
  background: var(--rpt-wash);
  color: var(--rpt-accent);
  transition: transform 0.25s ease;
}
.wx-rpt-card:hover .wx-rpt-icon { transform: scale(1.12) rotate(-5deg); }
.wx-rpt-head h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  color: var(--ink);
}
.wx-rpt-list {
  list-style: none;
  padding: 1.25rem 1.5rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.wx-rpt-list li {
  position: relative;
  padding: 0.55rem 0.75rem 0.55rem 1.75rem;
  font-size: 0.875rem;
  border-radius: 0.55rem;
  color: rgba(20,38,31,0.75);
  background: var(--rpt-wash);
  transition: transform 0.2s ease;
}
.wx-rpt-list li:hover { transform: translateX(4px); }
.wx-rpt-list li::before {
  content: "";
  position: absolute;
  left: 0.65rem;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rpt-accent);
}

.wx-rpt-scope {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 2.5rem;
  padding: 1.5rem 1.75rem;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, #f0f5f2, #fff 50%, #f8f0eb);
  border: 1px solid var(--line);
  border-left: 4px solid #8aa090;
}
.wx-rpt-scope-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(138,160,144,0.15);
  color: #6b8a74;
}
.wx-rpt-scope h2 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.6rem;
  color: var(--ink);
}
.wx-rpt-scope p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(20,38,31,0.68);
  margin: 0 0 0.5rem;
}
.wx-rpt-scope p:last-child { margin-bottom: 0; }

/* ── How It Works cards ─────────────────────────────────────── */
.wx-hiw-assumption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 1rem 0.5rem;
  border-radius: 1rem;
  background: var(--inno-wash, #f8e6dc);
  text-align: center;
  transition: transform 0.25s ease;
}
.wx-hiw-assumption:hover { transform: translateY(-3px); }
.wx-hiw-assumption strong {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.5rem;
  color: var(--inno-accent, #c56a3c);
}
.wx-hiw-assumption span {
  font-size: 0.75rem;
  color: rgba(20,38,31,0.55);
  line-height: 1.3;
}
.wx-hiw-loss-table {
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid var(--line);
}
.wx-hiw-loss-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(20,38,31,0.06);
  font-size: 0.9rem;
}
.wx-hiw-loss-row:last-child { border-bottom: 0; }
.wx-hiw-loss-row span { color: rgba(20,38,31,0.6); }
.wx-hiw-loss-row strong { color: var(--ink); font-size: 1rem; }
.wx-hiw-loss-highlight {
  margin: 0.25rem -1.25rem -1rem;
  padding: 0.85rem 1.25rem;
  border-radius: 0 0 1rem 1rem;
  background: linear-gradient(135deg, var(--inno-wash), transparent);
  border-bottom: 0;
}
.wx-hiw-loss-highlight strong {
  font-size: 1.25rem;
  color: var(--inno-accent);
}
.wx-hiw-impact-note {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--inno-wash), transparent);
  border-left: 3px solid var(--inno-accent);
  font-size: 0.875rem;
  color: rgba(20,38,31,0.72);
  line-height: 1.55;
}
.wx-hiw-impact-note svg { flex-shrink: 0; margin-top: 2px; }

.wx-hiw-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (min-width: 768px) {
  .wx-hiw-timeline {
    flex-direction: row;
    gap: 0;
  }
}
.wx-hiw-step {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0.5rem;
}
.wx-hiw-step-line {
  display: none;
}
@media (min-width: 768px) {
  .wx-hiw-step-line {
    display: block;
    position: absolute;
    top: 1.4rem;
    left: 55%;
    right: -45%;
    height: 2px;
    background: linear-gradient(90deg, var(--step-accent), rgba(20,38,31,0.1));
    z-index: 0;
  }
  .wx-hiw-step:last-child .wx-hiw-step-line { display: none; }
}
.wx-hiw-step-num {
  position: relative;
  z-index: 1;
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--step-accent, #1f4d3a);
  color: #fff;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(20,38,31,0.18);
  margin-bottom: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.wx-hiw-step:hover .wx-hiw-step-num {
  transform: scale(1.15);
  box-shadow: 0 8px 28px rgba(20,38,31,0.22);
}
.wx-hiw-step-body {
  padding: 1.5rem 1rem;
  border-radius: 1.25rem;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 4px 16px rgba(20,38,31,0.04);
  width: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.wx-hiw-step:hover .wx-hiw-step-body {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(20,38,31,0.08);
}
.wx-hiw-step-icon {
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  border-radius: 0.75rem;
  background: var(--step-wash, #e8f0ec);
  color: var(--step-accent, #1f4d3a);
  margin: 0 auto 0.75rem;
}
.wx-hiw-step-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
  color: var(--ink);
}
.wx-hiw-step-body p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(20,38,31,0.65);
  margin: 0;
}
.wx-hiw-action-quote {
  margin-top: 0.6rem;
  padding: 0.6rem 0.75rem;
  border-radius: 0.6rem;
  background: var(--step-wash);
  border-left: 3px solid var(--step-accent);
  font-size: 0.82rem;
  color: rgba(20,38,31,0.72);
  text-align: left;
  line-height: 1.45;
}

.wx-hiw-saving-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 1.25rem 0.75rem;
  border-radius: 1.1rem;
  background: var(--sw, #dcefe4);
  text-align: center;
  transition: transform 0.25s ease;
}
.wx-hiw-saving-card:hover { transform: translateY(-4px); }
.wx-hiw-saving-card strong {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.6rem;
  color: var(--sa, #1f4d3a);
}
.wx-hiw-saving-card span {
  font-size: 0.78rem;
  color: rgba(20,38,31,0.55);
}

@media (max-width: 767px) {
  .wx-hiw-timeline { gap: 1.5rem; }
  .wx-hiw-step { flex-direction: row; text-align: left; gap: 0.75rem; align-items: flex-start; }
  .wx-hiw-step-num { margin-bottom: 0; flex-shrink: 0; }
  .wx-hiw-step-icon { margin: 0 0 0.5rem; }
}

/* ── Innovation cards ───────────────────────────────────────── */
.wx-inno-card {
  position: relative;
  border-radius: 1.5rem;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 4px 24px rgba(20,38,31,0.05);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.wx-inno-card:hover {
  box-shadow: 0 12px 40px rgba(20,38,31,0.10);
}
.wx-inno-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--inno-accent), transparent 80%);
}
.wx-inno-card-dev {
  border-style: dashed;
  background: linear-gradient(180deg, #fafcfb, #f5f8f6);
}
.wx-inno-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, var(--inno-wash) 0%, transparent 60%);
}
.wx-inno-num {
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 0.85rem;
  background: var(--inno-accent, #1f4d3a);
  color: #fff;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
}
.wx-inno-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
}
.wx-inno-label {
  font-size: 0.85rem;
  color: rgba(20,38,31,0.5);
  font-weight: 500;
}
.wx-inno-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2rem 1.75rem;
}
@media (min-width: 1024px) {
  .wx-inno-body { grid-template-columns: 1fr 1fr; }
  .wx-inno-body-reverse .wx-inno-visual { order: -1; }
}
.wx-inno-content { display: flex; flex-direction: column; }
.wx-inno-icon-wrap {
  width: 3.2rem;
  height: 3.2rem;
  display: grid;
  place-items: center;
  border-radius: 1rem;
  background: var(--inno-wash, #e8f0ec);
  color: var(--inno-accent, #1f4d3a);
  margin-bottom: 1.25rem;
  transition: transform 0.3s ease;
}
.wx-inno-card:hover .wx-inno-icon-wrap {
  transform: scale(1.1) rotate(-5deg);
}
.wx-inno-title {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 0.75rem;
  color: var(--ink);
}
.wx-inno-desc {
  font-size: 0.925rem;
  line-height: 1.6;
  color: rgba(20,38,31,0.68);
  margin: 0 0 1.25rem;
}
.wx-inno-caps { margin-bottom: 1rem; }
.wx-inno-caps-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--inno-accent, var(--sage));
  margin: 0 0 0.6rem;
}
.wx-inno-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.35rem;
}
@media (min-width: 480px) {
  .wx-inno-list { grid-template-columns: 1fr 1fr; }
}
.wx-inno-list li {
  position: relative;
  padding: 0.55rem 0.75rem 0.55rem 1.85rem;
  font-size: 0.875rem;
  border-radius: 0.6rem;
  background: var(--inno-wash, #f0f5f2);
  color: rgba(20,38,31,0.78);
  transition: transform 0.2s ease;
}
.wx-inno-list li:hover { transform: translateX(3px); }
.wx-inno-list li::before {
  content: "";
  position: absolute;
  left: 0.7rem;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--inno-accent, #1f4d3a);
}
.wx-inno-value {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--inno-wash), transparent);
  border-left: 3px solid var(--inno-accent);
  font-size: 0.875rem;
  color: rgba(20,38,31,0.75);
  margin-top: 0.5rem;
}
.wx-inno-value svg { flex-shrink: 0; margin-top: 2px; color: var(--inno-accent); }
.wx-inno-example {
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  background: var(--inno-wash);
  font-size: 0.875rem;
  color: rgba(20,38,31,0.75);
  line-height: 1.55;
  margin-top: 0.5rem;
}
.wx-inno-example strong { color: var(--inno-accent); }
.wx-inno-disclaimer {
  font-size: 0.78rem;
  color: rgba(20,38,31,0.45);
  margin-top: 0.75rem;
}
.wx-inno-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.wx-inno-chart-wrap {
  width: 100%;
  padding: 1.25rem;
  border-radius: 1.15rem;
  background: #f8faf9;
  border: 1px solid var(--line);
}
.wx-inno-graphic {
  width: 100%;
  padding: 2rem 1.5rem;
  border-radius: 1.15rem;
  background: #f8faf9;
  border: 1px solid var(--line);
}
.wx-inno-graphic-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.wx-inno-flow-node {
  width: 4.5rem;
  height: 4.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--inno-wash);
  border: 2px solid var(--inno-accent);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--inno-accent);
  transition: transform 0.25s ease, background 0.25s ease;
}
.wx-inno-flow-node:hover {
  background: var(--inno-accent);
  color: #fff;
  transform: scale(1.12);
}
.wx-inno-flow-line {
  width: 2rem;
  height: 2px;
  background: linear-gradient(90deg, var(--inno-accent), rgba(20,38,31,0.15));
  flex-shrink: 0;
}
.wx-inno-graphic-sites {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1.5rem;
  height: 10rem;
  padding-bottom: 0;
}
.wx-inno-site {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  max-width: 3.5rem;
}
.wx-inno-site span {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(20,38,31,0.5);
}
.wx-inno-site-bar {
  width: 100%;
  height: var(--sh, 50%);
  border-radius: 0.5rem 0.5rem 0 0;
  background: linear-gradient(180deg, var(--inno-accent), var(--inno-wash));
  transition: height 0.5s ease;
  animation: wx-inno-grow 1s ease backwards;
}
@keyframes wx-inno-grow {
  from { height: 0; }
}
@media (max-width: 640px) {
  .wx-inno-header { padding: 1rem 1.25rem; }
  .wx-inno-body { padding: 1.25rem; }
  .wx-inno-title { font-size: 1.15rem; }
  .wx-inno-flow-node { width: 3.5rem; height: 3.5rem; font-size: 0.68rem; }
  .wx-inno-flow-line { width: 1rem; }
}

/* ── Enterprise SaaS layer ─────────────────────────────────── */
.wx-public {
  --surface: #f4f7f5;
  --surface-alt: #eef3f0;
  --shadow-soft: 0 18px 50px rgba(20, 38, 31, 0.08);
  --shadow-card: 0 24px 60px rgba(20, 38, 31, 0.1);
  background: #ffffff;
}

.wx-public main {
  overflow-x: clip;
}

.wx-section {
  position: relative;
  padding: 4.5rem 0;
}
@media (min-width: 1024px) {
  .wx-section { padding: 6rem 0; }
}
.wx-section-alt {
  background: #f5f8f6;
  border-block: 1px solid rgba(20, 38, 31, 0.06);
}
.wx-section-dark {
  background:
    #14261f;
  color: #fff;
}

.wx-section-header {
  max-width: 42rem;
  margin-bottom: 2.5rem;
}
.wx-section-header:last-child {
  margin-bottom: 0;
}
.wx-section-header.is-centered {
  margin-inline: auto;
  text-align: center;
}
.wx-section-title {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.wx-section-desc {
  margin-top: 0.9rem;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(20, 38, 31, 0.68);
}

.wx-public:not(.wx-app) main {
  padding-top: 6rem;
}
.wx-hero::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: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.5), transparent 85%);
  pointer-events: none;
}
.wx-hero-title {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  font-weight: 700;
}
.wx-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.02em;
}
.wx-hero-dash-wrap {
  position: relative;
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}
.wx-hero-scene-wide {
  min-height: 380px;
}
.wx-hero-scene-wide .wx-dash-main {
  max-width: 100%;
}
.wx-dash-chip {
  margin-left: auto;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(74, 222, 128, 0.12);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.2);
}
.wx-dash-metrics-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 640px) {
  .wx-dash-metrics-4 { grid-template-columns: repeat(2, 1fr); }
}

/* Floating insight card */
.wx-dash-insight {
  position: absolute;
  bottom: 2rem;
  right: -1rem;
  padding: 0.75rem 1rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(197, 106, 60, 0.2);
  background: rgba(15, 29, 24, 0.85);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  max-width: 220px;
  z-index: 2;
}
.wx-dash-insight-icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.45rem;
  background: rgba(197, 106, 60, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.wx-dash-insight-label {
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #c56a3c;
  margin-bottom: 0.15rem;
}
.wx-dash-insight-text {
  font-size: 0.72rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1023px) {
  .wx-hero-scene-wide { min-height: 340px; }
  .wx-dash-insight { right: 0; bottom: -2rem; }
}

.wx-hero-copy h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.wx-hero-accent {
  background: linear-gradient(135deg, #4ade80, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.wx-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.02em;
}

.wx-hero-pillars {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  counter-reset: pillar;
}
.wx-hero-pillar {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  position: relative;
}
.wx-hero-pillar:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateX(6px);
}
.wx-hero-pillar-num {
  position: absolute;
  top: -0.4rem;
  right: 0.8rem;
  font-size: 0.55rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.08em;
}
.wx-hero-pillar-icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.05rem;
}
.wx-hero-pillar strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.15rem;
  letter-spacing: -0.01em;
}
.wx-hero-pillar span {
  display: block;
  font-size: 0.76rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.5);
}
.wx-anim-card {
  animation: wx-slide-in 0.85s ease both;
  animation-delay: var(--wx-delay, 0.18s);
}

/* ── Hero Dashboard Scene ── */
.wx-dashboard-scene {
  position: relative;
  min-height: 420px;
  perspective: 1200px;
}

@keyframes wx-dash-enter {
  from { opacity: 0; transform: translateY(30px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes wx-dash-hover {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.wx-dash-float {
  animation:
    wx-dash-enter 0.7s ease both,
    wx-dash-hover 4s ease-in-out infinite;
  animation-delay: var(--wx-float-delay, 0s), calc(var(--wx-float-delay, 0s) + 0.7s);
}

/* Main dashboard card */
.wx-dash-main {
  position: relative;
  padding: 1.4rem;
  border-radius: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}
.wx-dash-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}
.wx-dash-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.2);
}
.wx-dash-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.wx-dash-metric {
  padding: 0.8rem 0.7rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
}
.wx-dash-metric span {
  display: block;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.25rem;
}
.wx-dash-metric strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.wx-dash-metric em {
  font-style: normal;
  font-size: 0.7rem;
  color: #4ade80;
  font-weight: 600;
}
.wx-dash-chart-area {
  padding: 0.8rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: 0.8rem;
}
.wx-dash-chart-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}
.wx-dash-sparkline svg {
  width: 100%;
  height: 50px;
}
.wx-dash-days {
  display: flex;
  justify-content: space-between;
  padding: 0.3rem 0.2rem 0;
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.35);
}
.wx-dash-cats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}
.wx-dash-cat {
  padding: 0.65rem 0.7rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.3rem;
}
.wx-dash-cat span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}
.wx-dash-cat strong {
  font-size: 0.8rem;
  font-weight: 700;
  color: #4ade80;
}
.wx-dash-bar {
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.wx-dash-bar > div {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, #4ade80, #22c55e);
}

/* Floating score card */
.wx-dash-score {
  position: absolute;
  top: -1rem;
  right: -0.5rem;
  padding: 1rem 1.2rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 29, 24, 0.85);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  min-width: 130px;
  z-index: 2;
}
.wx-dash-score-icon {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 0.5rem;
  background: rgba(74, 222, 128, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.4rem;
}
.wx-dash-score p {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.2rem;
}
.wx-dash-score-val strong {
  font-size: 2rem;
  font-weight: 800;
  color: #4ade80;
  letter-spacing: -0.03em;
}
.wx-dash-score-val span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  margin-left: 0.15rem;
}
.wx-dash-bar-score {
  margin-top: 0.5rem;
}

/* Floating CO2 card */
.wx-dash-co2 {
  position: absolute;
  top: 45%;
  right: -1.5rem;
  padding: 0.8rem 1rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 29, 24, 0.8);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
  text-align: right;
  z-index: 2;
}
.wx-dash-co2 span {
  display: block;
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.45);
}
.wx-dash-co2 strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #4ade80;
  letter-spacing: -0.02em;
}
.wx-dash-co2 em {
  font-style: normal;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.45);
}

/* Floating recommendation card */
.wx-dash-rec {
  position: absolute;
  bottom: -0.5rem;
  left: -0.5rem;
  padding: 0.9rem 1rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 29, 24, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
  max-width: 260px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.5rem;
}
.wx-dash-rec-label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #4ade80;
}
.wx-dash-rec-text {
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 1023px) {
  .wx-dash-score { top: -0.5rem; right: 0; }
  .wx-dash-co2 { right: 0; }
  .wx-dash-rec { left: 0; bottom: -1.5rem; }
  .wx-dashboard-scene { margin-bottom: 3rem; }
}
@media (prefers-reduced-motion: reduce) {
  .wx-dash-float {
    animation: wx-dash-enter 0.5s ease both;
  }
}

.wx-trust-strip {
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(20, 38, 31, 0.06);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
}
.wx-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .wx-trust-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.wx-trust-item {
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(20, 38, 31, 0.07);
  background: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(20, 38, 31, 0.72);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}
.wx-trust-icon {
  flex-shrink: 0;
  color: var(--copper);
}

.wx-value-card {
  text-align: center;
  padding: 2rem 1.5rem;
}
.wx-value-card .wx-icon {
  margin-left: auto;
  margin-right: auto;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 1rem;
  margin-bottom: 1.25rem;
}
.wx-value-card h3 {
  font-size: 1.15rem;
}
.wx-value-tag {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(31, 77, 58, 0.07);
  color: var(--moss);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.wx-pipeline-card {
  position: relative;
  padding: 2rem 1.5rem 1.8rem;
  border-radius: 1.35rem;
  border: 1px solid rgba(20, 38, 31, 0.08);
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(20, 38, 31, 0.05);
  text-align: center;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.wx-pipeline-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(20, 38, 31, 0.08);
  border-color: rgba(31, 77, 58, 0.18);
}
.wx-pipeline-num {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 0.5rem;
  background: var(--moss);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(31, 77, 58, 0.25);
}
.wx-pipeline-icon {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.wx-pipeline-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.wx-pipeline-card p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(20, 38, 31, 0.62);
}
.wx-pipeline-line {
  display: none;
}
@media (min-width: 1024px) {
  .wx-pipeline-line {
    display: block;
    position: absolute;
    top: 50%;
    right: -1.1rem;
    width: 2.2rem;
    height: 2px;
    background: linear-gradient(90deg, var(--moss), rgba(31, 77, 58, 0.15));
  }
  .wx-pipeline-card:last-child .wx-pipeline-line {
    display: none;
  }
}

.wx-enterprise-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .wx-enterprise-grid.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wx-enterprise-grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .wx-enterprise-grid.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.wx-enterprise-card {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  border-radius: 1.35rem;
  border: 1px solid rgba(20, 38, 31, 0.08);
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(20, 38, 31, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.wx-enterprise-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(20, 38, 31, 0.08);
  border-color: rgba(31, 77, 58, 0.16);
}
.wx-enterprise-card .wx-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(31, 77, 58, 0.1);
  color: var(--moss);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.wx-enterprise-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
}
.wx-enterprise-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(20, 38, 31, 0.68);
}

.wx-table-wrap {
  overflow: hidden;
  border-radius: 1.2rem;
  border: 1px solid rgba(20, 38, 31, 0.08);
  background: #fff;
}
.wx-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.wx-table thead {
  background: rgba(31, 77, 58, 0.06);
}
.wx-table th,
.wx-table td {
  padding: 0.95rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(20, 38, 31, 0.06);
}
.wx-table tbody tr:last-child td {
  border-bottom: 0;
}
.wx-table tbody tr:hover {
  background: rgba(31, 77, 58, 0.03);
}

.wx-source-card {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  border-radius: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  transition: transform 0.28s ease, background 0.28s ease, border-color 0.28s ease;
}
.wx-source-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}
.wx-source-icon {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.wx-source-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.4rem;
}
.wx-source-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.62);
}

.wx-band-enterprise {
  background: #14261f;
}

.wx-cta-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 1.2rem 1rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  text-align: center;
}
.wx-cta-stat strong {
  font-size: 0.88rem;
  font-weight: 600;
  color: #ffffff;
}
.wx-cta-stat span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}

.wx-btn-lg {
  padding: 0.85rem 1.8rem;
  font-size: 0.95rem;
}

.wx-form.wx-card {
  box-shadow: var(--shadow-card);
}
.wx-form label {
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(20, 38, 31, 0.78);
}
.wx-form .wx-btn {
  min-height: 3rem;
}

.wx-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.wx-reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

.wx-public .wx-card {
  border-radius: 1.35rem;
}
.wx-public .wx-num-card {
  min-height: 100%;
}
.wx-public .wx-num-card .wx-mark {
  opacity: 0.9;
}
.wx-public .wx-demo-bar {
  background: #f5f0ec;
  font-weight: 600;
}
.wx-public .wx-metric {
  border-radius: 1.1rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(247,250,248,0.92));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}
.wx-public .wx-process {
  border-radius: 1.2rem;
  box-shadow: var(--shadow-soft);
}
.wx-public .wx-process .wx-step-num {
  border-radius: 0.75rem;
  box-shadow: 0 10px 24px rgba(31, 77, 58, 0.18);
}

.wx-public footer.wx-foot {
  margin-top: 5rem;
  border-top: 0;
  border-radius: 0;
}
.wx-foot-logo img {
  filter: brightness(1.05);
}

.wx-legal.wx-card {
  box-shadow: var(--shadow-soft);
}

@media (prefers-reduced-motion: reduce) {
  .wx-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
