@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Geist:wght@400;500;600;700;800&family=Geist+Mono:wght@400;500;600&family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: #F8FAFC;
  color: #111827;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
::selection { background: var(--accent, #7C3AED); color: white; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; padding: 0; }

.page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  font-family: 'Plus Jakarta Sans', sans-serif;
  --ink: #111827;
  --ink-2: #374151;
  --ink-3: #6B7280;
  --line: #E5E7EB;
  --line-2: #D1D5DB;
  --bg: #F8FAFC;
  --card: #FFFFFF;
}

.dot-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, color-mix(in oklab, var(--accent) 16%, #cbd5e1) 1px, transparent 1.4px);
  background-size: 22px 22px;
  opacity: 0.32;
  z-index: 0;
  mask-image: linear-gradient(to bottom, transparent, black 8%, black 88%, transparent);
}

/* ============== NAV ============== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 16px 28px 0;
  background: linear-gradient(to bottom, var(--bg) 70%, transparent);
  transition: padding .2s;
}
.nav.scrolled { padding-top: 8px; }
.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(229,231,235,0.8);
  border-radius: 999px;
  padding: 8px 8px 8px 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  box-shadow: 0 1px 0 rgba(17,24,39,0.02), 0 10px 28px -18px rgba(17,24,39,0.16);
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.brand-logo {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}
@media (max-width: 1100px) {
  .brand-logo { height: 48px; }
}
.brand-mark {
  width: 32px; height: 32px;
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 0 color-mix(in oklab, var(--accent) 70%, black);
}
.brand-text { display: flex; flex-direction: column; line-height: 1; gap: 2px; }
.brand-name { font-size: 17px; letter-spacing: -0.03em; }
.brand-by { font-size: 10.5px; font-weight: 500; color: var(--ink-3); letter-spacing: 0.02em; }
.nav-links {
  display: flex; justify-content: center; gap: 4px;
  font-size: 14.5px;
  color: var(--ink-2);
  font-weight: 500;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
  transition: background .15s, color .15s;
}
.nav-links a:hover { background: #F3F4F6; color: var(--ink); }
.nav-cta { display: flex; gap: 8px; align-items: center; }
.nav-burger { display: none; padding: 8px; }

.nav-mobile {
  display: none;
  flex-direction: column;
  max-width: 1320px;
  margin: 10px auto 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 12px;
  gap: 2px;
}
.nav-mobile a {
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 500;
}
.nav-mobile a:hover { background: var(--bg); }

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition: transform .15s, box-shadow .15s, background .15s, color .15s, border-color .15s;
  white-space: nowrap;
}
.btn-lg { padding: 14px 24px; font-size: 15.5px; }
.btn-block { width: 100%; justify-content: center; }
.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 1px 0 rgba(255,255,255,0.4) inset, 0 8px 20px -8px var(--accent);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 1px 0 rgba(255,255,255,0.4) inset, 0 14px 32px -10px var(--accent); }
.btn-ghost {
  background: white;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--ink); }
.btn-white { background: white; color: var(--ink); }
.btn-white:hover { transform: translateY(-1px); }
.btn-outline-white {
  background: transparent; color: white;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: white; }

/* ============== HERO ============== */
.hero {
  position: relative; z-index: 1;
  padding: calc(72px + 56px * var(--pad)) 28px calc(40px * var(--pad));
}
.hero-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
.hero-copy { text-align: center; max-width: 920px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  background: white;
  border: 1px solid var(--line);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 4px 12px -8px rgba(17,24,39,0.12);
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; }
.hero-title {
  font-size: clamp(40px, 5.6vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 800;
  margin: 0 0 22px;
  text-wrap: balance;
}
.hero-italic { font-weight: 700; font-style: italic; }
.hero-sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 58ch;
  margin: 0 auto 32px;
  text-wrap: pretty;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.hero-proofs {
  display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--ink-2);
}
.proof { display: inline-flex; align-items: center; gap: 6px; }
.proof svg { width: 16px; height: 16px; }

/* HERO MOCK */
.hero-mock {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}
.mock-frame {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 40px 80px -40px rgba(17,24,39,0.3), 0 18px 40px -24px rgba(17,24,39,0.16);
}
.mock-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 18px;
  background: #F9FAFB;
  border-bottom: 1px solid var(--line);
}
.mock-bar.small { padding: 10px 14px; }
.dot-led { width: 11px; height: 11px; border-radius: 50%; }
.dot-led.red { background: #FF6058; }
.dot-led.yellow { background: #FFBD2E; }
.dot-led.green { background: #28C941; }
.mock-url {
  margin-left: 12px;
  font-family: 'Geist Mono', 'JetBrains Mono', monospace;
  font-size: 12.5px;
  color: var(--ink-3);
}
.mock-grid {
  display: grid;
  grid-template-columns: 280px 1fr 280px;
  min-height: 540px;
}

.mock-list {
  border-right: 1px solid var(--line);
  padding: 14px;
  display: flex; flex-direction: column; gap: 4px;
  background: #FAFBFC;
}
.mock-list-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 10px 14px;
  border-bottom: 1px dashed var(--line);
  margin-bottom: 6px;
}
.mock-list-head strong { font-size: 14px; }
.mock-count { font-size: 11px; padding: 3px 8px; border-radius: 999px; font-weight: 600; }
.mock-conv {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .15s;
}
.mock-conv:hover { background: white; }
.mock-conv.active { background: var(--accent-softer); }
.mc-av {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 600; font-size: 13.5px;
}
.mc-av.lg { width: 44px; height: 44px; font-size: 16px; }
.mc-av.sm { width: 28px; height: 28px; font-size: 11.5px; }
.mc-meta { min-width: 0; }
.mc-row { display: flex; justify-content: space-between; align-items: center; gap: 6px; }
.mc-name { font-weight: 600; font-size: 13.5px; }
.mc-t { font-size: 11px; color: var(--ink-3); font-family: 'Geist Mono', monospace; }
.mc-status {
  font-size: 10.5px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 999px;
  text-transform: lowercase;
  letter-spacing: 0.02em;
}
.status-new { background: var(--accent-soft); color: var(--accent-ink); }
.status-active { background: var(--success-soft); color: #065F46; }
.status-done { background: #F3F4F6; color: var(--ink-3); }
.mc-unread {
  font-size: 10px;
  color: white;
  font-family: 'Geist Mono', monospace;
  padding: 2px 7px;
  border-radius: 999px;
}

.mock-chat { display: flex; flex-direction: column; border-right: 1px solid var(--line); }
.mc-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}
.ch-chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 999px;
}
.ch-chip svg { width: 12px; height: 12px; }
.mc-sub { margin-top: 4px; }
.mc-actions { display: flex; gap: 4px; }
.ghost-btn {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-3);
}
.ghost-btn:hover { background: #F3F4F6; color: var(--ink); }

.mc-body {
  flex: 1;
  padding: 18px;
  display: flex; flex-direction: column; gap: 8px;
  background: linear-gradient(to bottom, #FAFBFC, white);
  overflow: hidden;
}
.day {
  align-self: center;
  font-size: 11px;
  color: var(--ink-3);
  font-family: 'Geist Mono', monospace;
  background: white;
  border: 1px solid var(--line);
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 4px;
}
.bbl {
  max-width: 78%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.4;
  animation: pop .25s ease;
}
.bbl.sm { max-width: 88%; padding: 9px 12px; font-size: 13px; }
@keyframes pop { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.bbl.them { background: #F3F4F6; color: var(--ink); align-self: flex-start; border-bottom-left-radius: 6px; }
.bbl.me { color: white; align-self: flex-end; border-bottom-right-radius: 6px; }
.caret { animation: blink 1s steps(2) infinite; opacity: 0.7; }
@keyframes blink { 0%,80%,100% { opacity: 0.3; } 40% { opacity: 1; } }

.ai-suggest {
  margin-top: auto;
  background: white;
  border: 1.5px solid;
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 8px 20px -12px rgba(17,24,39,0.18);
}
.ai-head { font-size: 11.5px; font-weight: 600; color: var(--ink-2); display: flex; align-items: center; gap: 6px; margin-bottom: 6px; font-family: 'Geist Mono', monospace; text-transform: lowercase; letter-spacing: 0.04em; }
.ai-head svg { width: 12px; height: 12px; }
.ai-text { font-size: 13.5px; color: var(--ink); margin-bottom: 10px; }
.ai-actions { display: flex; gap: 6px; }
.ai-actions button {
  font-size: 11.5px; font-weight: 500;
  padding: 5px 10px;
  border-radius: 7px;
  background: #F3F4F6;
  color: var(--ink-2);
}
.ai-actions button:first-child { color: white; }

.mc-input {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--ink-3);
}
.mc-input span { flex: 1; background: #F3F4F6; padding: 9px 14px; border-radius: 999px; }
.send {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: white;
}
.send svg { width: 14px; height: 14px; }

.mock-rail { padding: 16px; display: flex; flex-direction: column; gap: 12px; background: #FAFBFC; }
.rail-h { font-weight: 600; font-size: 13px; padding: 4px 6px; }
.rail-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  display: flex; flex-direction: column; gap: 8px;
}
.rail-cust { display: flex; align-items: center; gap: 12px; }
.rail-name { font-weight: 600; font-size: 14px; }
.rail-meta { font-size: 11.5px; color: var(--ink-3); margin-top: 2px; }
.rail-sub { font-size: 11px; color: var(--ink-3); font-family: 'Geist Mono', monospace; margin-bottom: 4px; letter-spacing: 0.04em; }
.rail-row { display: flex; justify-content: space-between; font-size: 12.5px; }
.rail-row span { color: var(--ink-3); }
.rail-row strong { font-weight: 600; }
.rail-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.tag-pill {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 999px;
  text-transform: lowercase;
  letter-spacing: 0.02em;
}

/* Floating channel chips */
.float-chip { position: absolute; z-index: 2; animation: bob 4s ease-in-out infinite; pointer-events: none; }
@keyframes bob { 50% { transform: translateY(-10px); } }
.fc-inner {
  width: 52px; height: 52px;
  border-radius: 16px;
  background: white;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px -16px rgba(17,24,39,0.3);
}
.fc-inner svg { width: 22px; height: 22px; }

/* ============== TRUST STRIP ============== */
.trust { position: relative; z-index: 1; padding: calc(40px * var(--pad)) 28px; }
.trust-inner { max-width: 1320px; margin: 0 auto; }
.trust-tag { text-align: center; font-size: 14.5px; color: var(--ink-3); margin: 0 0 24px; }
.trust-tag strong { color: var(--ink); font-weight: 600; }
.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}
.trust-stat {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.trust-stat:hover { transform: translateY(-2px); box-shadow: 0 14px 32px -22px rgba(17,24,39,0.16); }
.ts-n { font-size: 28px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; margin-bottom: 6px; }
.ts-l { font-size: 13px; color: var(--ink-3); }
.trust-logos { display: flex; flex-direction: column; align-items: center; gap: 14px; padding-top: 12px; }
.tl-label {
  font-size: 12.5px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  font-family: 'Geist Mono', monospace;
}
.logos {
  display: flex; flex-wrap: wrap; gap: 36px;
  align-items: center; justify-content: center;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--ink-3);
  opacity: 0.8;
}
.logo:hover { color: var(--ink); }

/* ============== SECTION HEAD ============== */
.section-head {
  max-width: 920px;
  margin: 0 auto calc(48px * var(--pad));
  text-align: center;
}
.section-head-split {
  max-width: 1320px;
  display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; flex-wrap: wrap; text-align: left;
}
.eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  margin-bottom: 16px;
}
.eyebrow-dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; margin-right: 6px; vertical-align: 1px; }
.section-title {
  font-size: clamp(32px, 3.6vw, 56px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin: 0 0 16px;
  text-wrap: balance;
}
.section-lead {
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.5;
  max-width: 56ch;
  margin: 0 auto;
  text-wrap: pretty;
}

/* ============== PROBLEM × SOLUTION ============== */
.ps { position: relative; z-index: 1; padding: calc(80px * var(--pad)) 28px calc(40px * var(--pad)); }
.ps-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.ps-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: calc(36px * var(--pad));
  position: relative;
  overflow: hidden;
}
.ps-head { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.ps-head h3 { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; margin: 0; }
.ps-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: lowercase;
  padding: 4px 10px; border-radius: 999px;
}
.ps-tag-bad { background: #FEE2E2; color: #991B1B; }
.ps-tag-good {}
.ps-list { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 12px; }
.ps-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--ink-2); line-height: 1.5; }
.ps-x, .ps-c { flex-shrink: 0; margin-top: 1px; }
.ps-x { color: #DC2626; }
.ps-x svg, .ps-c svg { width: 18px; height: 18px; }

.ps-art {
  position: relative;
  height: 200px;
  border-radius: var(--radius-md);
  margin-top: 12px;
  overflow: hidden;
}
.ps-art-before {
  background: linear-gradient(135deg, #FEF2F2, #FAFBFC);
  border: 1px dashed #FCA5A5;
}
.msg-bubble {
  position: absolute;
  background: white;
  border: 1px solid #FCA5A5;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 12.5px;
  color: var(--ink-2);
  box-shadow: 0 6px 16px -10px rgba(220,38,38,0.18);
}
.msg-bubble.m1 { top: 18%; left: 6%; transform: rotate(-4deg); }
.msg-bubble.m2 { top: 36%; left: 38%; transform: rotate(3deg); }
.msg-bubble.m3 { top: 14%; right: 8%; transform: rotate(2deg); }
.msg-bubble.m4 { bottom: 18%; left: 14%; transform: rotate(-2deg); }
.msg-bubble.m5 { bottom: 24%; right: 16%; transform: rotate(4deg); }
.alert-x {
  position: absolute;
  bottom: 8%;
  right: 8%;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #DC2626; color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px;
  box-shadow: 0 8px 20px -8px #DC2626;
}
.ps-art-after { background: linear-gradient(135deg, var(--accent-softer), white); }
.ps-art-after svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.ch-orb {
  position: absolute;
  width: 36px; height: 36px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.ch-orb svg { width: 18px; height: 18px; }
.ps-core {
  position: absolute;
  bottom: 18%;
  left: 50%; transform: translateX(-50%);
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 32px -16px var(--accent);
}

/* ============== BENTO ============== */
.bento { position: relative; z-index: 1; padding: calc(80px * var(--pad)) 28px calc(40px * var(--pad)); }
.bento-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 18px;
}
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 12px 36px -32px rgba(17,24,39,0.16);
  transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 24px 50px -28px rgba(17,24,39,0.22); }
.card-pad { padding: calc(32px * var(--pad)); }

[data-cell="cosmos"] { grid-column: span 3; grid-row: span 2; }
[data-cell="omni"] { grid-column: span 3; grid-row: span 2; }
[data-cell="auto"] { grid-column: span 2; }
[data-cell="team"] { grid-column: span 2; }
[data-cell="reports"] { grid-column: span 2; }
[data-cell="help"] { grid-column: span 2; }
[data-cell="widget"] { grid-column: span 2; }
[data-cell="history"] { grid-column: span 2; }

.card-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink-3);
  text-transform: lowercase;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.bullet { width: 6px; height: 6px; border-radius: 50%; }
.card-title {
  font-size: clamp(22px, 1.9vw, 30px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 12px;
  text-wrap: balance;
}
.card-title-sm {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 10px;
  text-wrap: balance;
}
.card-text { font-size: 15px; line-height: 1.55; color: var(--ink-2); margin: 0 0 20px; max-width: 48ch; text-wrap: pretty; }
.card-text-sm { font-size: 13.5px; line-height: 1.5; color: var(--ink-2); margin: 0 0 16px; text-wrap: pretty; }

/* Cosmos bento card */
.cosmos-card-art {
  flex: 1;
  margin: 0 calc(32px * var(--pad)) calc(32px * var(--pad));
  background: linear-gradient(135deg, var(--accent-softer), white);
  border-radius: var(--radius-md);
  position: relative;
  min-height: 220px;
  overflow: hidden;
}
.cosmos-robot { position: absolute; bottom: 0; right: 8%; width: 150px; opacity: 0.95; }
.cosmos-suggest {
  position: absolute;
  top: 20px; left: 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  max-width: 60%;
  box-shadow: 0 10px 24px -14px rgba(17,24,39,0.2);
}
.cs-h { font-size: 11.5px; color: var(--ink-3); font-weight: 600; letter-spacing: 0.04em; margin-bottom: 6px; }
.cs-b { font-size: 13.5px; color: var(--ink); line-height: 1.4; margin-bottom: 10px; }
.cs-actions { display: flex; flex-wrap: wrap; gap: 4px; }
.cs-actions button {
  font-size: 11px; font-weight: 500;
  padding: 4px 9px;
  border-radius: 6px;
  background: #F3F4F6;
  color: var(--ink-2);
}
.cs-actions button:first-child { color: white; }

/* Omni bento card */
.omni-art {
  flex: 1;
  margin: 0 calc(32px * var(--pad)) calc(32px * var(--pad));
  background: linear-gradient(135deg, var(--accent-softer), white);
  border-radius: var(--radius-md);
  position: relative;
  min-height: 240px;
  overflow: hidden;
}
.omni-lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.omni-node {
  position: absolute;
  width: 42px; height: 42px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 18px -10px rgba(17,24,39,0.18);
  z-index: 2;
}
.omni-node svg { width: 20px; height: 20px; }
.omni-node.n1 { top: 10%; left: 8%; }
.omni-node.n2 { top: 10%; right: 8%; }
.omni-node.n3 { bottom: 14%; left: 8%; }
.omni-node.n4 { bottom: 14%; right: 8%; }
.omni-node.n5 { top: 4%; left: 50%; transform: translateX(-50%); }
.omni-node.n6 { bottom: 4%; left: 50%; transform: translateX(-50%); }
.omni-core {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 110px; height: 110px;
  border-radius: 26px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: -0.02em;
  z-index: 3;
  box-shadow: 0 18px 40px -14px color-mix(in oklab, var(--accent) 60%, black);
}
.omni-incoming {
  position: absolute;
  bottom: 14px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 6px;
  background: white;
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11.5px;
  color: var(--ink-2);
  z-index: 4;
  box-shadow: 0 6px 16px -8px rgba(17,24,39,0.18);
}
.oi-dot { width: 7px; height: 7px; border-radius: 50%; animation: ledpulse 1.4s infinite; }
@keyframes ledpulse { 50% { opacity: 0.5; transform: scale(0.85); } }

/* Automation card */
.auto-flow {
  display: flex; align-items: center; gap: 8px;
  flex-wrap: wrap;
  padding-top: 6px;
}
.af-node {
  background: #F3F4F6;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 12.5px;
  font-weight: 500;
}
.af-trigger { background: #FEF3C7; border-color: #FCD34D; }
.af-out {}
.af-line { width: 16px; height: 2px; border-radius: 999px; }

/* Team card */
.team-art { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-top: 12px; min-height: 100px; }
.ta-avatars { display: flex; gap: -8px; }
.ta-avatars > * { margin-right: -10px; }
.ta-av {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 13px;
  border: 2px solid white;
  position: relative;
  z-index: 1;
}
.ta-av.more { background: #F3F4F6; color: var(--ink-2); font-size: 11.5px; font-weight: 600; }
.ta-bars { flex: 1; display: flex; align-items: flex-end; gap: 6px; height: 90px; }
.ta-bar { flex: 1; border-radius: 6px 6px 3px 3px; min-height: 8px; }

/* Reports card */
.rep-kpis { display: flex; gap: 22px; margin: 8px 0 16px; }
.kpi { }
.kpi-n { font-size: 22px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.kpi-l { font-size: 11.5px; color: var(--ink-3); margin-top: 4px; }
.rep-line { width: 100%; height: 80px; }

/* Help card */
.help-mini { margin-top: 8px; display: flex; flex-direction: column; gap: 8px; }
.hm-search {
  display: flex; align-items: center; gap: 8px;
  background: #F9FAFB;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 12.5px;
  color: var(--ink-2);
}
.hm-search svg { width: 13px; height: 13px; color: var(--ink-3); }
.hm-q {}
.hm-list { display: flex; flex-direction: column; gap: 4px; }
.hm-item {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 12.5px;
  color: var(--ink-2);
  background: #FAFBFC;
  border: 1px solid var(--line);
}
.hm-item svg { width: 13px; height: 13px; }

/* Widget card */
.card-widget { overflow: hidden; }
.widget-art {
  flex: 1;
  margin: 0 calc(32px * var(--pad)) calc(32px * var(--pad));
  background: linear-gradient(135deg, var(--accent-softer), white);
  border-radius: var(--radius-md);
  position: relative;
  min-height: 160px;
  padding: 16px;
}
.wa-page {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  display: flex; flex-direction: column; gap: 6px;
}
.wa-h { height: 8px; width: 50%; background: var(--line-2); border-radius: 4px; }
.wa-l { height: 4px; width: 100%; background: #F3F4F6; border-radius: 2px; }
.wa-l.short { width: 70%; }
.wa-bubble {
  position: absolute;
  bottom: 60px;
  right: 16px;
  color: white;
  padding: 10px 14px;
  border-radius: 12px;
  box-shadow: 0 10px 24px -10px var(--accent);
  max-width: 70%;
  animation: bob 4s ease-in-out infinite;
}
.wab-head { display: flex; align-items: center; gap: 8px; font-size: 12.5px; }
.wab-av { width: 22px; height: 22px; border-radius: 50%; background: white; color: var(--accent); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 11px; }
.wa-launcher {
  position: absolute;
  bottom: 14px; right: 14px;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px -8px var(--accent);
}

/* History card */
.hist-timeline { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; position: relative; }
.hist-timeline::before { content: ''; position: absolute; left: 5px; top: 6px; bottom: 6px; width: 1.5px; background: var(--line); }
.ht-item { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: center; position: relative; z-index: 1; }
.ht-dot { width: 12px; height: 12px; border-radius: 50%; background: #D1D5DB; border: 2.5px solid white; box-shadow: 0 0 0 1.5px var(--line); }
.ht-item div { display: flex; flex-direction: column; }
.ht-item strong { font-size: 13.5px; font-weight: 600; }
.ht-item span { font-size: 11.5px; color: var(--ink-3); }

/* ============== AI IN PRACTICE ============== */
.ai { position: relative; z-index: 1; padding: calc(80px * var(--pad)) 28px calc(40px * var(--pad)); }
.ai-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.ai-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ai-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform .2s, box-shadow .2s;
}
.ai-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -28px rgba(17,24,39,0.18); }
.ai-card-i {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.ai-card h3 { font-size: 19px; font-weight: 700; letter-spacing: -0.02em; margin: 0 0 8px; }
.ai-card p { font-size: 14.5px; line-height: 1.5; color: var(--ink-2); margin: 0; }

.ai-mock {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 18px 50px -32px rgba(17,24,39,0.2);
}
.ai-mock-grid { display: grid; grid-template-columns: 1.4fr 1fr; min-height: 320px; }
.ai-mock-chat { padding: 24px; display: flex; flex-direction: column; gap: 8px; border-right: 1px solid var(--line); background: linear-gradient(to bottom, #FAFBFC, white); }
.ai-mock-side { padding: 20px; background: linear-gradient(135deg, var(--accent-softer), white); }
.ai-pill {
  background: white;
  border: 1.5px solid;
  border-radius: 18px;
  padding: 18px;
}
.ai-pill-h { font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 6px; margin-bottom: 14px; }
.ai-pill-section { padding-top: 12px; border-top: 1px dashed var(--line); margin-top: 12px; }
.ai-pill-section:first-of-type { padding-top: 0; border-top: 0; margin-top: 0; }
.ai-pill-label { font-size: 10.5px; font-weight: 600; color: var(--ink-3); letter-spacing: 0.06em; text-transform: lowercase; margin-bottom: 6px; }
.ai-pill-tag { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 999px; }
.ai-pill-tag.warn { background: var(--warn-soft); color: #92400e; }
.ai-pill-body { font-size: 13px; color: var(--ink-2); line-height: 1.5; }

/* ============== CHANNELS & INTEGRATIONS ============== */
.ecosystem { position: relative; z-index: 1; padding: calc(80px * var(--pad)) 28px calc(40px * var(--pad)); }
.ecosystem-shell {
  max-width: 1320px;
  margin: 0 auto 22px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.72);
  box-shadow: 0 24px 60px -48px rgba(17,24,39,.3);
}
.integration-shell { background: linear-gradient(145deg, var(--accent-softer), rgba(255,255,255,.86) 42%); }
.ecosystem-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 4px 4px 26px;
}
.ecosystem-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font: 700 11px/1.2 'Geist Mono', monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.ecosystem-intro h3 {
  margin: 0;
  font-size: clamp(23px, 2.3vw, 34px);
  line-height: 1.08;
  letter-spacing: -.035em;
}
.ecosystem-metric {
  min-width: 150px;
  padding: 14px 18px;
  border: 1px solid var(--accent-soft);
  border-radius: var(--radius-md);
  background: white;
  text-align: right;
}
.ecosystem-metric strong { display: block; color: var(--accent); font-size: 28px; line-height: 1; letter-spacing: -.04em; }
.ecosystem-metric span { color: var(--ink-3); font-size: 11px; }
.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.ecosystem-card {
  min-height: 0;
  min-width: 0;
  padding: clamp(12px, 1.4vw, 18px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.ecosystem-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-soft);
  box-shadow: 0 20px 38px -30px rgba(17,24,39,.35);
}
.ecosystem-card.is-featured {
  background: linear-gradient(145deg, var(--accent-softer), white 68%);
  border-color: var(--accent-soft);
}
.ecosystem-card-top { display: flex; align-items: center; justify-content: space-between; gap: 6px; margin-bottom: clamp(10px, 1.2vw, 18px); flex-wrap: wrap; }
.ecosystem-mark {
  width: clamp(30px, 3.2vw, 42px);
  height: clamp(30px, 3.2vw, 42px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: transparent;
  color: var(--item-color);
  font: 800 12px/1 'Geist Mono', monospace;
  letter-spacing: -.04em;
}
.ecosystem-mark i {
  font-size: clamp(18px, 2.2vw, 32px);
  color: var(--item-color);
}
.ecosystem-tag {
  padding: clamp(2px, 0.3vw, 4px) clamp(5px, 0.6vw, 8px);
  border-radius: 999px;
  background: #F3F4F6;
  color: var(--ink-3);
  font: 600 clamp(8px, 0.7vw, 9px)/1 'Geist Mono', monospace;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.ecosystem-card h3 { margin: 0 0 4px; font-size: clamp(12px, 1.1vw, 15px); letter-spacing: -.02em; }
.ecosystem-card p { min-height: 0; margin: 0 0 clamp(8px, 1vw, 16px); color: var(--ink-3); font-size: clamp(10px, 0.9vw, 12.5px); line-height: 1.45; }
.ecosystem-status { display: inline-flex; align-items: center; gap: 4px; color: var(--ink-2); font-size: clamp(9px, 0.8vw, 10.5px); font-weight: 600; }
.ecosystem-status i { width: 6px; height: 6px; border-radius: 50%; background: #10B981; box-shadow: 0 0 0 3px #D1FAE5; }
.ecosystem-api {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  padding: 18px;
  border: 1px dashed var(--accent-soft);
  border-radius: var(--radius-md);
  background: white;
}
.ecosystem-api-mark {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--accent);
  color: white;
  font: 700 13px/1 'Geist Mono', monospace;
}
.ecosystem-api-mark i {
  font-size: 24px;
}
.ecosystem-api div:nth-child(2) { display: flex; flex-direction: column; gap: 3px; }
.ecosystem-api strong { font-size: 14px; }
.ecosystem-api span { color: var(--ink-3); font-size: 12.5px; }
@media (max-width: 1100px) {
  .ecosystem-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .ecosystem { padding-left: 18px; padding-right: 18px; }
  .ecosystem-shell { padding: 16px; }
  .ecosystem-intro { align-items: stretch; flex-direction: column; }
  .ecosystem-metric { min-width: 0; text-align: left; }
  .ecosystem-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ecosystem-api { grid-template-columns: auto 1fr; }
  .ecosystem-api .btn { grid-column: 1 / -1; justify-content: center; }
}
@media (max-width: 480px) {
  .ecosystem-grid { grid-template-columns: 1fr; }
  .ecosystem-card { min-height: 0; }
}

/* ============== FLOW TIMELINE ============== */
.flow { position: relative; z-index: 1; padding: calc(80px * var(--pad)) 28px calc(40px * var(--pad)); }
.flow-wrap { max-width: 1320px; margin: 0 auto; overflow-x: auto; }
.flow-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  position: relative;
  padding-top: 28px;
}
.flow-line {
  position: absolute;
  top: 56px; left: 8%; right: 8%;
  height: 2px;
  border-radius: 999px;
  opacity: 0.25;
  z-index: 0;
}
.flow-step {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 22px 26px;
  position: relative;
  z-index: 1;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.flow-step:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -28px rgba(17,24,39,0.22); }
.fs-num {
  position: absolute;
  top: -16px; left: 50%; transform: translateX(-50%);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  font-weight: 700;
}
.fs-icon { font-size: 32px; margin-bottom: 12px; margin-top: 6px; }
.flow-step h3 { font-size: 15px; font-weight: 700; letter-spacing: -0.01em; margin: 0 0 6px; }
.flow-step p { font-size: 13px; color: var(--ink-2); line-height: 1.45; margin: 0; }

/* ============== MANAGERS ============== */
.managers { position: relative; z-index: 1; padding: calc(80px * var(--pad)) 28px calc(40px * var(--pad)); }
.m-grid { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: center; }
.m-copy { text-align: left; }
.m-copy .eyebrow { margin-bottom: 14px; }
.m-copy .section-title { font-size: clamp(28px, 3vw, 44px); margin-bottom: 14px; }
.m-copy .section-lead { margin: 0 0 22px; text-align: left; }
.m-bens { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.m-bens li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--ink-2); }
.m-bens svg { width: 18px; height: 18px; }

.m-dash {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: 0 20px 50px -32px rgba(17,24,39,0.2);
}
.md-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.md-head strong { font-size: 14px; }
.md-live { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 600; color: #065F46; }
.ld-dot { width: 7px; height: 7px; border-radius: 50%; animation: ledpulse 1.4s infinite; }
.md-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 14px; }
.mdk { background: #FAFBFC; border: 1px solid var(--line); border-radius: 12px; padding: 14px; }
.mdk-l { font-size: 11px; color: var(--ink-3); font-weight: 600; letter-spacing: 0.04em; text-transform: lowercase; margin-bottom: 4px; }
.mdk-n { font-size: 22px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.mdk-star { color: #F59E0B; font-size: 16px; }
.mdk-d { font-size: 11px; color: var(--ink-3); margin-top: 6px; }

.md-chart-card { background: #FAFBFC; border: 1px solid var(--line); border-radius: 12px; padding: 16px; }
.md-cc-h { font-size: 12.5px; font-weight: 600; color: var(--ink-2); margin-bottom: 12px; }
.md-channels { display: flex; flex-direction: column; gap: 8px; }
.md-ch-row { display: grid; grid-template-columns: 80px 1fr 40px; gap: 10px; align-items: center; font-size: 12px; }
.md-ch-name { color: var(--ink-2); font-weight: 500; }
.md-ch-bar { height: 8px; background: white; border-radius: 999px; overflow: hidden; border: 1px solid var(--line); }
.md-ch-fill { height: 100%; border-radius: 999px; }
.md-ch-val { font-family: 'Geist Mono', monospace; font-size: 11.5px; color: var(--ink-3); text-align: right; }

/* ============== AGENTS ============== */
.agents { position: relative; z-index: 1; padding: calc(80px * var(--pad)) 28px calc(40px * var(--pad)); }
.ag-grid { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
.ag-copy { text-align: left; }
.ag-copy .eyebrow { margin-bottom: 14px; }
.ag-copy .section-title { font-size: clamp(28px, 3vw, 44px); margin-bottom: 14px; }
.ag-copy .section-lead { margin: 0 0 22px; text-align: left; }
.ag-bens { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ag-ben { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink-2); font-weight: 500; padding: 10px 12px; background: white; border: 1px solid var(--line); border-radius: 12px; }
.ag-ben-i { width: 28px; height: 28px; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; font-size: 14px; }

.ag-mock { position: relative; min-height: 540px; }
.ag-card { background: white; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: 0 18px 40px -28px rgba(17,24,39,0.2); position: absolute; }
.ag-conv { top: 0; left: 0; width: 78%; padding: 0; overflow: hidden; }
.ag-head { display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center; padding: 16px 20px; border-bottom: 1px solid var(--line); }
.ag-name { font-weight: 600; font-size: 14px; }
.ag-sub { font-size: 11.5px; color: var(--ink-3); }
.ag-status { font-size: 10.5px; font-weight: 700; padding: 3px 10px; border-radius: 999px; text-transform: lowercase; letter-spacing: 0.04em; }
.ag-body { padding: 18px; display: flex; flex-direction: column; gap: 8px; }
.ag-cust { bottom: 60px; right: 0; width: 56%; padding: 18px; }
.ag-cust-h { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.ag-cust-h strong { font-weight: 600; font-size: 14px; }
.ag-row { display: flex; justify-content: space-between; font-size: 12.5px; padding: 4px 0; }
.ag-row span { color: var(--ink-3); }
.ag-row strong { font-weight: 600; }
.ag-tags { display: flex; gap: 6px; margin-top: 10px; flex-wrap: wrap; }
.ag-ai { bottom: 0; left: 10%; width: 66%; padding: 16px; border-width: 1.5px; }
.ag-ai-h { font-size: 11.5px; font-weight: 700; color: var(--ink-2); margin-bottom: 8px; letter-spacing: 0.04em; text-transform: lowercase; }
.ag-ai-b { font-size: 13.5px; color: var(--ink); line-height: 1.4; margin-bottom: 10px; }
.ag-ai-act { display: flex; gap: 6px; }
.ag-ai-act button { font-size: 11.5px; font-weight: 500; padding: 5px 10px; border-radius: 7px; background: #F3F4F6; color: var(--ink-2); }
.ag-ai-act button:first-child { color: white; }

/* ============== INTEGRATIONS ============== */
.integ { position: relative; z-index: 1; padding: calc(80px * var(--pad)) 28px calc(40px * var(--pad)); }
.integ-grid { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.integ-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-content: start; }
.integ-tile {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  display: flex; align-items: center; gap: 14px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.integ-tile:hover { transform: translateY(-2px); box-shadow: 0 14px 32px -22px rgba(17,24,39,0.18); border-color: var(--accent-soft); }
.it-i { width: 40px; height: 40px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.it-i svg { width: 19px; height: 19px; }
.it-tx { display: flex; flex-direction: column; gap: 2px; }
.it-n { font-size: 14.5px; font-weight: 600; letter-spacing: -0.01em; }
.it-d { font-size: 12.5px; color: var(--ink-3); }

.integ-console {
  background: #0F172A;
  color: #E5E7EB;
  border-radius: var(--radius-xl);
  overflow: hidden;
  font-family: 'Geist Mono', 'JetBrains Mono', monospace;
  font-size: 13px;
  position: relative;
  box-shadow: 0 40px 80px -40px rgba(17,24,39,0.6);
  display: flex; flex-direction: column;
}
.ic-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.ic-title {
  position: absolute;
  left: 50%; transform: translateX(-50%);
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.ic-code { padding: 22px 22px 28px; margin: 0; white-space: pre-wrap; word-break: break-all; flex: 1; line-height: 1.7; }
.ic-line { display: block; }
.ln { display: inline-block; width: 22px; color: rgba(255,255,255,0.3); text-align: right; margin-right: 12px; user-select: none; }
.t-key { color: #A78BFA; }
.t-str { color: #6EE7B7; }
.t-pun { color: #94A3B8; }
.ic-copy {
  position: absolute;
  top: 60px; right: 18px;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  color: white;
  font-size: 12px;
  font-family: 'Geist Mono', monospace;
}
.ic-copy:hover { background: rgba(255,255,255,0.16); }

/* ============== PRICING ============== */
.pricing { position: relative; z-index: 1; padding: calc(80px * var(--pad)) 28px calc(40px * var(--pad)); }
.pricing-toggle { display: inline-flex; background: white; border: 1px solid var(--line); border-radius: 999px; padding: 4px; gap: 2px; }
.seg-mini {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-2);
  display: inline-flex; align-items: center; gap: 6px;
  transition: all .15s;
}
.save { font-size: 10px; padding: 2px 6px; border-radius: 4px; color: white; font-weight: 700; background: #111827; }
.seg-mini.on .save { background: rgba(255,255,255,0.25); }
.plans { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.plan {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  display: flex; flex-direction: column;
  transition: transform .2s;
}
.plan:hover { transform: translateY(-2px); }
.plan-hi { border-width: 2px; padding: 35px 31px; }
.plan-flag {
  position: absolute;
  top: -12px; left: 32px;
  font-size: 11px;
  font-weight: 700;
  color: white;
  padding: 4px 12px;
  border-radius: 999px;
  text-transform: lowercase;
  letter-spacing: 0.04em;
}
.plan-name { font-size: 13px; color: var(--ink-3); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 14px; }
.plan-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 14px; }
.price-num { font-size: 44px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.price-per { font-size: 13.5px; color: var(--ink-3); }
.price-note { font-size: 12px; color: var(--ink-3); margin-top: -10px; margin-bottom: 14px; }
.plan-desc { font-size: 14px; color: var(--ink-2); line-height: 1.5; margin: 0 0 24px; min-height: 44px; }
.plan-list { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.plan-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink-2); }
.plan-list svg { width: 17px; height: 17px; flex-shrink: 0; }

/* ============== FAQ ============== */
.faq { position: relative; z-index: 1; padding: calc(80px * var(--pad)) 28px calc(40px * var(--pad)); }
.faq-list { max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: white; border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; transition: border-color .15s; }
.faq-item.open { border-color: var(--accent-soft); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 22px 26px; text-align: left; font-size: 16.5px; font-weight: 600; letter-spacing: -0.01em; }
.faq-toggle { 
  font-size: 18px;
  color: var(--accent);
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-soft);
  transition: transform .3s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-toggle {
  transform: rotate(180deg);
}
.faq-a { padding: 0 26px 24px; font-size: 14.5px; line-height: 1.6; color: var(--ink-2); max-width: 70ch; }

/* ============== CTA ============== */
.cta { position: relative; z-index: 1; padding: calc(40px * var(--pad)) 28px calc(60px * var(--pad)); }
.cta-card {
  max-width: 1320px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  padding: calc(72px * var(--pad)) 40px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.cta-blob { position: absolute; border-radius: 50%; filter: blur(40px); opacity: 0.4; }
.cta-blob.b1 { top: -100px; left: -100px; width: 400px; height: 400px; background: white; }
.cta-blob.b2 { bottom: -100px; right: -100px; width: 360px; height: 360px; background: white; }
.cta-title { font-size: clamp(36px, 4.5vw, 64px); font-weight: 800; letter-spacing: -0.04em; line-height: 1.04; margin: 0 0 16px; text-wrap: balance; position: relative; }
.cta-sub { font-size: 17px; color: rgba(255,255,255,0.88); max-width: 54ch; margin: 0 auto 32px; line-height: 1.5; position: relative; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; margin-bottom: 24px; }
.cta-foot { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,0.85); position: relative; }

/* ============== FOOTER ============== */
.footer { position: relative; z-index: 1; padding: 48px 28px 24px; border-top: 1px solid var(--line); background: var(--bg); }
.foot-grid { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 36px; border-bottom: 1px dashed var(--line); }
.foot-brand .brand { margin-bottom: 14px; }
.foot-tag { font-size: 14px; color: var(--ink-3); line-height: 1.55; max-width: 38ch; margin: 0; }
.foot-col { display: flex; flex-direction: column; gap: 10px; }
.foot-h { font-size: 12px; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; font-weight: 700; }
.foot-col a { font-size: 14px; color: var(--ink-2); cursor: pointer; }
.foot-col a:hover { color: var(--accent); }
.foot-bottom { max-width: 1320px; margin: 18px auto 0; display: flex; justify-content: space-between; font-size: 12.5px; color: var(--ink-3); }

/* ============== RESPONSIVE ============== */
@media (max-width: 1100px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-burger { display: inline-flex; }
  .nav-mobile { display: flex; }
  .mock-grid { grid-template-columns: 240px 1fr; }
  .mock-rail { display: none; }
  .trust-stats { grid-template-columns: 1fr 1fr; }
  .bento-grid { grid-template-columns: repeat(4, 1fr); }
  [data-cell="cosmos"], [data-cell="omni"] { grid-column: span 4; }
  [data-cell="auto"], [data-cell="team"], [data-cell="reports"], [data-cell="help"], [data-cell="widget"], [data-cell="history"] { grid-column: span 2; }
  .ai-cards { grid-template-columns: 1fr; }
  .ai-mock-grid { grid-template-columns: 1fr; }
  .ai-mock-chat { border-right: 0; border-bottom: 1px solid var(--line); }
  .flow-track { grid-template-columns: repeat(2, 1fr); }
  .flow-line { display: none; }
  .m-grid, .ag-grid, .integ-grid { grid-template-columns: 1fr; }
  .ps-grid { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; max-width: 480px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .hero { padding: 32px 18px; }
  .hero-title { font-size: 40px; }
  .mock-grid { grid-template-columns: 1fr; }
  .mock-list { display: none; }
  .trust-stats { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-grid > * { grid-column: span 1 !important; }
  .flow-track { grid-template-columns: 1fr; }
  .ag-bens, .integ-tiles, .md-kpis { grid-template-columns: 1fr; }
  .ag-mock { min-height: 760px; }
  .ag-conv, .ag-cust, .ag-ai { position: relative; width: 100%; left: 0; right: 0; top: auto; bottom: auto; margin-bottom: 14px; }
  .foot-grid { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; gap: 6px; text-align: center; }
}

/* sections.css — emptied; all styles now live in styles.css */

/* ============================================================
   BENTO COLLAB CARD (replaces old omni card in bento)
============================================================ */
.card-collab { }
.collab-art {
  flex: 1;
  margin: 0 calc(32px * var(--pad)) calc(32px * var(--pad));
  background: linear-gradient(135deg, var(--accent-softer), white);
  border-radius: var(--radius-md);
  padding: 22px;
  min-height: 220px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.col-conv {
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.col-bbl {
  background: white;
  border: 1px solid var(--line);
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13.5px;
  align-self: flex-start;
  max-width: 70%;
}
.col-note {
  background: #FEF3C7;
  border: 1px dashed #F59E0B;
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.col-note-h {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
}
.col-note-h strong { font-weight: 600; }
.col-av {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 11px;
}
.col-av.sm { width: 20px; height: 20px; font-size: 10px; }
.col-tag {
  font-size: 9.5px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 999px;
  text-transform: lowercase;
  letter-spacing: 0.04em;
  margin-left: auto;
}
.col-note-b {
  font-size: 13px;
  color: var(--ink);
  line-height: 1.4;
}
.col-mention {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 12px 5px 6px;
  font-size: 12.5px;
  color: var(--ink-2);
  align-self: center;
}
.col-mention strong { font-weight: 600; color: var(--ink); }
.col-collision {
  position: absolute;
  bottom: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: white;
  border: 1px solid var(--line);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11.5px;
  color: var(--ink-2);
  box-shadow: 0 6px 16px -8px rgba(17,24,39,0.18);
}
.col-collision strong { font-weight: 600; color: var(--ink); }
.col-eye { font-size: 12px; }

/* ============================================================
   AI PLAYGROUND
============================================================ */
.aip { position: relative; z-index: 1; padding: calc(80px * var(--pad)) 28px calc(40px * var(--pad)); }
.aip .section-lead strong { color: var(--ink); font-weight: 600; }

.aip-frame {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 18px;
  align-items: stretch;
}

.aip-controls {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.aip-block { display: flex; flex-direction: column; gap: 10px; }
.aip-block-h {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
  text-transform: lowercase;
  letter-spacing: 0.02em;
}
.aip-temp-val {
  font-family: 'Geist Mono', monospace;
  font-size: 11.5px;
  color: var(--accent);
  font-weight: 600;
}

.aip-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.aip-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  background: white;
  color: var(--ink-2);
  border: 1px solid var(--line);
  transition: all .15s;
}
.aip-pill:hover { border-color: var(--ink); }

.aip-seg {
  display: flex;
  background: #F3F4F6;
  border-radius: 12px;
  padding: 4px;
  gap: 2px;
}
.aip-seg button {
  flex: 1;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-2);
  transition: all .15s;
}
.aip-seg button:not(.on):hover { background: white; }

.aip-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(to right, var(--c, var(--accent)) 0%, var(--c, var(--accent)) var(--p, 50%), #E5E7EB var(--p, 50%), #E5E7EB 100%);
  outline: none;
  cursor: pointer;
}
.aip-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: white;
  border: 2.5px solid var(--c, var(--accent));
  cursor: pointer;
  box-shadow: 0 4px 8px -2px rgba(17,24,39,0.18);
}
.aip-slider::-moz-range-thumb {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: white;
  border: 2.5px solid var(--c, var(--accent));
  cursor: pointer;
}
.aip-slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 10.5px;
  color: var(--ink-3);
  font-family: 'Geist Mono', monospace;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  margin-top: 2px;
}

.aip-toggles {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.aip-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border-radius: 12px;
  background: #FAFBFC;
  border: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-2);
  cursor: pointer;
}
.aip-toggle:hover { background: white; border-color: var(--ink-3); }

.tgl {
  width: 36px; height: 20px;
  background: #D1D5DB;
  border-radius: 999px;
  padding: 2px;
  display: inline-flex;
  align-items: center;
  transition: background .15s;
  flex-shrink: 0;
}
.tgl-knob {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: white;
  transition: transform .18s cubic-bezier(.2,.8,.2,1);
  box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.tgl.on .tgl-knob { transform: translateX(16px); }

/* PREVIEW */
.aip-preview {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 60px -36px rgba(17,24,39,0.25);
  display: flex;
  flex-direction: column;
}
.aip-prev-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: #F9FAFB;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.aip-prev-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  color: var(--ink-3);
}
.aip-prev-live {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #065F46;
}

.aip-prev-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  flex: 1;
  min-height: 540px;
}

/* Chat side */
.aip-chat {
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.aip-cust-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}
.aip-cust-name { font-weight: 600; font-size: 14px; }
.aip-cust-sub { font-size: 11.5px; color: var(--ink-3); margin-top: 4px; display: flex; align-items: center; gap: 6px; }
.aip-lang { font-family: 'Geist Mono', monospace; font-size: 11px; }

.aip-bbls {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: linear-gradient(to bottom, #FAFBFC, white);
  flex: 1;
}

.aip-translate {
  font-size: 12px;
  color: var(--ink-3);
  font-style: italic;
  padding: 8px 12px;
  background: #F3F4F6;
  border-radius: 10px;
  align-self: flex-start;
  max-width: 80%;
}

.aip-ai-reply {
  background: white;
  border: 1.5px solid;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 14px 32px -20px rgba(17,24,39,0.22);
  animation: pop .3s ease;
}
.aip-ai-h {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 10px;
  text-transform: lowercase;
  letter-spacing: 0.04em;
}
.aip-ai-ico {
  width: 22px; height: 22px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 11px;
}
.aip-ai-body {
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 14px;
}
.aip-ai-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.aip-ai-actions button {
  font-size: 12px;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: 8px;
  background: #F3F4F6;
  color: var(--ink-2);
  transition: background .15s;
}
.aip-ai-actions button:hover { background: #E5E7EB; }
.aip-ai-actions button.btn-pri {
  color: white;
  font-weight: 600;
}
.aip-ai-actions button.btn-pri:hover { filter: brightness(1.08); }

.aip-input {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-top: 1px solid var(--line);
}
.aip-input-fake {
  flex: 1;
  background: #F3F4F6;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink-3);
}

/* Insights side */
.aip-insights {
  padding: 22px;
  background: linear-gradient(165deg, var(--accent-softer), white 60%);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.aip-insight-h {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.aip-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.aip-section-h {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
}
.aip-section-l {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--ink-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.aip-sent-tag {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: lowercase;
  letter-spacing: 0.02em;
}
.aip-sent-bar { display: flex; flex-direction: column; gap: 6px; }
.aip-sent-track {
  position: relative;
  height: 10px;
  background: #F3F4F6;
  border-radius: 999px;
  overflow: visible;
}
.aip-sent-fill {
  height: 100%;
  border-radius: 999px;
  position: relative;
  transition: width .35s cubic-bezier(.2,.8,.2,1);
}
.aip-sent-marker {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 2.5px solid white;
  box-shadow: 0 2px 6px rgba(17,24,39,0.2);
  transition: left .35s cubic-bezier(.2,.8,.2,1);
}
.aip-sent-scale {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 0 2px;
}

.aip-intent {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 600;
  align-self: flex-start;
}
.aip-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag-add { color: var(--ink-3); background: white !important; border: 1px dashed var(--line-2); }
.aip-summary {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-2);
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
}
.aip-next {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--accent-soft);
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
}
.aip-next svg { width: 16px; height: 16px; }

/* Feature row below */
.aip-feats {
  max-width: 1320px;
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.aip-feat {
  display: flex;
  align-items: center;
  gap: 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  transition: transform .2s, box-shadow .2s;
}
.aip-feat:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -22px rgba(17,24,39,0.2); }
.aip-feat-ico {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
}
.aip-feat strong { font-weight: 600; font-size: 14.5px; display: block; margin-bottom: 2px; letter-spacing: -0.01em; }
.aip-feat span { font-size: 12.5px; color: var(--ink-3); }

/* ============================================================
   CONTACT
============================================================ */
.contact { position: relative; z-index: 1; padding: calc(80px * var(--pad)) 28px calc(40px * var(--pad)); }
.contact-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.contact-info {}
.contact-info .section-title { font-size: clamp(30px, 3.2vw, 48px); margin-bottom: 14px; }
.contact-info .section-lead { text-align: left; margin: 0 0 28px; }
.contact-info .eyebrow { margin-bottom: 16px; }

.contact-channels {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-channels li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 14px 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  align-items: center;
  transition: border-color .15s, transform .15s;
}
.contact-channels li:hover { border-color: var(--accent-soft); transform: translateY(-1px); }
.cc-i {
  width: 38px; height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cc-i svg { width: 18px; height: 18px; }
.contact-channels li > div { display: flex; flex-direction: column; gap: 2px; }
.contact-channels strong { font-weight: 600; font-size: 13.5px; }
.contact-channels a, .contact-channels span {
  font-size: 13.5px;
  color: var(--ink-2);
}
.contact-channels a:hover { color: var(--accent); }

.contact-promise {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 16px 20px;
  background: var(--accent-softer);
  border: 1px solid var(--accent-soft);
  border-radius: var(--radius-md);
}
.cp-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-2);
}
.cp-item svg { width: 16px; height: 16px; }

/* FORM */
.contact-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: calc(36px * var(--pad));
  box-shadow: 0 24px 60px -36px rgba(17,24,39,0.2);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cf-h { margin-bottom: 4px; }
.cf-h-t { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 4px; }
.cf-h-s { font-size: 14px; color: var(--ink-3); }

.cf-field { display: flex; flex-direction: column; gap: 6px; }
.cf-label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: -0.01em;
}
.cf-err { color: #DC2626; font-weight: 500; }
.cf-send-err { color: #DC2626; font-size: 13px; margin: 0 0 10px; }

.cf-field input,
.cf-field textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14px;
  background: #FAFBFC;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  transition: border-color .15s, background .15s;
  resize: vertical;
}
.cf-field input::placeholder,
.cf-field textarea::placeholder { color: #9CA3AF; }
.cf-field input:focus,
.cf-field textarea:focus {
  outline: none;
  background: white;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.cf-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cf-seg {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.cf-seg button {
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  background: white;
  color: var(--ink-2);
  border: 1.5px solid var(--line);
  transition: all .15s;
}
.cf-seg button:not(.on):hover { border-color: var(--ink-3); }

.cf-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.cf-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  background: white;
  color: var(--ink-2);
  border: 1.5px solid var(--line);
  transition: all .15s;
}
.cf-chip svg { width: 14px; height: 14px; }
.cf-chip:not(.on):hover { border-color: var(--ink-3); }
.cf-chip-c {
  display: inline-flex;
  width: 14px; height: 14px;
}

.cf-fine {
  font-size: 11.5px;
  color: var(--ink-3);
  line-height: 1.45;
  margin: 0;
  text-align: center;
}

.cf-success {
  text-align: center;
  padding: 32px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.cf-success-ico {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 4px;
}
.cf-success h3 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
}
.cf-success p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.5;
  margin: 0;
  max-width: 40ch;
}
.cf-success-meta { font-size: 13px !important; color: var(--ink-3) !important; margin-top: 4px !important; }
.cf-success-meta a { color: var(--accent); font-weight: 500; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
  .aip-frame { grid-template-columns: 1fr; }
  .aip-prev-grid { grid-template-columns: 1fr; }
  .aip-chat { border-right: 0; border-bottom: 1px solid var(--line); }
  .aip-feats { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .aip-feats { grid-template-columns: 1fr; }
  .cf-row.two { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
}



/* Static conversion helpers */
html { scroll-behavior: smooth; }
[hidden] { display: none !important; }
.aip-pill.on,
.aip-seg button.on,
.pricing-toggle .seg-mini.on,
.cf-seg button.on {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}
.cf-chip.on {
  background: var(--accent-soft);
  color: var(--accent-ink);
  border-color: var(--accent);
}
.contact-form.is-success { justify-content: center; min-height: 620px; }
noscript {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  background: #111827;
  color: white;
  font: 13px/1.4 system-ui, sans-serif;
}
@media (max-width: 640px) {
  .hero-inner,
  .hero-copy,
  .hero-mock,
  .mock-frame,
  .mock-grid,
  .mock-chat {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .hero-badge {
    max-width: 100%;
    white-space: normal;
    text-align: left;
  }
  .hero-title {
    font-size: 36px;
    line-height: 1.02;
    text-wrap: wrap;
    overflow-wrap: anywhere;
  }
  .hero-sub {
    font-size: 16px;
  }
  .mc-actions {
    display: none;
  }
}

/* ============================================================
   MOBILE OVERHAUL — fluid layout, dedicated mobile nav
============================================================ */

/* Body scroll lock when menu is open */
.menu-open { overflow: hidden; }

/* ── WhatsApp floating button ─────────────────────── */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45), 0 2px 8px rgba(0,0,0,.18);
  transition: transform .2s, box-shadow .2s;
  animation: waPulse 2.8s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.55), 0 4px 12px rgba(0,0,0,.2);
  animation: none;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.4); }
  50%       { box-shadow: 0 4px 20px rgba(37,211,102,.45), 0 0 0 10px rgba(37,211,102,0); }
}
.wa-float-tip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: #111827;
  color: white;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  padding: 7px 12px;
  border-radius: 8px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .18s;
}
.wa-float-tip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #111827;
}
.wa-float:hover .wa-float-tip { opacity: 1; }
@media (max-width: 480px) {
  .wa-float { bottom: 16px; right: 16px; width: 50px; height: 50px; }
  .wa-float svg { width: 24px; height: 24px; }
  .wa-float-tip { display: none; }
}

/* ── Fluid typography (global) ─────────────────────────── */
.hero-title    { font-size: clamp(30px, 7.5vw, 80px); }
.hero-sub      { font-size: clamp(15px, 2.2vw, 18px); line-height: 1.55; }
.section-title { font-size: clamp(24px, 4vw, 52px); }
.section-lead  { font-size: clamp(14px, 1.8vw, 17px); }
.price-num     { font-size: clamp(30px, 7vw, 44px); }

/* ── Mobile nav (≤ 1100px): pill → full-width bar ────── */
@media (max-width: 1100px) {
  .nav {
    padding: 0;
    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid var(--line);
  }
  .nav.scrolled { padding-top: 0; }
  .nav-inner {
    max-width: 100%;
    border-radius: 0;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: transparent;
    padding: 0 20px;
    height: 60px;
    gap: 0;
    /* flex replaces grid: brand left, cta right */
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* Fullscreen overlay */
  .nav-mobile {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: white;
    flex-direction: column;
    padding: 0;
    gap: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    border-radius: 0;
    max-width: 100%;
    margin: 0;
    border: none;
    overflow-y: auto;
    animation: menuIn .2s cubic-bezier(.2,.8,.2,1);
  }
  @keyframes menuIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  /* hide bare direct-child links from old JS approach */
  .nav-mobile > a { display: none; }
}

/* Mobile menu sub-sections (built by JS) */
.nav-mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 60px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.nav-mobile-links {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.nav-mobile-links a {
  display: block;
  padding: 14px 14px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  border-radius: 14px;
  letter-spacing: -0.01em;
  transition: background .12s, color .12s;
}
.nav-mobile-links a:hover { background: var(--accent-softer); color: var(--accent); }
.nav-mobile-cta {
  padding: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nav-mobile-cta .btn {
  justify-content: center;
  text-align: center;
  width: 100%;
  border-radius: var(--radius-md);
  padding: 14px 20px;
}
.nav-mobile-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  color: var(--ink);
  flex-shrink: 0;
  transition: background .12s;
}
.nav-mobile-close:hover { background: #F3F4F6; }

/* ── Hero offsets for fixed bar ─────────────────────── */
@media (max-width: 1100px) {
  .hero { padding-top: calc(60px + clamp(24px, 4vw, 56px)); }
}
@media (max-width: 640px) {
  .hero { padding: calc(60px + 20px) clamp(14px, 4vw, 20px) 36px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; width: 100%; }
  .hero-proofs  { flex-direction: column; gap: 10px; align-items: flex-start; }
  .hero-mock    { margin-top: 28px; }
}
@media (max-width: 480px) {
  .hero-mock { display: none; }
}

/* ── Trust ───────────────────────────────────────────── */
@media (max-width: 640px) {
  .trust-inner { padding: clamp(24px,5vw,40px) clamp(14px,4vw,28px); }
  .logos { gap: 16px; flex-wrap: wrap; justify-content: center; }
}

/* ── Fluid section padding (≤ 768px) ────────────────── */
@media (max-width: 768px) {
  .bento    { padding: clamp(40px,8vw,80px) clamp(14px,4vw,28px) clamp(30px,6vw,60px); }
  .aip      { padding: clamp(40px,8vw,80px) clamp(14px,4vw,28px) clamp(30px,6vw,60px); }
  .flow     { padding: clamp(40px,8vw,80px) clamp(14px,4vw,28px) clamp(30px,6vw,60px); }
  .pricing  { padding: clamp(40px,8vw,80px) clamp(14px,4vw,28px) clamp(30px,6vw,60px); }
  .faq      { padding: clamp(40px,8vw,80px) clamp(14px,4vw,28px) clamp(30px,6vw,60px); }
  .contact  { padding: clamp(40px,8vw,80px) clamp(14px,4vw,28px) clamp(30px,6vw,60px); }
  .integ    { padding: clamp(40px,8vw,80px) clamp(14px,4vw,28px) clamp(30px,6vw,60px); }
  .managers { padding: clamp(40px,8vw,80px) clamp(14px,4vw,28px) clamp(30px,6vw,60px); }
  .agents   { padding: clamp(40px,8vw,80px) clamp(14px,4vw,28px) clamp(30px,6vw,60px); }
  .ecosystem{ padding: clamp(40px,8vw,80px) clamp(14px,4vw,28px) clamp(30px,6vw,60px); }
}

/* ── Bento features grid ─────────────────────────────── */
@media (max-width: 768px) {
  .bento-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: auto; gap: 12px; }
  [data-cell="cosmos"],[data-cell="omni"] { grid-column: span 2; }
  [data-cell="auto"],[data-cell="team"],[data-cell="reports"],
  [data-cell="help"],[data-cell="widget"],[data-cell="history"] { grid-column: span 1; }
  .card-pad    { padding: clamp(16px,3vw,28px); }
  .card-title  { font-size: clamp(18px,3vw,26px); }
  .bento-grid > * { grid-column: unset; }
  [data-cell="cosmos"],[data-cell="omni"] { grid-column: span 2; }
}
@media (max-width: 480px) {
  .bento-grid { grid-template-columns: 1fr; }
  [data-cell="cosmos"],[data-cell="omni"],
  [data-cell="auto"],[data-cell="team"],[data-cell="reports"],
  [data-cell="help"],[data-cell="widget"],[data-cell="history"] { grid-column: span 1; }
}

/* ── Pricing ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .plans { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .plan  { padding: clamp(20px,4vw,36px) clamp(18px,4vw,32px); }
}
@media (max-width: 640px) {
  .plans { max-width: 100%; }
  .section-head-split { flex-direction: column; align-items: flex-start; gap: 14px; }
  .pricing-toggle { align-self: flex-start; }
}

/* ── AI Playground ────────────────────────────────────── */
@media (max-width: 768px) {
  .aip-frame    { grid-template-columns: 1fr; }
  .aip-prev-grid{ grid-template-columns: 1fr; min-height: unset; }
  .aip-chat     { border-right: 0; border-bottom: 1px solid var(--line); }
  .aip-feats    { grid-template-columns: 1fr 1fr; gap: 10px; }
  .aip-controls { padding: 18px; }
}
@media (max-width: 480px) {
  .aip-feats  { grid-template-columns: 1fr; }
  .aip-pill   { padding: 7px 10px; font-size: 12px; }
}

/* ── Flow section ────────────────────────────────────── */
@media (max-width: 640px) {
  .flow-track { grid-template-columns: 1fr; gap: 14px; }
  .flow-step  { text-align: left; }
}

/* ── Managers dashboard ──────────────────────────────── */
@media (max-width: 768px) {
  .m-grid  { gap: 28px; }
  .md-kpis { grid-template-columns: 1fr 1fr; }
}

/* ── Agents section ──────────────────────────────────── */
@media (max-width: 640px) {
  .ag-mock { min-height: unset; }
  .ag-bens { grid-template-columns: 1fr 1fr; }
}

/* ── Ecosystem / Canais ──────────────────────────────── */
@media (max-width: 640px) {
  .ecosystem-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .ecosystem-shell { padding: clamp(10px, 3vw, 20px); }
}
@media (max-width: 380px) {
  .ecosystem-grid { grid-template-columns: 1fr; }
}

/* ── Integrations ────────────────────────────────────── */
@media (max-width: 768px) {
  .integ-grid  { grid-template-columns: 1fr; }
  .integ-tiles { grid-template-columns: 1fr 1fr; gap: 10px; }
}
@media (max-width: 480px) {
  .integ-tiles { grid-template-columns: 1fr; }
}

/* ── Contact form ────────────────────────────────────── */
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-form { padding: clamp(18px,4vw,32px); }
}
@media (max-width: 480px) {
  .cf-row.two { grid-template-columns: 1fr; }
  .cf-h-t     { font-size: clamp(18px,5vw,22px); }
}

/* ── Footer ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .footer    { padding: clamp(32px,6vw,60px) clamp(14px,4vw,28px); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 480px) {
  .foot-grid { grid-template-columns: 1fr; }
}

/* ── Very small phones (< 380px) ────────────────────── */
@media (max-width: 380px) {
  .hero-title        { font-size: 27px; }
  .hero-actions .btn { font-size: 14px; }
  .plan              { padding: 18px 14px; }
  .section-title     { font-size: 22px; }
  .nav-inner         { padding: 0 14px; }
}
