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

:root {
  --purple: #65288b;
  --purple-mid: #6D28D9;
  --purple-light: #8133b2;
  --purple-text: #8133b2;
  --pink-selection: #f7e9ff;
  --purple-pill-bg: rgba(91,33,182,0.07);
  --purple-pill-border: rgba(91,33,182,0.22);
  --base: #F8F7FF;
  --border: rgba(0,0,0,0.07);
  --border-mid: rgba(0,0,0,0.11);
  --text-1: #0D0B1A;
  --text-2: #2c2839;
  --text-3: #9491A8;
  --surface: #FFFFFF;
  --font-head: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Figtree', sans-serif;
  --max: 1120px;
  --nav-h: 62px;
}

html {
  -webkit-font-smoothing: antialiased;
  height: 100%;
  overflow: hidden;
}
body {
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  font-family: var(--font-body);
  background: var(--base);
  color: var(--text-1);
  font-size: 16px;
  line-height: 1.6;
}
html.static-page,
html:has(body.static-page) {
  height: auto;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}
body.static-page {
  height: auto;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}
.page-scroll {
  height: 100svh;
  height: 100dvh;
  overflow-y: auto;
  overflow-x: clip;
  touch-action: pan-y pinch-zoom;
  scrollbar-gutter: stable;
}
body::after {
  content: none;
}
/* ── SECTIONS ──────────────────────────────────────────────────────── */
.snap {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--base);
}

.snap::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(circle, #4e1e6c 1px, transparent 1px);
  background-size: 14px 14px;
  opacity: 0.14;
}

.snap > .container,
.snap > .container-wide {
  position: relative;
  z-index: 1;
}

.snap-page--screen {
  height: 100dvh;
  min-height: 100dvh;
  display: grid;
  align-content: center;
  justify-items: stretch;
  padding-top: var(--nav-h);
  box-sizing: border-box;
  overflow: clip;
}

.snap-page--screen > .container {
  width: 100%;
}

.snap-page--flow {
  min-height: 100dvh;
  scroll-margin-top: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: calc(var(--nav-h) + 48px);
  padding-bottom: 80px;
  box-sizing: border-box;
}

/* ── GLOWS — same very-light-purple base, each section a distinct soft color wash ── */

#hero::before {
  content: ''; position: absolute; top: -160px; right: -120px;
  width: 820px; height: 820px;
  background: radial-gradient(circle, rgba(91,33,182,0.1) 0%, transparent 62%);
  pointer-events: none;
}

#thesis::before,
.thesis-section::before {
  content: ''; position: absolute; bottom: -140px; left: -100px;
  width: 780px; height: 780px;
  background: radial-gradient(circle, rgba(29,78,216,0.09) 0%, transparent 62%);
  pointer-events: none;
}

#how-it-works::before {
  content: ''; position: absolute; bottom: -100px; right: -80px;
  width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(14,165,233,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.why-anko-slide::before {
  content: ''; position: absolute; top: -80px; left: -60px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(91,33,182,0.08) 0%, transparent 60%);
  pointer-events: none;
}

#product::before,
.product-slide::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 740px; height: 740px;
  background: radial-gradient(circle, rgba(124,58,237,0.09) 0%, transparent 60%);
  pointer-events: none;
}

#integrations::before {
  content: ''; position: absolute; top: -100px; right: -80px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(16,185,129,0.08) 0%, transparent 60%);
  pointer-events: none;
}

#customer-stories::before {
  content: ''; position: absolute; top: 20%; left: -80px;
  width: 740px; height: 740px;
  background: radial-gradient(circle, rgba(192,38,211,0.09) 0%, transparent 60%);
  pointer-events: none;
}

#footer-cta::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 920px; height: 560px;
  background: radial-gradient(ellipse, rgba(91,33,182,0.11) 0%, transparent 62%);
  pointer-events: none;
}

.rel { position: relative; z-index: 1; }

.container {
  max-width: var(--max); margin: 0 auto; padding: 0 44px; width: 100%;
}
@media (max-width: 768px) { .container { padding: 0 24px; } }

/* ── NAV ─────────────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1100;
  height: var(--nav-h);
  background: rgba(248,247,255,0.85);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  pointer-events: none;
}
.nav-inner {
  position: relative;
  max-width: var(--max); margin: 0 auto; padding: 0 44px;
  height: 100%; display: flex; align-items: center;
  pointer-events: none;
}
.nav-logo {
  display: inline-flex; align-items: center; gap: 7px;
  text-decoration: none; flex-shrink: 0; z-index: 1;
  margin-left: 24px;
  pointer-events: auto;
}
.nav-logo img {
  width: 38.5px; height: 38.5px; display: block; flex-shrink: 0;
  object-fit: contain; align-self: center;
}
.nav-logo-text {
  font-family: var(--font-head); font-weight: 700; font-size: 28px;
  color: var(--text-1); letter-spacing: -0.5px; line-height: 1;
  display: flex; align-items: center;
  transform: translateY(-3px);
}
.nav-logo-text em { font-style: normal; color: var(--purple-light); }
.nav-links {
  position: fixed;
  top: 0;
  left: 50%;
  height: var(--nav-h);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 40px;
  pointer-events: none;
  z-index: 1101;
}

.nav-mobile-panel-header {
  display: none;
}

.nav-mobile-panel-body {
  display: contents;
}
.nav-top-link {
  position: relative;
  color: var(--text-2); font-size: 18px; font-weight: 500;
  text-decoration: none; letter-spacing: 0.01em;
  transition: color 0.18s;
  pointer-events: auto;
}
.nav-top-link:hover { color: var(--text-1); }
.nav-top-link.active {
  color: var(--purple-text);
  font-weight: 600;
}
.nav-top-link.active::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  top: calc(100% + 4px);
  background: var(--purple-text);
  border-radius: 1px;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  pointer-events: auto;
}

.nav-accordion-head {
  display: contents;
}

.nav-top-link--product {
  padding-right: 16px;
}

.nav-top-link--resources {
  padding-right: 16px;
}

.nav-dropdown-toggle {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--text-2);
  cursor: pointer;
  border-radius: 4px;
  transition: color 0.18s, background 0.18s;
}

.nav-dropdown-toggle:hover {
  color: var(--text-1);
  background: rgba(91, 33, 182, 0.06);
}

.nav-top-link--product.active ~ .nav-dropdown-toggle,
.nav-top-link--product.active ~ .nav-dropdown-toggle:hover {
  color: var(--purple-text);
}

.nav-top-link--resources.active ~ .nav-dropdown-toggle,
.nav-top-link--resources.active ~ .nav-dropdown-toggle:hover {
  color: var(--purple-text);
}

.nav-top-link--solutions {
  padding-right: 16px;
}

.nav-top-link--solutions.active ~ .nav-dropdown-toggle,
.nav-top-link--solutions.active ~ .nav-dropdown-toggle:hover {
  color: var(--purple-text);
}

.nav-dropdown-caret {
  transition: transform 0.18s ease;
}

.nav-dropdown.is-open .nav-dropdown-caret {
  transform: rotate(180deg);
}

.nav-dropdown.is-open .nav-dropdown-toggle {
  transform: translateY(-50%);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 210px;
  margin: 0;
  padding: 8px;
  list-style: none;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(26, 24, 38, 0.12);
  z-index: 1200;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--text-2);
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}

.nav-dropdown-item:hover {
  color: var(--text-1);
  background: rgba(91, 33, 182, 0.05);
}

.nav-dropdown-item.active {
  color: var(--purple-text);
  background: var(--pink-selection);
  font-weight: 700;
}

.nav-dropdown-menu--solutions {
  left: 50%;
  transform: translateX(calc(-50% + 40px));
  min-width: 720px;
  width: max-content;
  max-width: calc(100vw - 48px);
  padding: 16px 18px;
}

.nav-dropdown-menu--product {
  left: 50%;
  transform: translateX(calc(-50% + 80px));
  min-width: 780px;
  width: max-content;
  max-width: calc(100vw - 48px);
  padding: 16px 18px;
}

.nav-dropdown-menu--resources {
  left: 50%;
  transform: translateX(calc(-50% + 20px));
  min-width: 720px;
  width: max-content;
  max-width: calc(100vw - 48px);
  padding: 16px 18px;
}

.nav-dropdown-menu--product .nav-dropdown-panes,
.nav-dropdown-menu--resources .nav-dropdown-panes,
.nav-dropdown-menu--solutions .nav-dropdown-panes {
  gap: 0 28px;
}

.nav-dropdown-menu--product .nav-dropdown-pane,
.nav-dropdown-menu--resources .nav-dropdown-pane,
.nav-dropdown-menu--solutions .nav-dropdown-pane {
  min-width: 320px;
}

.nav-dropdown-menu--product .nav-dropdown-pane + .nav-dropdown-pane,
.nav-dropdown-menu--resources .nav-dropdown-pane + .nav-dropdown-pane,
.nav-dropdown-menu--solutions .nav-dropdown-pane + .nav-dropdown-pane {
  padding-left: 20px;
}

.nav-dropdown-menu--product .nav-dropdown-group-label,
.nav-dropdown-menu--resources .nav-dropdown-group-label,
.nav-dropdown-menu--solutions .nav-dropdown-group-label {
  font-size: 12px;
  padding-bottom: 6px;
}

.nav-dropdown-menu--product .nav-dropdown-card,
.nav-dropdown-menu--resources .nav-dropdown-card,
.nav-dropdown-menu--solutions .nav-dropdown-card {
  gap: 14px;
  padding: 12px 14px;
}

.nav-dropdown-menu--product .nav-dropdown-card-icon,
.nav-dropdown-menu--resources .nav-dropdown-card-icon,
.nav-dropdown-menu--solutions .nav-dropdown-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 9px;
}

.nav-dropdown-menu--product .nav-dropdown-card-icon .site-icon,
.nav-dropdown-menu--resources .nav-dropdown-card-icon .site-icon,
.nav-dropdown-menu--solutions .nav-dropdown-card-icon .site-icon {
  width: 23px;
  height: 23px;
}

.nav-dropdown-menu--product .nav-dropdown-card-logo,
.nav-dropdown-menu--resources .nav-dropdown-card-logo,
.nav-dropdown-menu--solutions .nav-dropdown-card-logo {
  width: 23px;
  height: 23px;
}

.nav-dropdown-menu--product .nav-dropdown-card-title,
.nav-dropdown-menu--resources .nav-dropdown-card-title,
.nav-dropdown-menu--solutions .nav-dropdown-card-title {
  font-size: 17px;
}

.nav-dropdown-menu--product .nav-dropdown-card-desc,
.nav-dropdown-menu--resources .nav-dropdown-card-desc,
.nav-dropdown-menu--solutions .nav-dropdown-card-desc {
  font-size: 14px;
  margin-top: 4px;
}

.nav-dropdown-menu--product .nav-dropdown-pane-grid,
.nav-dropdown-menu--resources .nav-dropdown-pane-grid,
.nav-dropdown-menu--solutions .nav-dropdown-pane-grid {
  grid-template-columns: 1fr;
}

.nav-dropdown-pane-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-dropdown-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  color: inherit;
  text-decoration: none;
  transition: background 0.15s;
}

a.nav-dropdown-card:hover {
  background: rgba(91, 33, 182, 0.05);
}

.nav-dropdown-card.active {
  background: var(--pink-selection);
}

.nav-dropdown-card--disabled {
  opacity: 0.55;
  cursor: default;
  pointer-events: none;
}

.nav-dropdown-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border: 0.5px solid #e5e7eb;
  border-radius: 8px;
  background: #fefdfd;
  color: var(--purple);
}

.nav-dropdown-card-icon .site-icon {
  width: 20px;
  height: 20px;
}

.nav-dropdown-card-logo {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.nav-dropdown-card-icon--dual {
  width: 54px;
  padding: 0 3px;
}

.nav-dropdown-dual-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.nav-dropdown-dual-divider {
  width: 1px;
  align-self: stretch;
  margin: 7px 4px;
  background: #e5e7eb;
  flex-shrink: 0;
}

.nav-dropdown-card-icon--dual .nav-dropdown-card-logo {
  width: 18px;
  height: 18px;
}

.nav-dropdown-menu--product .nav-dropdown-card-icon--dual,
.nav-dropdown-menu--resources .nav-dropdown-card-icon--dual {
  width: 56px;
}

.nav-dropdown-menu--product .nav-dropdown-card-icon--dual .nav-dropdown-card-logo,
.nav-dropdown-menu--resources .nav-dropdown-card-icon--dual .nav-dropdown-card-logo {
  width: 19px;
  height: 19px;
}

.nav-dropdown-card-text {
  min-width: 0;
  padding-top: 1px;
}

.nav-dropdown-card-title {
  display: block;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-1);
}

.nav-dropdown-card.active .nav-dropdown-card-title {
  color: var(--purple-text);
}

.nav-dropdown-card-desc {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--text-3);
  white-space: nowrap;
}

.nav-dropdown-sub-item .nav-dropdown-item {
  padding-left: 24px;
  font-size: 15px;
}

.nav-dropdown-group-label + .nav-dropdown-sub-item .nav-dropdown-item,
.nav-dropdown-divider + li + .nav-dropdown-sub-item .nav-dropdown-item {
  padding-left: 24px;
}

.nav-dropdown-panes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
}

.nav-dropdown-pane {
  min-width: 0;
}

.nav-dropdown-pane + .nav-dropdown-pane {
  border-left: 1px solid var(--border);
  padding-left: 16px;
}

.nav-dropdown-pane-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-dropdown-group-label {
  display: block;
  padding: 6px 12px 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
}

.nav-dropdown-divider {
  display: block;
  height: 1px;
  margin: 6px 8px;
  background: var(--border);
}

.nav-dropdown-item .site-icon--tab {
  margin-right: 0;
}

.nav-dropdown-item .nav-dropdown-logo {
  width: 1.3em;
  height: 1.3em;
  object-fit: contain;
  flex-shrink: 0;
}
.nav-right {
  margin-left: auto;
  flex-shrink: 0;
  z-index: 1;
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn-nav {
  background: var(--purple); color: #fff;
  font-family: var(--font-body); font-size: 16px; font-weight: 700;
  padding: 0 24px; min-height: 40px;
  border-radius: 7px; border: none; cursor: pointer;
  text-decoration: none; white-space: nowrap;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.18s;
}
.btn-nav:hover { background: var(--purple-light); }

.nav-mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 8px;
  color: var(--text-1);
  pointer-events: auto;
  flex-shrink: 0;
}

.nav-mobile-toggle:hover {
  background: rgba(91, 33, 182, 0.06);
}

.nav-mobile-toggle-icon {
  position: relative;
  width: 20px;
  height: 14px;
  display: block;
}

.nav-mobile-toggle-icon span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}

.nav-mobile-toggle-icon span:nth-child(1) { top: 0; }
.nav-mobile-toggle-icon span:nth-child(2) { top: 6px; }
.nav-mobile-toggle-icon span:nth-child(3) { top: 12px; }

nav.is-mobile-open .nav-mobile-toggle-icon span:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}

nav.is-mobile-open .nav-mobile-toggle-icon span:nth-child(2) {
  opacity: 0;
}

nav.is-mobile-open .nav-mobile-toggle-icon span:nth-child(3) {
  top: 6px;
  transform: rotate(-45deg);
}

body.nav-mobile-open {
  overflow: hidden;
}

.nav-mobile-backdrop {
  display: none;
}

@media (max-width: 768px) {
  nav {
    z-index: 1201;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-inner { padding: 0 16px; gap: 10px; }
  .nav-logo { margin-left: 0; }
  .btn-nav {
    font-size: 14px;
    padding: 0 14px;
    min-height: 36px;
  }
  .nav-mobile-toggle { display: flex; order: -1; }

  .nav-mobile-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1298;
    background: rgba(26, 24, 38, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
  }

  body.nav-mobile-open .nav-mobile-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    max-width: none;
    left: 0;
    transform: translateX(-100%);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    background: var(--base);
    overflow: hidden;
    pointer-events: none;
    visibility: hidden;
    z-index: 1299;
    transition: transform 0.3s ease, visibility 0s linear 0.3s;
  }

  body.nav-mobile-open .nav-links {
    transform: translateX(0);
    pointer-events: auto;
    visibility: visible;
    transition: transform 0.3s ease, visibility 0s;
  }

  .nav-mobile-panel-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
    height: var(--nav-h);
    padding: 0 12px 0 16px;
    border-bottom: 1px solid var(--border);
    background: rgba(248, 247, 255, 0.98);
  }

  .nav-mobile-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: var(--text-1);
    cursor: pointer;
    pointer-events: auto;
  }

  .nav-mobile-close:hover {
    background: rgba(91, 33, 182, 0.06);
  }

  .nav-mobile-panel-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 8px 0 32px;
  }

  .nav-dropdown {
    display: block;
    width: 100%;
    border-bottom: 1px solid var(--border);
  }

  .nav-accordion-head {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0 8px 0 20px;
    cursor: pointer;
  }

  .nav-top-link {
    flex: 1;
    display: block;
    padding: 16px 12px 16px 0;
    font-size: 18px;
    font-weight: 600;
  }

  .nav-top-link.active::after { display: none; }

  .nav-top-link--product,
  .nav-top-link--resources,
  .nav-top-link--solutions {
    padding-right: 0;
  }

  .nav-dropdown-toggle {
    position: static;
    transform: none;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 8px;
  }

  .nav-dropdown.is-open .nav-dropdown-toggle { transform: none; }

  .nav-dropdown-menu,
  .nav-dropdown-menu--product,
  .nav-dropdown-menu--solutions,
  .nav-dropdown-menu--resources {
    position: static;
    left: auto;
    transform: none;
    min-width: 0;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 12px 12px 20px;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: transparent;
  }

  .nav-dropdown-menu::before { display: none; }

  .nav-dropdown-panes {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .nav-dropdown-menu--product .nav-dropdown-pane + .nav-dropdown-pane,
  .nav-dropdown-menu--resources .nav-dropdown-pane + .nav-dropdown-pane,
  .nav-dropdown-menu--solutions .nav-dropdown-pane + .nav-dropdown-pane {
    margin-top: 0;
    padding-top: 12px;
    padding-left: 0;
    border-left: none;
    border-top: 1px solid var(--border);
  }

  .nav-dropdown-menu--product .nav-dropdown-pane,
  .nav-dropdown-menu--resources .nav-dropdown-pane,
  .nav-dropdown-menu--solutions .nav-dropdown-pane {
    min-width: 0;
  }

  .nav-dropdown-pane-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .nav-dropdown-menu--product .nav-dropdown-group-label,
  .nav-dropdown-menu--resources .nav-dropdown-group-label,
  .nav-dropdown-menu--solutions .nav-dropdown-group-label {
    padding: 6px 0 4px;
  }

  .nav-dropdown-menu--product .nav-dropdown-card,
  .nav-dropdown-menu--resources .nav-dropdown-card,
  .nav-dropdown-menu--solutions .nav-dropdown-card {
    gap: 12px;
    padding: 12px 14px;
  }
}

/* ── SHARED ──────────────────────────────────────────────────────────── */
.s-label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--purple); opacity: 1; margin-bottom: 18px;
}
.s-headline {
  font-family: var(--font-head);
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 700; line-height: 1.1; letter-spacing: -0.028em;
  color: var(--text-1); margin-bottom: 16px;
}
.s-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-2);
  max-width: 540px;
  text-wrap: pretty;
}
.cta-primary {
  background: var(--purple); color: #fff;
  font-family: var(--font-body); font-size: 18px; font-weight: 600;
  padding: 15px 30px; border-radius: 9px; border: none; cursor: pointer;
  text-decoration: none; display: inline-flex; align-items: center; gap: 10px;
  transition: background 0.18s, transform 0.12s;
}
.cta-primary:hover { background: var(--purple-light); transform: translateY(-1px); }

/* ── HERO ────────────────────────────────────────────────────────────── */
@keyframes agent-thinking {
  0%     { transform: rotate(0deg) scale(1); }
  9.33%  { transform: rotate(120deg) scale(0.33); }
  18.67% { transform: rotate(240deg) scale(1); }
  29.17% { transform: rotate(360deg) scale(1); }
  100%   { transform: rotate(360deg) scale(1); }
}
#hero { padding-top: var(--nav-h); }
#hero > .container.rel {
  position: relative;
  z-index: 1001;
}
.hero-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-brand-mark {
  margin-bottom: 28px;
}

.hero-intro .hero-investors {
  width: 100%;
  align-self: stretch;
}

.hero-intro .inv-row {
  justify-content: center;
}

.hero-brand-agent-wrap {
  position: relative;
  width: 108px; height: 108px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--pink-selection);
  display: flex; align-items: center; justify-content: center;
  isolation: isolate;
}
.hero-brand-agent-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--pink-selection);
  z-index: 0;
}
.hero-brand-agent {
  position: relative;
  z-index: 1;
  width: 84px; height: 84px; display: block;
  transform-origin: center center;
  animation: agent-thinking 4.8s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .hero-brand-agent { animation: none; }
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(35px, 5.3vw, 62px);
  font-weight: 600; line-height: 1.05;
  color: var(--text-1); margin-bottom: 30px;
}
.hero-headline .hero-em {
  font-style: italic;
  font-weight: 400;
  font-size: 0.84em;
  text-decoration: underline;
  text-decoration-thickness: 0.06em;
  text-underline-offset: 0.21em;
  text-decoration-skip-ink: auto;
}
.hero-sub {
  font-family: var(--font-head);
  font-size: clamp(16px, 2.3vw, 26px);
  font-weight: 400; line-height: 1.3; letter-spacing: -0.02em;
  color: rgba(13, 11, 26, 0.62); margin-bottom: 48px;
}
.hero-sub-br-mobile { display: none; }
#hero .cta-primary {
  font-size: 16px;
  padding: 13px 26px;
  gap: 8px;
}
#hero .cta-primary svg {
  width: 14px;
  height: 14px;
}
.hero-investors { border-top: 1px solid var(--border); padding-top: 28px; margin-top: 68px; }
.inv-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-3); margin-bottom: 18px;
}
.inv-row {
  display: flex; align-items: center;
  gap: clamp(28px, 5vw, 52px); flex-wrap: wrap;
}
.inv-logo {
  display: block; width: auto; object-fit: contain;
  opacity: 0.63;
  filter: grayscale(1) brightness(0);
  transition: opacity 0.25s ease, filter 0.25s ease;
}
.inv-logo:hover {
  opacity: 0.82;
  filter: grayscale(0.15) brightness(0.05);
}
.inv-logo--accel { height: 29px; max-width: 127px; }
.inv-logo--peakxv { height: 40px; max-width: 155px; }
.inv-logo--neotribe { height: 31px; max-width: 185px; }
.inv-logo--graduate { height: 42px; max-width: 254px; }

@media (max-width: 768px) {
  .hero-sub-br-mobile { display: block; }

  .hero-intro .hero-investors {
    margin-top: 48px;
    padding-top: 20px;
  }

  .hero-intro .inv-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    align-items: center;
    column-gap: 28px;
    row-gap: 18px;
    width: 100%;
    max-width: 300px;
    margin-inline: auto;
  }

  .hero-intro .inv-logo--accel { height: 20px; max-width: 88px; }
  .hero-intro .inv-logo--peakxv { height: 28px; max-width: 108px; }
  .hero-intro .inv-logo--neotribe { height: 22px; max-width: 130px; }
  .hero-intro .inv-logo--graduate { height: 30px; max-width: 178px; }

  #customer-stories .inv-row-ctr {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    align-items: center;
    column-gap: 28px;
    row-gap: 18px;
    width: 100%;
    max-width: 300px;
    margin-inline: auto;
  }

  #customer-stories .inv-row-ctr .inv-logo--accel { height: 20px; max-width: 88px; }
  #customer-stories .inv-row-ctr .inv-logo--peakxv { height: 28px; max-width: 108px; }
  #customer-stories .inv-row-ctr .inv-logo--neotribe { height: 22px; max-width: 130px; }
  #customer-stories .inv-row-ctr .inv-logo--graduate { height: 30px; max-width: 178px; }
}

/* ── THESIS ──────────────────────────────────────────────────────────── */
@media (max-height: 820px) {
  #thesis.snap-page--screen {
    height: auto;
    min-height: 100dvh;
    overflow: visible;
    align-content: start;
    padding-bottom: 48px;
  }
}

/* ── PRODUCT — flat page snap slides ─────────────────────────────────── */

.container-wide {
  width: 92%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0;
}

.product-slide--flow {
  height: auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: calc(var(--nav-h) + 48px);
  padding-bottom: 80px;
  box-sizing: border-box;
  overflow: visible;
}

.product-slide--flow > .container-wide {
  position: relative;
  z-index: 1001;
  display: block;
}

.product-slide--flow.product-slide--reverse {
  padding-bottom: 80px;
}

.product-slide-body {
  width: 100%;
}

#product .product-slide-stack {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 6vw, 72px);
}

.product-panel {
  display: grid;
  grid-template-columns: 36fr 64fr;
  grid-template-areas: "text media";
  gap: 36px;
  width: 100%;
  align-items: center;
}

.product-panel .feature-text {
  grid-area: text;
}

.product-panel .feature-media {
  grid-area: media;
}

.product-slide--reverse .product-panel {
  grid-template-columns: 64fr 36fr;
  grid-template-areas: "media text";
}

.cap-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(101, 40, 139, 1);
  border: none;
  color: #fff;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 100px;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
  width: fit-content;
}

.cap-pill .site-icon--pill {
  width: 26px;
  height: 26px;
}

.cap-pill-logo {
  width: 26px;
  height: 26px;
  object-fit: contain;
  flex-shrink: 0;
}

.cap-pill .cap-pill-logo {
  filter: brightness(0) invert(1);
}

.feature-text .cap-pill {
  margin-top: 0;
  margin-bottom: 36px;
}

.cap-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple-light);
  flex-shrink: 0;
}

.site-icon {
  display: block;
  flex-shrink: 0;
  fill: currentColor;
}

.site-icon--stroke {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-icon--pill {
  width: 24px;
  height: 24px;
}

.site-icon--tab {
  width: 1.3em;
  height: 1.3em;
  margin-right: 0.5em;
}

#product .feature-text,
.product-slide .feature-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: auto;
  padding: 0;
  min-width: 0;
  align-self: center;
}

.feature-headline {
  font-family: var(--font-head);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  color: #111;
  line-height: 1.12;
  letter-spacing: -0.026em;
  margin: 0 0 14px;
}

#panel-workflows .feature-headline {
  font-size: clamp(28px, 3vw, 38px);
}

.feature-body {
  font-size: 24px;
  font-weight: 600;
  color: #444;
  line-height: 1.7;
  max-width: 100%;
}

.feature-media {
  aspect-ratio: 1728 / 1080;
  width: 100%;
  max-height: 100%;
  height: auto;
  align-self: center;
  justify-self: stretch;
  min-height: 0;
  min-width: 0;
  display: flex;
  align-items: stretch;
  box-sizing: border-box;
  border-radius: 12px;
  overflow: hidden;
  background: #fefdfd;
  box-shadow: 0 8px 28px rgba(13, 11, 26, 0.12), 0 2px 8px rgba(13, 11, 26, 0.06);
  pointer-events: none;
}

.feature-media video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
  display: block;
  background: #fefdfd;
}

#panel-ontology .feature-media {
  aspect-ratio: 1180 / 720;
}

#panel-analysts .feature-media {
  aspect-ratio: 1920 / 1080;
}

.feature-media--rca {
  position: relative;
  display: block;
  aspect-ratio: 5 / 4;
  width: 100%;
  max-height: calc(100dvh - var(--nav-h) - 72px);
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.feature-media--rca .feature-media-image {
  position: absolute;
  width: 82%;
  height: auto;
  aspect-ratio: 1728 / 1080;
  display: block;
  border-radius: 12px;
  object-fit: contain;
  background: #fefdfd;
  box-shadow: 0 8px 28px rgba(13, 11, 26, 0.12), 0 2px 8px rgba(13, 11, 26, 0.06);
  border: 0.5px solid #e5e7eb;
}

.feature-media-image--back {
  top: 0;
  left: 0;
  z-index: 1;
}

.feature-media-image--front {
  right: 0;
  bottom: 0;
  z-index: 2;
}

@media (max-width: 1100px) {
  .container-wide {
    width: 92%;
  }
}

@media (max-width: 768px) {
  .container-wide {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .product-slide--flow,
  .how-it-works-slide--flow {
    padding-top: calc(var(--nav-h) + 24px);
    padding-bottom: 48px;
  }

  .product-panel,
  .product-slide--reverse .product-panel {
    grid-template-columns: 1fr;
    grid-template-areas:
      "text"
      "media";
    gap: 28px;
  }

  .product-slide--reverse .product-panel {
    grid-template-areas:
      "text"
      "media";
  }

  .product-slide .feature-text {
    padding: 0;
  }

  #how-it-works .s-label,
  #product .s-label,
  #integrations .s-label {
    font-size: 11px;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
  }

  .cap-pill {
    font-size: 14px;
    padding: 8px 16px;
    gap: 8px;
    margin-bottom: 14px;
  }

  .cap-pill .site-icon--pill {
    width: 20px;
    height: 20px;
  }

  .feature-text .cap-pill {
    margin-bottom: 18px;
  }

  .feature-headline {
    font-size: clamp(24px, 6.4vw, 30px);
    line-height: 1.15;
    letter-spacing: -0.022em;
    margin-bottom: 12px;
  }

  #panel-workflows .feature-headline {
    font-size: clamp(22px, 5.8vw, 28px);
  }

  .feature-body {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--text-2);
  }

  .feature-media {
    border-radius: 10px;
  }

  .feature-media--rca {
    aspect-ratio: 4 / 5;
    min-height: 360px;
  }

  .feature-media--rca .feature-media-image {
    width: 88%;
  }
}

#integrations.snap-page--flow,
#customer-stories.snap-page--flow,
.why-anko-slide.snap-page--flow,
#thesis.snap-page--flow {
  padding-top: calc(var(--nav-h) + 48px);
  padding-bottom: 80px;
}

#footer-cta.snap-page--screen {
  place-content: center;
}

#integrations > .container {
  position: relative;
  z-index: 1001;
}

#integrations .s-sub {
  max-width: 640px;
}

#integrations .integrations-note {
  max-width: 640px;
  text-wrap: pretty;
}

#thesis > .container {
  z-index: auto;
  max-width: min(100%, 1232px);
}
#thesis .s-label,
.why-anko-slide .s-label,
#how-it-works .s-label,
#product .s-label,
#integrations .s-label {
  font-size: 18px;
  letter-spacing: 0.12em;
  opacity: 0.85;
}

#product .s-label {
  margin-bottom: clamp(20px, 3vw, 32px);
}

@media (max-width: 768px) {
  #how-it-works .s-label,
  #product .s-label,
  #integrations .s-label {
    font-size: 11px;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
  }
}

.problem-lede {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 600; line-height: 1.25; letter-spacing: -0.022em;
  color: var(--text-1); max-width: 780px; margin-bottom: 0;
}
.problem-grid {
  position: relative;
  z-index: 1001;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 32px;
  row-gap: 20px;
  margin-top: clamp(32px, 6vw, 40px);
  width: 100%;
}

@media (max-width: 900px) {
  #thesis {
    justify-content: flex-start;
    padding: 24px 0 40px;
  }

  .problem-grid {
    margin-top: clamp(20px, 4vw, 40px);
  }
}

@media (max-width: 600px) {
  .problem-grid {
    grid-template-columns: 1fr;
    margin-top: clamp(16px, 3.5vw, 32px);
  }

  .problem-card {
    min-height: 200px;
  }
}
.problem-card {
  position: relative;
  overflow: hidden;
  background: #fefdfd;
  border: 0.5px solid #e5e7eb;
  border-radius: 12px;
  padding: 36px 28px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.22s ease;
}
.problem-card.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.problem-card:nth-child(1) { transition-delay: 0s; }
.problem-card:nth-child(2) { transition-delay: 0.1s; }
.problem-card:nth-child(3) { transition-delay: 0.2s; }
.problem-card:nth-child(4) { transition-delay: 0.3s; }
.problem-card:hover {
  box-shadow: 0 4px 24px rgba(13, 11, 26, 0.06);
}
.card-illustration {
  position: absolute;
  top: 14px;
  right: 12px;
  z-index: 0;
  pointer-events: none;
}
.card-header-text {
  position: relative;
  z-index: 1;
}
.card-illustration img {
  width: 121px;
  height: 121px;
  object-fit: contain;
  display: block;
  opacity: 1;
  filter: brightness(0) saturate(100%) invert(22%) sepia(89%)
    saturate(1200%) hue-rotate(250deg) brightness(0.8);
}

.problem-card:nth-child(3) .card-illustration img {
  opacity: 0.8;
}
.p-num {
  display: block;
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--purple-text);
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.p-title {
  font-family: var(--font-head);
  font-size: 27px;
  font-weight: 650;
  color: #111;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.p-body {
  position: relative;
  z-index: 1;
  font-size: 19px;
  color: #333;
  line-height: 1.7;
  font-weight: 500;
}

/* ── THESIS PAGE ─────────────────────────────────────────────────────── */
.thesis-page {
  background: var(--base);
}

.thesis-section {
  position: relative;
  min-height: 100dvh;
  padding: calc(var(--nav-h) + 48px) 0 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.thesis-section:has(.is-expanded) {
  justify-content: flex-start;
}

.thesis-section > .container {
  max-width: min(100%, 1232px);
}

.thesis-section .s-label {
  font-size: 18px;
  letter-spacing: 0.12em;
  opacity: 0.85;
}

.thesis-grid {
  align-items: stretch;
}

.thesis-grid .problem-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 220px;
  padding: 24px 26px 22px;
  cursor: pointer;
  transition: box-shadow 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.thesis-grid .problem-card:not(.is-expanded):hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(91, 33, 182, 0.12);
  border-color: rgba(91, 33, 182, 0.32);
}

.thesis-grid .card-illustration {
  position: absolute;
  top: 14px;
  right: 12px;
  z-index: 0;
  width: 144px;
  height: 144px;
  pointer-events: none;
}

.thesis-grid .card-illustration img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 144px;
  max-height: 144px;
  object-fit: contain;
}

.thesis-card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
  max-width: calc(100% - 172px);
}

.thesis-card-header {
  display: block;
  width: 100%;
}

.thesis-grid .p-num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 8px;
}

.thesis-grid .p-title {
  font-size: 26px;
  line-height: 1.22;
}

.thesis-problem-block {
  flex: 1;
  margin-top: 8px;
}

.thesis-zone-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 8px;
}

.thesis-teaser,
.thesis-problem-detail {
  font-size: 19px;
  line-height: 1.6;
  font-weight: 500;
  color: #333;
  margin: 0;
}

.thesis-problem-detail {
  display: none;
}

.thesis-solves-panel {
  display: none;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.thesis-expand-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--purple);
  line-height: 1.4;
}

.thesis-card-footer {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 14px;
  width: 100%;
  text-align: right;
}

.thesis-back-btn {
  display: none;
  position: absolute;
  top: 18px;
  right: 168px;
  z-index: 3;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--purple);
  cursor: pointer;
  transition: opacity 0.18s ease;
}

.thesis-back-btn:hover {
  opacity: 0.75;
}

.thesis-grid .problem-card.is-expanded .thesis-card-footer {
  display: none;
}

.thesis-grid .problem-card.is-expanded .thesis-back-btn {
  display: inline-block;
}

.thesis-check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.thesis-check-item {
  margin: 0;
}

.thesis-check-pill {
  padding: 12px 14px;
  font-size: 16px;
  line-height: 1.5;
}

.thesis-grid.is-expanded {
  grid-template-columns: 1fr;
}

.thesis-grid.is-expanded .problem-card:not(.is-expanded) {
  display: none;
}

.thesis-grid .problem-card.is-expanded {
  grid-column: 1 / -1;
  height: auto;
  min-height: 0;
  overflow: visible;
  cursor: default;
}

.thesis-grid .problem-card.is-expanded .thesis-card-content {
  max-width: calc(100% - 300px);
}

.thesis-grid .problem-card.is-expanded .card-illustration {
  top: 50%;
  right: 40px;
  width: 220px;
  height: 220px;
  transform: translateY(-50%);
}

.thesis-grid .problem-card.is-expanded .card-illustration img {
  max-width: 220px;
  max-height: 220px;
}

.thesis-grid .problem-card.is-expanded .thesis-back-btn {
  top: 18px;
  right: 284px;
}

.thesis-grid .problem-card.is-expanded .thesis-problem-block {
  flex: none;
}

.thesis-grid .problem-card.is-expanded .thesis-teaser {
  display: none;
}

.thesis-grid .problem-card.is-expanded .thesis-problem-detail {
  display: block;
}

.thesis-grid .problem-card.is-expanded .thesis-solves-panel {
  display: block;
}

@media (max-width: 600px) {
  .thesis-card-content {
    max-width: calc(100% - 120px);
  }

  .thesis-grid .card-illustration {
    width: 96px;
    height: 96px;
  }

  .thesis-grid .card-illustration img {
    max-width: 96px;
    max-height: 96px;
  }

  .thesis-back-btn {
    right: 112px;
    top: 16px;
  }

  .thesis-grid .problem-card.is-expanded .thesis-card-content {
    max-width: 100%;
  }

  .thesis-grid .problem-card.is-expanded .card-illustration {
    top: 14px;
    right: 12px;
    width: 120px;
    height: 120px;
    transform: none;
  }

  .thesis-grid .problem-card.is-expanded .card-illustration img {
    max-width: 120px;
    max-height: 120px;
  }

  .thesis-grid .problem-card.is-expanded .thesis-back-btn {
    right: 132px;
    top: 16px;
  }
}

@media (max-width: 900px) {
  .thesis-section {
    padding-bottom: 48px;
  }
}


/* ── DEMO ────────────────────────────────────────────────────────────── */
.demo-ph {
  margin-top: 40px; width: 100%; aspect-ratio: 16/9; max-height: 420px;
  border: 1.5px dashed rgba(0,0,0,0.12); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 14px;
  background: rgba(0,0,0,0.02); color: var(--text-3); font-size: 13px; text-align: center;
}
.play-btn {
  width: 60px; height: 60px; border-radius: 50%;
  border: 1.5px solid rgba(91,33,182,0.25); background: rgba(91,33,182,0.08);
  display: flex; align-items: center; justify-content: center;
}
.play-btn svg { width: 24px; height: 24px; fill: var(--purple); opacity: 0.6; margin-left: 4px; }

/* ── INTEGRATIONS ──────────────────────────────────────────────────────── */
.integrations-grid {
  list-style: none;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

@media (max-width: 1024px) {
  .integrations-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .integrations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 420px) {
  .integrations-grid {
    grid-template-columns: 1fr;
  }
}

.integration-card {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border: 0.5px solid #e5e7eb;
  border-radius: 10px;
  padding: 14px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  min-height: 88px;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.integration-card:hover {
  transform: translateY(-3px);
  border-color: rgba(91, 33, 182, 0.22);
  box-shadow:
    0 10px 28px rgba(13, 11, 26, 0.1),
    0 4px 12px rgba(91, 33, 182, 0.08);
}

.integration-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.integration-card-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex: 1;
  min-width: 0;
  min-height: 100%;
}

.integration-card--no-logo .integration-card-text {
  padding-left: 0;
}

.integration-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-1);
  line-height: 1.3;
}

.integration-type {
  margin-top: auto;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple-text);
  background: var(--purple-pill-bg);
  border: 1px solid var(--purple-pill-border);
  border-radius: 4px;
  padding: 4px 7px;
}

.integrations-note {
  margin-top: 28px;
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
}

.integrations-note strong {
  color: var(--text-1);
  font-weight: 600;
}

/* ── CUSTOMERS ───────────────────────────────────────────────────────── */
.quote-block {
  background: var(--surface); border: 1px solid var(--border-mid);
  border-radius: 18px; padding: 48px 52px; margin-top: 44px;
}
@media (max-width: 640px) { .quote-block { padding: 28px 24px; } }
.quote-text {
  font-family: var(--font-head);
  font-size: clamp(18px, 2.1vw, 22px); line-height: 1.68;
  color: var(--text-1); letter-spacing: -0.01em; font-weight: 400; margin-bottom: 28px;
}
.quote-attr { display: flex; align-items: center; gap: 14px; }
.quote-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0; display: block;
}
.quote-name { font-size: 16px; font-weight: 600; color: var(--text-1); }
.quote-role { font-size: 14px; color: var(--text-3); line-height: 1.4; }
.quote-logo {
  margin-left: auto;
  height: 32px; width: auto; max-width: 120px;
  object-fit: contain; flex-shrink: 0;
}
.inv-section-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-3); margin: 40px 0 18px; text-align: center;
}
.inv-row-ctr {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(32px, 6vw, 56px); flex-wrap: wrap;
}
.inv-row-ctr .inv-logo--accel { height: 31px; max-width: 137px; }
.inv-row-ctr .inv-logo--peakxv { height: 44px; max-width: 168px; }
.inv-row-ctr .inv-logo--neotribe { height: 33px; max-width: 196px; }
.inv-row-ctr .inv-logo--graduate { height: 42px; max-width: 254px; }

/* ── TEAM ────────────────────────────────────────────────────────────── */
.team-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-top: 44px;
}
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px)  { .team-grid { grid-template-columns: repeat(2, 1fr); } }
.team-card { display: flex; flex-direction: column; }
.team-photo {
  width: 100%; aspect-ratio: 1/1;
  border: 1.5px dashed rgba(0,0,0,0.12); border-radius: 14px; margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 7px;
  background: rgba(0,0,0,0.02); color: var(--text-3); font-size: 11px;
  text-align: center; padding: 14px;
}
.t-init {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(91,33,182,0.08); border: 1px solid rgba(91,33,182,0.2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
  color: var(--purple); margin-bottom: 5px;
}
.t-name {
  font-family: var(--font-head); font-size: 15px; font-weight: 700;
  letter-spacing: -0.01em; color: var(--text-1); margin-bottom: 2px;
}
.t-role { font-size: 12px; color: var(--text-3); }
.t-city {
  font-size: 11px; color: var(--text-3); margin-top: 3px;
  display: flex; align-items: center; gap: 5px;
}
.t-city-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(91,33,182,0.35); }

/* ── FOOTER CTA ──────────────────────────────────────────────────────── */
#footer-cta { text-align: center; }
.fcta-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--purple); opacity: 0.65; margin-bottom: 22px;
}
.fcta-headline {
  font-family: var(--font-head);
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 700; line-height: 1.07; letter-spacing: -0.035em;
  color: var(--text-1); margin-bottom: 18px;
}
.fcta-sub {
  font-size: 18px; color: var(--text-2); max-width: 480px;
  margin: 0 auto 44px; line-height: 1.55;
}
.fcta-note { margin-top: 16px; font-size: 12px; color: var(--text-3); }

/* ── FOOTER BAR ──────────────────────────────────────────────────────── */
footer {
  position: relative;
  z-index: 2;
  background: #EFECFF;
  padding: 48px 0 0;
  border-top: 1px solid rgba(91,33,182,0.1);
  pointer-events: auto;
}

footer a,
footer button {
  pointer-events: auto;
}

.foot-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 44px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(5, minmax(0, 1fr));
  gap: 32px;
  padding-bottom: 40px;
}

.foot-col--brand {
  max-width: 240px;
}

.foot-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.foot-brand img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}

.foot-logo {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-1);
  text-decoration: none;
  letter-spacing: -0.5px;
  line-height: 1;
}

.foot-logo em {
  font-style: normal;
  color: var(--purple-light);
}

.foot-tagline {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-2);
}

.foot-heading {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.foot-subheading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
  margin: 0 0 10px;
}

.foot-subheading + .foot-links-col {
  margin-bottom: 4px;
}

.foot-subheading:not(:first-of-type) {
  margin-top: 18px;
}

.foot-links-col {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.foot-links-col a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.18s;
}

.foot-links-col a:hover {
  color: var(--purple-text);
}

.foot-cta {
  display: inline-flex;
}

.foot-bottom {
  border-top: 1px solid rgba(91,33,182,0.12);
  padding: 20px 0 28px;
}

.foot-copy {
  font-size: 13px;
  color: var(--text-2);
  margin: 0;
  line-height: 1.5;
}

.foot-links {
  display: flex;
  gap: 22px;
}

.foot-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.18s;
}

.foot-links a:hover {
  color: var(--purple-text);
}

@media (max-width: 900px) {
  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }

  .foot-col--brand {
    grid-column: 1 / -1;
    max-width: none;
  }
}

@media (max-width: 768px) {
  .foot-inner {
    padding: 0 24px;
  }

  .foot-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.foot-inner:has(.foot-links):not(:has(.foot-grid)) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding: 32px 0;
  max-width: var(--max);
}

/* ── LEGAL PAGES ─────────────────────────────────────────────────────── */
.legal-page {
  padding: calc(var(--nav-h) + 64px) 0 96px;
  min-height: calc(100vh - var(--nav-h));
  background: var(--base);
}

.legal-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 44px;
}

.legal-title {
  font-family: var(--font-head);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.026em;
  color: var(--text-1);
  margin-bottom: 16px;
}

.legal-intro {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-2);
  margin-bottom: 40px;
  max-width: 640px;
}

.legal-effective {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-3);
  margin: -8px 0 24px;
}

.legal-list {
  margin: 0 0 16px;
  padding-left: 1.25em;
  max-width: 640px;
}

.legal-list li {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-2);
  margin-bottom: 10px;
}

.legal-list li:last-child {
  margin-bottom: 0;
}

.legal-list a {
  color: var(--purple-text);
  text-decoration: none;
  font-weight: 600;
}

.legal-list a:hover {
  text-decoration: underline;
}

.legal-list strong {
  color: var(--text-1);
  font-weight: 600;
}

.legal-section {
  margin-bottom: 32px;
}

.legal-heading {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.legal-body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-2);
  max-width: 640px;
}

.legal-body a {
  color: var(--purple-text);
  text-decoration: none;
  font-weight: 600;
}

.legal-body a:hover {
  text-decoration: underline;
}

.legal-meta {
  font-size: 14px;
  color: var(--text-3);
  margin-top: 48px;
}

@media (max-width: 768px) {
  .legal-content {
    padding: 0 24px;
  }

  .legal-title {
    font-size: clamp(28px, 7vw, 36px);
  }

  .legal-intro,
  .legal-body,
  .legal-list li {
    font-size: 16px;
  }

  .legal-heading {
    font-size: 20px;
  }
}

/* ── SOLUTION PAGES ──────────────────────────────────────────────────── */
.solution-page {
  position: relative;
  background: var(--base);
}

.solution-hero,
.solution-rows {
  position: relative;
  z-index: 1;
}

.solution-hero {
  position: relative;
  padding: calc(var(--nav-h) + 72px) 0 clamp(80px, 11vw, 128px);
  overflow: hidden;
}

.solution-hero > .container.rel {
  position: relative;
  z-index: 1001;
}

.solution-hero-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.solution-hero-head {
  width: 100%;
  max-width: 900px;
  margin-bottom: 0;
}

.solution-overline-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 14px;
}

.solution-brand-mark {
  flex-shrink: 0;
}

.solution-brand-agent-wrap {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f7e9ff;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(101, 40, 139, 0.12);
}

.solution-brand-agent-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #f7e9ff;
  z-index: 0;
}

.solution-brand-agent {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
  display: block;
  transform-origin: center center;
  animation: agent-thinking 4.8s ease-in-out infinite;
  background: transparent;
}

@media (prefers-reduced-motion: reduce) {
  .solution-brand-agent {
    animation: none;
  }
}

.solution-overline {
  flex: 0 0 auto;
  font-size: clamp(15px, 1.6vw, 20px);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 0;
  line-height: 1.3;
  white-space: nowrap;
}

.solution-overline-text {
  display: inline-block;
}

.solution-hero-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.026em;
  color: var(--text-1);
  margin-bottom: 14px;
  max-width: 900px;
  width: 100%;
}

.solution-hero-sub {
  font-size: 24px;
  font-weight: 600;
  color: #444;
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: min(960px, 100%);
}

.solution-ontology {
  position: relative;
  z-index: 1;
  padding: 0 0 clamp(56px, 7vw, 80px);
}

.solution-ontology-inner {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 40px);
}

.solution-ontology-head {
  max-width: none;
}

.solution-ontology-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 700;
  color: var(--text-1);
  line-height: 1.15;
  letter-spacing: -0.022em;
  margin: 0;
  white-space: nowrap;
}

.solution-ontology-sub {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  color: #444;
  line-height: 1.7;
  margin: 0;
}

.solution-ontology-switcher {
  display: flex;
  justify-content: center;
  width: 100%;
}

.solution-ontology-media {
  width: 66%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.solution-ontology-tabs {
  display: flex;
  align-items: stretch;
  width: 100%;
  gap: 8px;
}

.solution-ontology-tab {
  position: relative;
  overflow: hidden;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  min-height: 64px;
  padding: 14px clamp(12px, 1.6vw, 20px) 16px;
  border-radius: 12px;
  border: 0.5px solid #e5e7eb;
  background: #ffffff;
  color: var(--text-2);
  font-family: var(--font-body);
  text-align: center;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s, color 0.15s;
}

.solution-ontology-tab-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 2;
  background: linear-gradient(90deg, #5b21b6 0%, #65288b 100%);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.solution-ontology-tab.is-active .solution-ontology-tab-progress {
  animation: ontology-tab-progress var(--ontology-duration, 5s) linear forwards;
}

.solution-ontology-tab-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: inherit;
}

.solution-ontology-tab-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: #f4f2fb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  transition: background 0.15s, color 0.15s;
}

.solution-ontology-tab-icon .site-icon {
  width: 20px;
  height: 20px;
  display: block;
}

.solution-ontology-tab-label {
  min-width: 0;
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 600;
  line-height: 1.3;
}

.solution-ontology-tab:hover {
  color: var(--text-1);
  border-color: rgba(91, 33, 182, 0.22);
}

.solution-ontology-tab.is-active {
  color: var(--purple-text);
  background: var(--pink-selection);
  border-color: rgba(91, 33, 182, 0.35);
  box-shadow: 0 2px 10px rgba(91, 33, 182, 0.08);
}

.solution-ontology-tab.is-active .solution-ontology-tab-label {
  font-weight: 700;
}

.solution-ontology-tab.is-active .solution-ontology-tab-icon {
  color: var(--purple);
  background: rgba(255, 255, 255, 0.72);
}

@media (prefers-reduced-motion: reduce) {
  .solution-ontology-tab.is-active .solution-ontology-tab-progress {
    animation: none;
    transform: scaleX(1);
  }
}

@keyframes ontology-tab-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.solution-ontology-sep {
  display: none;
}

.solution-ontology-panels {
  position: relative;
  width: 100%;
  margin: 0;
  aspect-ratio: 8 / 5;
  border-radius: 12px;
  background: #fefdfd;
  border: 0.5px solid #e5e7eb;
  box-shadow: 0 8px 28px rgba(13, 11, 26, 0.12), 0 2px 8px rgba(13, 11, 26, 0.06);
  overflow: hidden;
}

.solution-ontology-panel {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(8px, 1.2vw, 14px);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.solution-ontology-panel.is-active {
  display: flex;
  opacity: 1;
}

.solution-ontology-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .solution-ontology-panel {
    transition: none;
  }
}

@media (max-width: 768px) {
  .solution-hero {
    padding: calc(var(--nav-h) + 36px) 0 clamp(48px, 8vw, 64px);
  }

  .solution-overline-row {
    gap: 12px;
    margin-bottom: 10px;
  }

  .solution-brand-agent-wrap {
    width: 40px;
    height: 40px;
  }

  .solution-brand-agent {
    width: 30px;
    height: 30px;
  }

  .solution-overline {
    font-size: 12px;
    letter-spacing: 0.08em;
  }

  .solution-hero-title {
    font-size: clamp(24px, 6.4vw, 30px);
    line-height: 1.15;
    letter-spacing: -0.022em;
    margin-bottom: 10px;
  }

  .solution-hero-sub {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.65;
    margin-bottom: 28px;
  }

  .solution-hero-intro .cta-primary {
    font-size: 16px;
    padding: 13px 24px;
  }

  .solution-ontology-title {
    font-size: clamp(20px, 5vw, 28px);
    white-space: normal;
  }

  .solution-ontology-sub {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.65;
  }

  .solution-ontology-inner {
    gap: 20px;
  }

  .solution-ontology-switcher {
    justify-content: stretch;
  }

  .solution-ontology-media {
    width: 100%;
    gap: 8px;
  }

  .solution-ontology-tabs {
    flex-direction: column;
    gap: 6px;
  }

  .solution-ontology-tab {
    width: 100%;
    min-height: 48px;
    padding: 10px 12px 12px;
  }

  .solution-ontology-tab-content {
    justify-content: flex-start;
    width: 100%;
    gap: 10px;
  }

  .solution-ontology-tab-icon {
    width: 32px;
    height: 32px;
    border-radius: 7px;
  }

  .solution-ontology-tab-icon .site-icon {
    width: 18px;
    height: 18px;
  }

  .solution-ontology-tab-label {
    font-size: 15px;
  }

  .solution-ontology-panels {
    aspect-ratio: 4 / 3;
  }

  .solution-ontology-panel {
    padding: 2px;
  }
}

.solution-rows {
  padding: clamp(56px, 7vw, 80px) 0 clamp(140px, 14vw, 200px);
}

.solution-rows .container-wide {
  display: flex;
  flex-direction: column;
  gap: clamp(56px, 8vw, 96px);
}

.solution-row {
  display: grid;
  grid-template-columns: 40fr 60fr;
  grid-template-areas: "text media";
  gap: 48px;
  width: 100%;
  align-items: center;
}

.solution-row--reverse {
  grid-template-columns: 60fr 40fr;
  grid-template-areas: "media text";
}

.solution-row-text {
  grid-area: text;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.solution-row-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700;
  color: var(--text-1);
  line-height: 1.15;
  letter-spacing: -0.022em;
  margin: 0 0 14px;
}

.solution-row-body {
  font-size: 24px;
  font-weight: 600;
  color: #444;
  line-height: 1.7;
  max-width: 100%;
}

.solution-row .solution-shot {
  grid-area: media;
  aspect-ratio: 16 / 9;
  width: 100%;
  align-self: center;
  justify-self: stretch;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #fefdfd;
  border: 0.5px solid #e5e7eb;
  box-shadow: 0 8px 28px rgba(13, 11, 26, 0.12), 0 2px 8px rgba(13, 11, 26, 0.06);
}

.solution-row .solution-shot.solution-shot--stacked {
  position: relative;
  display: block;
  aspect-ratio: 5 / 4;
  min-height: 300px;
  width: 100%;
  align-self: center;
  justify-self: stretch;
  min-width: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
}

.solution-row .solution-shot.solution-shot--stacked .solution-shot-image {
  position: absolute;
  width: 76%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: contain;
  background: #fefdfd;
  box-shadow: 0 8px 28px rgba(13, 11, 26, 0.12), 0 2px 8px rgba(13, 11, 26, 0.06);
  border: 0.5px solid #e5e7eb;
}

.solution-row .solution-shot.solution-shot--stacked .solution-shot-image--back {
  top: 0;
  left: 0;
  z-index: 1;
}

.solution-row .solution-shot.solution-shot--stacked .solution-shot-image--front {
  right: 0;
  bottom: var(--shot-front-bottom, 0);
  width: var(--shot-front-width, 76%);
  z-index: 2;
}

.solution-shot-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-3);
}

@media (max-width: 768px) {
  .solution-rows {
    padding: clamp(40px, 6vw, 56px) 0 clamp(80px, 10vw, 120px);
  }

  .solution-rows .container-wide {
    gap: clamp(40px, 6vw, 56px);
  }

  .solution-row,
  .solution-row--reverse {
    grid-template-columns: 1fr;
    grid-template-areas:
      "text"
      "media";
    gap: 20px;
  }

  .solution-row-title {
    font-size: clamp(22px, 5.8vw, 28px);
    line-height: 1.15;
    letter-spacing: -0.022em;
    margin-bottom: 10px;
  }

  .solution-row-body {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.65;
  }

  .solution-row .solution-shot.solution-shot--stacked {
    aspect-ratio: auto;
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .solution-row .solution-shot.solution-shot--stacked .solution-shot-image {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    height: auto;
  }

  .solution-row .solution-shot.solution-shot--stacked .solution-shot-image--back {
    grid-row: 1;
    z-index: 1;
  }

  .solution-row .solution-shot.solution-shot--stacked .solution-shot-image--front {
    grid-row: 2;
    width: 94%;
    justify-self: center;
    margin-top: clamp(-56px, -14vw, -40px);
    z-index: 2;
  }
}

.how-it-works-slide--flow {
  height: auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: calc(var(--nav-h) + clamp(20px, 4vh, 40px));
  padding-bottom: 80px;
  box-sizing: border-box;
  overflow: visible;
}

#how-it-works.how-it-works-slide--flow {
  align-content: start;
}

/* ── HOW IT WORKS ────────────────────────────────────────────────────── */
.how-it-works-frame {
  margin: 0 auto;
}

.how-it-works-head {
  position: relative;
  z-index: 3;
  text-align: left;
  /* match "Sources" label inset in 1280×720 stage (x=128) */
  padding-left: calc(128 / 1280 * 100%);
  margin-bottom: 0;
}

.how-it-works-head .s-label {
  margin-bottom: 2px;
}

.how-it-works-head .s-headline {
  font-size: clamp(27px, 3.4vw, 45px);
  max-width: none;
  margin-bottom: 2px;
}

.how-it-works-sub {
  margin: 0;
  max-width: none;
}

@media (max-width: 768px) {
  .how-it-works-frame {
    width: 100% !important;
    max-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .how-it-works-head {
    padding-left: 0;
    margin-bottom: 20px;
  }

  .how-it-works-head .s-label {
    font-size: 11px;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
  }

  .how-it-works-head .s-headline {
    font-size: clamp(24px, 6.4vw, 32px);
    line-height: 1.15;
    margin-bottom: 12px;
  }

  .how-it-works-sub {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--text-2);
  }
}

.flow-diagram {
  --flow-fit: 0.99;
  /* was 5rem below nav — loosened to 2.5rem so the diagram can use more vertical space */
  --flow-max-height: calc(100dvh - var(--nav-h) - 2.5rem);
  max-height: var(--flow-max-height);
  margin: 0;
  margin-top: -28px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.flow-diagram-view {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  background: transparent;
  font-family: 'Figtree', -apple-system, sans-serif;
}

@media (max-width: 768px) {
  .flow-diagram {
    --flow-fit: 1;
    --flow-max-height: none;
    max-height: none;
    margin-top: 8px;
    margin-left: -12px;
    margin-right: -12px;
    width: calc(100% + 24px);
  }
}

#ankoStage {
  position: relative;
  z-index: 1;
  transform-origin: center center;
}

.flow-diagram-fallback {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flow-diagram--static .flow-diagram-fallback {
  display: block;
}

.flow-diagram--static .flow-diagram-view {
  display: none;
}

@keyframes ankoflow {
    0%   { offset-distance: 0%;   opacity: 0; }
    10%  { opacity: 1; }
    86%  { opacity: 1; }
    100% { offset-distance: 100%; opacity: 0; }
  }
@keyframes ankopulse  { 0%,100% { transform: scale(1); }    50% { transform: scale(1.16); } }
@keyframes ankobreathe{ 0%,100% { transform: scale(1); }    50% { transform: scale(1.05); } }
@keyframes ankohaze   { 0%,100% { opacity: .30; }           50% { opacity: .62; } }
@keyframes ankoblink  { 0%,100% { opacity: .25; }           50% { opacity: 1; } }
@keyframes ankospin   { to { transform: rotate(360deg); } }
@keyframes ankospinr  { to { transform: rotate(-360deg); } }
@keyframes ankowave   { 0%,60%,100%{transform:translateY(0);opacity:.35} 30%{transform:translateY(-3px);opacity:1} }
@keyframes ankomark   { 0%,100%{transform:scale(1) rotate(0deg)} 50%{transform:scale(0.78) rotate(180deg)} }
  /* Src ~15.25%: add in / remove out. Learn ~85.25%: flip back. 10s base cycle. */
@keyframes ankographadd {
    0%, 12.74%     { opacity: 0; }
    15.25%         { opacity: 0; }
    17.75%         { opacity: 1; }
    82.74%         { opacity: 1; }
    85.25%         { opacity: 0; }
    87.75%, 100%   { opacity: 0; }
  }
@keyframes ankographremove {
    0%, 12.74%     { opacity: 1; }
    15.25%         { opacity: 1; }
    17.75%         { opacity: 0; }
    82.74%         { opacity: 0; }
    85.25%         { opacity: 0; }
    87.75%, 100%   { opacity: 1; }
  }
@keyframes ankocharge {
    0%      { stroke-dashoffset: 22; opacity: 0; }
    2.5%    { opacity: 0; }
    5%      { opacity: 1; }
    24%     { opacity: 1; }
    27%     { stroke-dashoffset: calc(-1px * var(--wire-length)); opacity: 0; }
    100%    { stroke-dashoffset: calc(-1px * var(--wire-length)); opacity: 0; }
  }
@keyframes ankohubreceive {
    0%, 21%, 29%, 100% { fill: #f8f2ff; filter: none; }
    25.5% { fill: #ffffff; filter: drop-shadow(0 0 7px rgba(255,255,255,.95)); }
  }
@keyframes ankoleafpulse {
    0%, 100% { transform: scale(1); filter: saturate(.96) brightness(.96); }
    50% { transform: scale(1.1); filter: saturate(1.12) brightness(1.08) drop-shadow(0 0 3px currentColor); }
  }
  .anko-charge {
    fill: none;
    opacity: 0;
    stroke-width: 3.2;
    stroke-dashoffset: 22;
    stroke-linecap: round;
    vector-effect: non-scaling-stroke;
    will-change: stroke-dashoffset, opacity;
  }
  .anko-hub {
    fill: #f8f2ff;
    stroke: #321044;
    stroke-width: 2;
    transform-box: fill-box;
    transform-origin: center;
    animation: ankohubreceive calc(10s / var(--speed,1)) ease-out infinite;
  }
  .anko-leaf {
    transform-box: fill-box;
    transform-origin: center;
    animation: ankoleafpulse calc(var(--leaf-speed, 3.8s) / var(--speed,1)) ease-in-out infinite;
    animation-delay: var(--leaf-delay, 0s);
  }
  .anko-cap-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #65288b;
    color: #fff;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 100px;
    letter-spacing: 0.01em;
    white-space: nowrap;
    line-height: 1;
  }
  .anko-cap-pill svg {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    display: block;
  }
  .anko-cap-pill svg.stroke-icon {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .anko-cap-pill svg.fill-icon {
    fill: currentColor;
  }
  .anko-cap-pill--outline {
    background: #fff;
    color: #4e1e6c;
    border: 1px solid #4e1e6c;
  }
  .anko-panel-label {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 7px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: #65288b;
    margin-bottom: 12px;
  }
  .anko-panel-label svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    display: block;
    color: #65288b;
  }
  .anko-panel-label svg.stroke-icon {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }


/* ── ANYWHERE (MCP) ────────────────────────────────────────────────────── */
.product-panel--anywhere .feature-media {
  pointer-events: none;
  box-shadow: none;
  border: 0.5px solid #e5e7eb;
  background: #fefdfd;
  position: relative;
  min-height: 280px;
  padding: 0;
  overflow: hidden;
  aspect-ratio: 1124 / 776;
}

.anywhere-shot-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.platform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.platform-card {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-2);
  background: #fefdfd;
  border: 0.5px solid #e5e7eb;
  border-radius: 12px;
  padding: 18px 20px;
  min-height: 60px;
  text-align: left;
}

.platform-card-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}

.platform-card-plus {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  color: var(--text-3);
}

@media (max-width: 768px) {
  .product-panel--anywhere .feature-media {
    aspect-ratio: auto;
    min-height: 0;
    height: auto;
    line-height: 0;
  }

  .anywhere-shot-image {
    width: 100%;
    height: auto;
    object-fit: initial;
  }

  .platform-grid {
    gap: 8px;
    margin-top: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .platform-card {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    font-size: 12px;
    font-weight: 600;
    gap: 8px;
    padding: 12px 10px;
    min-height: 48px;
    white-space: nowrap;
  }

  .platform-card--custom {
    white-space: normal;
    align-items: center;
  }

  .platform-card-label {
    line-height: 1.25;
  }

  .platform-card-logo {
    width: 22px;
    height: 22px;
  }

  .platform-card-plus {
    width: 22px;
    height: 22px;
    font-size: 18px;
  }
}

/* ── WHY ANKO — tabs + comparison tables ───────────────────────────────── */
.why-anko-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: clamp(16px, 2.5vw, 24px);
  margin-bottom: clamp(8px, 1.5vw, 12px);
}

.why-anko-tab {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 100px;
  border: 0.5px solid #e5e7eb;
  background: #ffffff;
  color: var(--text-2);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s, background 0.15s, border-color 0.15s;
}

.why-anko-tab:hover {
  color: var(--text-1);
  border-color: rgba(91, 33, 182, 0.22);
}

.why-anko-tab.is-active {
  color: var(--purple-text);
  background: var(--pink-selection);
  border-color: rgba(91, 33, 182, 0.35);
  font-weight: 700;
}

.compare-block {
  margin-top: clamp(20px, 3vw, 28px);
}

.compare-block + .compare-block {
  margin-top: clamp(36px, 5vw, 52px);
}

.compare-table {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.compare-header {
  align-items: center;
}

.compare-header,
.compare-row {
  display: grid;
  grid-template-columns: minmax(140px, 0.9fr) 1fr 1fr;
  gap: 10px;
}

.compare-row {
  align-items: stretch;
}

.compare-header-cell {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-3);
  padding: 10px 6px;
}

.compare-header-cell--cap {
  display: flex;
  align-items: center;
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 10px 6px;
  min-height: 72px;
}

.compare-header-cell--anko,
.compare-header-cell--competitor {
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: none;
  letter-spacing: 0;
  font-size: 16px;
  color: var(--text-1);
  padding: 10px 8px;
  text-align: center;
}

.compare-col-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.compare-col-brand--anko {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.compare-anko-wordmark {
  font-family: var(--font-head);
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 700;
  color: var(--text-1);
  line-height: 1;
  letter-spacing: -0.5px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

.compare-anko-wordmark em {
  font-style: normal;
  color: var(--purple-light);
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

.compare-anko-suffix {
  font-size: 0.88em;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-left: 0.12em;
}

.compare-brand-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.compare-brand-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex-shrink: 0;
}

.compare-brand-logo--anko {
  width: 48px;
  height: 48px;
}

.compare-brand-logo--color {
  opacity: 1;
}

.compare-col-name {
  font-family: var(--font-head);
  font-size: clamp(19px, 1.7vw, 23px);
  font-weight: 700;
  color: var(--text-1);
  line-height: 1.2;
  text-align: center;
}

.compare-logo-placeholder {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border: 0.5px dashed rgba(91, 33, 182, 0.25);
  border-radius: 8px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: #534AB7;
}

.compare-cap {
  font-family: var(--font-head);
  font-size: clamp(18px, 1.55vw, 21px);
  font-weight: 650;
  color: var(--text-1);
  padding: 14px 6px;
  display: flex;
  align-items: center;
}

.compare-cell {
  display: flex;
  align-items: stretch;
}

.compare-pill {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.55;
  font-weight: 500;
  border: 0.5px solid #e5e7eb;
  background: #ffffff;
  color: var(--text-1);
}

.compare-pill--yes .compare-mark,
.compare-pill--no .compare-mark {
  font-size: 1.1em;
  line-height: 1.2;
  margin-top: 2px;
}

.compare-pill--yes {
  border-color: rgba(91, 33, 182, 0.22);
  background: #ffffff;
  color: var(--text-1);
}

.compare-pill--yes .compare-mark {
  color: #16A34A;
  font-weight: 700;
  flex-shrink: 0;
}

.compare-pill--no {
  color: var(--text-1);
  background: #ffffff;
}

.compare-pill--no .compare-mark {
  color: #DC2626;
  font-weight: 700;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .compare-header {
    display: none;
  }

  .compare-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px;
    border: 0.5px solid #e5e7eb;
    border-radius: 12px;
    background: #ffffff;
  }

  .compare-cap {
    padding: 0 0 6px;
    font-size: 15px;
    font-weight: 700;
  }

  .compare-mobile-label {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    width: 100%;
  }

  .compare-mobile-label.compare-col-brand {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    gap: 8px;
  }

  .compare-mobile-label .compare-brand-logo--anko {
    width: 26px;
    height: 26px;
  }

  .compare-mobile-label .compare-anko-wordmark,
  .compare-mobile-label .compare-col-name,
  .compare-mobile-label .compare-anko-suffix {
    display: none;
  }

  .compare-mobile-label .compare-brand-group {
    gap: 6px;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .compare-mobile-label .compare-brand-logo--color {
    width: 18px;
    height: 18px;
  }

  .compare-pill {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 12px 14px;
    font-size: 15px;
    line-height: 1.5;
  }

  .compare-pill .compare-mobile-label {
    width: 100%;
  }

  .compare-pill-body {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
  }

  .compare-pill-text {
    flex: 1;
    min-width: 0;
  }

  .compare-pill-body .compare-mark {
    flex-shrink: 0;
    line-height: 1;
    margin-top: 0;
  }
}

/* ── FADE IN ─────────────────────────────────────────────────────────── */
.fi { opacity: 0; transform: translateY(16px); transition: opacity 0.52s ease, transform 0.52s ease; }
.fi.on { opacity: 1; transform: none; }
.fi-d1 { transition-delay: 0.1s; }
.fi-d2 { transition-delay: 0.22s; }
.fi-d3 { transition-delay: 0.34s; }
