/* ============ TOKENS — matched to the live site (globals.css) ============ */
:root {
  --brand: #10b981;
  --brand-hover: #059669;
  --brand-deep: #047857;
  --brand-dark: #065f46;
  --brand-ink: #053f30;
  --brand-subtle: #ecfdf5;
  --brand-muted: #d1fae5;
  --ink: #0a0a0f;
  --ink-2: #1a1a24;
  --fg-2: #3a3a48;
  --fg-3: #6b6b75;
  --fg-4: #9ca0a8;
  --bg: #ffffff;
  --bg-subtle: #fafafb;
  --line: #e5e5e8;
  --line-soft: #f0f0f2;
  --accent-yellow: #fbbf24;
  --accent-blue: #007aff;
  --accent-pink: #ff2d55;
  --accent-purple: #af52de;
  /* One family everywhere: Inter Tight for display, Inter for text/UI. */
  --font-brand: "Inter Tight", system-ui, sans-serif;
  --font-sans: "Inter", system-ui, sans-serif;
  --max: 1180px;
  --pad: clamp(20px, 4vw, 48px);
  --r-lg: 24px;
  --r-md: 18px;
  --r-sm: 12px;
  --shadow-card: 0 1px 2px rgba(10, 10, 15, 0.04), 0 12px 32px -12px rgba(10, 10, 15, 0.1);
  --shadow-float: 0 24px 64px -24px rgba(10, 10, 15, 0.28);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "cv11", "ss01";
  overflow-x: hidden;
}
::selection {
  background: var(--brand);
  color: #fff;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  color: inherit;
}
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 4px;
}
.num {
  font-variant-numeric: tabular-nums;
}

/* ============ TYPE ============ */
.kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-4);
}
.kicker b {
  color: var(--brand-deep);
  font-weight: 700;
}
.kicker::after {
  content: "";
  width: 44px;
  height: 1px;
  background: var(--line);
}
.section-head.center .kicker {
  justify-content: center;
}
.section-head.center .kicker::after {
  display: none;
}
.on-dark .kicker {
  color: rgba(255, 255, 255, 0.5);
}
.on-dark .kicker b {
  color: #34d399;
}
.on-dark .kicker::after {
  background: rgba(255, 255, 255, 0.2);
}
.display {
  font-family: var(--font-brand);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.03em;
  text-wrap: balance;
  color: var(--ink);
}
h1.display {
  font-size: clamp(2.8rem, 5.8vw, 4.6rem);
}
h2.display {
  font-size: clamp(2rem, 3.8vw, 3.1rem);
}
.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--fg-3);
  line-height: 1.65;
  max-width: 58ch;
}
.grad {
  background: linear-gradient(92deg, var(--brand-deep), var(--brand) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.on-dark .grad {
  background-image: linear-gradient(92deg, #34d399, #6ee7b7 70%);
}
.on-dark .display {
  color: #fff;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  padding: 14px 27px;
  border-radius: 10px;
  border: 1.5px solid transparent;
  white-space: nowrap;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.btn-primary {
  background: var(--ink);
  color: #fff;
}
.btn-primary:hover {
  background: var(--ink-2);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -10px rgba(10, 10, 15, 0.4);
}
.btn-brand {
  background: var(--brand);
  color: #fff;
}
.btn-brand:hover {
  background: var(--brand-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -10px rgba(16, 185, 129, 0.5);
}
.btn-white {
  background: #fff;
  color: var(--brand-ink);
}
.btn-white:hover {
  background: var(--brand-subtle);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -10px rgba(0, 0, 0, 0.35);
}
.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
}
.btn-ghost:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}
.btn-ghost.on-ink {
  border-color: rgba(255, 255, 255, 0.32);
  color: #fff;
}
.btn-ghost.on-ink:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.btn .arr {
  transition: transform 0.18s ease;
}
.btn:hover .arr {
  transform: translateX(3px);
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease;
}
.nav.scrolled {
  border-bottom-color: var(--line-soft);
}
.nav .wrap {
  display: flex;
  align-items: center;
  gap: 34px;
  height: 72px;
}
.nav .wrap > nav {
  margin-left: auto;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.logo img {
  height: 30px;
  width: auto;
  display: block;
}
.logo b {
  color: var(--brand);
}
.nav-links {
  display: flex;
  gap: 2px;
  flex: 1;
  justify-content: flex-end;
  list-style: none;
}
.nav-item {
  position: relative;
}
.nav-item > button,
.nav-item > a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--fg-2);
  transition:
    background 0.15s,
    color 0.15s;
}
.nav-item > button:hover,
.nav-item.open > button {
  background: var(--bg-subtle);
  color: var(--ink);
}
.nav-item > button::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: -3px;
  border-right: 1.6px solid var(--fg-4);
  border-bottom: 1.6px solid var(--fg-4);
  transform: rotate(45deg);
  transition: transform 0.18s ease;
}
.nav-item.open > button::after {
  transform: rotate(225deg);
  margin-top: 3px;
}
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 295px;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s;
  box-shadow: var(--shadow-float);
}
.nav-item.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 11px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  border-radius: var(--r-sm);
  transition: background 0.15s;
}
.dropdown a:hover {
  background: var(--brand-subtle);
}
.dropdown a span {
  display: block;
  font-size: 12.5px;
  font-weight: 400;
  color: var(--fg-3);
  margin-top: 2px;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-cta .btn {
  padding: 11px 21px;
  font-size: 14px;
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.burger span {
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition:
    transform 0.2s,
    opacity 0.2s;
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 72px;
  z-index: 55;
  background: #fff;
  padding: 28px var(--pad);
  overflow: auto;
}
.mobile-menu.open {
  display: block;
}
.mobile-menu .group {
  border-top: 1px solid var(--line-soft);
  padding: 18px 0;
}
.mobile-menu .group h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-4);
  margin-bottom: 10px;
}
.mobile-menu a {
  display: block;
  padding: 9px 0;
  font-size: 17px;
  font-weight: 600;
}
.mobile-menu .btn {
  width: 100%;
  justify-content: center;
  margin-top: 14px;
}

/* ============ HERO ============ */
.hero {
  padding: clamp(60px, 8vw, 110px) 0 clamp(56px, 7vw, 92px);
  position: relative;
  overflow: hidden;
}
.hero .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  position: relative;
}
.hero-copy .eyebrow {
  margin-bottom: 26px;
}
.hero-copy h1 {
  margin-bottom: 24px;
}
.hero-copy .lede {
  margin-bottom: 30px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.sx-claims {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  max-width: 560px;
}
.sx-claims div {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--fg-3);
}
.sx-claims b {
  color: var(--ink);
  font-weight: 600;
}
.sx-claims svg {
  flex: none;
  margin-top: 3px;
}
@media (max-width: 720px) {
  .sx-claims {
    grid-template-columns: 1fr;
  }
}

/* ---- Live console (hero demo) ---- */
.con {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  box-shadow: var(--shadow-float);
  overflow: hidden;
}
.con-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg-subtle);
}
.con-top .id {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.con-top .id img {
  height: 16px;
  width: auto;
}
.con-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--brand-deep);
  background: var(--brand-subtle);
  border-radius: 999px;
  padding: 4px 11px;
}
.con-live {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  flex: none;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
  animation: ring 2.2s infinite;
}
@keyframes ring {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}
.con-main {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.con .stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.con .stat {
  min-width: 0;
}
.con .stat .val {
  flex-wrap: wrap;
}
.con .stat {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  padding: 13px 15px;
}
.con .stat .label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.09em;
  color: var(--fg-4);
  text-transform: uppercase;
}
.con .stat .val {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 7px;
}
.con .stat .val b {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}
.con .stat .val span {
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-deep);
}
.con .stat .spark {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 18px;
  margin-top: 10px;
}
.con .stat .spark i {
  flex: 1;
  background: var(--line);
  border-radius: 2px 2px 0 0;
  display: block;
}
.con .stat .spark i.up {
  background: var(--brand);
}
.qlabel {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-4);
}
.con-feed {
  position: relative;
  height: 204px;
  margin-top: 8px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  background: #fff;
}
.con-feed::before,
.con-feed::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 32px;
  z-index: 3;
  pointer-events: none;
}
.con-feed::before {
  top: 0;
  background: linear-gradient(#fff, rgba(255, 255, 255, 0));
}
.con-feed::after {
  bottom: 0;
  background: linear-gradient(rgba(255, 255, 255, 0), #fff);
}
.con-track {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  animation: conFeed 22s linear infinite;
}
.con-frow {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 46px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line-soft);
}
.con-frow .st {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  flex: none;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.14);
}
.con-frow .st.warn {
  background: var(--accent-yellow);
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.18);
}
.con-frow .bd {
  flex: 1;
  min-width: 0;
}
.con-frow .ti {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.con-frow .cs {
  font-size: 10.5px;
  color: var(--fg-4);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 1px;
  font-variant-numeric: tabular-nums;
}
.con-frow .ac {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--brand-deep);
  flex: none;
  white-space: nowrap;
  background: var(--brand-subtle);
  border-radius: 999px;
  padding: 3px 9px;
}
.con-frow .ac.q {
  color: #a16207;
  background: #fef9c3;
}
@keyframes conFeed {
  from {
    transform: translateY(-50%);
  }
  to {
    transform: translateY(0);
  }
}

/* ---- full-width console (platform.html "one console, every platform") ---- */
.con-body {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) 240px;
}
.con-wide .con-main {
  border-left: 1px solid var(--line-soft);
  border-right: 1px solid var(--line-soft);
}
.con-nav {
  display: flex;
  flex-direction: column;
  padding: 16px 10px;
  gap: 2px;
}
.con-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 9px 10px;
  border-radius: var(--r-sm);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--fg-3);
}
.con-nav a:hover {
  background: var(--bg-subtle);
  color: var(--ink);
}
.con-nav a.active {
  background: var(--brand-subtle);
  color: var(--brand-deep);
}
.con-nav .count {
  font-size: 10px;
  font-weight: 700;
  background: var(--brand);
  color: #fff;
  border-radius: 999px;
  padding: 1px 7px;
}
.con-nav .ver {
  margin-top: auto;
  padding: 9px 10px;
  font-size: 10px;
  color: var(--fg-4);
  letter-spacing: 0.06em;
}
.con-rail {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.rail-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-4);
}
.rail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  padding-top: 10px;
  border-top: 1px solid var(--line-soft);
  margin-top: 10px;
}
.rail-row:first-of-type {
  padding-top: 0;
  border-top: 0;
  margin-top: 8px;
}
.track {
  height: 6px;
  border-radius: 999px;
  background: var(--line-soft);
  margin-top: 8px;
  overflow: hidden;
}
.track .fill {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: var(--brand);
}
.ch-row {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}
.ch-row:first-of-type {
  margin-top: 8px;
}
.ch-row svg {
  width: 16px;
  height: 16px;
}
.ch-row .track {
  margin: 0;
}
.ch-row span:last-child {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--fg-4);
  text-align: right;
}
.con-cap {
  text-align: center;
  font-size: 11.5px;
  color: var(--fg-4);
  margin-top: 14px;
}
@media (max-width: 880px) {
  .con-body {
    grid-template-columns: minmax(0, 1fr);
  }
  .con-wide .con-nav {
    display: none;
  }
  .con-wide .con-main {
    border-left: 0;
    border-right: 0;
  }
  .con-wide .con-rail {
    border-top: 1px solid var(--line-soft);
  }
}

/* ---- hand-drawn underline + hero note ---- */
.uline {
  position: relative;
  white-space: nowrap;
}
.uline svg {
  position: absolute;
  left: 2%;
  bottom: -0.14em;
  width: 96%;
  height: 0.24em;
  color: var(--brand);
  overflow: visible;
}
.uline svg path {
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  animation: uline 1s ease 0.9s forwards;
}
@keyframes uline {
  to {
    stroke-dashoffset: 0;
  }
}
.hero-note {
  font-size: 13px;
  color: var(--fg-4);
  margin-top: -14px;
  margin-bottom: 28px;
}

/* ============ CHAOS → CONTROL ============ */
.chaos {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 9vw, 120px) 0;
}
.chaos h2 {
  text-align: center;
  margin-bottom: 14px;
}
.chaos .sub {
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  max-width: 520px;
  margin: 0 auto;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.6;
}
.chaos-stage {
  position: relative;
  max-width: 1020px;
  margin: clamp(30px, 4vw, 52px) auto 0;
  min-height: 420px;
}
.fl {
  position: absolute;
  animation: float 7s ease-in-out infinite;
  will-change: transform;
}
.fl-pill {
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 13px 21px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.55);
  white-space: nowrap;
}
.fl-card {
  background: #fff;
  color: var(--ink);
  border-radius: 14px;
  padding: 14px 17px;
  box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.55);
  min-width: 150px;
}
.fl-card .fc-l {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--fg-4);
}
.fl-card .fc-v {
  font-family: var(--font-brand);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 4px;
  font-variant-numeric: tabular-nums;
}
.fl-card .fc-v em {
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
}
.fl-card .down {
  color: var(--accent-pink);
}
.fl-card .up {
  color: var(--brand-deep);
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(var(--r, 0deg));
  }
  50% {
    transform: translateY(-13px) rotate(var(--r, 0deg));
  }
}
.chaos-close {
  position: relative;
  text-align: center;
  margin-top: clamp(26px, 3.4vw, 40px);
}
.chaos-close p {
  font-family: var(--font-brand);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: #fff;
  max-width: 34ch;
  margin: 0 auto;
}
.chaos-close p b {
  color: #34d399;
  font-weight: 700;
}
@media (max-width: 880px) {
  .chaos-stage {
    min-height: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
  .fl {
    position: static;
    animation: none;
    transform: rotate(var(--r, 0deg));
  }
  .fl-card {
    min-width: 0;
  }
}

/* ============ TEAMS / USE CASES ============ */
.teams-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}
.team-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  display: block;
  aspect-ratio: 10/12.5;
  box-shadow: var(--shadow-card);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-float);
}
.team-card:nth-child(2) {
  margin-top: 38px;
}
.team-card:nth-child(3) {
  margin-top: 12px;
}
.team-card:nth-child(4) {
  margin-top: 50px;
}
.team-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.team-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, var(--g1), var(--g2));
}
.team-bg svg {
  position: absolute;
  right: -14%;
  top: -10%;
  width: 75%;
  height: auto;
  opacity: 0.2;
  color: #fff;
}
.team-tag {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  background: rgba(10, 10, 15, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  border-radius: 14px;
  padding: 13px 16px;
}
.team-tag b {
  display: block;
  font-family: var(--font-brand);
  font-size: 16.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.team-tag span {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 3px;
  line-height: 1.45;
}
@media (max-width: 880px) {
  .teams-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .team-card:nth-child(n) {
    margin-top: 0;
  }
  .team-card:nth-child(even) {
    margin-top: 22px;
  }
}
@media (max-width: 560px) {
  .teams-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .team-card:nth-child(n) {
    margin-top: 0;
  }
}

/* ============ PLATFORM MARQUEE ============ */
.marquee-band {
  padding: 10px 0 clamp(40px, 5vw, 56px);
}
.marquee-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-4);
  margin-bottom: 22px;
}
.marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.plat {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
  padding: 13px 22px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  font-size: 13.5px;
  font-weight: 600;
  transition:
    border-color 0.18s,
    transform 0.18s,
    box-shadow 0.18s;
}
.plat:hover {
  border-color: var(--b, var(--brand));
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.plat svg {
  width: 20px;
  height: 20px;
  flex: none;
  color: var(--b, var(--brand));
}

/* ============ PROOF BAND ============ */
.proof {
  padding: clamp(30px, 4vw, 52px) 0;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.stat-card {
  background: var(--bg-subtle);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  text-align: left;
}
.stat-card .n {
  font-family: var(--font-brand);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.stat-card .n em {
  font-style: normal;
  color: var(--brand);
}
.stat-card .l {
  font-size: 13.5px;
  color: var(--fg-3);
  line-height: 1.5;
  margin-top: 12px;
}
.proof-src {
  font-size: 11.5px;
  color: var(--fg-4);
  margin-top: 14px;
}
.proof-src a {
  border-bottom: 1px solid var(--line);
  transition: color 0.15s;
}
.proof-src a:hover {
  color: var(--ink);
}

/* ============ SECTIONS COMMON ============ */
.section {
  padding: clamp(56px, 7vw, 104px) 0;
}
.section-head {
  max-width: 760px;
  margin-bottom: clamp(38px, 5vw, 60px);
}
.section-head .eyebrow {
  margin-bottom: 22px;
}
.section-head h2 {
  margin-bottom: 18px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head.center .lede {
  margin-left: auto;
  margin-right: auto;
}

/* ============ BENTO — the vision grid ============ */
.bento-sec {
  position: relative;
  padding: clamp(64px, 8vw, 110px) 0;
  background:
    radial-gradient(1100px 520px at 82% -10%, rgba(52, 211, 153, 0.35), transparent 60%),
    radial-gradient(900px 600px at 8% 108%, rgba(4, 120, 87, 0.65), transparent 62%),
    linear-gradient(160deg, #053f30 0%, #065f46 42%, #047857 100%);
  overflow: hidden;
}
.bento-sec .eyebrow {
  color: #a7f3d0;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}
.bento-sec .eyebrow .dot {
  background: #34d399;
}
.bento-sec .lede {
  color: rgba(236, 253, 245, 0.75);
}
.bento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}
.b-card {
  border-radius: var(--r-lg);
  background: #fff;
  padding: 22px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 44px -18px rgba(2, 26, 19, 0.45);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.b-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px -20px rgba(2, 26, 19, 0.55);
}
.b-kpi {
  grid-column: span 4;
}
.b-autom {
  grid-column: span 4;
}
.b-quote {
  grid-column: span 4;
}
.b-table {
  grid-column: span 5;
}
.b-feed {
  grid-column: span 4;
}
.b-guard {
  grid-column: span 3;
}
.b-feature {
  grid-column: span 4;
}

/* KPI chart card */
.k-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-2);
}
.k-head .dots {
  color: var(--fg-4);
  letter-spacing: 2px;
  font-weight: 700;
}
.k-val {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 12px 0 4px;
}
.k-val b {
  font-family: var(--font-brand);
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.k-val .k-up {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--brand-deep);
}
.k-chart {
  width: 100%;
  height: auto;
  margin-top: 6px;
}
.k-line {
  stroke-dasharray: 560;
  stroke-dashoffset: 560;
}
.k-area {
  opacity: 0;
  transition: opacity 0.8s ease 0.8s;
}
.bento.in .k-line {
  animation: draw 1.7s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.25s;
}
.bento.in .k-area {
  opacity: 1;
}
@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

/* Automations card */
.a-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-2);
  margin-bottom: 14px;
}
.a-head .tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: var(--brand-deep);
  background: var(--brand-subtle);
  border-radius: 999px;
  padding: 3px 10px;
}
.a-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  margin-bottom: 8px;
  transition:
    border-color 0.3s,
    background 0.3s;
}
.a-row:last-child {
  margin-bottom: 0;
}
.a-row.done {
  border-color: var(--brand-muted);
  background: var(--brand-subtle);
}
.a-tog {
  width: 34px;
  height: 20px;
  border-radius: 999px;
  background: var(--line);
  position: relative;
  flex: none;
  transition: background 0.3s;
}
.a-tog::after {
  content: "";
  position: absolute;
  top: 2.5px;
  left: 2.5px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(10, 10, 15, 0.25);
  transition: transform 0.3s;
}
.a-row.done .a-tog {
  background: var(--brand);
}
.a-row.done .a-tog::after {
  transform: translateX(14px);
}
.a-bd {
  flex: 1;
  min-width: 0;
}
.a-ti {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.a-cs {
  font-size: 10.5px;
  color: var(--fg-4);
  margin-top: 1px;
}
.a-st {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--fg-4);
  flex: none;
  transition: color 0.3s;
}
.a-row.done .a-st {
  color: var(--brand-deep);
}

/* Quote tiles */
.b-quote {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(150deg, #10b981, #059669);
  color: #fff;
  min-height: 210px;
}
.b-quote p {
  font-family: var(--font-brand);
  font-size: clamp(1.35rem, 1.9vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  max-width: 16ch;
}
.b-quote .qq {
  position: absolute;
  top: 14px;
  left: 20px;
  font-family: var(--font-brand);
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  opacity: 0.22;
}

/* Cross-platform table card */
.t-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-2);
  margin-bottom: 12px;
}
.t-cols {
  display: grid;
  grid-template-columns: 1fr 74px 60px;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-4);
  padding: 0 12px 8px;
}
.t-cols span:nth-child(2),
.t-cols span:nth-child(3) {
  text-align: right;
}
.t-row {
  display: grid;
  grid-template-columns: 1fr 74px 60px;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-top: 1px solid var(--line-soft);
}
.t-plat {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
}
.t-plat i {
  width: 9px;
  height: 9px;
  border-radius: 3px;
  flex: none;
}
.t-spend,
.t-roas {
  font-size: 12.5px;
  font-weight: 600;
  text-align: right;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}
.t-roas {
  color: var(--brand-deep);
}
.t-bar {
  grid-column: 1/-1;
  height: 4px;
  border-radius: 99px;
  background: var(--line-soft);
  overflow: hidden;
  margin-top: 7px;
}
.t-bar i {
  display: block;
  height: 100%;
  border-radius: 99px;
  background: var(--brand);
  width: 0;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.bento.in .t-bar i {
  width: var(--w);
}
.t-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line-soft);
  margin-top: 2px;
  padding: 12px 12px 0;
  font-size: 11.5px;
  color: var(--fg-4);
}
.t-foot b {
  color: var(--brand-deep);
  font-weight: 700;
}

/* Feed tile (dark) */
.b-feed {
  background: var(--ink);
  color: #fff;
}
.b-feed .qlabel {
  color: rgba(255, 255, 255, 0.45);
}
.b-feed .con-feed {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.1);
  height: 230px;
}
.b-feed .con-feed::before {
  background: linear-gradient(#0a0a0f, rgba(10, 10, 15, 0));
}
.b-feed .con-feed::after {
  background: linear-gradient(rgba(10, 10, 15, 0), #0a0a0f);
}
.b-feed .con-frow {
  border-bottom-color: rgba(255, 255, 255, 0.07);
}
.b-feed .con-frow .ti {
  color: #fff;
}
.b-feed .con-frow .cs {
  color: rgba(255, 255, 255, 0.42);
}
.b-feed .con-frow .ac {
  background: rgba(16, 185, 129, 0.16);
  color: #34d399;
}
.b-feed .con-frow .ac.q {
  background: rgba(251, 191, 36, 0.14);
  color: #fbbf24;
}

/* Guardrail tile */
.b-guard {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  background: var(--brand-subtle);
}
.g-k {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-ink);
}
.g-cap {
  font-family: var(--font-brand);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--brand-ink);
  font-variant-numeric: tabular-nums;
}
.g-cap span {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-deep);
}
.g-meter {
  height: 8px;
  border-radius: 99px;
  background: rgba(4, 120, 87, 0.15);
  overflow: hidden;
}
.g-meter i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--brand), var(--brand-deep));
  transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}
.bento.in .g-meter i {
  width: 62%;
}
.g-note {
  font-size: 11.5px;
  color: var(--brand-deep);
  font-weight: 600;
}
.g-zero {
  display: flex;
  align-items: baseline;
  gap: 8px;
  border-top: 1px solid rgba(4, 120, 87, 0.15);
  padding-top: 14px;
}
.g-zero b {
  font-family: var(--font-brand);
  font-size: 26px;
  font-weight: 700;
  color: var(--brand-ink);
}
.g-zero span {
  font-size: 11.5px;
  color: var(--brand-deep);
  line-height: 1.35;
}

/* Feature row (deep green cards, like the reference grid) */
.b-feature {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #ecfdf5;
  box-shadow: none;
  padding: 30px 28px;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}
.b-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px -18px rgba(2, 26, 19, 0.5);
  background: rgba(255, 255, 255, 0.09);
}
.b-feature svg {
  width: 56px;
  height: 56px;
  align-self: flex-end;
  opacity: 0.95;
}
.b-feature p {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.01em;
}
.b-feature p b {
  color: #6ee7b7;
  font-weight: 600;
}

/* ============ CASE FOR AUTONOMY ============ */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(30px, 4.5vw, 64px);
  align-items: center;
  padding: clamp(30px, 4vw, 48px) 0;
}
.split.rev {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
}
.split .n-chip {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-deep);
  margin-bottom: 14px;
}
.split h3 {
  font-family: var(--font-brand);
  font-size: clamp(1.5rem, 2.4vw, 2.05rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 14px;
}
.split p {
  color: var(--fg-3);
  max-width: 56ch;
}
.shot {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-float);
  background: var(--bg-subtle);
}
/* transparent floating collage — no card frame, pops off the page */
.shot-float {
  position: relative;
}
.shot-float img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 48px rgba(10, 10, 15, 0.18))
    drop-shadow(0 6px 16px rgba(10, 10, 15, 0.12));
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.shot-float:hover img {
  transform: translateY(-6px) scale(1.015);
}
@media (prefers-reduced-motion: reduce) {
  .shot-float img,
  .shot-float:hover img {
    transition: none;
    transform: none;
  }
}
.shot img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1600/893;
  object-fit: cover;
}

/* Won't-say compare card */
.compare {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.compare .m-row {
  display: grid;
  grid-template-columns: 86px auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 15px 20px;
  border-bottom: 1px solid var(--line-soft);
}
.compare .m-row:last-child {
  border-bottom: 0;
}
.compare .t {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--fg-3);
}
.compare .v {
  justify-self: start;
  padding: 4px 11px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  border-radius: 999px;
  background: var(--bg-subtle);
  border: 1px solid var(--line);
  color: var(--fg-4);
}
.compare .v.warn {
  color: #b45309;
  border-color: #fde68a;
  background: #fffbeb;
}
.compare .m-row > span:last-child {
  font-size: 14px;
  color: var(--ink-2);
}
.compare .row-exec {
  background: var(--brand-subtle);
}
.compare .row-exec .t {
  color: var(--brand-deep);
}
.compare .row-exec .v {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}
.compare .row-exec > span:last-child {
  font-weight: 600;
  color: var(--brand-ink);
}

/* ============ EXECUTION LOOP ============ */
.loop-sec {
  background: var(--bg-subtle);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.loop-step {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  padding: clamp(26px, 3.4vw, 44px);
  margin-bottom: 18px;
}
.loop-step .n-chip {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-deep);
  margin-bottom: 16px;
}
.loop-step h3 {
  font-family: var(--font-brand);
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 12px;
}
.loop-step > p,
.loop-step .fig-split p {
  color: var(--fg-3);
  max-width: 60ch;
  margin-bottom: 24px;
}
.fig-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(26px, 3.2vw, 52px);
  align-items: center;
}
.fig-split p {
  margin-bottom: 0 !important;
}
@media (max-width: 760px) {
  .fig-split {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }
}
.plat-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.waste-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: clamp(26px, 3vw, 38px);
}
.waste-card {
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  padding: 20px 18px 22px;
  background: var(--bg-subtle);
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s,
    background 0.2s;
}
.waste-card:hover {
  transform: translateY(-3px);
  background: #fff;
  border-color: var(--brand-muted);
  box-shadow: var(--shadow-card);
}
.waste-card .g {
  margin-bottom: 26px;
  color: var(--fg-4);
}
.waste-card .idx {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--brand-deep);
  display: block;
  margin-bottom: 7px;
}
.waste-card h4 {
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 7px;
  color: var(--ink);
}
.waste-card p {
  font-size: 12.5px;
  color: var(--fg-3);
  line-height: 1.55;
}
.modes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 820px;
}
.mode {
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  padding: 18px 19px;
  background: var(--bg-subtle);
}
.mode b {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 7px;
  color: var(--ink);
}
.mode span {
  display: block;
  font-size: 12.5px;
  color: var(--fg-3);
  line-height: 1.55;
}
.mode.on {
  background: var(--ink);
  border-color: var(--ink);
}
.mode.on b {
  color: #34d399;
}
.mode.on span {
  color: rgba(255, 255, 255, 0.72);
}
@media (max-width: 880px) {
  .modes {
    grid-template-columns: 1fr;
  }
}

/* ============ EVIDENCE ============ */
.ev-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.ev-card {
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  background: var(--bg-subtle);
  padding: 22px 20px;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s,
    background 0.2s;
}
.ev-card:hover {
  transform: translateY(-3px);
  background: #fff;
  border-color: var(--brand-muted);
  box-shadow: var(--shadow-card);
}
.ev-card svg {
  margin-bottom: 16px;
  color: var(--brand-deep);
}
.ev-card b {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 7px;
}
.ev-card span {
  font-size: 12.5px;
  color: var(--fg-3);
  line-height: 1.55;
  display: block;
}
@media (max-width: 880px) {
  .ev-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .ev-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ============ TRUST BAND ============ */
.trust {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.trust .eyebrow {
  color: #34d399;
  background: rgba(52, 211, 153, 0.1);
  border-color: rgba(52, 211, 153, 0.25);
}
.trust .lede {
  color: rgba(255, 255, 255, 0.6);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.trust-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  background: rgba(255, 255, 255, 0.03);
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.2s;
}
.trust-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(52, 211, 153, 0.35);
  transform: translateY(-3px);
}
.trust-item .k {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #34d399;
  margin-bottom: 12px;
}
.trust-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}
.trust .shot {
  border-color: rgba(255, 255, 255, 0.14);
}

/* ============ PRICING ============ */
.price-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(800px 400px at 90% -20%, rgba(52, 211, 153, 0.4), transparent 55%),
    linear-gradient(150deg, #053f30, #065f46 55%, #047857);
  box-shadow: var(--shadow-float);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(30px, 4.5vw, 64px);
  align-items: center;
  padding: clamp(32px, 4.5vw, 56px);
}
.price-card .plan {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a7f3d0;
  margin-bottom: 18px;
}
.price-card .amount {
  font-family: var(--font-brand);
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin-bottom: 8px;
}
.price-card .per {
  font-size: 13.5px;
  color: rgba(236, 253, 245, 0.65);
  margin-bottom: 26px;
}
.price-card ul {
  list-style: none;
}
.price-card li {
  font-size: 14.5px;
  padding: 13px 0 13px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}
.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.18)
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18"><path d="M5 9.5l2.6 2.6L13 6.6" fill="none" stroke="%2334d399" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>')
    center/12px no-repeat;
}
@media (max-width: 720px) {
  .price-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
  }
}

/* ============ FAQ ============ */
.faq-list {
  max-width: 820px;
}
.faq-item {
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  background: #fff;
  margin-bottom: 10px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.faq-item.open {
  border-color: var(--brand-muted);
  box-shadow: var(--shadow-card);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  text-align: left;
  padding: 20px 22px;
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  font-weight: 600;
  color: var(--ink);
}
.faq-q .pm {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brand-subtle);
  color: var(--brand-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 600;
  flex: none;
  transition:
    transform 0.25s ease,
    background 0.2s,
    color 0.2s;
}
.faq-item.open .pm {
  transform: rotate(45deg);
  background: var(--brand);
  color: #fff;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-a p {
  padding: 0 22px 22px;
  color: var(--fg-3);
  max-width: 64ch;
  line-height: 1.65;
}

/* ============ FINAL CTA ============ */
.final {
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(900px 480px at 50% 120%, rgba(52, 211, 153, 0.45), transparent 62%),
    linear-gradient(165deg, #053f30, #065f46 55%, #047857);
}
.final .eyebrow {
  color: #a7f3d0;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  margin-bottom: 24px;
}
.final h2 {
  color: #fff;
}
.final .lede {
  color: rgba(236, 253, 245, 0.75);
  margin: 0 auto 34px;
}
.final .hero-ctas {
  justify-content: center;
  margin-bottom: 0;
}
.final .btn-primary {
  background: #fff;
  color: var(--brand-ink);
}
.final .btn-primary:hover {
  background: var(--brand-subtle);
  box-shadow: 0 12px 28px -10px rgba(0, 0, 0, 0.35);
}

/* ============ FOOTER ============ */
.footer {
  border-top: 1px solid var(--line-soft);
  padding: 64px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 56px;
}
.footer h5 {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-4);
  margin-bottom: 16px;
}
.footer a {
  display: block;
  font-size: 13.5px;
  padding: 5px 0;
  color: var(--fg-2);
  transition: color 0.15s;
}
.footer a:hover {
  color: var(--brand-deep);
}
.footer .fbrand p {
  font-size: 13px;
  color: var(--fg-3);
  max-width: 30ch;
  margin-top: 12px;
  line-height: 1.6;
}
.footer .logo img {
  height: 24px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  border-top: 1px solid var(--line-soft);
  padding-top: 22px;
  font-size: 12px;
  color: var(--fg-4);
}
.footer-bottom .tagline {
  color: var(--ink);
  font-weight: 600;
}
.sr {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  overflow: hidden;
  white-space: nowrap;
}

/* ============ FLOCK BAND ============ */
.flock-band {
  padding: 0 0 clamp(24px, 3.5vw, 48px);
}
.flock-band img {
  width: 100%;
  height: auto;
  border-radius: var(--r-lg);
  border: 1px solid var(--line-soft);
}

/* ============ AMBIENT MOTION ============ */
.hero .con {
  animation: drift 7s ease-in-out infinite;
}
@keyframes drift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.bento-sec::before {
  content: "";
  position: absolute;
  inset: -25%;
  pointer-events: none;
  background: radial-gradient(640px 420px at 68% 22%, rgba(52, 211, 153, 0.22), transparent 60%);
  animation: aurora 16s ease-in-out infinite alternate;
}
@keyframes aurora {
  from {
    transform: translate3d(-4%, -2%, 0);
  }
  to {
    transform: translate3d(4%, 3%, 0);
  }
}
.bento-sec .wrap {
  position: relative;
}
.kicker::after {
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.9s cubic-bezier(0.2, 0.6, 0.2, 1) 0.35s;
}
.kicker.in::after {
  transform: scaleX(1);
}
.team-card img {
  transition: transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.team-card:hover img {
  transform: scale(1.05);
}

/* ============ REVEAL / SCROLL ANIMATION ============ */
.rv {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s cubic-bezier(0.2, 0.6, 0.2, 1),
    transform 0.75s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.rv.in {
  opacity: 1;
  transform: translateY(0);
}
.rv-s {
  transform: translateY(28px) scale(0.97);
}
.rv-s.in {
  transform: translateY(0) scale(1);
}
.rv-d1 {
  transition-delay: 0.08s;
}
.rv-d2 {
  transition-delay: 0.16s;
}
.rv-d3 {
  transition-delay: 0.24s;
}
.rv-d4 {
  transition-delay: 0.32s;
}
.rv-d5 {
  transition-delay: 0.4s;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1020px) {
  .b-kpi,
  .b-autom {
    grid-column: span 6;
  }
  .b-quote {
    grid-column: span 12;
    min-height: 170px;
  }
  .b-table {
    grid-column: span 7;
  }
  .b-feed {
    grid-column: span 5;
  }
  .b-guard {
    grid-column: span 6;
  }
  .b-feature {
    grid-column: span 12;
    min-height: 0;
  }
  .waste-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer .fbrand {
    grid-column: 1/-1;
  }
}
@media (max-width: 880px) {
  .nav-links,
  .nav-cta .btn {
    display: none;
  }
  .burger {
    display: flex;
  }
  .hero .wrap {
    grid-template-columns: minmax(0, 1fr);
  }
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .split,
  .split.rev {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }
  .b-kpi,
  .b-autom,
  .b-table,
  .b-feed,
  .b-guard {
    grid-column: span 12;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .waste-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .proof-grid {
    grid-template-columns: 1fr;
  }
  .con-feed {
    height: 190px;
  }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .rv {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .con-live {
    animation: none;
  }
  .fl {
    animation: none;
  }
  .uline svg path {
    stroke-dashoffset: 0;
    animation: none;
  }
  .con-track {
    animation: none;
    transform: translateY(0);
  }
  .marquee-track {
    animation: none;
  }
  .k-line {
    stroke-dashoffset: 0;
    animation: none;
  }
  .k-area {
    opacity: 1;
  }
  .bento .t-bar i {
    width: var(--w);
    transition: none;
  }
  .bento .g-meter i {
    width: 62%;
    transition: none;
  }
  .hero .con {
    animation: none;
  }
  .bento-sec::before {
    animation: none;
  }
  .kicker::after {
    transform: scaleX(1);
    transition: none;
  }
  * {
    transition-duration: 0.01ms !important;
  }
}
