/* MetalEdge · Kavida-inspired redesign */

* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #ffffff;
  --bg-soft: #FFFFFF;
  --bg-card: #F7F7F8;
  --ink: #0D0D0D;
  --ink-2: #3a3a3a;
  --ink-3: #6a6a6a;
  --ink-4: #9a9a9a;
  --rule: #E7E7EA;
  --gold: #4C1D95;
  --gold-2: #6D28D9;
  --gold-soft: #EDE9FE;
  --gold-halo: #8B5CF6;
  --dark: #0D0D0D;
  --dark-2: #1a1a1a;
  --dark-ink: #F5F3FF;
  --dark-ink-2: #8B8B95;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 1px 2px rgba(0,0,0,.04), 0 8px 24px rgba(0,0,0,.04);
}

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Söhne", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img, svg { display: block; max-width: 100%; }

/* ============ Layout ============ */
.wrap { width: min(1180px, 92vw); margin: 0 auto; }
.wrap-narrow { width: min(900px, 92vw); margin: 0 auto; }

/* ============ Announcement bar ============ */
.announce {
  background: linear-gradient(90deg, #0D0D0D 0%, #2E1065 50%, #6D28D9 100%);
  color: #F5F3FF;
  font-size: 13px;
  letter-spacing: 0.01em;
  padding: 10px 0;
  text-align: center;
}
.announce strong { letter-spacing: 0.12em; font-weight: 600; margin-right: 14px; font-size: 11px; }
.announce a { text-decoration: underline; margin-left: 10px; text-underline-offset: 3px; }

/* ============ Ticker (kept per user request, but simpler) ============ */
.ticker {
  border-bottom: 1px solid var(--rule);
  background: var(--bg);
  overflow: hidden;
  font-size: 12.5px;
  color: var(--ink-3);
}
.ticker-inner {
  display: flex; align-items: center; gap: 36px;
  padding: 9px 0;
  white-space: nowrap;
  animation: ticker 60s linear infinite;
  width: max-content;
}
.ticker-inner:hover { animation-play-state: paused; }
.tick { display: inline-flex; align-items: baseline; gap: 8px; }
.tick-lbl { color: var(--ink-4); letter-spacing: 0.12em; font-size: 11px; text-transform: uppercase; }
.tick-code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 9.5px; letter-spacing: 0.04em; color: var(--ink-5, #94949E); font-style: normal; margin-left: 5px; opacity: 0.7; text-transform: none; }
.tick-val { color: var(--ink); font-variant-numeric: tabular-nums; font-weight: 500; }
.tick-delta { font-variant-numeric: tabular-nums; font-size: 11.5px; }
.tick-delta.up { color: #1a7a3e; }
.tick-delta.dn { color: #b03b3b; }
.tick-live {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--ink-2); letter-spacing: 0.14em; font-size: 11px; text-transform: uppercase;
}
.tick-live::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 3px rgba(76,29,149,0.2); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============ Nav ============ */
.nav {
  border-bottom: 1px solid var(--rule);
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  position: sticky; top: 0; z-index: 50;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav-brand { display: flex; align-items: baseline; gap: 2px; font-weight: 700; font-size: 19px; letter-spacing: -0.01em; }
.nav-brand .dot { color: var(--gold); font-weight: 700; }
.nav-brand .ai { color: var(--ink-3); font-weight: 500; font-size: 14px; margin-left: 2px; }
.nav-links { display: flex; gap: 28px; font-size: 15px; color: var(--ink-2); }
.nav-links a { display: inline-flex; align-items: center; gap: 4px; }
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  background: var(--ink); color: #fff;
  padding: 10px 18px; border-radius: 999px;
  font-size: 14.5px; font-weight: 500;
  transition: transform 0.15s;
}
.nav-cta:hover { transform: translateY(-1px); }

/* Mega menu dropdown */
.nav-dropdown-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-dropdown-trigger {
  display: inline-flex; align-items: center; gap: 4px;
  cursor: pointer; color: var(--ink-2); font-size: 15px;
  background: none; border: none; font: inherit; padding: 0;
}
.nav-dropdown-trigger:hover { color: var(--ink); }
.nav-dropdown-trigger svg { transition: transform 0.2s; }
.nav-dropdown-wrap:hover .nav-dropdown-trigger svg { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 32px 36px;
  min-width: 680px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 36px;
  box-shadow: 0 12px 48px -12px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.03);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 100;
}
.nav-dropdown-wrap:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-col h4 {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-4);
  font-weight: 600;
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.nav-dropdown-col ul { list-style: none; display: grid; gap: 4px; }
.nav-dropdown-col a {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: background 0.15s;
}
.nav-dropdown-col a:hover { background: var(--bg-soft); text-decoration: none; }
.nav-dropdown-featured {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 20px;
  display: flex; flex-direction: column; justify-content: center;
  gap: 12px;
}
.nav-dropdown-featured h4 {
  margin: 0; font-size: 15px; font-weight: 600; color: var(--ink);
  letter-spacing: 0; text-transform: none;
}
.nav-dropdown-featured p { font-size: 13px; color: var(--ink-3); line-height: 1.5; margin: 0; }
.nav-dropdown-featured a {
  font-size: 13px; font-weight: 600; color: var(--gold);
  padding: 0; background: none;
}
.nav-dropdown-featured a:hover { text-decoration: underline; background: none; }

/* ============ Hero ============ */
.hero {
  padding: 72px 0 60px;
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 60px; align-items: center;
}
.hero h1 {
  font-size: clamp(40px, 5.2vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  font-weight: 600;
  margin-bottom: 22px;
  color: var(--ink);
  text-wrap: balance;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero p {
  font-size: 17.5px; line-height: 1.55;
  color: var(--ink-2);
  max-width: 460px;
  margin-bottom: 32px;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink); color: #fff;
  padding: 14px 24px; border-radius: 999px;
  font-size: 15.5px; font-weight: 500;
  transition: transform 0.15s;
}
.hero-cta:hover { transform: translateY(-1px); }
.hero-cta .arrow { display: inline-block; transition: transform 0.2s; }
.hero-cta:hover .arrow { transform: translateX(3px); }

/* Hero visual - live chat demo + mascot */
.hero-visual {
  position: relative;
  aspect-ratio: 1/1;
  display: grid; place-items: center;
}

/* =============== Hub (Kavida-style connector diagram) =============== */
.hero-hub {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 1/1.05;
  margin: 0 auto;
}

/* Prompt bar on top */
.hub-prompt {
  position: absolute;
  top: 1%;
  left: 10%; right: 10%;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 8px 10px 8px 14px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 20px -12px rgba(32,28,20,0.18);
  z-index: 4;
}
.hub-prompt-cat {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(76,29,149,0.3);
}
.hub-prompt-cat.fading { animation: catPulse 0.5s ease-out; }
@keyframes catPulse {
  from { transform: translateX(-50%) translateY(-4px); opacity: 0; }
  to { transform: translateX(-50%) translateY(0); opacity: 1; }
}
.hub-prompt-input {
  flex: 1;
  border: none; outline: none;
  font-family: inherit;
  font-size: 13px;
  color: var(--ink-2);
  background: transparent;
  min-width: 0;
}
.hub-prompt-send {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: inline-grid; place-items: center;
  flex-shrink: 0;
}

/* SVG wires */
.hub-wires {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
}
.hub-wires .wire {
  fill: none;
  stroke: #C4B5FD;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hub-wires .packet {
  filter: drop-shadow(0 0 6px rgba(76,29,149,0.9));
}

/* Connector pills */
.hub-node {
  position: absolute;
  z-index: 3;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 6px 14px 6px 6px;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 6px 16px -10px rgba(32,28,20,0.25);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-2);
  white-space: nowrap;
  animation: nodeFloat 5s ease-in-out infinite;
}
@keyframes nodeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
.hub-node-ic {
  width: 26px; height: 26px; border-radius: 50%;
  background: #F7F7F8;
  color: var(--gold);
  display: inline-grid; place-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.hub-node-ic.idx { background: linear-gradient(135deg, #8B5CF6, #6D28D9); color: #fff; }
.hub-node-ic.news { background: #1E2A44; color: #fff; }
.hub-node-ic.bom { background: #3BA55C; color: #fff; }
.hub-node-ic.reason { background: var(--ink); color: var(--gold-halo); }
.hub-node-ic.suppliers { background: #4C1D95; color: #fff; }
.hub-node-ic.forecast { background: #6B7F9E; color: #fff; }

.hub-node.tl { top: 18%; left: 3%; animation-delay: 0s; }
.hub-node.tr { top: 18%; right: 3%; animation-delay: 0.6s; }
.hub-node.l  { top: 47%; left: 0%; animation-delay: 1.2s; }
.hub-node.r  { top: 47%; right: 0%; animation-delay: 1.8s; }
.hub-node.bl { top: 75%; left: 3%; animation-delay: 2.4s; }
.hub-node.br { top: 75%; right: 3%; animation-delay: 3s; }

/* Center mascot */
.hub-center {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 30%;
  aspect-ratio: 1;
  z-index: 2;
}
.hub-center-ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--rule);
  box-shadow: 0 20px 40px -15px rgba(76,29,149,0.25), 0 0 0 8px rgba(255,255,255,0.7);
}
.hub-center-ring::before {
  content: "";
  position: absolute; inset: -14px;
  border-radius: 50%;
  border: 1.5px dashed rgba(76,29,149,0.35);
  animation: ringSpin 28s linear infinite;
}
@keyframes ringSpin { to { transform: rotate(360deg); } }

.hub-center-disk {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #DDD6FE 0%, #8B5CF6 40%, #6D28D9 75%, #6D28D9 100%);
  display: grid; place-items: center;
  overflow: hidden;
  box-shadow: inset 0 -10px 20px rgba(180,80,35,0.2);
  animation: mascotBreathe 4s ease-in-out infinite;
}
.hub-center-disk img {
  width: 78%;
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.12));
}
@keyframes mascotBreathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

/* Satellites on the ring */
.hub-sat {
  position: absolute;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--rule);
  display: grid; place-items: center;
  font-size: 13px;
  color: var(--gold);
  box-shadow: 0 4px 10px -4px rgba(32,28,20,0.2);
  z-index: 3;
}
.hub-sat.t { top: -4px; left: 20%; }
.hub-sat.b { bottom: -4px; left: 55%; }

/* Bottom app shelf */
.hub-shelf {
  position: absolute;
  bottom: 0;
  left: 12%; right: 12%;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 14px 16px 12px;
  box-shadow: 0 8px 20px -12px rgba(32,28,20,0.18);
  z-index: 3;
}
.shelf-title {
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--rule);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.shelf-logos {
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
  min-height: 28px;
}
.shelf-logo {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  opacity: 0.75;
  transition: opacity 0.3s ease;
}
.shelf-logo:hover { opacity: 1; }

/* ============ Trusted strip ============ */
.trusted {
  padding: 40px 0 80px;
}
.trusted-title { text-align: center; color: var(--ink-2); font-size: 15px; font-weight: 500; margin-bottom: 28px; }
.trusted-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
  border-radius: 6px;
}
.trusted-cell {
  aspect-ratio: 2.3/1;
  display: grid; place-items: center;
  border-right: 1px solid var(--rule);
  color: var(--ink-2);
  font-size: 15px;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.trusted-cell:last-child { border-right: none; }
.trusted-cell.italic { font-style: italic; font-family: "Georgia", serif; font-weight: 400; letter-spacing: 0; }
.trusted-cell.serif { font-family: "Georgia", serif; letter-spacing: 0.02em; font-weight: 400; font-size: 17px; }
.trusted-cell.compact { letter-spacing: -0.01em; font-weight: 700; }
.trusted-cell.solid { background: var(--ink); color: #fff; letter-spacing: 0.15em; font-size: 13px; }
.trusted-cell.industry {
  flex-direction: column;
  display: flex; align-items: center; justify-content: center;
  gap: 12px;
  color: var(--ink);
  font-size: 14.5px;
  letter-spacing: 0;
  font-weight: 500;
  padding: 22px 10px;
  aspect-ratio: auto;
  border-bottom: none;
}
.trusted-cell.industry svg { color: var(--gold); stroke-width: 1.6; }
.trusted-cell.industry:hover { background: var(--bg-soft); }

/* ============ Section header ============ */
.section-head {
  text-align: center; padding: 40px 0 60px;
}
.section-head h2 {
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 600;
  text-wrap: balance;
  margin-bottom: 14px;
}
.section-head h2 em { font-style: normal; color: var(--gold); }
.section-head p {
  font-size: 17px;
  color: var(--ink-3);
  max-width: 620px;
  margin: 0 auto;
}

/* ============ Feature rows (text | card) ============ */
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  padding: 60px 0;
}
.feature-row.flip { direction: rtl; }
.feature-row.flip > * { direction: ltr; }
.feature-eyebrow {
  font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
  margin-bottom: 14px;
}
.feature-row h3 {
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.018em;
  font-weight: 600;
  margin-bottom: 14px;
  text-wrap: balance;
}
.feature-row p { color: var(--ink-3); font-size: 16px; max-width: 440px; }

.feature-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  aspect-ratio: 1.15/1;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}

/* Product mock inside card */
.mock {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 10px 30px -10px rgba(0,0,0,0.1);
  font-size: 13.5px;
}
.mock-head { display: flex; align-items: center; gap: 10px; padding-bottom: 12px; border-bottom: 1px solid var(--rule); margin-bottom: 12px; }
.mock-head .dot { width: 22px; height: 22px; border-radius: 50%; background: linear-gradient(135deg, #A78BFA, #6D28D9); display:grid; place-items:center; color: #fff; font-size: 12px; font-weight: 700; }
.mock-head .name { font-weight: 600; font-size: 13.5px; }
.mock-head .time { margin-left: auto; color: var(--ink-4); font-size: 12px; }
.mock-msg { background: var(--bg-soft); border-radius: 12px; padding: 12px 14px; margin-bottom: 10px; color: var(--ink-2); font-size: 13.5px; line-height: 1.5; }
.mock-msg.agent { background: #0D0D0D; color: #F5F3FF; }
.mock-msg.agent strong { color: var(--gold-halo); }
.mock-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 13px; color: var(--ink-2); border-bottom: 1px solid var(--rule); }
.mock-row:last-child { border-bottom: none; }
.mock-row b { font-variant-numeric: tabular-nums; color: var(--ink); }
.mock-row .pos { color: #1a7a3e; font-weight: 600; }
.mock-row .neg { color: #b03b3b; font-weight: 600; }

/* ============ Stats section ============ */
.stats {
  padding: 80px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-top: 80px;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.stat { padding-right: 40px; border-right: 1px solid var(--rule); }
.stat:last-child { border-right: none; }
.stat-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 18px; }
.stat-num { font-size: 64px; font-weight: 600; letter-spacing: -0.03em; line-height: 1; color: var(--ink); }
.stat-icon {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--rule);
  display: grid; place-items: center;
  color: var(--ink-2);
}
.stat-title { font-size: 17px; font-weight: 600; margin-bottom: 10px; color: var(--ink); }
.stat-desc { font-size: 14px; color: var(--ink-3); line-height: 1.5; }

/* ============ Dark "do the work" section ============ */
.dark-section {
  background: var(--dark);
  color: var(--dark-ink);
  padding: 120px 0;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}
.dark-section .section-head h2 { color: var(--dark-ink); }
.dark-section .section-head p { color: var(--dark-ink-2); }

.dark-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 40px 0;
}
.dark-feature { padding: 40px 0; }
.dark-feature-card {
  background: var(--bg); color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 32px;
  aspect-ratio: 1.4/1;
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
}
.dark-feature h3 { font-size: 22px; font-weight: 600; letter-spacing: -0.015em; margin-bottom: 10px; color: var(--dark-ink); }
.dark-feature p { color: var(--dark-ink-2); font-size: 15px; line-height: 1.55; max-width: 420px; }

/* ----- Card 1 · Get notified ----- */
.card-notify {
  background: linear-gradient(180deg, #FFFFFF 0%, #F4F4F6 100%);
  justify-content: flex-start;
  gap: 12px;
}
.notify-stack { display: grid; gap: 10px; }
.notify-row {
  background: #fff;
  border-radius: 12px;
  padding: 12px 14px;
  display: flex; gap: 12px; align-items: flex-start;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 8px 20px -10px rgba(0,0,0,0.08);
}
.notify-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, #A78BFA, #6D28D9);
  color: #fff; display: grid; place-items: center;
  flex-shrink: 0;
}
.notify-avatar.alt { background: #0D0D0D; color: var(--gold-halo); }
.notify-body { flex: 1; min-width: 0; }
.notify-head { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; font-size: 12.5px; color: var(--ink-3); margin-bottom: 2px; }
.notify-head b { color: var(--ink); font-weight: 600; white-space: nowrap; }
.notify-head span { white-space: nowrap; flex-shrink: 0; }
.notify-text { font-size: 13.5px; color: var(--ink-2); line-height: 1.4; }
.notify-text .pos { color: #1a7a3e; }

/* ----- Card 2 · Ask anything ----- */
.card-ask {
  background: #F5F3FF;
  justify-content: flex-start;
  gap: 14px;
}
.chat-input {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 10px 16px;
  display: flex; align-items: center; gap: 10px;
  color: var(--ink-3);
  font-size: 13.5px;
}
.chat-q { color: var(--ink); flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.chat-cursor {
  width: 2px; height: 14px; background: var(--gold);
  animation: blink 1s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }
.chat-answer { display: grid; gap: 6px; }
.chat-row { display: flex; justify-content: space-between; font-size: 13px; color: var(--ink-2); }
.chat-row b { font-variant-numeric: tabular-nums; }
.chat-row b.pos { color: #1a7a3e; }
.chat-row b.neg { color: #b03b3b; }
.chat-bar { height: 5px; background: rgba(0,0,0,0.06); border-radius: 3px; overflow: hidden; margin-bottom: 4px; }
.chat-bar span { display: block; height: 100%; background: #1a7a3e; border-radius: 3px; }

/* ----- Card 3 · Counter drafted ----- */
.card-draft {
  background: #fff;
  padding: 0;
  justify-content: flex-start;
  overflow: hidden;
}
.draft-head {
  padding: 14px 18px;
  border-bottom: 1px solid var(--rule);
  background: #FFFFFF;
}
.draft-field { display: flex; gap: 10px; font-size: 12.5px; padding: 2px 0; }
.draft-field span { color: var(--ink-4); width: 22px; text-transform: uppercase; letter-spacing: 0.08em; font-size: 11px; padding-top: 2px; }
.draft-field b { color: var(--ink); font-weight: 500; }
.draft-body { padding: 14px 18px; flex: 1; font-size: 13.5px; color: var(--ink-2); line-height: 1.5; }
.draft-body p { margin-bottom: 8px; }
.draft-body b { color: var(--ink); font-weight: 600; }
.draft-foot {
  padding: 10px 18px; border-top: 1px solid var(--rule);
  display: flex; align-items: center; gap: 12px;
}
.draft-btn {
  background: var(--ink); color: #fff;
  padding: 6px 16px; border-radius: 999px;
  font-size: 12.5px; font-weight: 500;
}
.draft-meta { color: var(--ink-4); font-size: 11.5px; letter-spacing: 0.04em; }

/* Brand mark column */
.brandmark-col {
  width: 80px; background: #1a1a1a;
  display: grid; place-items: center;
  color: var(--gold-halo);
  font-weight: 700; font-size: 28px;
  position: absolute; left: 0; top: 0; bottom: 0;
}

/* ============ Ask Midas card ============ */
.ask-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 48px 32px 32px;
  text-align: center;
  aspect-ratio: 1.15/1;
  display: flex; flex-direction: column; justify-content: space-between; align-items: center;
}
.ask-disk {
  width: 160px; height: 160px; border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #DDD6FE, #8B5CF6 50%, #6D28D9 100%);
  display: grid; place-items: center;
  overflow: hidden; position: relative;
  box-shadow: 0 20px 40px -15px rgba(76,29,149,0.6);
}
.ask-disk svg { width: 125%; transform: translateY(12%); }
.ask-card h4 { font-size: 22px; font-weight: 600; letter-spacing: -0.015em; margin-top: 8px; color: var(--ink); }

/* ============ CTA section ============ */
.cta-section {
  padding: 140px 0 120px;
  text-align: center;
}
.cta-section .mascot-sit {
  width: 220px; margin: 0 auto 20px;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.12));
}
.cta-section h2 {
  font-size: clamp(30px, 3.8vw, 48px);
  letter-spacing: -0.02em; line-height: 1.1; font-weight: 600;
  text-wrap: balance;
  margin-bottom: 12px;
}
.cta-section p { color: var(--ink-3); font-size: 17px; margin-bottom: 28px; }
.cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink); color: #fff;
  padding: 14px 28px; border-radius: 999px;
  font-size: 15.5px; font-weight: 500;
  transition: transform 0.15s;
}
.cta-btn:hover { transform: translateY(-1px); }

/* ============ Footer ============ */
.footer {
  border-top: 1px solid var(--rule);
  padding: 60px 0 40px;
  color: var(--ink-3);
  font-size: 14px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer h5 { font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink); margin-bottom: 14px; }
.footer ul { list-style: none; display: grid; gap: 8px; }
.footer a:hover { color: var(--ink); }
.footer-bottom {
  padding-top: 24px; border-top: 1px solid var(--rule);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--ink-4);
}

/* ============ Responsive ============ */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 40px; padding-top: 40px; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .trusted-grid { grid-template-columns: repeat(3, 1fr); }
  .trusted-cell { border-bottom: 1px solid var(--rule); }
  .trusted-cell:nth-child(3n) { border-right: none; }
  .feature-row { grid-template-columns: 1fr; gap: 40px; }
  .feature-row.flip { direction: ltr; }
  .stats-grid { grid-template-columns: 1fr; gap: 30px; }
  .stat { padding: 0 0 30px; border-right: none; border-bottom: 1px solid var(--rule); }
  .stat:last-child { border-bottom: none; }
  .dark-features { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-links { display: none; }
  .time-compare { grid-template-columns: 1fr; }
  .time-compare > .vs { display: none; }
  .slider-card { padding: 32px 24px; }
  .slider-results { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: 1fr 1fr; }
  .noerp-grid { grid-template-columns: 1fr; }
}

/* ============================================================ */
/* ==================  NEW SECTIONS  ========================== */
/* ============================================================ */

/* ---- Time comparison: "2 hours → 60 seconds" ---- */
.time-section {
  padding: 100px 0 40px;
}
.time-lede {
  text-align: center;
  max-width: 780px; margin: 0 auto 56px;
}
.time-lede h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 600;
  text-wrap: balance;
  margin-bottom: 14px;
}
.time-lede h2 em { font-style: normal; color: var(--gold); }
.time-lede p { color: var(--ink-3); font-size: 17px; }

.time-compare {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: stretch;
  gap: 0;
  max-width: 980px; margin: 0 auto;
}
.time-col {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
}
.time-col.midas {
  background: var(--ink);
  color: var(--dark-ink);
}
.time-col .k {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 16px;
  font-weight: 600;
}
.time-col.midas .k { color: var(--dark-ink-2); }
.time-col.midas .k em { font-style: normal; color: var(--gold-halo); }
.time-col .big {
  font-size: 56px; font-weight: 600; letter-spacing: -0.02em; line-height: 1;
  margin-bottom: 12px;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.time-col.midas .big { color: var(--dark-ink); }
.time-col.midas .big em { font-style: normal; color: var(--gold-halo); }
.time-col .big .u { font-size: 24px; color: var(--ink-3); font-weight: 500; margin-left: 4px; }
.time-col.midas .big .u { color: var(--dark-ink-2); }
.time-col .sub { font-size: 14px; color: var(--ink-3); max-width: 320px; line-height: 1.5; }
.time-col.midas .sub { color: var(--dark-ink-2); }
.time-compare .vs {
  display: grid; place-items: center;
  color: var(--gold); font-size: 22px; font-weight: 500;
}

.time-rows {
  margin-top: 56px;
  max-width: 980px; margin-left: auto; margin-right: auto;
  border-top: 1px solid var(--rule);
}
.time-row {
  display: grid; grid-template-columns: 1fr auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 20px 8px;
  border-bottom: 1px solid var(--rule);
  font-size: 15px;
}
.time-row .label { color: var(--ink); font-weight: 500; }
.time-row .was { color: var(--ink-4); text-decoration: line-through; font-variant-numeric: tabular-nums; text-align: right; min-width: 90px; }
.time-row .now { color: var(--ink); font-weight: 600; font-variant-numeric: tabular-nums; }
.time-row .delta { color: #1a7a3e; font-variant-numeric: tabular-nums; font-weight: 500; min-width: 72px; text-align: right; }
.time-row .arrow { color: var(--ink-4); }

/* ---- McKinsey slider ---- */
.slider-section {
  padding: 80px 0 100px;
}
.slider-lede {
  max-width: 880px; margin: 0 auto 48px;
  text-align: center;
}
.slider-quote {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 8px 18px 8px 14px;
  font-size: 13px;
  color: var(--ink-3);
  margin-bottom: 28px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}
.slider-quote .q {
  background: linear-gradient(135deg, #A78BFA, #6D28D9);
  color: #fff;
  font-size: 10px; letter-spacing: 0.12em; font-weight: 700;
  padding: 3px 8px; border-radius: 999px;
}
.slider-lede h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 600;
  text-wrap: balance;
  margin-bottom: 18px;
}
.slider-lede h2 em { font-style: normal; color: var(--gold); }
.slider-lede h2 strong { font-weight: 600; color: var(--ink); }
.slider-lede p { color: var(--ink-3); font-size: 17px; max-width: 600px; margin: 0 auto; }
.slider-lede p cite { font-style: normal; font-weight: 500; color: var(--ink); }

.slider-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 48px 48px 40px;
  max-width: 1080px; margin: 0 auto;
}
.slider-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap; gap: 12px;
}
.slider-label {
  font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-3); font-weight: 600;
}
.slider-readout {
  font-size: 44px; font-weight: 600; letter-spacing: -0.02em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  display: flex; align-items: baseline; gap: 4px;
}
.slider-readout .pre { font-size: 28px; color: var(--ink-3); font-weight: 500; }

.slider-wrap {
  padding: 12px 0 8px;
}
.slider {
  -webkit-appearance: none; appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(to right, var(--gold) 0%, var(--gold) var(--fill, 50%), rgba(0,0,0,0.08) var(--fill, 50%), rgba(0,0,0,0.08) 100%);
  outline: none;
  cursor: pointer;
}
.slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 26px; height: 26px; border-radius: 50%;
  background: #fff;
  border: 2px solid var(--gold);
  box-shadow: 0 2px 8px rgba(76,29,149,0.4);
  cursor: grab;
}
.slider::-webkit-slider-thumb:active { cursor: grabbing; }
.slider::-moz-range-thumb {
  width: 26px; height: 26px; border-radius: 50%;
  background: #fff;
  border: 2px solid var(--gold);
  box-shadow: 0 2px 8px rgba(76,29,149,0.4);
  cursor: grab;
}
.slider-ticks {
  display: flex; justify-content: space-between;
  margin-top: 10px;
  font-size: 11.5px; color: var(--ink-4);
  font-variant-numeric: tabular-nums;
}

.slider-results {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.slider-result {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
}
.slider-result.good {
  background: linear-gradient(160deg, #DDD6FE 0%, #A78BFA 100%);
}
.slider-result .k {
  font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 4px; font-weight: 700;
}
.slider-result.good .k { color: #5B21B6; }
.slider-result .title {
  font-size: 13px; color: var(--ink-3); margin-bottom: 12px;
}
.slider-result.good .title { color: #4C1D95; }
.slider-result .val {
  font-size: 32px; font-weight: 600; letter-spacing: -0.02em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  line-height: 1.05;
}
.slider-result.good .val { color: #2E1065; }
.slider-result .foot {
  font-size: 12px; color: var(--ink-4);
  margin-top: 10px; line-height: 1.45;
}
.slider-result.good .foot { color: #4C1D95; }

.slider-note {
  margin-top: 28px;
  font-size: 14px; color: var(--ink-3); line-height: 1.55;
  text-align: center;
}
.slider-note strong { color: var(--ink); font-weight: 600; }

/* ---- No ERP callout ---- */
.noerp-section { padding: 80px 0; }
.noerp-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.noerp-card .eyebrow {
  font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
  margin-bottom: 14px;
}
.noerp-card h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.1; letter-spacing: -0.02em;
  font-weight: 600; text-wrap: balance;
  margin-bottom: 14px;
}
.noerp-card p { color: var(--ink-3); font-size: 16px; line-height: 1.55; max-width: 440px; }
.noerp-list { display: grid; gap: 14px; }
.noerp-list li {
  list-style: none;
  display: flex; align-items: center; gap: 12px;
  font-size: 15.5px; color: var(--ink);
}
.noerp-list .check {
  flex-shrink: 0;
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg, #A78BFA, #6D28D9);
  color: #fff;
  display: grid; place-items: center;
  font-size: 13px; font-weight: 700;
}

/* ---- Method: three steps ---- */
.steps-section { padding: 80px 0 40px; }
.steps-head { text-align: center; margin-bottom: 56px; }
.steps-head h2 {
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.1; letter-spacing: -0.02em;
  font-weight: 600; text-wrap: balance;
  margin-bottom: 12px;
}
.steps-head h2 em { font-style: normal; color: var(--gold); }
.steps-head p { color: var(--ink-3); font-size: 17px; }
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.step {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.step:hover { transform: translateY(-2px); box-shadow: 0 12px 32px -16px rgba(0,0,0,0.1); }
.step-num {
  font-size: 12px; letter-spacing: 0.14em; color: var(--gold);
  font-weight: 700; font-variant-numeric: tabular-nums;
  margin-bottom: 18px;
}
.step h4 {
  font-size: 22px; font-weight: 600; letter-spacing: -0.015em;
  margin-bottom: 10px; line-height: 1.2;
}
.step p { color: var(--ink-3); font-size: 14.5px; line-height: 1.55; margin-bottom: 18px; }
.step-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-card);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px; color: var(--ink-2);
  max-width: 100%;
}
.step-chip .icon { color: var(--gold); font-size: 14px; }
.step-chip.verdict {
  background: #0D0D0D; color: var(--gold-halo);
  font-weight: 600;
}
.step-chip.verdict strong { color: #fff; font-weight: 600; margin-right: 4px; }
.step-chip.verdict .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-halo); }
.step-chip.email .icon { color: var(--ink-3); }

/* ---- More tools grid ---- */
.tools-section { padding: 40px 0 80px; }
.tools-head { text-align: center; margin-bottom: 48px; }
.tools-head h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.1; letter-spacing: -0.02em;
  font-weight: 600; text-wrap: balance;
}
.tools-head h2 em { font-style: normal; color: var(--gold); }
.tools-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.tool-card {
  background: var(--bg-card);
  border-radius: 22px;
  padding: 26px;
  display: flex; flex-direction: column; gap: 16px;
  min-height: 220px;
}
.tool-k {
  width: 28px; height: 28px; border-radius: 50%;
  background: #fff;
  color: var(--gold); font-weight: 700; font-size: 13px;
  display: grid; place-items: center;
  border: 1px solid rgba(76,29,149,0.3);
}
.tool-diagram {
  height: 56px;
  display: flex; align-items: flex-end; gap: 6px;
  color: var(--gold);
}
.tool-diagram svg { width: 100%; height: 100%; }
.tool-card h4 {
  font-size: 17px; font-weight: 600; letter-spacing: -0.01em;
  line-height: 1.2; margin-top: auto;
}
.tool-card p { color: var(--ink-3); font-size: 13.5px; line-height: 1.5; }

/* ============ Leverage + Margin Drift sections ============ */
.leverage-section {
  padding: 100px 0;
  border-top: 1px solid var(--rule);
}
.leverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.leverage-text h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin-bottom: 20px;
  text-wrap: balance;
}
.leverage-text h2 em { font-style: italic; font-weight: 700; color: var(--gold); }
.leverage-text p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  margin-bottom: 14px;
  max-width: 480px;
}
.leverage-text p strong { color: var(--ink); font-weight: 600; }
.leverage-tagline {
  font-size: 14px;
  font-style: italic;
  color: var(--gold);
  margin-top: 24px;
  font-weight: 500;
}
.nego-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
}
.nego-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  border-bottom: 1px solid var(--rule);
  background: #fff;
}
.nego-card-head span:first-child {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-4);
  font-weight: 700;
}
.nego-card-head span:last-child {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #fff;
  padding: 3px 10px;
  border-radius: 999px;
}
.nego-step {
  padding: 28px 28px;
  border-bottom: 1px solid var(--rule);
}
.nego-step:last-child { border-bottom: none; }
.nego-step-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
}
.nego-step h4 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
  color: var(--ink);
  line-height: 1.25;
}
.nego-step p {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.6;
  margin: 0;
  max-width: 380px;
}

/* Margin drift */
.drift-section {
  padding: 100px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--rule);
}
.drift-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-4);
  font-weight: 700;
  margin-bottom: 24px;
}
.drift-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.drift-text h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin-bottom: 20px;
  text-wrap: balance;
}
.drift-text h2 em { font-style: italic; font-weight: 700; color: var(--gold); }
.drift-text p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  margin-bottom: 14px;
  max-width: 480px;
}
.drift-text p strong { color: var(--ink); font-weight: 600; }
.drift-quote {
  margin-top: 28px;
  padding: 20px;
  border-left: 3px solid var(--gold);
  background: #fff;
  border-radius: 0 8px 8px 0;
}
.drift-quote p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
}
.drift-quote cite {
  display: block;
  font-size: 12px;
  color: var(--ink-4);
  font-style: italic;
  margin-top: 8px;
}
.drift-calc {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.drift-calc-head {
  padding: 20px 28px;
  font-size: 13px;
  color: var(--ink-4);
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--rule);
  font-style: italic;
}
.drift-calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  background: #fff;
  border-bottom: 1px solid var(--rule);
  font-size: 16px;
  gap: 20px;
}
.drift-calc-row:last-child { border-bottom: none; }
.drift-calc-row span { color: var(--ink); font-weight: 500; }
.drift-calc-row strong {
  font-weight: 700;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  font-size: 20px;
  white-space: nowrap;
}
.drift-calc-row.total {
  background: var(--bg-card);
  padding: 32px 28px;
}
.drift-calc-row.total span { font-weight: 600; }
.drift-calc-row.total strong {
  font-size: 36px;
  letter-spacing: -0.02em;
  font-weight: 800;
}
.drift-calc-row .sub {
  font-size: 12.5px;
  color: var(--ink-4);
  display: block;
  margin-top: 4px;
  font-weight: 400;
}
.drift-calc-foot {
  padding: 16px 28px;
  font-size: 12.5px;
  color: var(--ink-4);
  font-style: italic;
  line-height: 1.5;
  background: var(--bg-card);
  border-top: 1px solid var(--rule);
}

@media (max-width: 900px) {
  .leverage-grid, .drift-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   SupplyVerse refresh — nav additions + new sections
   ============================================================ */

/* Brand wordmark (text logo placeholder) */
.nav-brand { font-weight: 700; letter-spacing: -0.02em; color: var(--ink); font-size: 19px; }
.footer .nav-brand { color: var(--ink); }

/* Sign-in + language selector */
.nav-signin { font-size: 14.5px; color: var(--ink-2); }
.lang-select { display: inline-flex; gap: 2px; border: 1px solid var(--rule); border-radius: 999px; padding: 2px; margin: 0 4px; }
.lang-opt { font-size: 12.5px; font-weight: 600; color: var(--ink-3); padding: 4px 9px; border-radius: 999px; line-height: 1; transition: background .15s, color .15s; }
.lang-opt:hover { color: var(--ink); }
.lang-opt.active { background: var(--gold); color: #fff; }
[dir="rtl"] { text-align: right; }
[dir="rtl"] .nav-links, [dir="rtl"] .nav-inner { direction: rtl; }

/* Industries footnote */
.trusted-foot { text-align: center; color: var(--ink-3); font-size: 14px; margin-top: 16px; }

/* Video placeholder */
.video-section { margin-top: 8px; }
.video-frame { display: grid; grid-template-columns: 220px 1fr; gap: 28px; align-items: center; border: 1px solid var(--rule); border-radius: var(--radius-lg); padding: 28px; background: #fff; box-shadow: var(--shadow); }
.video-play { width: 96px; height: 96px; border-radius: 50%; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, var(--gold), var(--gold-2)); justify-self: center; box-shadow: 0 12px 30px -10px rgba(76,29,149,0.5); }
.video-eyebrow { font-size: 11px; letter-spacing: 0.14em; font-weight: 700; color: var(--gold); text-transform: uppercase; }
.video-meta h3 { font-size: 24px; letter-spacing: -0.02em; margin: 8px 0; }
.video-meta p { color: var(--ink-3); max-width: 520px; }
.video-soon { display: inline-block; margin-top: 12px; font-size: 12.5px; font-weight: 600; color: var(--ink-4); border: 1px dashed var(--rule); border-radius: 999px; padding: 4px 12px; }

/* ICP section */
.icp-section { margin-top: 88px; }
.icp-head { text-align: center; max-width: 720px; margin: 0 auto 36px; }
.icp-head h2 { font-size: 34px; letter-spacing: -0.025em; }
.icp-head p { color: var(--ink-3); margin-top: 10px; }
.icp-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 22px; }
.icp-card { border: 1px solid var(--rule); border-radius: var(--radius-lg); padding: 30px; background: #fff; }
.icp-card.good { border-color: rgba(76,29,149,0.3); box-shadow: 0 14px 36px -22px rgba(76,29,149,0.4); }
.icp-card-label { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.icp-card.good .icp-card-label { color: var(--gold); }
.icp-card.bad .icp-card-label { color: var(--ink-4); }
.icp-tick { display: inline-grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; background: var(--gold); color: #fff; font-size: 12px; }
.icp-cross { display: inline-grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; background: #ECECEF; color: var(--ink-3); font-size: 12px; }
.icp-card ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.icp-card li { position: relative; padding-left: 22px; color: var(--ink-2); font-size: 15.5px; line-height: 1.5; }
.icp-card li::before { content: ""; position: absolute; left: 4px; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.icp-card.bad li::before { background: #C9C9CE; }

/* Proactive agent */
.proactive-section { margin-top: 96px; padding: 72px 0; background: var(--ink); color: #fff; }
.proactive-head { max-width: 760px; }
.proactive-head .eyebrow { font-size: 11px; letter-spacing: 0.14em; font-weight: 700; text-transform: uppercase; color: var(--gold-halo); }
.proactive-head h2 { font-size: 38px; letter-spacing: -0.03em; margin: 10px 0; color: #fff; }
.proactive-head h2 em { color: var(--gold-halo); font-style: normal; }
.proactive-head p { color: rgba(255,255,255,0.7); font-size: 17px; }
.proactive-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 40px; }
.proactive-item { border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 22px; background: rgba(255,255,255,0.03); }
.proactive-item h4 { font-size: 16px; margin-bottom: 8px; color: #fff; }
.proactive-item p { color: rgba(255,255,255,0.62); font-size: 14px; line-height: 1.55; }

/* Use cases */
.usecases-section { margin-top: 96px; }
.usecases-head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.usecases-head h2 { font-size: 34px; letter-spacing: -0.025em; }
.usecases-head p { color: var(--ink-3); margin-top: 10px; }
.usecase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.usecase-card { display: flex; flex-direction: column; border: 1px solid var(--rule); border-radius: var(--radius-lg); padding: 26px; background: #fff; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.usecase-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -22px rgba(76,29,149,0.45); border-color: rgba(76,29,149,0.35); }
.usecase-card h4 { font-size: 18px; letter-spacing: -0.01em; margin-bottom: 8px; }
.usecase-card p { color: var(--ink-3); font-size: 14.5px; line-height: 1.55; flex: 1; }
.usecase-link { margin-top: 16px; font-size: 14px; font-weight: 600; color: var(--gold); display: inline-flex; align-items: center; gap: 6px; }
.usecase-card:hover .usecase-link .arrow { transform: translateX(3px); }
.usecase-link .arrow { transition: transform .18s ease; }

/* Live commodity intelligence widget */
.intel-section { margin-top: 96px; }
.intel-head { text-align: center; max-width: 680px; margin: 0 auto 28px; }
.intel-head .eyebrow { font-size: 11px; letter-spacing: 0.14em; font-weight: 700; text-transform: uppercase; color: var(--gold); }
.intel-head h2 { font-size: 32px; letter-spacing: -0.025em; margin: 8px 0; }
.intel-head p { color: var(--ink-3); }
.intel-widget { max-width: 760px; margin: 0 auto; border: 1px solid var(--rule); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow); overflow: hidden; }
.intel-widget-head { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; color: var(--ink-3); padding: 14px 22px; border-bottom: 1px solid var(--rule); }
.intel-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 3px rgba(76,29,149,0.18); }
.intel-list { list-style: none; }
.intel-item { display: flex; justify-content: space-between; gap: 16px; align-items: baseline; padding: 14px 22px; border-bottom: 1px solid var(--rule); }
.intel-item:last-child { border-bottom: none; }
.intel-item a, .intel-item span { font-size: 15px; color: var(--ink); line-height: 1.45; }
.intel-item a:hover { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.intel-src { font-size: 12px; color: var(--ink-4); font-style: normal; white-space: nowrap; }

/* White paper / lead magnet */
.whitepaper-section { margin-top: 96px; }
.whitepaper-card { display: grid; grid-template-columns: 1.1fr 1fr; gap: 36px; align-items: center; border-radius: var(--radius-lg); padding: 44px; background: linear-gradient(135deg, #F7F5FF 0%, #FFFFFF 60%); border: 1px solid rgba(76,29,149,0.18); }
.whitepaper-text .eyebrow { font-size: 11px; letter-spacing: 0.14em; font-weight: 700; text-transform: uppercase; color: var(--gold); }
.whitepaper-text h2 { font-size: 28px; letter-spacing: -0.02em; margin: 10px 0; line-height: 1.18; }
.whitepaper-text p { color: var(--ink-3); }
.whitepaper-form { display: flex; flex-direction: column; }
.whitepaper-label { font-size: 13px; font-weight: 600; color: var(--ink-2); margin-bottom: 8px; }
.whitepaper-row { display: flex; gap: 8px; }
.whitepaper-row input { flex: 1; border: 1px solid var(--rule); border-radius: 12px; padding: 13px 14px; font-size: 15px; background: #fff; }
.whitepaper-row input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(76,29,149,0.15); }
.whitepaper-row button { white-space: nowrap; background: var(--gold); color: #fff; font-weight: 600; font-size: 15px; padding: 0 18px; border-radius: 12px; }
.whitepaper-row button:hover { background: var(--gold-2); }
.whitepaper-row button:disabled { opacity: 0.6; cursor: default; }
.whitepaper-fine { font-size: 12.5px; color: var(--ink-4); margin-top: 10px; }
.whitepaper-err { font-size: 13px; color: #B03B3B; margin-top: 8px; }
.whitepaper-form.done { flex-direction: row; align-items: center; gap: 14px; }
.whitepaper-check { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--gold); color: #fff; font-size: 20px; flex-shrink: 0; }

/* Use-case article pages */
.uc-article { padding: 56px 0 72px; }
.uc-breadcrumb { font-size: 13px; color: var(--ink-4); margin-bottom: 24px; }
.uc-breadcrumb a:hover { color: var(--gold); }
.uc-breadcrumb span { margin: 0 6px; }
.uc-article h1 { font-size: 40px; letter-spacing: -0.03em; line-height: 1.1; }
.uc-intro { font-size: 19px; color: var(--ink-2); line-height: 1.6; margin-top: 20px; }
.uc-section { margin-top: 36px; }
.uc-section h2 { font-size: 24px; letter-spacing: -0.02em; margin-bottom: 14px; }
.uc-section p { color: var(--ink-2); font-size: 16.5px; line-height: 1.7; margin-bottom: 14px; }
.uc-example { border-left: 3px solid var(--gold); padding-left: 22px; background: #FAF9FF; border-radius: 0 12px 12px 0; padding: 22px 22px 8px; }
.uc-cta { margin-top: 48px; text-align: center; border: 1px solid rgba(76,29,149,0.2); border-radius: var(--radius-lg); padding: 40px; background: linear-gradient(135deg, #F7F5FF 0%, #FFFFFF 60%); }
.uc-cta h3 { font-size: 26px; letter-spacing: -0.02em; }
.uc-cta p { color: var(--ink-3); margin: 8px 0 20px; }
.uc-more { margin-top: 56px; }
.uc-more > h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-4); margin-bottom: 16px; }
.uc-more-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }

/* Responsive */
@media (max-width: 900px) {
  .video-frame { grid-template-columns: 1fr; text-align: center; }
  .icp-grid, .whitepaper-card { grid-template-columns: 1fr; }
  .proactive-grid { grid-template-columns: 1fr 1fr; }
  .usecase-grid, .uc-more-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .proactive-grid { grid-template-columns: 1fr; }
  .whitepaper-row { flex-direction: column; }
  .lang-select { display: none; }
}

/* Documentary imagery band */
.imagery-band { margin-top: 96px; }
.imagery-head { text-align: center; max-width: 680px; margin: 0 auto 28px; }
.imagery-head .eyebrow { font-size: 11px; letter-spacing: 0.14em; font-weight: 700; text-transform: uppercase; color: var(--gold); }
.imagery-head h2 { font-size: 32px; letter-spacing: -0.025em; margin-top: 8px; }
.imagery-collage { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 150px; gap: 12px; }
.imagery-collage figure { overflow: hidden; border-radius: 16px; background: #F2F2F4; }
.imagery-collage figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.imagery-collage figure:hover img { transform: scale(1.05); }
.imagery-collage .img-tall { grid-row: span 2; }
@media (max-width: 900px) {
  .imagery-collage { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; }
  .imagery-collage .img-tall { grid-row: span 2; }
}

/* Use Cases nav dropdown */
.nav-dropdown-uc { grid-template-columns: 1.6fr 1fr; }
.nav-dropdown-col.wide ul { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 18px; }
.nav-dropdown-col.wide li a { display: flex; flex-direction: column; gap: 2px; padding: 9px 10px; border-radius: 10px; transition: background .15s; }
.nav-dropdown-col.wide li a:hover { background: #F5F3FF; }
.uc-menu-title { font-size: 14px; font-weight: 600; color: var(--ink); }
.uc-menu-desc { font-size: 12px; color: var(--ink-3); line-height: 1.4; }
[dir="rtl"] .nav-dropdown { left: auto; right: 0; }
[dir="rtl"] .icp-card li { padding-left: 0; padding-right: 22px; }
[dir="rtl"] .icp-card li::before { left: auto; right: 4px; }
[dir="rtl"] .uc-example { border-left: none; border-right: 3px solid var(--gold); border-radius: 12px 0 0 12px; }

/* ============================================================
   Mobile friendliness (iPhone / Android / small web)
   ============================================================ */
html, body { overflow-x: hidden; max-width: 100%; }
.ticker { overflow: hidden; }

/* Hamburger button — hidden on desktop */
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: 4px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s, opacity .2s; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile dropdown menu */
.mobile-menu { display: none; }

@media (max-width: 900px) {
  .nav-burger { display: flex; }
  .nav-links { display: none; }
  .lang-select { display: none; }          /* moved into the burger menu */
  .nav-signin { display: none; }            /* in menu */
  .nav-cta { padding: 9px 15px; font-size: 13.5px; }
  .mobile-menu {
    display: flex; flex-direction: column;
    padding: 10px 6vw 20px; gap: 2px;
    background: #fff; border-bottom: 1px solid var(--rule);
    box-shadow: var(--shadow);
  }
  .mobile-menu a { padding: 13px 4px; font-size: 16px; color: var(--ink); border-bottom: 1px solid var(--rule); }
  .mobile-menu a:last-of-type { border-bottom: none; }
  .mobile-menu .mobile-cta { margin-top: 12px; background: var(--ink); color: #fff; text-align: center; border-radius: 999px; border: none; font-weight: 600; }
  .mobile-lang { display: flex; gap: 6px; margin-top: 14px; }
  .mobile-lang .lang-opt { flex: 1; border: 1px solid var(--rule); border-radius: 10px; padding: 9px 0; text-align: center; font-size: 13px; }
  .mobile-lang .lang-opt.active { background: var(--gold); color: #fff; border-color: var(--gold); }
}

/* Typography + layout scaling for phones */
@media (max-width: 700px) {
  .wrap, .wrap-narrow { width: min(100%, 90vw); }
  .hero { padding: 28px 0 36px; gap: 24px; }
  .hero h1 { font-size: clamp(29px, 8.4vw, 42px); margin-bottom: 16px; }
  .hero p { font-size: 16px; max-width: 100%; }
  .hero-visual { max-width: 360px; }
  /* Section headings */
  .leverage-text h2, .drift-text h2, .icp-head h2, .proactive-head h2, .section-head h2,
  .steps-head h2, .usecases-head h2, .tools-head h2, .time-lede h2, .slider-lede h2,
  .intel-head h2, .imagery-head h2, .noerp-card h2, .whitepaper-text h2, .cta-section h2,
  .video-meta h3 {
    font-size: clamp(23px, 6.6vw, 30px); line-height: 1.18; word-break: break-word;
  }
  .proactive-head h2 { font-size: clamp(26px, 7.4vw, 34px); }
  /* keep big numeric/price text from overflowing */
  .slider-lede h2, .time-lede h2 { font-size: clamp(22px, 6.2vw, 28px); }
  .stat-num { font-size: 40px; }
  /* tables / rows wrap nicely */
  .time-row { flex-wrap: wrap; gap: 4px 10px; }
  .drift-calc, .slider-card, .nego-card { width: 100%; }
  section { overflow-x: hidden; }
}

@media (max-width: 460px) {
  .hero h1 { font-size: clamp(26px, 8.2vw, 34px); }
  .video-frame { padding: 20px; }
  .whitepaper-card, .uc-cta { padding: 24px; }
  .proactive-section { padding: 48px 0; }
}
