/* ============================================================
   GALYA — Marketing site. Light theme.
   Foundations from the Galya Design System (tokens via styles.css).
   Namespace: .gw-*  (Galya Website)
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--smoke); color: var(--color-text);
  font-family: var(--font-sans); font-size: var(--text-body); line-height: var(--leading-body);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: rgba(151,174,159,.4); }

.gw { overflow-x: clip; }
.gw-wrap { max-width: 1120px; margin: 0 auto; padding: 0 var(--space-8); }
.gw-wrap--narrow { max-width: 880px; }

/* ---- Type helpers ---- */
.gw-serif { font-family: var(--font-serif); }
.gw-quote { font-family: var(--font-serif); font-style: italic; line-height: 1.16; letter-spacing: -.006em; color: var(--carbon); text-wrap: balance; }
.gw-display { font-family: var(--font-sans); font-weight: 700; letter-spacing: -.03em; line-height: .98; }
.gw-eyebrow {
  display: inline-flex; align-items: center; gap: var(--space-2); white-space: nowrap;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--granite); font-weight: 500;
}
.gw-eyebrow .dot { width: 6px; height: 6px; border-radius: var(--radius-full); background: var(--violet); }
.gw-eyebrow--ondark { color: var(--teal); }

/* ---- Section rhythm ---- */
.gw-section { padding: var(--space-24) 0; }
.gw-section--tight { padding: var(--space-16) 0; }
.gw-band-alabaster { background: var(--alabaster); }
.gw-section__head { max-width: 660px; margin: 0 0 var(--space-12); }
.gw-section__head.center { margin-left: auto; margin-right: auto; text-align: center; }
.gw-section__head h2 {
  font-family: var(--font-sans); font-size: clamp(32px, 3.4vw, 46px); line-height: 1.06;
  letter-spacing: -.025em; font-weight: 600; margin: var(--space-4) 0 var(--space-5); color: var(--carbon);
}
.gw-section__head p { font-size: var(--text-lg); line-height: 1.55; color: var(--gunmetal); margin: 0; text-wrap: pretty; }

/* page hero (sub-pages) */
.gw-pagehead { padding: var(--space-20) 0 var(--space-12); border-bottom: 1px solid var(--silver); }
.gw-pagehead h1 {
  font-family: var(--font-sans); font-size: var(--text-h1); line-height: 1.02;
  letter-spacing: -.03em; font-weight: 700; margin: var(--space-5) 0 var(--space-5); color: var(--carbon); text-wrap: balance;
}
.gw-pagehead p { font-size: var(--text-lg); color: var(--gunmetal); max-width: 620px; margin: 0; line-height: 1.55; text-wrap: pretty; }
.gw-pagehead--flush { border-bottom: none; padding-bottom: var(--space-8); }

/* ============================================================
   NAV
   ============================================================ */
.gw-nav {
  position: sticky; top: 0; z-index: var(--z-dropdown);
  background: rgba(243,242,242,.78); backdrop-filter: blur(12px) saturate(140%);
  border-bottom: 1px solid var(--silver);
}
.gw-nav__in { display: flex; align-items: center; height: 72px; gap: var(--space-6); }
.gw-nav__logo-link { flex-shrink: 0; display: inline-flex; align-items: center; }
.gw-nav__logo { height: 26px; width: auto; max-width: none; object-fit: contain; cursor: pointer; }
.gw-nav__right { display: flex; align-items: center; gap: var(--space-2); margin-left: auto; }
.gw-nav__links { display: flex; align-items: center; gap: var(--space-2); }
.gw-nav__item { position: static; }
.gw-nav__link {
  display: inline-flex; align-items: center; gap: 6px; height: 40px; padding: 0 var(--space-3);
  font-size: var(--text-sm); font-weight: var(--weight-medium); color: var(--gunmetal);
  border-radius: var(--radius-sm); cursor: pointer; background: none; border: none; font-family: inherit;
  transition: color var(--duration-base) var(--ease-default), background var(--duration-base) var(--ease-default);
}
.gw-nav__link:hover { color: var(--carbon); background: var(--alabaster); }
.gw-nav__link.is-active { color: var(--carbon); }
.gw-nav__item.is-open .gw-nav__link { color: var(--carbon); background: var(--alabaster); }

.gw-nav__menu {
  position: absolute; top: calc(100% + 10px); left: 50%; right: auto;
  display: flex; align-items: stretch; gap: var(--space-8);
  background: #fff; border: 1px solid var(--silver); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); z-index: var(--z-popover);
  padding: var(--space-6); max-width: calc(100vw - 32px);
  opacity: 0; transform: translateX(-50%) translateY(-6px); pointer-events: none;
  transition: opacity var(--duration-base) var(--ease-default), transform var(--duration-base) var(--ease-default);
}
.gw-nav__menu--right { left: 50%; right: auto; }
.gw-nav__menu__cols { display: flex; gap: var(--space-8); }
.gw-nav__col { display: flex; flex-direction: column; gap: 2px; min-width: 196px; }
.gw-nav__col__h { font-size: var(--text-label); letter-spacing: var(--tracking-label); text-transform: uppercase; color: var(--grey); font-weight: 600; padding: 0 var(--space-3); margin-bottom: var(--space-3); }
.gw-nav__feature {
  position: relative; overflow: hidden; text-decoration: none;
  display: flex; flex-direction: column; justify-content: flex-end;
  width: 248px; padding: var(--space-5); border-radius: var(--radius-md);
  background: var(--violet); color: var(--smoke);
  transition: transform var(--duration-base) var(--ease-default);
}
.gw-nav__feature:hover { transform: translateY(-2px); }
.gw-nav__feature__mark { position: absolute; top: -26px; right: -26px; width: 132px; height: auto; opacity: .16; pointer-events: none; }
.gw-nav__feature__eyebrow { font-size: var(--text-label); letter-spacing: var(--tracking-label); text-transform: uppercase; color: var(--teal); font-weight: 600; margin-bottom: var(--space-2); position: relative; }
.gw-nav__feature__title { font-family: var(--font-sans); font-size: var(--text-h5); font-weight: 600; letter-spacing: -.01em; line-height: 1.15; position: relative; }
.gw-nav__feature__desc { font-size: var(--text-sm); color: rgba(243,242,242,.72); line-height: 1.5; margin-top: var(--space-2); position: relative; }
.gw-nav__item.is-open .gw-nav__menu { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.gw-nav__menu__list { padding: var(--space-4); display: flex; flex-direction: column; gap: 2px; border-right: 1px solid rgba(243,242,242,.12); }
.gw-nav__menu__preview {
  background: var(--carbon); border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: var(--space-5); display: flex; flex-direction: column; justify-content: flex-start; gap: var(--space-3);
}
.gw-nav__preview__box { background: rgba(243,242,242,.05); border: 1px solid rgba(243,242,242,.12); border-radius: var(--radius-md); height: 142px; display: grid; place-items: center; padding: var(--space-4); margin-bottom: var(--space-1); overflow: hidden; }
.gw-nav__preview__box .gw-nav__mo { width: 100%; }
.gw-nav__motifsvg { width: 96px; height: 64px; display: block; overflow: visible; }

/* readout-style dropdown motifs (on dark granite panel) */
.gw-nav__mo { width: 100%; display: flex; }
.gw-nav__mo-svg { display: block; overflow: visible; }
.gw-nav__mo--graph { flex-direction: column; align-items: flex-start; gap: 6px; }
.gw-nav__mo--graph .gw-nav__mo-svg { width: 120px; height: 56px; }
.gw-nav__mo-cap { font-family: var(--font-mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: var(--silver-mid); }
.gw-nav__mo-cap em { color: var(--teal); font-style: normal; }
/* flow */
.gw-nav__mo--flow { align-items: center; gap: 5px; flex-wrap: nowrap; }
.gw-nav__mo-node { font-family: var(--font-mono); font-size: 9px; letter-spacing: .02em; color: var(--smoke); border: 1px solid rgba(243,242,242,.28); border-radius: 999px; padding: 3px 7px; white-space: nowrap; }
.gw-nav__mo-node.is-core { color: var(--carbon); background: var(--teal); border-color: var(--teal); font-weight: 600; }
.gw-nav__mo-wire { flex: 1; height: 1px; background: rgba(243,242,242,.3); min-width: 8px; }
/* segment bars */
.gw-nav__mo--seg { flex-direction: column; align-items: stretch; gap: 7px; }
.gw-nav__mo-pill { align-self: flex-start; font-family: var(--font-mono); font-size: 9px; color: var(--carbon); background: var(--teal); border-radius: 999px; padding: 3px 9px; margin-bottom: 1px; }
.gw-nav__mo-bar { height: 4px; background: rgba(243,242,242,.16); border-radius: 999px; overflow: hidden; }
.gw-nav__mo-bar i { display: block; height: 100%; background: var(--teal); border-radius: 999px; }
/* indexed asset */
.gw-nav__mo--asset { align-items: center; gap: 12px; }
.gw-nav__mo-frame { width: 48px; height: 48px; flex: 0 0 auto; border-radius: 5px; background: linear-gradient(135deg, rgba(151,174,159,.5), rgba(243,242,242,.14)); border: 1px solid rgba(243,242,242,.22); position: relative; }
.gw-nav__mo-frame::after { content: ''; position: absolute; top: 5px; left: 5px; width: 11px; height: 11px; border-left: 1.5px solid var(--teal); border-top: 1.5px solid var(--teal); }
.gw-nav__mo-chips { display: flex; flex-direction: column; align-items: flex-start; gap: 5px; }
.gw-nav__mo-chip { font-family: var(--font-mono); font-size: 9px; color: var(--smoke); border: 1px solid rgba(243,242,242,.26); border-radius: 999px; padding: 2px 8px; }
.gw-nav__mo-chip em { color: var(--teal); font-style: normal; margin-left: 2px; }
/* brand mark */
.gw-nav__mo--mark { justify-content: flex-start; }
.gw-nav__mo--mark .gw-nav__mo-svg { width: 60px; height: 60px; }
/* faq */
.gw-nav__mo--faq { flex-direction: column; align-items: stretch; gap: 6px; }
.gw-nav__mo-q { display: flex; align-items: center; justify-content: space-between; font-family: var(--font-sans); font-size: 10px; color: var(--silver-mid); border-bottom: 1px solid rgba(243,242,242,.14); padding-bottom: 5px; }
.gw-nav__mo-q.is-open { color: var(--smoke); }
.gw-nav__mo-q i { width: 6px; height: 6px; border-right: 1.5px solid var(--teal); border-bottom: 1.5px solid var(--teal); transform: rotate(45deg); flex: 0 0 auto; }
.gw-nav__mo-q.is-open i { transform: rotate(-135deg); }
/* contact */
.gw-nav__mo--contact { flex-direction: column; align-items: stretch; gap: 8px; }
.gw-nav__mo-field { font-family: var(--font-mono); font-size: 10px; color: var(--smoke); border: 1px solid rgba(243,242,242,.26); border-radius: var(--radius-sm); padding: 7px 9px; }
.gw-nav__mo-send { align-self: flex-start; font-family: var(--font-mono); font-size: 9px; color: var(--carbon); background: var(--teal); border-radius: var(--radius-sm); padding: 5px 10px; }
.gw-nav__preview__name { font-family: var(--font-serif); font-size: 22px; font-weight: 600; line-height: 1.1; color: var(--smoke); margin: 0; letter-spacing: -.01em; }
.gw-nav__preview__desc { font-size: var(--text-sm); color: rgba(243,242,242,.65); margin: 0; line-height: 1.5; }
.gw-nav__menulink {
  display: flex; flex-direction: column; gap: 1px; padding: var(--space-2) var(--space-3); border-radius: var(--radius-md);
  cursor: pointer; text-decoration: none; transition: background var(--duration-fast) var(--ease-default);
}
.gw-nav__menulink:hover, .gw-nav__menulink.is-active { background: var(--alabaster); }
.gw-nav__menulink .t { display: block; font-size: var(--text-body); font-weight: var(--weight-semibold); color: var(--carbon); }
.gw-nav__menulink .d { display: block; font-size: var(--text-sm); font-style: normal; color: var(--gunmetal); line-height: 1.45; }
.gw-nav__cta { display: flex; align-items: center; gap: var(--space-3); }
.gw-nav__discord {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; color: var(--gunmetal); border-radius: var(--radius-md);
  transition: color var(--duration-base) var(--ease-default), background var(--duration-base) var(--ease-default);
}
.gw-nav__discord:hover { color: var(--carbon); background: var(--alabaster); }
.gw-nav__discord svg { width: 20px; height: 20px; display: block; }
.gw-nav__discord--drawer {
  width: auto; height: auto; gap: var(--space-2); padding: var(--space-3) 0;
  font-size: var(--text-body); font-weight: 600; color: var(--carbon);
}
.gw-nav__discord--drawer svg { width: 18px; height: 18px; }

/* Neutral “Book Demo” pill (matches header reference) */
.gw-nav__demo {
  font-family: inherit; font-size: var(--text-sm); font-weight: var(--weight-semibold); color: var(--carbon);
  background: #E7E6E5; border: 1px solid transparent; border-radius: var(--radius-md);
  height: 40px; padding: 0 var(--space-5); cursor: pointer; white-space: nowrap;
  transition: background var(--duration-base) var(--ease-default);
}
.gw-nav__demo:hover { background: #DAD9D7; }

/* CSS hamburger (no icon font) */
.gw-nav__burger { display: none; width: 40px; height: 40px; background: none; border: none; cursor: pointer; position: relative; }
.gw-nav__burger span {
  position: absolute; left: 9px; right: 9px; height: 1.5px; background: var(--carbon);
  transition: transform var(--duration-base) var(--ease-default), opacity var(--duration-base) var(--ease-default);
}
.gw-nav__burger span:nth-child(1) { top: 16px; }
.gw-nav__burger span:nth-child(2) { top: 23px; }
.gw-nav__burger.is-open span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.gw-nav__burger.is-open span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

/* Mobile drawer */
.gw-drawer { display: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.gw-footer { position: relative; background: var(--smoke); color: var(--carbon); padding: var(--space-16) 0 var(--space-10); overflow: hidden; border-top: 1px solid var(--silver); }
.gw-footer__topo { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; opacity: 0.28; pointer-events: none; }
.gw-footer__in { position: relative; z-index: 1; }
.gw-footer__grid { display: grid; grid-template-columns: 1fr auto auto auto; gap: var(--space-14); align-items: start; }
.gw-footer__brand { max-width: 320px; }
.gw-footer__logo { height: 34px; margin-bottom: var(--space-5); }
.gw-footer__brand p { font-size: var(--text-sm); color: var(--gunmetal); line-height: 1.65; margin: 0; }
.gw-footer__social { display: flex; align-items: center; gap: var(--space-5); margin-top: var(--space-6); }
.gw-footer__social a {
  display: inline-flex; align-items: center; justify-content: center; color: var(--grey);
  transition: color var(--duration-base) var(--ease-default);
}
.gw-footer__social a:hover { color: var(--carbon); }
.gw-footer__social svg { width: 19px; height: 19px; display: block; }
.gw-footer__col h4 {
  font-size: var(--text-label); letter-spacing: var(--tracking-label); text-transform: uppercase;
  color: var(--grey); font-weight: var(--weight-semibold); margin: 0 0 var(--space-4);
  white-space: nowrap;
}
.gw-footer__col a {
  display: block; font-size: var(--text-sm); color: var(--gunmetal); margin-bottom: var(--space-3);
  cursor: pointer; transition: color var(--duration-base) var(--ease-default); width: fit-content; white-space: nowrap;
}
.gw-footer__col a:hover { color: var(--carbon); }
.gw-footer__fine {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  margin-top: var(--space-14); padding-top: var(--space-5); border-top: 1px solid var(--silver-mid);
  font-size: var(--text-caption); color: var(--grey); font-style: normal;
}

/* ============================================================
   HOME — HERO
   ============================================================ */
.gw-hero { padding: var(--space-24) 0 var(--space-20); position: relative; }
.gw-hero__topo { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; opacity: 0.5; pointer-events: none; }
.gw-hero > .gw-wrap { position: relative; z-index: 1; }
.gw-hero__grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: var(--space-16); align-items: center; }
.gw-hero h1 {
  font-family: var(--font-sans); font-size: 84px; line-height: 1.02;
  letter-spacing: -.03em; font-weight: 700; margin: var(--space-6) 0 var(--space-6); color: var(--carbon);
}
.gw-hero h1 em { font-family: var(--font-serif); font-style: italic; font-weight: 500; color: var(--granite); letter-spacing: -.01em; }
.gw-hero .lede { font-size: var(--text-lg); line-height: 1.55; color: var(--gunmetal); max-width: 460px; margin: 0 0 var(--space-8); text-wrap: pretty; }
.gw-hero__cta { display: flex; align-items: center; gap: var(--space-4); flex-wrap: wrap; }
.gw-hero__note { margin-top: var(--space-6); font-size: var(--text-sm); color: var(--grey); }

/* Trust bar */
.gw-trust { padding: var(--space-10) 0; border-top: 1px solid var(--silver); border-bottom: 1px solid var(--silver); }
.gw-trust__in { display: flex; align-items: center; justify-content: center; gap: var(--space-6); flex-wrap: wrap; }
.gw-trust__label { font-size: var(--text-caption); letter-spacing: var(--tracking-label); text-transform: uppercase; color: var(--grey); font-style: normal; }
.gw-trust__sectors { display: flex; align-items: center; gap: var(--space-6); flex-wrap: wrap; }
.gw-trust__sectors span { font-family: var(--font-sans); font-size: var(--text-h5); color: var(--silver-mid); font-weight: 600; letter-spacing: -.01em; }
.gw-trust__sectors .sep { color: var(--silver); font-size: var(--text-body); }

/* ============================================================
   CARDS / GRIDS
   ============================================================ */
.gw-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.gw-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-5); }
.gw-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); }

.gw-card { display: flex; flex-direction: column; gap: var(--space-4); height: 100%; }
.gw-card__icon {
  display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px;
  border-radius: var(--radius-lg); background: var(--alabaster); color: var(--granite); flex: none;
}
.gw-card__icon--accent { background: rgba(151,174,159,.26); }
.gw-card h3 { font-family: var(--font-sans); font-size: var(--text-h5); font-weight: 600; margin: 0; color: var(--carbon); letter-spacing: -.01em; }
.gw-card h3.sans { font-family: var(--font-sans); font-size: var(--text-h5); font-weight: 600; }
.gw-card p { font-size: var(--text-body); line-height: 1.55; color: var(--gunmetal); margin: 0; text-wrap: pretty; }
.gw-card__index { font-family: var(--font-mono); font-size: var(--text-sm); color: var(--teal); }

/* Pain point card variant */
.gw-pain h3 { font-family: var(--font-sans); font-size: var(--text-h5); font-weight: 600; }
.gw-pain__tag { font-family: var(--font-mono); font-size: var(--text-caption); font-style: normal; color: var(--grey); }

/* ---- Hover-elevation pass --------------------------------------
   Brand-correct depth for resting content cards (no glass): flat
   white + hairline at rest, lift to --shadow-md on hover. The 2px
   rise is motion-gated so reduced-motion users get the shadow only. */
.gw-stk__card, .gw-stk__core,
.gw .galya-card.gw-card:not(.galya-card--interactive) {
  transition: box-shadow var(--duration-base) var(--ease-default),
              transform var(--duration-base) var(--ease-default);
}
.gw-stk__card:hover, .gw-stk__core:hover,
.gw .galya-card.gw-card:not(.galya-card--interactive):hover,
.gw .galya-card--interactive:hover {
  box-shadow: var(--shadow-md);
}
@media (prefers-reduced-motion: no-preference) {
  .gw-stk__card:hover, .gw-stk__core:hover,
  .gw .galya-card.gw-card:not(.galya-card--interactive):hover,
  .gw .galya-card--interactive:hover {
    transform: translateY(-2px);
  }
}

/* ============================================================
   PIPELINE (4-step)
   ============================================================ */
.gw-pipeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.gw-pipe {
  position: relative; padding: var(--space-6); border: 1px solid var(--silver); background: var(--smoke);
  border-right: none;
}
.gw-pipe:first-child { border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
.gw-pipe:last-child { border-radius: 0 var(--radius-lg) var(--radius-lg) 0; border-right: 1px solid var(--silver); }
.gw-pipe__num {
  font-family: var(--font-mono); font-size: var(--text-caption); font-style: normal; color: var(--teal);
  display: flex; align-items: center; gap: var(--space-2); margin-bottom: var(--space-4);
}
.gw-pipe__num .arrow { position: absolute; right: -11px; top: var(--space-6); color: var(--silver-mid); background: var(--smoke); z-index: 1; }
.gw-pipe:last-child .gw-pipe__num .arrow { display: none; }
.gw-pipe__icon { width: 40px; height: 40px; border-radius: var(--radius-md); background: var(--alabaster); color: var(--granite); display: grid; place-items: center; margin-bottom: var(--space-4); }
.gw-pipe h3 { font-family: var(--font-sans); font-size: var(--text-h5); font-weight: 600; margin: 0 0 var(--space-2); color: var(--carbon); letter-spacing: .01em; }
.gw-pipe p { font-size: var(--text-sm); line-height: 1.5; color: var(--gunmetal); margin: 0; }

/* ============================================================
   DIFFERENTIATORS strip
   ============================================================ */
.gw-diff { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); }
.gw-diff__item { display: flex; flex-direction: column; gap: var(--space-3); padding: var(--space-6) 0; }
.gw-diff__item .ic { width: 32px; height: 32px; color: var(--granite); }
.gw-diff__item h3 { font-family: var(--font-sans); font-size: var(--text-h5); font-weight: 600; margin: 0; color: var(--carbon); }
.gw-diff__item p { font-size: var(--text-sm); color: var(--gunmetal); margin: 0; line-height: 1.5; }

/* ============================================================
   CODE / DEV band
   ============================================================ */
.gw-code { background: var(--carbon); border-radius: var(--radius-2xl); overflow: hidden; color: var(--smoke); }
.gw-code__grid { display: grid; grid-template-columns: 1fr 1.12fr; }
.gw-code__copy { padding: var(--space-16) var(--space-12); display: flex; flex-direction: column; justify-content: center; }
.gw-code__copy .eye { color: var(--teal); }
.gw-code__copy h2 { font-family: var(--font-sans); font-size: var(--text-h3); line-height: 1.06; font-weight: 600; letter-spacing: -.025em; margin: var(--space-4) 0 var(--space-5); }
.gw-code__copy p { font-size: var(--text-body); line-height: 1.6; color: rgba(243,242,242,.72); margin: 0 0 var(--space-6); }
.gw-code__copy ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--space-3); }
.gw-code__copy li { display: flex; align-items: center; gap: var(--space-3); font-size: var(--text-sm); color: rgba(243,242,242,.85); }
.gw-code__copy li .ck { color: var(--teal); display: inline-flex; }
.gw-code__panel { background: var(--gunmetal); padding: var(--space-8); border-left: 1px solid rgba(243,242,242,.08); display: flex; flex-direction: column; }
.gw-code__bar { display: flex; gap: 6px; margin-bottom: var(--space-5); align-items: center; }
.gw-code__bar i { width: 10px; height: 10px; border-radius: var(--radius-full); background: rgba(243,242,242,.18); }
.gw-code__bar .fn { margin-left: var(--space-3); font-family: var(--font-mono); font-size: var(--text-caption); font-style: normal; color: rgba(243,242,242,.5); }
.gw-code pre { margin: 0; font-family: var(--font-mono); font-size: 13px; line-height: 1.7; color: rgba(243,242,242,.92); white-space: pre; overflow-x: auto; }
.gw-code .k { color: var(--teal); }
.gw-code .s { color: #C9D3CC; }
.gw-code .c { color: var(--grey); }
.gw-code .n { color: #D8C7A8; }

/* compact inline code snippet (home dev hook) */
.gw-snippet { background: var(--carbon); border-radius: var(--radius-lg); padding: var(--space-6) var(--space-8); overflow-x: auto; }
.gw-snippet pre { margin: 0; font-family: var(--font-mono); font-size: 14px; line-height: 1.8; color: rgba(243,242,242,.92); white-space: pre; }

/* ============================================================
   CTA band (violet brand)
   ============================================================ */
.gw-cta { background: var(--violet); border-radius: var(--radius-2xl); padding: var(--space-20) var(--space-12); text-align: center; color: var(--smoke); position: relative; overflow: hidden; }
.gw-cta__mark { position: absolute; opacity: .1; width: 360px; right: -60px; bottom: -100px; pointer-events: none; }
.gw-cta h2 { font-family: var(--font-sans); font-size: var(--text-h2); font-weight: 600; letter-spacing: -.025em; margin: 0 0 var(--space-4); position: relative; }
.gw-cta p { font-size: var(--text-lg); color: rgba(243,242,242,.88); max-width: 480px; margin: 0 auto var(--space-8); line-height: 1.5; position: relative; }
.gw-cta__row { display: flex; gap: var(--space-4); justify-content: center; position: relative; flex-wrap: wrap; }
.gw-btn-on-violet { --_bg: var(--smoke); --_fg: var(--carbon); --_bd: transparent; --_bg-hover: #E5E4E4; }
.gw-btn-ghost-violet { --_bg: transparent; --_fg: var(--smoke); --_bd: rgba(243,242,242,.4); --_bg-hover: rgba(243,242,242,.12); }

/* ============================================================
   TASTE GRAPH visual (SVG/CSS node network)
   ============================================================ */
.gw-graph { position: relative; width: 100%; aspect-ratio: 1 / 1; max-width: 480px; margin: 0 auto; }
.gw-graph svg { width: 100%; height: 100%; overflow: visible; }
.gw-graph .edge { stroke: var(--silver-mid); stroke-width: 1; opacity: .55; transition: opacity .3s var(--ease-default), stroke .3s var(--ease-default), stroke-width .3s var(--ease-default); }
.gw-graph .edge.live { animation: gw-dash 2.4s linear infinite; stroke-dasharray: 4 4; }
.gw-graph .edge.hot { stroke: var(--teal); stroke-width: 1.6; opacity: 1; }
.gw-graph.is-hovering .edge.dim { opacity: .1; }
@keyframes gw-dash { to { stroke-dashoffset: -16; } }
.gw-graph .node { cursor: pointer; transition: opacity .3s var(--ease-default); }
.gw-graph.is-hovering .node.dim { opacity: .3; }
.gw-graph .node circle { transition: r var(--duration-slow) var(--ease-default), transform .25s var(--ease-default); transform-box: fill-box; transform-origin: center; }
.gw-graph .node.hot circle { transform: scale(1.18); }
.gw-graph .node text { transition: fill .3s var(--ease-default); }
.gw-graph .node text { font-family: var(--font-sans); font-size: 11px; fill: var(--gunmetal); }
.gw-graph .node--accent circle { fill: var(--teal); }
.gw-graph .node--granite circle { fill: var(--granite); }
.gw-graph .node--silver circle { fill: var(--silver-mid); }
.gw-graph .pulse { animation: gw-pulse 3s var(--ease-default) infinite; transform-origin: center; transform-box: fill-box; }
@keyframes gw-pulse { 0%,100% { opacity: .9; } 50% { opacity: .45; } }

/* ============================================================
   TASTE NETWORK — 3D point-cloud hero (Taste Graph page)
   ============================================================ */
.gw-tn { padding: var(--space-12) 0 var(--space-16); }
.gw-tn__stage {
  position: relative; width: 100%;
  height: clamp(520px, 72vh, 680px);
  background: var(--smoke);
  border: 1px solid var(--silver);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.gw-tn__canvas { position: absolute; top: 0; right: 0; bottom: 0; left: 34%; z-index: 1; }
.gw-tn__canvas canvas { display: block; }

.gw-tn__ui {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: auto 1fr auto;
  padding: clamp(20px, 3vw, 44px);
  gap: var(--space-4);
}
.gw-tn__eyebrow { grid-column: 1 / 3; grid-row: 1; align-self: start; }
.gw-tn__meta {
  grid-column: 4 / 5; grid-row: 1; justify-self: end; text-align: right;
  font-family: var(--font-mono); font-size: 11px; line-height: 1.6;
  letter-spacing: .02em; color: var(--gunmetal);
}
.gw-tn__meta .em { color: var(--carbon); font-weight: 600; }

.gw-tn__title { grid-column: 1 / 4; grid-row: 2; align-self: center; }
.gw-tn__title h1 {
  font-family: var(--font-serif); font-weight: 600;
  font-size: clamp(36px, 4.6vw, 58px); line-height: 1.06; letter-spacing: -.02em;
  color: var(--carbon); margin: 0 0 var(--space-4); text-wrap: balance; max-width: 440px;
}
.gw-tn__lede {
  font-size: var(--text-lg); line-height: 1.6; color: var(--gunmetal);
  max-width: 360px; margin: 0; text-wrap: pretty;
}
.gw-tn__list {
  margin-left: clamp(80px, 13vw, 220px);
  display: flex; flex-direction: column; gap: 7px;
  font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em;
  color: var(--gunmetal);
}
.gw-tn__list span { width: max-content; }
.gw-tn__list span:nth-child(2) { margin-left: 1.5rem; }
.gw-tn__list span:nth-child(3) { margin-left: 3rem; }
.gw-tn__list span:nth-child(4) {
  margin-left: 4.5rem; color: var(--granite);
  display: inline-flex; align-items: center; gap: 7px;
}
.gw-tn__list span:nth-child(4)::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--teal);
}

.gw-tn__bottom { grid-column: 1 / 3; grid-row: 3; align-self: end; }
.gw-tn__node {
  font-family: var(--font-sans); font-size: 24px; font-weight: 700;
  letter-spacing: -.03em; line-height: 1; color: var(--carbon); margin: 0 0 var(--space-4);
}
.gw-tn__node span { display: block; }
.gw-tn__details {
  font-size: 10px; font-weight: 500; letter-spacing: .04em; line-height: 1.7;
  text-transform: uppercase; color: var(--gunmetal);
}
.gw-tn__details strong { color: var(--carbon); font-weight: 600; }

.gw-tn__panel {
  grid-column: 4 / 5; grid-row: 3; align-self: end; justify-self: end;
  pointer-events: auto; width: 264px; max-width: 100%;
  background: var(--alabaster); border: 1px solid var(--silver);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  padding: var(--space-4) var(--space-5);
}
.gw-tn__panel h2 {
  font-family: var(--font-sans); font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em; color: var(--grey);
  margin: 0 0 var(--space-3); padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--silver);
}
.gw-tn__panelcap {
  font-size: 11px; line-height: 1.45; color: var(--gunmetal);
  margin: 0 0 var(--space-1); text-wrap: pretty;
}
.gw-tn__sig {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11px; color: var(--gunmetal); margin-top: var(--space-3);
}
.gw-tn__sig .nm { display: inline-flex; align-items: center; gap: var(--space-2); }
.gw-tn__dot { width: 6px; height: 6px; border-radius: 50%; flex: none; }
.gw-tn__dot.is-teal { background: var(--teal); }
.gw-tn__dot.is-granite { background: var(--granite); }
.gw-tn__dot.is-silver { background: var(--silver-mid); }
.gw-tn__sig .vl { font-family: var(--font-mono); font-weight: 600; color: var(--carbon); }

.gw-tn__rule {
  display: flex; justify-content: space-between; gap: var(--space-4); flex-wrap: wrap;
  margin-top: var(--space-3); font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .02em; color: var(--grey);
}

@media (max-width: 860px) {
  .gw-tn__stage { height: clamp(460px, 86vh, 640px); }
  .gw-tn__canvas { left: 0; }
  .gw-tn__ui { grid-template-columns: 1fr; grid-template-rows: auto auto 1fr auto; }
  .gw-tn__eyebrow, .gw-tn__meta { grid-column: 1; justify-self: start; text-align: left; }
  .gw-tn__title { grid-column: 1; grid-row: 2; align-self: start; margin-top: var(--space-2); }
  .gw-tn__list { margin-left: 0; }
  .gw-tn__list span { margin-left: 0 !important; }
  .gw-tn__bottom { grid-column: 1; grid-row: 4; }
  .gw-tn__panel { grid-column: 1; grid-row: 3; justify-self: start; width: 100%; max-width: 320px; }
}

/* attribute cards */
.gw-attr { display: flex; flex-direction: column; gap: var(--space-3); }
.gw-attr__label { display: flex; align-items: center; justify-content: space-between; }
.gw-attr__label .n { font-family: var(--font-sans); font-size: var(--text-body); font-weight: 600; color: var(--carbon); }
.gw-attr__label .v { font-family: var(--font-mono); font-size: var(--text-sm); color: var(--granite); }
.gw-attr__bar { height: 8px; border-radius: var(--radius-full); background: var(--alabaster); overflow: hidden; }
.gw-attr__bar i { display: block; height: 100%; background: var(--teal); border-radius: var(--radius-full); transition: width 1s var(--ease-default); }
.gw-attr__chips { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.gw-chip { font-size: var(--text-caption); font-style: normal; padding: 4px var(--space-3); border-radius: var(--radius-full); background: var(--alabaster); color: var(--gunmetal); border: 1px solid var(--silver); }

/* two-column explain + visual */
.gw-split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-16); align-items: center; }
.gw-split--text-narrow { grid-template-columns: .9fr 1.1fr; }
.gw-prose p { font-size: var(--text-lg); line-height: 1.6; color: var(--gunmetal); margin: 0 0 var(--space-5); text-wrap: pretty; }
.gw-prose p:last-child { margin-bottom: 0; }
.gw-feature-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--space-5); }
.gw-feature-list li { display: flex; gap: var(--space-4); }
.gw-feature-list .ic { flex: none; width: 40px; height: 40px; border-radius: var(--radius-md); background: rgba(151,174,159,.26); color: var(--granite); display: grid; place-items: center; }
.gw-feature-list .t { font-family: var(--font-sans); font-size: var(--text-h5); font-weight: 600; color: var(--carbon); margin: 0 0 2px; }
.gw-feature-list .d { font-size: var(--text-body); color: var(--gunmetal); margin: 0; line-height: 1.5; }

/* ============================================================
   DASHBOARD (app-window mock — Customer Intelligence)
   ============================================================ */
.gw-dash-intro { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: var(--space-12); align-items: start; margin-bottom: var(--space-12); }
.gw-dash-intro__head h2 { font-family: var(--font-sans); font-size: clamp(32px, 3.4vw, 46px); font-weight: 600; line-height: 1.06; letter-spacing: -.025em; color: var(--carbon); margin: var(--space-4) 0 0; text-wrap: balance; }
.gw-dash-intro__copy { display: flex; flex-direction: column; gap: var(--space-4); padding-top: var(--space-2); }
.gw-dash-intro__copy .lead { font-size: var(--text-lg); line-height: 1.5; color: var(--carbon); font-weight: 500; margin: 0; text-wrap: pretty; }
.gw-dash-intro__copy p { font-size: var(--text-body); line-height: 1.6; color: var(--gunmetal); margin: 0; text-wrap: pretty; }
@media (max-width: 860px) {
  .gw-dash-intro { grid-template-columns: 1fr; gap: var(--space-6); margin-bottom: var(--space-8); }
}
.gw-dboard { border: 1px solid var(--silver); border-radius: var(--radius-xl); overflow: hidden; background: #fff; box-shadow: var(--shadow-lg); }
.gw-dboard__bar { position: relative; height: 52px; display: flex; align-items: center; justify-content: center; border-bottom: 1px solid var(--silver); background: #fff; }
.gw-dboard__brand { position: absolute; left: var(--space-6); font-family: var(--font-mono); font-weight: 600; font-size: 14px; color: var(--granite); }
.gw-dboard__url { min-width: 200px; text-align: center; font-size: 11px; letter-spacing: .02em; color: var(--grey); background: var(--smoke); border: 1px solid var(--silver); border-radius: var(--radius-full); padding: 5px 18px; }
.gw-dboard__main { display: flex; }
.gw-dboard__rail { width: 52px; flex: 0 0 auto; border-right: 1px solid var(--silver); display: flex; flex-direction: column; align-items: center; padding: var(--space-6) 0; gap: var(--space-7); background: #fff; }
.gw-dboard__ic { position: relative; display: grid; place-items: center; width: 100%; color: var(--teal); cursor: pointer; transition: color .2s var(--ease-default); }
.gw-dboard__ic:hover { color: var(--granite); }
.gw-dboard__ic.is-active { color: var(--granite); }
.gw-dboard__ic.is-active::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 2px; height: 22px; background: var(--granite); }
.gw-dboard__ic.is-foot { margin-top: auto; }
.gw-dboard__content { flex: 1; min-width: 0; padding: var(--space-10) var(--space-10) var(--space-8); display: flex; flex-direction: column; gap: var(--space-9); }
.gw-dboard__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); padding-bottom: var(--space-8); border-bottom: 1px solid var(--silver); }
.gw-dboard__stat { display: flex; flex-direction: column; gap: 4px; }
.gw-dboard__stat .v { font-family: var(--font-serif); font-size: 26px; font-weight: 600; line-height: 1; letter-spacing: -.01em; color: var(--carbon); }
.gw-dboard__stat .k { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--grey); }
.gw-dboard__cols { display: grid; grid-template-columns: 42% 1fr; gap: var(--space-12); }
.gw-dboard__block h4 { display: flex; align-items: center; justify-content: space-between; font-size: 12px; font-weight: 600; letter-spacing: .02em; color: var(--granite); margin: 0 0 var(--space-5); }
.gw-dboard__tag { font-family: var(--font-mono); font-size: 9px; font-weight: 400; letter-spacing: .08em; text-transform: uppercase; color: var(--grey); background: var(--smoke); border: 1px solid var(--silver); border-radius: var(--radius-full); padding: 2px 9px; }
.gw-dboard__clusters { display: flex; flex-direction: column; gap: var(--space-5); }
.gw-dboard__crow .head { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--space-3); }
.gw-dboard__crow .pill { font-size: 11px; font-weight: 500; letter-spacing: .01em; color: var(--granite); background: color-mix(in srgb, var(--teal) 22%, transparent); border-radius: var(--radius-full); padding: 4px 12px; }
.gw-dboard__crow .meta { display: flex; align-items: baseline; gap: var(--space-3); }
.gw-dboard__crow .delta { font-family: var(--font-mono); font-size: 10px; color: var(--granite); }
.gw-dboard__crow .delta.down { color: var(--grey); }
.gw-dboard__crow .n { font-family: var(--font-mono); font-size: 10px; color: var(--grey); }
.gw-dboard__crow .track, .gw-dboard__frow .track { height: 3px; background: var(--smoke); border-radius: var(--radius-full); overflow: hidden; }
.gw-dboard__crow .track i, .gw-dboard__frow .track i { display: block; height: 100%; width: 0; background: var(--teal); border-radius: var(--radius-full); transition: width .9s var(--ease-default); }
.gw-dboard__files { display: flex; flex-direction: column; gap: var(--space-5); }
.gw-dboard__frow { display: flex; align-items: center; gap: var(--space-4); }
.gw-dboard__frow .ext { width: 80px; flex: 0 0 auto; text-align: center; font-family: var(--font-mono); font-size: 9px; font-weight: 600; letter-spacing: .06em; color: var(--granite); background: var(--smoke); border: 1px solid var(--silver); border-radius: var(--radius-sm); padding: 4px 0; }
.gw-dboard__frow .name { width: 168px; flex: 0 0 auto; font-size: 11px; font-weight: 500; color: var(--granite); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gw-dboard__frow .track { flex: 1; }
.gw-dboard__frow .pct { width: 34px; flex: 0 0 auto; text-align: right; font-family: var(--font-mono); font-size: 10px; color: var(--grey); }
.gw-dboard__profile { padding-top: var(--space-8); border-top: 1px solid var(--silver); }
.gw-dboard__profile h4 { font-size: 12px; font-weight: 600; color: var(--granite); margin: 0 0 var(--space-4); }
.gw-dboard__chips { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.gw-dboard__chip { font-family: var(--font-mono); font-size: 10px; letter-spacing: -.01em; color: var(--granite); background: #fff; border: 1px solid var(--silver); border-radius: var(--radius-full); padding: 6px 14px; }
@media (max-width: 760px) {
  .gw-dboard__stats { grid-template-columns: 1fr 1fr; gap: var(--space-5); }
  .gw-dboard__cols { grid-template-columns: 1fr; gap: var(--space-8); }
  .gw-dboard__content { padding: var(--space-6); gap: var(--space-7); }
  .gw-dboard__frow .name { width: 120px; }
}

/* ============================================================
   DASHBOARD (wireframe-ish but polished)
   ============================================================ */
.gw-dash { border: 1px solid var(--silver); border-radius: var(--radius-xl); overflow: hidden; background: var(--smoke); box-shadow: var(--shadow-md); }
.gw-dash__bar { display: flex; align-items: center; justify-content: space-between; padding: var(--space-4) var(--space-6); border-bottom: 1px solid var(--silver); background: var(--alabaster); }
.gw-dash__bar .title { display: flex; align-items: center; gap: var(--space-3); font-weight: 600; font-size: var(--text-sm); color: var(--carbon); }
.gw-dash__bar .live { display: inline-flex; align-items: center; gap: 6px; font-size: var(--text-caption); font-style: normal; color: var(--granite); }
.gw-dash__bar .live .d { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); animation: gw-blink 2s ease-in-out infinite; }
@keyframes gw-blink { 0%,100% { opacity: 1; } 50% { opacity: .3; } }
.gw-dash__body { padding: var(--space-6); display: flex; flex-direction: column; gap: var(--space-6); }
.gw-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); }
.gw-kpi { padding: var(--space-5); border: 1px solid var(--silver); border-radius: var(--radius-md); background: var(--smoke); }
.gw-kpi .label { font-size: var(--text-caption); font-style: normal; letter-spacing: var(--tracking-label); text-transform: uppercase; color: var(--grey); }
.gw-kpi .val { font-family: var(--font-sans); font-size: var(--text-h3); font-weight: 700; letter-spacing: -.02em; color: var(--carbon); margin: var(--space-2) 0 4px; line-height: 1; }
.gw-kpi .delta { font-size: var(--text-caption); font-style: normal; color: var(--granite); display: inline-flex; align-items: center; gap: 4px; }
.gw-charts { display: grid; grid-template-columns: 1.3fr 1fr; gap: var(--space-4); }
.gw-chartcard { border: 1px solid var(--silver); border-radius: var(--radius-md); padding: var(--space-5); background: var(--smoke); }
.gw-chartcard h4 { font-family: var(--font-sans); font-size: var(--text-sm); font-weight: 600; margin: 0 0 var(--space-4); color: var(--carbon); display: flex; justify-content: space-between; align-items: center; }
.gw-chartcard h4 .tag { font-family: var(--font-mono); font-size: var(--text-caption); font-style: normal; color: var(--grey); font-weight: 400; }
/* bar chart */
.gw-bars { display: flex; align-items: flex-end; gap: var(--space-3); height: 180px; padding-top: var(--space-4); }
.gw-bars .col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: var(--space-2); height: 100%; justify-content: flex-end; }
.gw-bars .bar { width: 100%; max-width: 36px; background: var(--teal); border-radius: var(--radius-sm) var(--radius-sm) 0 0; transition: height 1s var(--ease-default); }
.gw-bars .bar.alt { background: var(--granite); }
.gw-bars .cap { font-size: 10px; color: var(--grey); font-style: normal; }
/* line chart (svg) */
.gw-line { width: 100%; height: 180px; }
.gw-line .grid { stroke: var(--silver); stroke-width: .5; opacity: .6; }
.gw-line .area { fill: rgba(151,174,159,.16); }
.gw-line .stroke { fill: none; stroke: var(--teal); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.gw-line .dot { fill: var(--smoke); stroke: var(--teal); stroke-width: 2; }

/* ============================================================
   TABLES (VLM, content attributes, breakdown)
   ============================================================ */
.gw-tablewrap { border: 1px solid var(--silver); border-radius: var(--radius-lg); overflow: hidden; background: var(--smoke); }
.gw-table { width: 100%; border-collapse: collapse; font-size: var(--text-sm); }
.gw-table thead th {
  text-align: left; padding: var(--space-4) var(--space-5); background: var(--alabaster);
  font-size: var(--text-label); letter-spacing: var(--tracking-label); text-transform: uppercase;
  color: var(--gunmetal); font-weight: var(--weight-semibold); border-bottom: 1px solid var(--silver); white-space: nowrap;
}
.gw-table tbody td { padding: var(--space-4) var(--space-5); border-bottom: 1px solid var(--silver); color: var(--gunmetal); vertical-align: top; line-height: 1.5; }
.gw-table tbody tr:last-child td { border-bottom: none; }
.gw-table tbody tr:hover { background: rgba(151,174,159,.07); }
.gw-table td .dim { font-family: var(--font-sans); font-weight: 600; color: var(--carbon); }
.gw-table td .sig { font-family: var(--font-mono); font-size: var(--text-caption); font-style: normal; color: var(--granite); }
.gw-table__note { padding: var(--space-4) var(--space-5); font-family: var(--font-mono); font-size: var(--text-caption); font-style: normal; color: var(--grey); background: var(--alabaster); text-align: center; }
.gw-num { font-family: var(--font-mono); }

/* ============================================================
   VLM ATTRIBUTE TREE
   ============================================================ */
.gw-vlm { width: 100%; max-width: 860px; margin: 0 auto; }
.gw-vlm svg { width: 100%; height: auto; display: block; overflow: visible; }
.gw-vlm__img rect { fill: var(--alabaster); stroke: var(--silver); stroke-width: 1; }
.gw-vlm__img .mtn { fill: var(--granite); opacity: .55; }
.gw-vlm__img .sun { fill: var(--teal); }
.gw-vlm__arrow line, .gw-vlm__arrow path { stroke: var(--silver-mid); stroke-width: 1.4; fill: none; }
.gw-vlm__core rect { fill: var(--violet); }
.gw-vlm__core .t { fill: var(--smoke); font-family: var(--font-sans); font-weight: 700; font-size: 23px; letter-spacing: .01em; }
.gw-vlm__core .s { fill: rgba(243,242,242,.6); font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em; }
.gw-vlm__link { fill: none; stroke: var(--silver-mid); stroke-width: 1.2; stroke-dasharray: 3 4; opacity: .6;
  transition: opacity .5s var(--ease-default), stroke .3s var(--ease-default); }
.gw-vlm__link.hot { stroke: var(--teal); opacity: 1; }
.gw-vlm__link.dim { opacity: .16; }
.gw-vlm__chip { cursor: default; transition: opacity .55s var(--ease-default), transform .55s var(--ease-default); }
.gw-vlm__chip rect { fill: var(--smoke); stroke: var(--silver); stroke-width: 1; transition: stroke .3s var(--ease-default), stroke-width .3s var(--ease-default); }
.gw-vlm__chip.hot rect { stroke: var(--teal); stroke-width: 1.6; }
.gw-vlm__chip.dim { opacity: .4; }
.gw-vlm__chip .k { fill: var(--grey); font-family: var(--font-mono); font-size: 11.5px; }
.gw-vlm__chip .v { fill: var(--carbon); font-family: var(--font-mono); font-size: 11.5px; font-weight: 600; }
@media (prefers-reduced-motion: reduce) {
  .gw-vlm__chip, .gw-vlm__link { transition: none !important; }
}

/* ============================================================
   CAPABILITY MATRIX (harvey balls)
   ============================================================ */
.gw-matrix { border: 1px solid var(--silver); border-radius: var(--radius-lg); overflow: hidden; background: var(--smoke); }
.gw-matrix__row { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; align-items: center; border-bottom: 1px solid var(--silver); transition: background var(--duration-base) var(--ease-default); }
.gw-matrix__row:last-child { border-bottom: none; }
.gw-matrix__row.head { background: var(--alabaster); }
.gw-matrix__row:not(.head):hover { background: rgba(151,174,159,.08); }
.gw-matrix__rl { padding: var(--space-4) var(--space-5); font-family: var(--font-sans); font-size: var(--text-sm); font-weight: 600; color: var(--carbon); }
.gw-matrix__row.head .gw-matrix__rl { font-family: var(--font-mono); font-size: var(--text-label); letter-spacing: var(--tracking-label); text-transform: uppercase; font-weight: 600; color: var(--gunmetal); }
.gw-matrix__ch { text-align: center; padding: var(--space-4) var(--space-3); font-family: var(--font-mono); font-size: var(--text-label); letter-spacing: .06em; text-transform: uppercase; color: var(--grey); line-height: 1.3; }
.gw-matrix__cell { display: flex; justify-content: center; padding: var(--space-3); }
.gw-harvey .ring { fill: none; stroke: var(--silver-mid); stroke-width: 1.4; }
.gw-harvey .fill { fill: var(--granite); }
.gw-matrix__legend { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: var(--text-caption); font-style: normal; color: var(--grey); }
.gw-matrix__legend .d { width: 13px; height: 13px; border-radius: 50%; border: 1.4px solid var(--silver-mid); }
.gw-matrix__legend .d.full { background: var(--granite); border-color: var(--granite); }
.gw-matrix__legend .d.half { background: linear-gradient(90deg, var(--granite) 0 50%, transparent 50% 100%); }
@media (max-width: 560px) {
  .gw-matrix__rl { padding: var(--space-3) var(--space-4); font-size: var(--text-caption); }
  .gw-matrix__ch { font-size: 8px; padding: var(--space-3) 4px; }
}

/* ============================================================
   PLACEHOLDER markers
   ============================================================ */
.gw-ph {
  border: 1px dashed var(--silver-mid); border-radius: var(--radius-md);
  background: repeating-linear-gradient(135deg, transparent, transparent 9px, rgba(123,123,123,.05) 9px, rgba(123,123,123,.05) 18px);
  color: var(--grey); display: flex; align-items: center; justify-content: center; text-align: center;
  font-size: var(--text-sm); padding: var(--space-6); min-height: 96px; gap: var(--space-2);
}
.gw-ph .lbl { font-family: var(--font-mono); font-size: var(--text-caption); font-style: normal; letter-spacing: .04em; }
.gw-ph-tag {
  display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono);
  font-size: var(--text-caption); font-style: normal; color: var(--grey); padding: 4px var(--space-3);
  border: 1px dashed var(--silver-mid); border-radius: var(--radius-full);
}

/* ============================================================
   FAQ accordion
   ============================================================ */
.gw-faq { display: flex; flex-direction: column; }
.gw-faq__item { border-bottom: 1px solid var(--silver); }
.gw-faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--space-6);
  padding: var(--space-6) 0; background: none; border: none; cursor: pointer; text-align: left; font-family: inherit;
  font-size: var(--text-h5); font-weight: 600; color: var(--carbon);
  transition: color var(--duration-base) var(--ease-default), background-color var(--duration-base) var(--ease-default);
}
.gw-faq__q:hover { color: var(--granite); background: var(--alabaster); }
.gw-faq__q .ic { flex: none; color: var(--granite); transition: transform var(--duration-base) var(--ease-default); }
.gw-faq__item.is-open .gw-faq__q .ic { transform: rotate(45deg); }
.gw-faq__a { overflow: hidden; }
.gw-faq__a-in { padding: 0 0 var(--space-6); font-size: var(--text-body); line-height: 1.6; color: var(--gunmetal); max-width: 760px; animation: gwFaqReveal var(--duration-base, .2s) var(--ease-default); }
@keyframes gwFaqReveal { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }

/* ============================================================
   CONTACT
   ============================================================ */
.gw-contact { display: grid; grid-template-columns: .8fr 1.2fr; gap: var(--space-16); align-items: start; }
.gw-contact__aside .row { display: flex; gap: var(--space-4); margin-bottom: var(--space-6); }
.gw-contact__aside .ic { flex: none; width: 40px; height: 40px; border-radius: var(--radius-md); background: var(--alabaster); color: var(--granite); display: grid; place-items: center; }
.gw-contact__aside .t { font-weight: 600; color: var(--carbon); font-size: var(--text-body); margin: 0 0 2px; }
.gw-contact__aside .d { font-size: var(--text-sm); color: var(--gunmetal); margin: 0; line-height: 1.5; }
.gw-segment { display: flex; gap: var(--space-2); flex-wrap: wrap; }
.gw-segment button {
  font-family: inherit; font-size: var(--text-sm); font-weight: var(--weight-medium); cursor: pointer;
  padding: var(--space-2) var(--space-4); border-radius: var(--radius-full); border: 1px solid var(--silver);
  background: var(--smoke); color: var(--gunmetal); transition: var(--transition-colors);
}
.gw-segment button:hover { border-color: var(--silver-mid); color: var(--carbon); }
.gw-segment button.is-active { background: var(--granite); border-color: var(--granite); color: var(--smoke); }
.gw-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }
.gw-form-grid .full { grid-column: 1 / -1; }
/* match the form fields to the site's other boxes (cards, panels, success state use radius-lg) */
.gw-contact .galya-input, .gw-contact .galya-textarea, .gw-contact .galya-select { border-radius: var(--radius-lg); }
.gw-ta-error .galya-textarea { border-color: var(--violet); box-shadow: 0 0 0 2px rgba(56,29,39,.18); }
.gw-ta-error .galya-field__hint, .gw-ta-error .galya-field__error { color: var(--violet); }
.gw-form__success {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: var(--space-4);
  padding: var(--space-16) var(--space-8); border: 1px solid var(--silver); border-radius: var(--radius-lg); background: var(--smoke);
}
.gw-form__success .ic { width: 56px; height: 56px; border-radius: 50%; background: rgba(151,174,159,.26); color: var(--granite); display: grid; place-items: center; }

/* ============================================================
   TEAM / BLOG / RESEARCH
   ============================================================ */
.gw-team { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-6); max-width: 820px; }
.gw-person { display: flex; flex-direction: column; gap: var(--space-4); }
.gw-person__photo {
  width: 72px; height: 72px; border-radius: var(--radius-full); background: var(--alabaster);
  display: grid; place-items: center; font-family: var(--font-serif); font-size: var(--text-h4); color: var(--granite); font-weight: 600;
  border: 1px solid var(--silver);
}
.gw-person h3 { font-family: var(--font-sans); font-size: var(--text-h5); font-weight: 600; margin: 0; color: var(--carbon); }
.gw-person .role { font-size: var(--text-sm); color: var(--granite); font-weight: 500; margin: 2px 0 0; }
.gw-person p { font-size: var(--text-body); line-height: 1.55; color: var(--gunmetal); margin: 0; }

.gw-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }

.gw-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.gw-metric { text-align: left; }
.gw-metric .val { font-family: var(--font-sans); font-size: var(--text-h1); font-weight: 700; color: var(--carbon); line-height: 1; letter-spacing: -.04em; }
.gw-metric .val .ph { color: var(--silver-mid); }
.gw-metric .unit { font-size: var(--text-h4); color: var(--granite); }
.gw-metric .label { font-size: var(--text-sm); color: var(--gunmetal); margin-top: var(--space-3); }

/* blog */
.gw-blog-feature { display: grid; grid-template-columns: 1.1fr .9fr; gap: 0; border: 1px solid var(--silver); border-radius: var(--radius-xl); overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); transition: box-shadow .2s var(--ease-default), transform .2s var(--ease-default); cursor: pointer; }
.gw-blog-feature:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.gw-blog-feature__art { background: var(--alabaster); position: relative; overflow: hidden; min-height: 340px; display: grid; place-items: center; padding: var(--space-5); }
.gw-blog-feature__art img { width: 52%; opacity: .9; }
.gw-blog-feature__body { padding: var(--space-10) var(--space-12); display: flex; flex-direction: column; justify-content: center; gap: var(--space-4); }
.gw-blog-feature__body h3 { font-family: var(--font-sans); font-size: clamp(26px, 2.6vw, 34px); line-height: 1.12; font-weight: 600; letter-spacing: -.02em; margin: 0; color: var(--carbon); text-wrap: balance; }
.gw-blog-feature__body p { font-size: var(--text-body); color: var(--gunmetal); line-height: 1.6; margin: 0; }
.gw-blog-feature__foot { display: flex; align-items: center; gap: var(--space-5); margin-top: var(--space-2); }
.gw-blog-meta { display: flex; align-items: center; gap: var(--space-2); font-size: var(--text-caption); font-style: normal; color: var(--grey); letter-spacing: .01em; }
.gw-blog-meta__dot { width: 3px; height: 3px; border-radius: 50%; background: var(--silver-mid); }
.gw-blog-meta__sep { width: 1px; height: 12px; background: var(--silver); }
.gw-blog-allhead { margin: var(--space-16) 0 var(--space-8); }
.gw-blog-allhead .gw-eyebrow { white-space: nowrap; }
.gw-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.gw-post { display: flex; flex-direction: column; gap: var(--space-3); height: 100%; cursor: pointer; padding: var(--space-4); border-radius: var(--radius-lg); border: 1px solid transparent; transition: border-color .2s var(--ease-default), background .2s var(--ease-default); }
.gw-post:hover { border-color: var(--silver); background: #fff; }
.gw-post__art { aspect-ratio: 16/10; border-radius: var(--radius-md); border: 1px solid var(--silver); display: grid; place-items: center; overflow: hidden; margin-bottom: var(--space-2); padding: var(--space-4); }
.gw-post__art.a1 { background: var(--alabaster); }
.gw-post__art.a2 { background: rgba(151,174,159,.22); }
.gw-post__art.a3 { background: var(--alabaster); }
.gw-post__art .mk { width: 38%; opacity: .55; transition: transform .3s var(--ease-default); }
.gw-post__art svg { transition: transform .3s var(--ease-default); }
.gw-post:hover .gw-post__art .mk, .gw-post:hover .gw-post__art svg { transform: scale(1.04); }
.gw-post__art.a3 .mk { opacity: .8; }
.gw-post h3 { font-family: var(--font-sans); font-size: var(--text-h5); font-weight: 600; letter-spacing: -.01em; margin: 0; color: var(--carbon); line-height: 1.22; text-wrap: pretty; }
.gw-post p { font-size: var(--text-sm); color: var(--gunmetal); margin: 0; line-height: 1.55; }
.gw-post__more { margin-top: auto; padding-top: var(--space-2); display: inline-flex; align-items: center; gap: var(--space-2); font-size: var(--text-sm); font-weight: 500; color: var(--granite); }
.gw-post__more svg { transition: transform .2s var(--ease-default); }
.gw-post:hover .gw-post__more svg { transform: translateX(3px); }

.gw-partner { display: flex; flex-direction: column; gap: var(--space-4); align-items: flex-start; }
.gw-partner__logo {
  width: 100%; height: 96px; border: 1px dashed var(--silver-mid); border-radius: var(--radius-md);
  display: grid; place-items: center; color: var(--grey); font-family: var(--font-mono); font-size: var(--text-sm); font-style: normal;
  background: repeating-linear-gradient(135deg, transparent, transparent 9px, rgba(123,123,123,.05) 9px, rgba(123,123,123,.05) 18px);
}

/* methodology steps */
.gw-method { display: flex; flex-direction: column; gap: 0; counter-reset: step; }
.gw-method__step { display: flex; gap: var(--space-5); padding: var(--space-6) 0; border-bottom: 1px solid var(--silver); }
.gw-method__step:last-child { border-bottom: none; }
.gw-method__n { flex: none; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--silver); display: grid; place-items: center; font-family: var(--font-mono); font-size: var(--text-sm); color: var(--granite); }
.gw-method__step h3 { font-family: var(--font-sans); font-size: var(--text-h5); font-weight: 600; margin: 0 0 var(--space-2); color: var(--carbon); }
.gw-method__step p { font-size: var(--text-body); color: var(--gunmetal); margin: 0; line-height: 1.55; }

/* note banner */
.gw-note {
  display: inline-flex; align-items: center; gap: var(--space-3); padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-full); background: rgba(151,174,159,.18); color: var(--granite);
  font-size: var(--text-sm); font-weight: var(--weight-medium);
}
.gw-note .ic { display: inline-flex; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.gw-reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s var(--ease-default), transform .6s var(--ease-default); }
.gw-reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .gw-reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .gw-graph .edge.live, .gw-dash__bar .live .d, .gw-graph .pulse { animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .gw-hero h1 { font-size: 76px; }
  .gw-footer__grid { grid-template-columns: 1fr auto auto auto; }
}
@media (max-width: 900px) {
  .gw-nav__links { display: none; }
  .gw-nav__cta .gw-signin { display: none; }
  .gw-nav__burger { display: inline-flex; }
  .gw-nav__in { gap: var(--space-4); }
  .gw-nav__logo { height: 24px; }
  .gw-hero__grid, .gw-split, .gw-split--text-narrow, .gw-code__grid, .gw-contact, .gw-blog-feature { grid-template-columns: 1fr; gap: var(--space-12); }
  .gw-hero h1 { font-size: 60px; }
  .gw-grid-3, .gw-diff, .gw-blog-grid, .gw-values, .gw-metrics { grid-template-columns: 1fr 1fr; }
  .gw-pipeline { grid-template-columns: 1fr 1fr; }
  .gw-pipe, .gw-pipe:first-child, .gw-pipe:last-child { border-radius: var(--radius-md); border-right: 1px solid var(--silver); }
  .gw-kpis, .gw-charts { grid-template-columns: 1fr 1fr; }
  .gw-team { grid-template-columns: 1fr; }
  .gw-footer__grid { grid-template-columns: 1fr 1fr; }
  .gw-pagehead h1 { font-size: 56px; }
}
@media (max-width: 560px) {
  .gw-nav__in { gap: var(--space-3); }
  .gw-nav__logo { height: 22px; }
  .gw-wrap { padding: 0 var(--space-5); }
  .gw-hero h1 { font-size: 46px; }
  .gw-grid-3, .gw-grid-2, .gw-grid-4, .gw-diff, .gw-blog-grid, .gw-values, .gw-metrics, .gw-pipeline, .gw-kpis, .gw-charts, .gw-form-grid { grid-template-columns: 1fr; }
  .gw-section { padding: var(--space-16) 0; }
  .gw-cta, .gw-code__copy, .gw-blog-feature__body { padding-left: var(--space-6); padding-right: var(--space-6); }
  .gw-pagehead h1 { font-size: 42px; }
  .gw-metric .val { font-size: 56px; }
}

/* ============================================================
   TWEAKS panel mount (kept minimal; hidden when off)
   ============================================================ */
/* ============================================================
   CTA BUTTON — deep pine teal (from the Galya site explorations)
   ============================================================ */
/* Pine CTA tokens + the .galya-btn--primary override live in bridge.css. */

/* ============================================================
   DATA-VIZ + VIZ HEROES
   ============================================================ */
.gvz { display: block; width: 100%; height: auto; }
.gvz-portrait { display: block; width: 100%; height: auto; }

.gw-hero { padding: var(--space-20) 0 var(--space-12); }
.gw-hero .gw-hero__intro { max-width: 760px; }
.gw-hero h1 { font-size: 72px; }
.gw-hero__viz { margin-top: var(--space-12); }
.gw-hero__viz-rule { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--silver); margin-top: var(--space-5); padding-top: var(--space-3); }
.gw-hero__viz-rule span { font-family: var(--font-mono); font-size: var(--text-caption); font-style: normal; color: var(--grey); letter-spacing: .03em; }

.gw-vh { padding: var(--space-16) 0 var(--space-12); }
.gw-vh__split { display: grid; grid-template-columns: .92fr 1.18fr; gap: var(--space-12); align-items: center; }
.gw-vh__split--rev { grid-template-columns: 1.18fr .92fr; }
.gw-vh__head h1 { font-family: var(--font-sans); font-size: var(--text-h1); line-height: 1.02; letter-spacing: -.03em; font-weight: 700; color: var(--carbon); margin: var(--space-4) 0 var(--space-5); text-wrap: balance; }
.gw-vh__head p.lede { font-size: var(--text-lg); line-height: 1.5; color: var(--gunmetal); max-width: 460px; margin: 0 0 var(--space-6); text-wrap: pretty; }
.gw-vh__actions { display: flex; gap: var(--space-3); flex-wrap: wrap; align-items: center; }
.gw-vh__meta { margin-top: var(--space-6); }
.gw-vh__viz { min-width: 0; }

.gw-vh--stack { padding-bottom: var(--space-6); }
.gw-vh--stack .gw-vh__viz { margin-bottom: var(--space-10); }
.gw-vh__stackhead { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-12); align-items: center; }
.gw-vh__stackhead h1 { font-family: var(--font-sans); font-size: clamp(32px, 3.4vw, 44px); line-height: 1.08; letter-spacing: -.02em; font-weight: 700; margin: var(--space-3) 0 0; text-wrap: balance; }
.gw-vh__stackhead .r { display: flex; flex-direction: column; gap: var(--space-5); align-items: flex-start; }
.gw-vh__stackhead p { font-size: var(--text-lg); line-height: 1.5; color: var(--gunmetal); margin: 0; text-wrap: pretty; }

/* big stat number */
.gw-bignum { font-family: var(--font-sans); font-weight: 700; letter-spacing: -.045em; color: var(--violet); line-height: .9; }

/* serif pull-quote block */
.gw-quoteblock { max-width: 820px; margin: 0 auto; text-align: center; }
.gw-quoteblock .q { font-family: var(--font-serif); font-style: italic; font-size: var(--text-h3); line-height: 1.22; letter-spacing: -.01em; color: var(--carbon); margin: 0; text-wrap: balance; }
.gw-quoteblock .by { font-family: var(--font-mono); font-size: var(--text-caption); font-style: normal; letter-spacing: .06em; text-transform: uppercase; color: var(--grey); margin-top: var(--space-6); }

/* line-art portrait frame */
.gw-portrait-frame { aspect-ratio: 4 / 5; background: var(--alabaster); border: 1px solid var(--silver); display: grid; place-items: center; overflow: hidden; }
.gw-portrait-frame .gvz-portrait { width: 86%; }

/* mono meta line */
.gw-metaline { font-family: var(--font-mono); font-size: var(--text-caption); font-style: normal; letter-spacing: .04em; color: var(--grey); }

@media (max-width: 900px) {
  .gw-vh__split, .gw-vh__split--rev, .gw-vh__stackhead { grid-template-columns: 1fr; gap: var(--space-8); }
  .gw-vh__head h1 { font-size: 48px; }
  .gw-vh__stackhead h1 { font-size: 40px; }
  .gw-hero h1 { font-size: 52px; }
}

/* ============================================================
   TWEAKS — applied via root class / CSS var overrides
   ============================================================ */
.gw-density-compact .gw-section { padding: var(--space-16) 0; }
.gw-density-compact .gw-section--tight { padding: var(--space-12) 0; }
.gw-density-compact .gw-hero { padding: var(--space-16) 0 var(--space-12); }
.gw-density-compact .gw-pagehead { padding: var(--space-12) 0 var(--space-8); }
.gw-density-spacious .gw-section { padding: 128px 0; }
.gw-no-reveal .gw-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }

#tweaks-root:empty { display: none; }

/* ============================================================
   EDITORIAL HELPERS (icon-free card vocabulary + brand motifs)
   ============================================================ */
/* Card head: monospace index + hairline rule (replaces decorative icon) */
.gw-card__head { display: flex; align-items: center; gap: var(--space-3); margin-bottom: var(--space-1); }
.gw-card__head .idx { font-family: var(--font-mono); font-size: var(--text-sm); color: var(--teal); letter-spacing: .04em; }
.gw-card__head .rule { flex: 1; height: 1px; background: var(--silver); }

/* Differentiators: numbered, icon-free */
.gw-diff__item { border-top: 1px solid var(--silver); padding-top: var(--space-5); }
.gw-diff__item .n { font-family: var(--font-mono); font-size: var(--text-sm); color: var(--teal); letter-spacing: .04em; }

/* Feature list: numbered marker instead of icon tile */
.gw-feature-list li { align-items: baseline; }
.gw-feature-list .n { flex: none; width: 30px; font-family: var(--font-mono); font-size: var(--text-sm); color: var(--teal); letter-spacing: .04em; }

/* Pipeline: keep number, drop icon tile */
.gw-pipe__num { position: relative; }

/* Contact aside: sage dot marker instead of icon tile */
.gw-contact__aside .mk { flex: none; width: 9px; height: 9px; border-radius: 50%; background: var(--teal); margin-top: 7px; }

/* FAQ: CSS-drawn plus/minus, no icon font */
.gw-faq__pm { position: relative; flex: none; width: 16px; height: 16px; }
.gw-faq__pm::before, .gw-faq__pm::after { content: ''; position: absolute; background: var(--granite); transition: transform var(--duration-base) var(--ease-default), opacity var(--duration-base) var(--ease-default); }
.gw-faq__pm::before { left: 0; right: 0; top: 7.25px; height: 1.5px; }
.gw-faq__pm::after { top: 0; bottom: 0; left: 7.25px; width: 1.5px; }
.gw-faq__item.is-open .gw-faq__pm::after { transform: scaleY(0); opacity: 0; }

/* Placeholder tag: dashed-square marker, no icon font */
.gw-ph-tag__mk { flex: none; width: 9px; height: 9px; border: 1px dashed var(--silver-mid); border-radius: 2px; }

/* Brand motif SVGs */
.gw-topo { display: block; }
.gw-iso { width: 100%; height: auto; display: block; }
.gw-iso text { text-transform: none; }

/* Product overview — iso split */
.gw-overview-hero { display: grid; grid-template-columns: 1fr 1.05fr; gap: var(--space-12); align-items: center; }
.gw-overview-hero h1 { font-family: var(--font-sans); font-weight: 700; font-size: var(--text-h1); line-height: 1.02; letter-spacing: -.03em; }
.gw-overview-hero__viz { position: relative; }
.gw-iso-img { display: block; width: 100%; max-width: 480px; height: auto; margin: 0 auto; }
@media (max-width: 900px) {
  .gw-overview-hero { grid-template-columns: 1fr; gap: var(--space-8); }
  .gw-overview-hero h1 { font-size: 56px; }
}
@media (max-width: 560px) {
  .gw-overview-hero h1 { font-size: 42px; }
}

/* ============================================================
   SCROLL ENGINE — progress bar, parallax, bloom showpiece
   ============================================================ */
.gw-parallax { will-change: transform; }

/* figures (SVG diagrams) */
.gw-fig { background: var(--alabaster); border: 1px solid var(--silver); border-radius: var(--radius-lg); padding: var(--space-5); }
.gw-fig svg { display: block; width: 100%; height: auto; }

/* framed image visuals (photographic / diagram assets) */
/* default: frameless — near-monochrome, white backgrounds melt into the page */
.gw-visual { margin: 0; }
.gw-visual img {
  display: block; width: 100%; height: auto; border-radius: var(--radius-md);
  filter: grayscale(.92) contrast(1.04) brightness(1.03);
  mix-blend-mode: multiply;
}
/* framed variant — for assets with their own (non-white) backgrounds */
.gw-visual--framed { background: var(--alabaster); border: 1px solid var(--silver); border-radius: var(--radius-lg); padding: var(--space-4); box-shadow: var(--shadow-sm); }
.gw-visual--framed img { border-radius: var(--radius-md); }
.gw-visual__cap { display: flex; justify-content: space-between; gap: var(--space-4); margin-top: var(--space-3); font-family: var(--font-mono); font-size: var(--text-caption); font-style: normal; color: var(--grey); letter-spacing: .04em; }

/* oversized so vertical drift never reveals an edge */
.gw-topo-parallax { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.gw-topo-parallax > .gw-topo { position: absolute; left: 0; width: 100%; top: -14%; height: 128%; }

/* page-read indicator */
.gw-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 60;
  background: transparent; pointer-events: none;
}
.gw-progress span {
  display: block; height: 100%; width: 100%; background: var(--teal);
  transform: scaleX(0); transform-origin: 0 50%; will-change: transform;
}

/* ---- ScrollBloom: cold-start sphere → archetype clusters ---- */
.gw-bloom { position: relative; height: 320vh; background: var(--smoke); }
.gw-bloom__sticky {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  display: flex; align-items: center;
}
.gw-bloom__canvas { position: absolute; inset: 0; z-index: 0; }
.gw-bloom__canvas canvas { display: block; width: 100%; height: 100%; }
.gw-bloom__overlay {
  position: relative; z-index: 1; width: 100%;
  display: grid; grid-template-rows: auto 1fr auto;
  height: 100%; padding-top: var(--space-16); padding-bottom: var(--space-12);
  pointer-events: none;
}
.gw-bloom__head { align-self: start; }
.gw-bloom__caption { position: relative; align-self: center; max-width: 440px; min-height: 230px; }
.gw-bloom__stage {
  position: absolute; inset: 0;
  opacity: 0; transform: translateY(14px);
  transition: opacity .5s var(--ease-default), transform .5s var(--ease-default);
}
.gw-bloom__stage.is-live { opacity: 1; transform: none; }
.gw-bloom__kicker {
  font-family: var(--font-mono); font-size: var(--text-caption); letter-spacing: .06em;
  text-transform: uppercase; color: var(--teal); display: block; margin-bottom: var(--space-4);
}
.gw-bloom__stage h2 {
  font-family: var(--font-serif); font-weight: 500; font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.03; letter-spacing: -.02em; color: var(--carbon); margin: 0 0 var(--space-4); text-wrap: balance;
}
.gw-bloom__stage p { font-size: var(--text-lg); line-height: 1.55; color: var(--gunmetal); margin: 0; text-wrap: pretty; }
.gw-bloom__meter { align-self: end; display: flex; align-items: center; gap: var(--space-2); }
.gw-bloom__pip { width: 26px; height: 3px; border-radius: 999px; background: var(--silver); transition: background .35s var(--ease-default); }
.gw-bloom__pip.is-on { background: var(--teal); }
.gw-bloom__count {
  margin-left: var(--space-4); font-family: var(--font-mono); font-size: var(--text-caption);
  letter-spacing: .03em; color: var(--grey); font-variant-numeric: tabular-nums;
}
@media (max-width: 860px) {
  .gw-bloom { height: 280vh; }
  .gw-bloom__caption { max-width: 90%; min-height: 250px; }
  .gw-bloom__count { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .gw-bloom { height: auto; }
  .gw-bloom__sticky { position: relative; height: clamp(560px, 80vh, 720px); }
  .gw-bloom__stage { position: relative; opacity: 1; transform: none; }
  .gw-bloom__stage:not(.is-live) { display: none; }
}

/* ---- Pipeline scroll-draw connector ---- */
.gw-pipeline { --pipe-draw: 0; }
.gw-pipeline__track {
  position: absolute; left: 0; right: 0; top: var(--space-6); height: 1.5px;
  background: var(--silver); z-index: 0; overflow: hidden;
}
.gw-pipeline__track::after {
  content: ''; position: absolute; inset: 0; transform-origin: 0 50%;
  transform: scaleX(var(--pipe-draw)); background: var(--teal);
  transition: transform .12s linear;
}
.gw-pipe { z-index: 1; }
.gw-pipe__dot {
  position: absolute; left: var(--space-6); top: calc(var(--space-6) - 3.5px); width: 9px; height: 9px;
  border-radius: 50%; background: var(--silver-mid); z-index: 2;
  transition: background .3s var(--ease-default), transform .3s var(--ease-default);
}
.gw-pipe.is-lit .gw-pipe__dot { background: var(--teal); transform: scale(1.25); }
@media (max-width: 1024px) {
  .gw-pipeline__track { display: none; }
  .gw-pipe__dot { display: none; }
}

/* ============================================================
   HOME HERO — two-column with photo-cluster (Figma reference)
   Appended last so it wins source order over earlier hero rules.
   ============================================================ */
.gw-hero { padding: var(--space-20) 0 var(--space-16); }
.gw-hero > .gw-wrap {
  max-width: 1280px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--space-16);
  align-items: center;
}
.gw-hero .gw-hero__intro { max-width: 560px; }
.gw-hero h1 { font-size: 72px; line-height: 1.02; }
.gw-hero__viz { margin-top: 0; min-width: 0; display: flex; justify-content: center; }
.gw-hero__cluster { display: block; width: 100%; max-width: 540px; height: auto; margin: 0; }
/* light-gray secondary hero button (Read Docs) */
.galya-btn.gw-btn-neutral { background: #E6E5E5; color: var(--carbon); box-shadow: none; }
.galya-btn.gw-btn-neutral:hover:not([disabled]) { box-shadow: inset 0 0 0 999px rgba(25,25,25,0.06); }
@media (max-width: 1180px) {
  .gw-hero > .gw-wrap { max-width: 1120px; }
}
@media (max-width: 900px) {
  .gw-hero > .gw-wrap { grid-template-columns: 1fr; gap: var(--space-10); min-height: 0; }
  .gw-hero .gw-hero__intro { max-width: 760px; align-self: auto; padding-bottom: 0; }
  .gw-hero h1 { font-size: 60px; }
  .gw-hero__viz { margin-top: var(--space-4); align-self: auto; }
  .gw-hero__cluster { margin-right: 0; max-width: 420px; }
}

/* ============================================================
   OVERVIEW — "How it fits together" horizontal flow steps
   ============================================================ */
.gw-flow-row { display: flex; align-items: stretch; justify-content: center; flex-wrap: nowrap; margin-top: var(--space-8); }
.gw-flow-card {
  flex: 1 1 0; min-width: 0; display: flex; align-items: center; gap: var(--space-4);
  background: #fff; border: 1px solid var(--silver); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); padding: var(--space-5) var(--space-6);
}
.gw-flow-card .n {
  width: 40px; height: 40px; border-radius: 50%; background: var(--granite); color: var(--smoke);
  font-family: var(--font-mono); font-size: var(--text-body); font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center; flex: none;
}
.gw-flow-card .t { font-size: var(--text-h5); font-weight: 700; color: var(--carbon); letter-spacing: -.01em; }
.gw-flow-sep { display: flex; align-items: center; flex: none; }
.gw-flow-sep .ln { width: 16px; height: 1px; background: var(--silver); flex: none; }
.gw-flow-sep .chev {
  display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px;
  border-radius: var(--radius-sm); background: var(--alabaster); border: 1px solid var(--silver);
  color: var(--granite); flex: none;
}
@media (max-width: 720px) {
  .gw-flow-row { flex-direction: column; align-items: stretch; gap: var(--space-2); }
  .gw-flow-sep { justify-content: center; transform: rotate(90deg); margin: 0 auto; }
}


/* ============================================================
   CONTENT INTELLIGENCE — centered hero + two-column intro
   ============================================================ */
.gw-ci-hero { text-align: center; }
.gw-ci-hero__head { max-width: 680px; margin: 0 auto; }
.gw-ci-hero__head .gw-eyebrow { justify-content: center; white-space: nowrap; }
.gw-ci-hero__head h1 { margin-bottom: var(--space-5); }
.gw-ci-hero__head p { max-width: 540px; margin: 0 auto; color: var(--gunmetal); font-size: var(--text-lg); line-height: 1.55; }

/* ============================================================
   CUSTOMER INTELLIGENCE — Taste Intelligence Layer hero
   ============================================================ */
.gw-ti { padding: var(--space-12) 0 var(--space-10); }
.gw-ti__stage { position: relative; width: 100%; height: clamp(620px, 72vw, 720px); }
.gw-ti__grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(var(--silver) 1px, transparent 1px);
  background-size: 30px 30px; opacity: .4;
  -webkit-mask-image: radial-gradient(ellipse 78% 76% at 56% 50%, #000 48%, transparent 100%);
          mask-image: radial-gradient(ellipse 78% 76% at 56% 50%, #000 48%, transparent 100%);
}
.gw-ti__links { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; overflow: visible; }
.gw-ti__link { fill: none; stroke: var(--teal); stroke-width: 1.3; opacity: .5; }

/* nodes are visible by default (no hidden entrance state) */
.gw-ti__node { }

/* header */
.gw-ti__head { position: absolute; left: 0; top: 13%; z-index: 4; width: 372px; }
.gw-ti__head .gw-eyebrow { white-space: nowrap; }
.gw-ti__head h1 { font-family: var(--font-sans); font-size: clamp(36px, 3.9vw, 54px); line-height: 1.0; letter-spacing: -.03em; font-weight: 700; color: var(--carbon); margin: var(--space-4) 0 var(--space-4); text-wrap: balance; }
.gw-ti__head p { font-size: var(--text-lg); line-height: 1.5; color: var(--gunmetal); margin: 0 0 var(--space-6); text-wrap: pretty; }
.gw-ti__live { width: 6px; height: 6px; border-radius: 50%; background: var(--violet); box-shadow: none; }

/* ambient audience-matrix arcs */
.gw-ti__radial { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.gw-ti__radial ellipse { fill: none; stroke: var(--silver); stroke-width: 1; vector-effect: non-scaling-stroke; opacity: .5; stroke-dasharray: 3 5; }

/* corner framing + section tags */
.gw-ti__corner { position: absolute; width: 22px; height: 22px; border: 1.5px solid var(--silver-mid); z-index: 1; pointer-events: none; }
.gw-ti__corner.tl { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.gw-ti__corner.tr { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.gw-ti__corner.bl { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.gw-ti__corner.br { bottom: 0; right: 0; border-left: 0; border-top: 0; }
.gw-ti__sec { position: absolute; top: 0; right: 32px; font-family: var(--font-mono); font-size: 9px; letter-spacing: .16em; color: var(--grey); z-index: 2; }
.gw-ti__ver { position: absolute; bottom: 0; left: 32px; font-family: var(--font-mono); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: var(--grey); z-index: 2; }

/* HUD panels */
.gw-ti__panel { position: absolute; z-index: 3; background: #FBFBFA; border: 1px solid var(--silver); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); padding: var(--space-3) var(--space-4); width: 212px; }
.gw-ti__panel-h { display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); font-family: var(--font-mono); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: var(--granite); margin-bottom: var(--space-2); padding-bottom: 6px; border-bottom: 1px solid var(--silver); }
.gw-ti__panel .row { display: flex; align-items: center; justify-content: space-between; padding: 3px 0; }
.gw-ti__panel .k { font-family: var(--font-mono); font-size: 9px; letter-spacing: .06em; text-transform: uppercase; color: var(--grey); }
.gw-ti__panel .v { font-size: 12px; font-weight: 600; color: var(--carbon); }
.gw-ti__bars { display: inline-flex; align-items: flex-end; gap: 2px; height: 10px; }
.gw-ti__bars i { width: 3px; background: var(--teal); }
.gw-ti__bars i:nth-child(1) { height: 40%; }
.gw-ti__bars i:nth-child(2) { height: 68%; }
.gw-ti__bars i:nth-child(3) { height: 100%; }
.gw-ti__aesthetic { left: 45%; top: 0; }
.gw-ti__signals { left: 0; top: 61%; width: 204px; }
.gw-ti__signals ul { list-style: none; margin: 0; padding: 0; }
.gw-ti__signals li { display: flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .02em; color: var(--gunmetal); padding: 3px 0; }
.gw-ti__tick { width: 5px; height: 5px; background: var(--teal); border-radius: 1px; flex: 0 0 auto; }

/* subject — visible by default */
.gw-ti__subject { position: absolute; left: 54%; top: 21%; z-index: 3; margin: 0; width: 172px; display: flex; flex-direction: column; align-items: stretch; transform: translateX(-50%); }
.gw-ti__status { align-self: flex-start; display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: var(--smoke); background: var(--granite); padding: 4px 10px; border-radius: 4px; margin-bottom: 10px; }
.gw-ti__status .d { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }
.gw-ti__frame { position: relative; }
.gw-ti__frame img { display: block; width: 100%; height: auto; border-radius: 4px; border: 1px solid var(--silver); filter: grayscale(1) contrast(1.03) brightness(1.02); }
.gw-ti__duotone { position: absolute; inset: 0; border-radius: 4px; background: var(--teal); mix-blend-mode: color; opacity: .28; pointer-events: none; }
.gw-ti__scan { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.gw-ti__scan path, .gw-ti__scan line, .gw-ti__scan circle { fill: none; stroke: var(--teal); stroke-width: 0.6; opacity: .42; vector-effect: non-scaling-stroke; }
.gw-ti__scan .ret { opacity: .8; stroke-width: 0.9; }
.gw-ti__bracket { position: absolute; width: 16px; height: 16px; border: 2px solid var(--teal); }
.gw-ti__bracket.tl { top: -5px; left: -5px; border-right: 0; border-bottom: 0; }
.gw-ti__bracket.tr { top: -5px; right: -5px; border-left: 0; border-bottom: 0; }
.gw-ti__bracket.bl { bottom: -5px; left: -5px; border-right: 0; border-top: 0; }
.gw-ti__bracket.br { bottom: -5px; right: -5px; border-left: 0; border-top: 0; }
.gw-ti__subjtag { position: absolute; top: 8px; left: 8px; font-family: var(--font-mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: var(--smoke); background: rgba(25,25,25,.72); padding: 2px 7px; border-radius: 3px; }
.gw-ti__dossier { margin-top: 12px; background: #FBFBFA; border: 1px solid var(--silver); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); padding: var(--space-3) var(--space-4); }
.gw-ti__dossier .row { display: flex; align-items: center; justify-content: space-between; padding: 4px 0; border-bottom: 1px dashed var(--silver); }
.gw-ti__dossier .row:last-of-type { border-bottom: 0; }
.gw-ti__dossier .k { font-family: var(--font-mono); font-size: 9px; letter-spacing: .06em; text-transform: uppercase; color: var(--grey); }
.gw-ti__dossier .v { font-size: 12px; font-weight: 600; color: var(--carbon); }
.gw-ti__pct { color: var(--teal); }
.gw-ti__dossier .conf { margin-top: var(--space-2); display: flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 9px; letter-spacing: .06em; text-transform: uppercase; color: var(--granite); }
.gw-ti__dossier .conf .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }

/* preference clusters */
.gw-ti__clusters-label { position: absolute; left: 71%; top: 1%; z-index: 4; font-family: var(--font-mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--grey); }
.gw-ti__cluster { position: absolute; left: 71%; z-index: 3; width: 226px; display: flex; align-items: center; gap: var(--space-3); background: #FBFBFA; border: 1px solid var(--silver); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 8px; transition: box-shadow .35s var(--ease-default), border-color .35s var(--ease-default), transform .35s var(--ease-default), opacity .6s var(--ease-default); }
.gw-ti__cluster:hover { box-shadow: var(--shadow-md); border-color: var(--teal); transform: translateY(-2px); }
.gw-ti__thumb { width: 56px; height: 56px; border-radius: var(--radius-md); overflow: hidden; flex: 0 0 auto; border: 1px solid rgba(25,25,25,.06); }
.gw-ti__thumb img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.08); }
.gw-ti__cbody { min-width: 0; }
.gw-ti__cid { font-family: var(--font-mono); font-size: 8.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--grey); }
.gw-ti__cbody h3 { font-size: 14px; font-weight: 600; color: var(--carbon); margin: 2px 0 7px; }
.gw-ti__bar { display: flex; align-items: center; gap: 8px; }
.gw-ti__track { flex: 1; height: 4px; border-radius: 999px; background: var(--alabaster); overflow: hidden; }
.gw-ti__track i { display: block; height: 100%; border-radius: 999px; background: var(--teal); width: var(--w); }
.gw-ti__pctv { font-family: var(--font-mono); font-size: 9.5px; color: var(--teal); font-weight: 600; }

@media (prefers-reduced-motion: reduce) {
  .gw-ti__node, .gw-ti__subject, .gw-ti__link, .gw-ti__track i { animation: none !important; }
}
@media (max-width: 920px) {
  .gw-ti__stage { height: auto; display: flex; flex-direction: column; align-items: flex-start; gap: var(--space-4); }
  .gw-ti__grid, .gw-ti__links, .gw-ti__radial, .gw-ti__corner, .gw-ti__sec, .gw-ti__ver, .gw-ti__aesthetic, .gw-ti__signals { display: none; }
  .gw-ti__head { position: static; width: 100%; max-width: 600px; margin-bottom: var(--space-4); }
  .gw-ti__subject { position: static; transform: none !important; opacity: 1 !important; width: 220px; }
  .gw-ti__clusters-label { position: static; }
  .gw-ti__cluster { position: static !important; opacity: 1 !important; transform: none !important; width: 100%; max-width: 340px; }
  .gw-ti__node { opacity: 1 !important; transform: none !important; }
}
.gw-ci-hero__cta { display: flex; gap: var(--space-4); justify-content: center; flex-wrap: wrap; margin-top: var(--space-8); }
.gw-ci-hero__viz { max-width: 920px; margin: var(--space-12) auto 0; }

/* Content Intelligence — VLM inspector */
.gw-cv { position: relative; width: 100%; height: clamp(680px, 76vw, 820px); margin-top: var(--space-8); }
.gw-cv__grid { position: absolute; inset: 0; z-index: 0; pointer-events: none; background-image: radial-gradient(var(--silver) 1px, transparent 1px); background-size: 32px 32px; opacity: .35; -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 46%, transparent 100%); mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 46%, transparent 100%); }
.gw-cv__links { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; overflow: visible; }
.gw-cv__links path { fill: none; stroke: var(--silver-mid); stroke-width: 1.2; opacity: .8; }
.gw-cv__links path.is-dash { stroke-dasharray: 4 4; opacity: .6; }

/* asset window */
.gw-cv__win { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 3; width: clamp(300px, 30vw, 384px); background: #FBFBFA; border: 1px solid var(--silver); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); overflow: hidden; }
.gw-cv__bar-top { display: flex; align-items: center; justify-content: space-between; padding: 10px 14px; border-bottom: 1px solid var(--silver); }
.gw-cv__bt-l { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .04em; color: var(--gunmetal); }
.gw-cv__bt-l strong { color: var(--carbon); font-weight: 600; }
.gw-cv__bt-l svg { color: var(--grey); }
.gw-cv__dots { display: inline-flex; gap: 5px; }
.gw-cv__dots i { width: 7px; height: 7px; border-radius: 50%; background: var(--silver-mid); }
.gw-cv__shot { position: relative; width: 100%; aspect-ratio: 4 / 3; overflow: hidden; }
.gw-cv__shot img { display: block; width: 100%; height: 100%; object-fit: cover; filter: grayscale(.14); }
.gw-cv__ex { position: absolute; top: 12px; left: 12px; display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--smoke); background: rgba(25,25,25,.74); padding: 4px 9px; border-radius: 5px; }
.gw-cv__ex .d { width: 5px; height: 5px; border-radius: 50%; background: var(--teal); }
.gw-cv__obj { position: absolute; font-family: var(--font-mono); font-size: 8.5px; letter-spacing: .02em; color: var(--smoke); background: rgba(25,25,25,.55); padding: 1px 5px; border-radius: 3px; }
.gw-cv__obj.o1 { top: 32%; left: 16%; } .gw-cv__obj.o2 { top: 62%; left: 44%; }
.gw-cv__reticle { position: absolute; width: 26px; height: 26px; border: 1.5px solid rgba(243,242,242,.75); }
.gw-cv__reticle.tl { top: 12px; left: 12px; border-right: 0; border-bottom: 0; }
.gw-cv__reticle.br { bottom: 12px; right: 12px; border-left: 0; border-top: 0; }
.gw-cv__foot { display: flex; justify-content: space-between; gap: 10px; padding: 12px 14px; }
.gw-cv__foot > div { display: flex; flex-direction: column; gap: 3px; }
.gw-cv__foot .r { text-align: right; }
.gw-cv__foot .k { font-family: var(--font-mono); font-size: 8.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--grey); }
.gw-cv__foot .v { font-family: var(--font-mono); font-size: 12px; color: var(--carbon); font-weight: 600; }

/* instrument panels */
.gw-cv__panel { position: absolute; z-index: 2; width: clamp(220px, 23vw, 290px); background: #FBFBFA; border: 1px solid var(--silver); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: var(--space-4); transition: box-shadow .3s var(--ease-default), border-color .3s var(--ease-default), transform .3s var(--ease-default); }
.gw-cv__panel:hover { box-shadow: var(--shadow-md); border-color: var(--teal); transform: translateY(-2px); }
.gw-cv__panel--tl { left: 0; top: 0; }
.gw-cv__panel--tr { right: 0; top: 6%; }
.gw-cv__panel--bl { left: 0; bottom: 4%; }
.gw-cv__panel--br { right: 0; bottom: 0; }
.gw-cv__ph { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding-bottom: 10px; margin-bottom: 12px; border-bottom: 1px solid var(--silver); }
.gw-cv__ph .mono { font-family: var(--font-mono); font-size: 11px; letter-spacing: .06em; color: var(--granite); }
.gw-cv__badge { font-family: var(--font-mono); font-size: 8.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--grey); border: 1px solid var(--silver); border-radius: 4px; padding: 2px 6px; }
.gw-cv__badge.ok { color: var(--granite); background: color-mix(in srgb, var(--teal) 18%, transparent); border-color: color-mix(in srgb, var(--teal) 40%, transparent); }
.gw-cv__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); }
.gw-cv__sub { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: var(--grey); margin-bottom: 8px; }
.gw-cv__sw { display: flex; gap: 6px; }
.gw-cv__sw span { flex: 1; height: 26px; border-radius: 4px; border: 1px solid rgba(25,25,25,.06); }
.gw-cv__vec { margin-top: 10px; }
.gw-cv__vec-h { display: flex; align-items: baseline; justify-content: space-between; font-size: 12px; color: var(--carbon); margin-bottom: 5px; }
.gw-cv__vec-p { font-family: var(--font-mono); font-size: 11px; color: var(--grey); }
.gw-cv__bar { height: 3px; background: var(--alabaster); border-radius: 999px; overflow: hidden; }
.gw-cv__bar i { display: block; height: 100%; background: var(--granite); border-radius: 999px; }
.gw-cv__mono { margin-top: 12px; padding: 10px; background: var(--alabaster); border: 1px solid var(--silver); border-radius: var(--radius-sm); font-family: var(--font-mono); font-size: 10px; line-height: 1.75; color: var(--grey); }
.gw-cv__mono em { color: var(--carbon); font-style: normal; }
.gw-cv__row { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 7px 0; }
.gw-cv__row .k { font-family: var(--font-mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; color: var(--grey); }
.gw-cv__row .v { font-size: 13px; color: var(--carbon); font-weight: 600; }
.gw-cv__row .t { font-family: var(--font-mono); font-size: 9px; color: var(--grey); }
.gw-cv__pips { display: inline-flex; gap: 3px; }
.gw-cv__pips i { width: 5px; height: 13px; background: var(--carbon); border-radius: 1px; }
.gw-cv__pips i.off { background: var(--silver); }
.gw-cv__temp { background: var(--alabaster); border: 1px solid var(--silver); border-radius: var(--radius-sm); padding: 8px 10px; margin: 6px 0; }
.gw-cv__chip-row { display: flex; align-items: center; justify-content: space-between; margin-top: 6px; }
.gw-cv__chip { font-family: var(--font-mono); font-size: 11px; color: var(--carbon); background: #FBFBFA; border: 1px solid var(--silver); border-radius: 5px; padding: 4px 8px; }
.gw-cv__chip.is-teal { color: var(--granite); background: color-mix(in srgb, var(--teal) 20%, transparent); border-color: color-mix(in srgb, var(--teal) 42%, transparent); }
.gw-cv__pct { font-family: var(--font-mono); font-size: 11px; color: var(--grey); }
.gw-cv__row--stack { flex-direction: column; align-items: flex-start; gap: 4px; }
.gw-cv__hint { font-family: var(--font-mono); font-size: 9px; color: var(--silver-mid); }
.gw-cv__ctx { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--carbon); }
.gw-cv__ctx .ck { color: var(--teal); }
.gw-cv__input { display: flex; align-items: center; gap: 7px; margin-top: 6px; font-family: var(--font-mono); font-size: 11px; color: var(--granite); background: var(--alabaster); border: 1px solid var(--silver); border-radius: var(--radius-sm); padding: 6px 9px; }
.gw-cv__input .c { width: 6px; height: 12px; background: var(--teal); flex: 0 0 auto; }
.gw-cv__skel { height: 11px; border-radius: 4px; background: var(--alabaster); border: 1px solid var(--silver); margin-top: 6px; }
.gw-cv__tagstrip { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; padding: 10px 14px; border-top: 1px solid var(--silver); }
.gw-cv__tagstrip .k { font-family: var(--font-mono); font-size: 8.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--grey); margin-right: 2px; }
.gw-cv__tg { font-family: var(--font-mono); font-size: 10px; color: var(--gunmetal); background: var(--smoke); border: 1px solid var(--silver); border-radius: 999px; padding: 2px 8px; }
.gw-cv__tg.more { color: var(--grey); border-style: dashed; }
.gw-cv__nav { display: flex; gap: 7px; justify-content: center; padding: 0 0 12px; }
.gw-cv__navdot { width: 6px; height: 6px; padding: 0; border-radius: 50%; border: 1px solid var(--silver-mid); background: transparent; cursor: pointer; transition: background .2s var(--ease-default), border-color .2s var(--ease-default); }
.gw-cv__navdot.is-on { background: var(--teal); border-color: var(--teal); }
.gw-cv__links path.is-hot { stroke: var(--teal); opacity: 1; stroke-width: 1.8; }
.gw-cv__live { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: var(--granite); }
.gw-cv__live .d { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }
.gw-cv__embed { display: flex; align-items: center; gap: 8px; padding: 0 14px 12px; }
.gw-cv__embed .k { font-family: var(--font-mono); font-size: 8.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--grey); }
.gw-cv__embed .v { font-family: var(--font-mono); font-size: 11px; color: var(--carbon); }
.gw-cv__embed .dim { font-family: var(--font-mono); font-size: 9px; color: var(--grey); }
@media (max-width: 920px) {
  .gw-cv { height: auto; display: flex; flex-direction: column; align-items: center; gap: var(--space-5); }
  .gw-cv__grid, .gw-cv__links { display: none; }
  .gw-cv__win { position: static; transform: none; width: 320px; order: -1; }
  .gw-cv__panel { position: static !important; width: 100%; max-width: 340px; }
}
.gw-ci-cols { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-8); }
.gw-ci-cols p { font-size: var(--text-lg); line-height: 1.65; color: var(--gunmetal); margin: 0 0 var(--space-4); text-wrap: pretty; }
.gw-ci-cols p:last-child { margin-bottom: 0; }
.gw-ci-card { height: 100%; background: #FBFBFA; border: 1px solid var(--silver); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: var(--space-8); }
.gw-ci-card__eye { display: flex; align-items: center; gap: var(--space-3); font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--granite); padding-bottom: var(--space-4); margin-bottom: var(--space-5); border-bottom: 1px solid var(--silver); }
.gw-ci-card__eye em { display: grid; place-items: center; width: 22px; height: 22px; font-style: normal; font-size: 10px; font-weight: 600; color: var(--carbon); background: color-mix(in srgb, var(--teal) 24%, transparent); border-radius: 5px; }
.gw-ci-card .lead { color: var(--carbon); font-weight: 500; }

/* ============================================================
   CONTENT INTELLIGENCE — VLM live extraction breakdown
   ============================================================ */
.gw-vlmb { margin-top: var(--space-8); }
.gw-vlmb__cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); }
.gw-vlmb__card { position: relative; display: flex; flex-direction: column; background: #FBFBFA; border: 1px solid var(--silver); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: var(--space-5); cursor: default; transition: border-color .25s var(--ease-default), box-shadow .25s var(--ease-default), transform .25s var(--ease-default); }sition: border-color .25s var(--ease-default), box-shadow .25s var(--ease-default), transform .25s var(--ease-default); }
.gw-vlmb__card.is-on { border-color: var(--teal); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.gw-vlmb__idx { font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em; color: var(--grey); }
.gw-vlmb__card.is-on .gw-vlmb__idx { color: var(--granite); }
.gw-vlmb__card h3 { font-size: var(--text-h5); margin: var(--space-2) 0 var(--space-2); color: var(--carbon); }
.gw-vlmb__card p { font-size: var(--text-sm); line-height: 1.5; color: var(--gunmetal); margin: 0 0 var(--space-4); text-wrap: pretty; }
.gw-vlmb__cardval { margin-top: auto; align-self: flex-start; font-family: var(--font-mono); font-size: 11px; letter-spacing: .02em; color: var(--granite); background: var(--smoke); border: 1px solid var(--silver); border-radius: 999px; padding: 3px 10px; transition: color .25s var(--ease-default), background .25s var(--ease-default), border-color .25s var(--ease-default); }
.gw-vlmb__card.is-on .gw-vlmb__cardval { color: var(--granite); background: rgba(151,174,159,.16); border-color: var(--teal); }
.gw-vlmb__note { margin: var(--space-8) 0 0; max-width: 660px; color: var(--gunmetal); line-height: 1.6; font-size: var(--text-body); }
.gw-vlmb__lead { margin: var(--space-2) 0 0; max-width: 680px; font-size: var(--text-h4); font-weight: 600; color: var(--carbon); line-height: 1.25; letter-spacing: -.01em; }

/* live extraction panel */
.gw-vlmb__panel { margin-top: var(--space-8); display: grid; grid-template-columns: auto auto 1fr; align-items: center; gap: var(--space-8); background: #FBFBFA; border: 1px solid var(--silver); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: var(--space-8); }
.gw-vlmb__asset { display: flex; flex-direction: column; align-items: center; gap: var(--space-3); }
.gw-vlmb__frame { position: relative; width: 208px; height: 260px; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--silver); }
.gw-vlmb__frame img { display: block; width: 100%; height: 100%; object-fit: cover; filter: grayscale(.16); }
.gw-vlmb__scan { position: absolute; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--teal), transparent); box-shadow: 0 0 10px 2px color-mix(in srgb, var(--teal) 60%, transparent); animation: gw-vlmb-scan 2.6s var(--ease-default) infinite; }
@keyframes gw-vlmb-scan { 0% { top: 4%; opacity: 0; } 12% { opacity: 1; } 88% { opacity: 1; } 100% { top: 96%; opacity: 0; } }
.gw-vlmb__ret { position: absolute; width: 16px; height: 16px; border: 1.5px solid rgba(243,242,242,.8); }
.gw-vlmb__ret.tl { top: 8px; left: 8px; border-right: 0; border-bottom: 0; }
.gw-vlmb__ret.br { bottom: 8px; right: 8px; border-left: 0; border-top: 0; }
.gw-vlmb__assetcap { font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--grey); }
.gw-vlmb__core { display: flex; flex-direction: column; align-items: center; }
.gw-vlmb__wire { width: 1px; height: 18px; background: var(--silver-mid); }
.gw-vlmb__vlm { display: grid; place-items: center; width: 76px; height: 76px; border-radius: 14px; background: #FBFBFA; border: 2px solid var(--carbon); text-align: center; }
.gw-vlmb__vlm em { font-family: var(--font-mono); font-style: normal; font-size: 14px; font-weight: 700; letter-spacing: .04em; color: var(--carbon); }
.gw-vlmb__vlm span { font-family: var(--font-mono); font-size: 9px; letter-spacing: .1em; color: var(--grey); margin-top: 2px; }
.gw-vlmb__rows { display: flex; flex-direction: column; gap: var(--space-2); }
.gw-vlmb__row { display: grid; grid-template-columns: 84px 110px 1fr 40px; align-items: center; gap: var(--space-3); width: 100%; text-align: left; padding: var(--space-4) var(--space-4); background: var(--alabaster); border: 1px solid transparent; border-radius: var(--radius-sm); cursor: pointer; transition: background .25s var(--ease-default), border-color .25s var(--ease-default); }
.gw-vlmb__row.is-on { background: #FBFBFA; border-color: var(--teal); }
.gw-vlmb__rk { font-family: var(--font-mono); font-size: 11px; letter-spacing: .06em; color: var(--grey); }
.gw-vlmb__rv { font-family: var(--font-mono); font-size: 13px; font-weight: 600; color: var(--carbon); }
.gw-vlmb__bar { height: 4px; background: var(--smoke); border-radius: 999px; overflow: hidden; }
.gw-vlmb__bar i { display: block; height: 100%; width: 0; background: var(--silver-mid); border-radius: 999px; transition: width .5s var(--ease-default), background .25s var(--ease-default); }
.gw-vlmb__row.is-on .gw-vlmb__bar i { background: var(--teal); }
.gw-vlmb__conf { font-family: var(--font-mono); font-size: 11px; color: var(--grey); text-align: right; }
.gw-vlmb__row.is-on .gw-vlmb__conf { color: var(--granite); }
@media (max-width: 860px) {
  .gw-vlmb__cards { grid-template-columns: 1fr 1fr; }
  .gw-vlmb__panel { grid-template-columns: 1fr; justify-items: center; gap: var(--space-5); text-align: center; }
  .gw-vlmb__core { flex-direction: row; gap: var(--space-2); }
  .gw-vlmb__wire { width: 18px; height: 1px; }
  .gw-vlmb__rows { width: 100%; max-width: 380px; }
  .gw-vlmb__row { text-align: left; }
}
@media (max-width: 480px) {
  .gw-vlmb__cards { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTENT INTELLIGENCE — before / after transform
   ============================================================ */
.gw-ba { display: grid; grid-template-columns: 1fr auto 1fr; align-items: stretch; gap: var(--space-5); margin-top: var(--space-2); }
.gw-ba__card { position: relative; background: #FBFBFA; border: 1px solid var(--silver); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: var(--space-6); overflow: hidden; transition: border-color .3s var(--ease-default); }
.gw-ba__raw.is-scanning { border-color: color-mix(in srgb, var(--teal) 55%, var(--silver)); }
.gw-ba__rows { margin-top: var(--space-5); }
.gw-ba__rrow { display: flex; justify-content: space-between; align-items: baseline; padding: var(--space-3) 0; border-bottom: 1px dashed var(--silver); }
.gw-ba__rrow:last-child { border-bottom: 0; }
.gw-ba__rrow .k { font-size: var(--text-body); color: var(--grey); }
.gw-ba__rrow .v { font-size: var(--text-body); color: var(--carbon); font-weight: 600; }
.gw-ba__scan { position: absolute; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--teal), transparent); box-shadow: 0 0 12px 2px color-mix(in srgb, var(--teal) 55%, transparent); animation: gw-ba-scan 2.4s var(--ease-default) infinite; transition: opacity .3s var(--ease-default); pointer-events: none; }
@keyframes gw-ba-scan { 0% { top: 14%; opacity: 0; } 14% { opacity: 1; } 86% { opacity: 1; } 100% { top: 94%; opacity: 0; } }
/* gutter */
.gw-ba__gutter { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: var(--space-2); }
.gw-ba__wire { width: 1px; flex: 1; background: var(--silver-mid); min-height: 22px; }
.gw-ba__wire.l { background: linear-gradient(to bottom, transparent, var(--silver-mid)); }
.gw-ba__wire.r { background: linear-gradient(to bottom, var(--silver-mid), transparent); }
.gw-ba__vlm { display: grid; place-items: center; width: 62px; height: 62px; flex: 0 0 auto; border-radius: 14px; background: #FBFBFA; border: 2px solid var(--carbon); transition: border-color .3s var(--ease-default), box-shadow .3s var(--ease-default); }
.gw-ba__vlm em { font-family: var(--font-mono); font-style: normal; font-size: 13px; font-weight: 700; letter-spacing: .04em; color: var(--carbon); }
.gw-ba__vlm.is-on { border-color: var(--teal); box-shadow: 0 0 0 4px color-mix(in srgb, var(--teal) 18%, transparent); }
/* indexed rows reveal */
.gw-ba__rows.mono { font-family: var(--font-mono); }
.gw-ba__irow { display: flex; gap: var(--space-3); padding: var(--space-3) 0; border-bottom: 1px dashed var(--silver); font-size: var(--text-sm); opacity: 0; transform: translateY(6px); transition: opacity .4s var(--ease-default), transform .4s var(--ease-default); }
.gw-ba__irow:last-child { border-bottom: 0; }
.gw-ba__irow.is-in { opacity: 1; transform: none; }
.gw-ba__irow .k { color: var(--granite); font-weight: 600; min-width: 84px; }
.gw-ba__irow .v { color: var(--carbon); }
@media (max-width: 760px) {
  .gw-ba { grid-template-columns: 1fr; gap: var(--space-3); }
  .gw-ba__gutter { flex-direction: row; gap: var(--space-3); }
  .gw-ba__wire { width: 22px; height: 1px; min-height: 0; flex: 1; }
  .gw-ba__wire.l { background: linear-gradient(to right, transparent, var(--silver-mid)); }
  .gw-ba__wire.r { background: linear-gradient(to right, var(--silver-mid), transparent); }
}

/* CUSTOMER INTELLIGENCE — segment taste signature */
.gw-seg__sig { margin-top: var(--space-5); padding-top: var(--space-4); border-top: 1px solid var(--silver); }
.gw-seg__sigk { display: block; font-family: var(--font-mono); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: var(--grey); margin-bottom: var(--space-3); }
.gw-seg__sw { display: flex; gap: var(--space-2); }
.gw-seg__sw span { flex: 1; height: 30px; border-radius: var(--radius-sm); border: 1px solid rgba(25,25,25,.06); }
.gw-seg__chips { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: var(--space-3); }
.gw-seg__chip { font-family: var(--font-mono); font-size: 11px; letter-spacing: .01em; color: var(--gunmetal); background: var(--alabaster); border: 1px solid var(--silver); border-radius: var(--radius-full); padding: 3px 10px; }

/* CUSTOMER INTELLIGENCE — cross-domain affinity board */
.gw-aff { width: 100%; }
.gw-aff__head { display: flex; align-items: baseline; gap: var(--space-3); margin-bottom: var(--space-4); }
.gw-aff__seg { font-family: var(--font-mono); font-size: 12px; font-weight: 600; letter-spacing: .04em; color: var(--carbon); }
.gw-aff__sub { font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--grey); }
.gw-aff__board { position: relative; width: 100%; aspect-ratio: 1 / 1; }
.gw-aff__threads { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; overflow: visible; pointer-events: none; }
.gw-aff__thread { fill: none; stroke: var(--silver-mid); stroke-width: 1.2; }
.gw-aff__thread.is-hot { stroke: var(--teal); stroke-width: 1.6; }
.gw-aff__thread.is-dim { opacity: .35; }
.gw-aff__tile { position: absolute; margin: 0; transform: translate(-50%, -50%); z-index: 1; cursor: default; transition: opacity .3s var(--ease-default), transform .3s var(--ease-default); }
.gw-aff__tile.is-anchor { z-index: 2; }
.gw-aff__tile.is-dim { opacity: .5; }
.gw-aff__tile.is-hot { z-index: 3; }
.gw-aff__frame { display: block; width: 100%; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--silver); box-shadow: var(--shadow-sm); background: var(--smoke); transition: box-shadow .3s var(--ease-default), border-color .3s var(--ease-default); }
.gw-aff__tile.is-anchor .gw-aff__frame { border-color: var(--granite); box-shadow: var(--shadow-md); }
.gw-aff__tile.is-hot .gw-aff__frame { border-color: var(--teal); box-shadow: var(--shadow-md); }
.gw-aff__frame img { display: block; width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.02); }
.gw-aff__label { margin-top: 6px; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--grey); text-align: center; }
.gw-aff__tile.is-anchor .gw-aff__label { color: var(--granite); }
.gw-aff__tile.is-hot .gw-aff__label { color: var(--granite); }
.gw-aff__foot { display: flex; justify-content: space-between; gap: var(--space-4); margin-top: var(--space-5); font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em; color: var(--grey); }
@media (max-width: 600px) {
  .gw-aff__board { aspect-ratio: 3 / 4; }
}

/* CUSTOMER INTELLIGENCE — shared embedding space */
.gw-emb { width: 100%; border: 1px solid var(--silver); border-radius: var(--radius-lg); background:
  linear-gradient(#FBFBFA, #FBFBFA) padding-box,
  repeating-linear-gradient(0deg, var(--smoke) 0 1px, transparent 1px 28px) padding-box,
  repeating-linear-gradient(90deg, var(--smoke) 0 1px, transparent 1px 28px) padding-box;
  box-shadow: var(--shadow-sm); padding: var(--space-6) var(--space-8) var(--space-5); overflow: hidden; }
.gw-emb__head { display: flex; align-items: baseline; justify-content: space-between; gap: var(--space-4); margin-bottom: var(--space-4); }
.gw-emb__dom { font-family: var(--font-mono); font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--carbon); }
.gw-emb__title { font-family: var(--font-mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--grey); }
.gw-emb__body { position: relative; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: var(--space-4); min-height: 360px; }
.gw-emb__col { display: flex; flex-direction: column; justify-content: center; gap: var(--space-8); z-index: 2; }
.gw-emb__tile { margin: 0; width: 150px; height: 116px; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--silver); box-shadow: var(--shadow-sm); background: var(--smoke); transition: border-color .3s var(--ease-default), box-shadow .3s var(--ease-default), opacity .3s var(--ease-default), transform .3s var(--ease-default); }
.gw-emb__tile img { display: block; width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.02); }
.gw-emb__tile.is-hot { border-color: var(--teal); box-shadow: var(--shadow-md); transform: scale(1.03); }
.gw-emb__tile.is-dim { opacity: .5; }
.gw-emb__space { position: relative; align-self: stretch; display: flex; align-items: center; justify-content: center; z-index: 1; }
.gw-emb__cloud { width: 100%; max-width: 360px; height: 100%; max-height: 340px; overflow: visible; }
.gw-emb__halo { fill: none; stroke: var(--silver); stroke-width: .4; stroke-dasharray: 1.5 2.5; opacity: .7; }
.gw-emb__node .gw-emb__nodedot { fill: var(--teal); transition: r .3s var(--ease-default); }
.gw-emb__nodehalo { fill: none; stroke: var(--teal); stroke-width: .6; opacity: .5; animation: gw-emb-ping 1.9s var(--ease-default) infinite; }
@keyframes gw-emb-ping { 0% { r: 2.4; opacity: .55; } 100% { r: 7; opacity: 0; } }
.gw-emb__pulse { fill: var(--teal); }
.gw-emb__read { position: absolute; top: 8px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 1px; text-align: center; animation: gw-emb-fade .4s var(--ease-default); pointer-events: none; }
.gw-emb__read-k { font-family: var(--font-mono); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: var(--grey); }
.gw-emb__read-v { font-family: var(--font-serif); font-size: 26px; font-weight: 600; line-height: 1; color: var(--carbon); letter-spacing: -.01em; }
.gw-emb__read-vec { font-family: var(--font-mono); font-size: 10px; letter-spacing: .04em; color: var(--granite); }
@keyframes gw-emb-fade { from { opacity: 0; transform: translateX(-50%) translateY(-3px); } to { opacity: 1; transform: translateX(-50%); } }
.gw-emb__spacecap { position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%); font-family: var(--font-mono); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: var(--grey); }
.gw-emb__threads { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 3; pointer-events: none; overflow: visible; }
.gw-emb__thread { fill: none; stroke: var(--teal); stroke-width: 1.3; opacity: .75; }
.gw-emb__thread.is-hot { opacity: 1; stroke-width: 1.8; }
.gw-emb__thread.is-dim { opacity: .2; stroke: var(--silver-mid); }
.gw-emb__foot { display: flex; justify-content: space-between; gap: var(--space-4); margin-top: var(--space-5); font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em; color: var(--grey); }
@keyframes gw-emb-tw { 0%, 100% { opacity: var(--o, .4); } 50% { opacity: .12; } }
@media (max-width: 760px) {
  .gw-emb__body { grid-template-columns: 1fr 1fr; grid-template-areas: 'l r' 'space space'; gap: var(--space-5); min-height: 0; }
  .gw-emb__col.l { grid-area: l; } .gw-emb__col.r { grid-area: r; }
  .gw-emb__space { grid-area: space; min-height: 240px; }
  .gw-emb__threads { display: none; }
  .gw-emb__tile { width: 100%; height: 100px; }
}

/* Pull-quote (centered, balanced) */
.gw-pullquote { position: relative; max-width: 860px; margin: 0 auto; text-align: center; }
.gw-pullquote__mark { display: block; font-family: var(--font-serif); font-size: clamp(56px, 7vw, 96px); line-height: .6; color: var(--teal); margin-bottom: var(--space-2); }
.gw-pullquote p { font-family: var(--font-serif); font-size: clamp(22px, 3vw, 34px); font-weight: 500; line-height: 1.32; letter-spacing: -.015em; color: var(--carbon); margin: 0; text-wrap: balance; }
.gw-pullquote__alt { color: var(--grey); }

/* CUSTOMER INTELLIGENCE — cross-domain taste (embedding columns) */
.gw-cd-split { display: grid; grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.7fr); gap: var(--space-12); align-items: center; }
.gw-cd-h { font-family: var(--font-serif); font-size: var(--text-h3); font-weight: 600; line-height: 1.05; letter-spacing: -.02em; color: var(--carbon); margin: 0 0 var(--space-4); }
.gw-cd-p { font-size: var(--text-lg); line-height: 1.6; color: var(--gunmetal); max-width: 420px; margin: 0; text-wrap: pretty; }

/* cross-domain taste constellation */
.gw-cd-head { max-width: 560px; margin: 0 0 var(--space-12); }
.gw-cd-head .gw-cd-p { max-width: 520px; }
.gw-xc { position: relative; width: 100%; max-width: 1180px; margin: 0 auto; aspect-ratio: 1440 / 900; }
.gw-xc__links { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; overflow: visible; }
.gw-xc__link { fill: none; stroke: var(--silver-mid); stroke-width: 1; vector-effect: non-scaling-stroke; stroke-dasharray: 1; stroke-dashoffset: 1; transition: stroke-dashoffset .65s var(--ease-default); }
.gw-xc.is-on .gw-xc__link { stroke-dashoffset: 0; }
.gw-xc__card { position: absolute; margin: 0; z-index: 10; opacity: 0; }
.gw-xc.is-on .gw-xc__card { animation: gw-xc-enter .72s var(--ease-default) both; animation-delay: calc(.08s + var(--i, 0) * .1s); }
.gw-xc__card.is-hero { z-index: 20; }
.gw-xc.is-on .gw-xc__card.is-hero { animation: gw-xc-hero .8s var(--ease-default) both; }
@keyframes gw-xc-enter { from { opacity: 0; transform: translate(var(--ex, 0px), calc(var(--ey, 0px) + 16px)) scale(.9); } 60% { opacity: 1; } to { opacity: 1; transform: translate(0, 0) scale(1); } }
@keyframes gw-xc-hero { from { opacity: 0; transform: scale(.86); } to { opacity: 1; transform: scale(1); } }
.gw-xc__frame { width: 100%; height: 100%; background: transparent; padding: 0; border-radius: 14px; box-shadow: none; box-sizing: border-box; }
.gw-xc__card.is-hero .gw-xc__frame { padding: 0; border-radius: 16px; box-shadow: none; }
.gw-xc__frame img { display: block; width: 100%; height: 100%; object-fit: cover; border-radius: 14px; }
.gw-xc__card figcaption { position: absolute; top: 100%; left: 0; margin-top: 13px; font-family: var(--font-sans); font-size: clamp(14px, 1.05vw, 17px); font-weight: 500; letter-spacing: -.005em; text-transform: none; line-height: 1.2; color: var(--carbon); white-space: nowrap; }
.gw-xc__dot { position: absolute; width: 6px; height: 6px; background: var(--violet); transform: translate(-50%, -50%); z-index: 30; opacity: 0; }
.gw-xc.is-on .gw-xc__dot { animation: gw-xc-fade .4s var(--ease-default) .9s both, gw-xc-pulse 360ms var(--ease-default) 1.1s; }
.gw-xc__score { position: absolute; transform: translateY(-50%); z-index: 30; font-family: var(--font-mono); font-size: clamp(10px, 0.9vw, 12.5px); font-weight: 500; letter-spacing: .02em; color: var(--granite); white-space: nowrap; opacity: 0; }
.gw-xc.is-on .gw-xc__score { animation: gw-xc-fade .45s var(--ease-default) .95s both; }
.gw-xc__score.is-end { transform: translate(-100%, -50%); }
@keyframes gw-xc-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes gw-xc-pulse { 0% { transform: translate(-50%, -50%) scale(1); } 50% { transform: translate(-50%, -50%) scale(1.6); } 100% { transform: translate(-50%, -50%) scale(1); } }
@media (prefers-reduced-motion: reduce) { .gw-xc__link { transition: none; stroke-dashoffset: 0; } .gw-xc__card, .gw-xc.is-on .gw-xc__card, .gw-xc.is-on .gw-xc__card.is-hero, .gw-xc__score, .gw-xc.is-on .gw-xc__score, .gw-xc__dot, .gw-xc.is-on .gw-xc__dot { animation: none; opacity: 1; transform: none; } .gw-xc__score.is-end { transform: translate(-100%, -50%); } .gw-xc__dot { transform: translate(-50%, -50%); } }
@media (max-width: 760px) {
  .gw-xc { aspect-ratio: auto; display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6) var(--space-4); max-width: 460px; }
  .gw-xc__links, .gw-xc__dot, .gw-xc__score { display: none; }
  .gw-xc__card { position: static !important; width: auto !important; height: auto !important; left: auto !important; top: auto !important; }
  .gw-xc__card.is-hero { grid-column: 1 / -1; }
  .gw-xc__frame { aspect-ratio: 3 / 2; }
  .gw-xc__card figcaption { position: static; margin-top: 8px; left: 0; }
}

.gw-cd { position: relative; width: 100%; border: 1px solid var(--silver); border-radius: var(--radius-lg);
  background:
    repeating-linear-gradient(0deg, color-mix(in srgb, var(--silver) 45%, transparent) 0 1px, transparent 1px 26px),
    repeating-linear-gradient(90deg, color-mix(in srgb, var(--silver) 45%, transparent) 0 1px, transparent 1px 26px),
    #FCFCFB;
  box-shadow: var(--shadow-sm); padding: var(--space-7) var(--space-6); overflow: hidden; }
.gw-cd__title { display: block; text-align: center; font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--grey); margin-bottom: var(--space-4); }
.gw-cd__body { position: relative; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: var(--space-4); }
.gw-cd__col { position: relative; z-index: 2; width: 156px; background: color-mix(in srgb, #FBFBFA 86%, transparent); border: 1px solid var(--silver); border-radius: var(--radius-md); padding: var(--space-3); display: flex; flex-direction: column; align-items: center; gap: var(--space-3); }
.gw-cd__lbl { align-self: flex-start; font-family: var(--font-mono); font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--carbon); }
.gw-cd__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2); width: 100%; }
.gw-cd__thumb { margin: 0; aspect-ratio: 1 / 1; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--silver); background: var(--smoke); cursor: pointer; transition: box-shadow .3s var(--ease-default), border-color .3s var(--ease-default), opacity .3s var(--ease-default), transform .3s var(--ease-default); }
.gw-cd__thumb img { display: block; width: 100%; height: 100%; object-fit: cover; }
.gw-cd__thumb.is-hot { border-color: var(--teal); box-shadow: var(--shadow-md); transform: scale(1.06); z-index: 3; }
.gw-cd__thumb.is-dim { opacity: .42; }
.gw-cd__more { font-family: var(--font-mono); font-size: 14px; letter-spacing: .2em; color: var(--silver-mid); line-height: 1; }
.gw-cd__space { position: relative; align-self: stretch; min-height: 280px; display: flex; align-items: center; justify-content: center; z-index: 1; }
.gw-cd__cloud { width: 100%; max-width: 320px; height: 100%; max-height: 300px; }
.gw-cd__threads { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; overflow: visible; pointer-events: none; }
.gw-cd__thread { fill: none; stroke: var(--teal); stroke-width: 1.1; opacity: .55; }
.gw-cd__thread.is-on { opacity: 1; stroke-width: 1.6; }
.gw-cd__thread.is-dim { opacity: .15; }
@keyframes gw-cd-tw { 0%, 100% { opacity: var(--o, .35); } 50% { opacity: .08; } }
@media (max-width: 980px) {
  .gw-cd-split { grid-template-columns: 1fr; gap: var(--space-8); }
  .gw-cd-p { max-width: none; }
}
@media (max-width: 620px) {
  .gw-cd__body { grid-template-columns: 1fr 1fr; gap: var(--space-3); }
  .gw-cd__col { width: 100%; }
  .gw-cd__space { display: none; }
  .gw-cd__threads { display: none; }
  .gw-cd__title { display: none; }
}

/* CUSTOMER INTELLIGENCE — cross-domain mapping (interiors ↔ shared taste ↔ fashion) */
.gw-xd {
  width: 100%; border: 1px solid var(--silver); border-radius: var(--radius-lg);
  background: #fff; box-shadow: var(--shadow-sm); padding: var(--space-7);
}
.gw-xd__heads { display: flex; align-items: center; margin-bottom: var(--space-4); padding: 0 var(--space-4); }
.gw-xd__heads span { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--grey); }
.gw-xd__heads .mid { flex: 1; text-align: center; color: var(--granite); }
.gw-xd__heads .end { text-align: right; }
.gw-xd__rows { display: flex; flex-direction: column; gap: var(--space-3); }
.gw-xd__row { display: flex; align-items: center; gap: var(--space-4); padding: var(--space-3) var(--space-4); border-radius: var(--radius-lg); background: var(--alabaster); transition: background .3s var(--ease-default), opacity .3s var(--ease-default); }
.gw-xd__row.is-hot { background: color-mix(in srgb, var(--teal) 13%, var(--alabaster)); }
.gw-xd__row.is-dim { opacity: .5; }
.gw-xd__thumb { width: 100px; height: 100px; flex: 0 0 auto; margin: 0; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--silver); background: #fff; position: relative; }
.gw-xd__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gw-xd__link { flex: 1; height: 1.5px; background: var(--silver-mid); transform: scaleX(0); transition: transform .8s var(--ease-default), background .3s var(--ease-default); position: relative; }
.gw-xd__link--l { transform-origin: left center; }
.gw-xd__link--r { transform-origin: right center; }
.gw-xd.is-seen .gw-xd__link { transform: scaleX(1); }
.gw-xd__row.is-hot .gw-xd__link { background: var(--teal); }

/* signal pulse — the same taste signal travels out to both domains */
.gw-xd__link::after {
  content: ""; position: absolute; top: 50%; width: 8px; height: 8px; margin-top: -4px;
  border-radius: 50%; background: var(--teal);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--teal) 26%, transparent);
  opacity: 0; pointer-events: none;
}
.gw-xd.is-seen .gw-xd__link--l::after { animation: gw-xd-emit-l 820ms var(--ease-default) calc(var(--r, 0) * 240ms + 1000ms) both; }
.gw-xd.is-seen .gw-xd__link--r::after { animation: gw-xd-emit-r 820ms var(--ease-default) calc(var(--r, 0) * 240ms + 1000ms) both; }
@keyframes gw-xd-emit-l { 0% { left: 100%; opacity: 0; } 12% { opacity: 1; } 88% { opacity: 1; } 100% { left: 0%; opacity: 0; } }
@keyframes gw-xd-emit-r { 0% { left: 0%; opacity: 0; } 12% { opacity: 1; } 88% { opacity: 1; } 100% { left: 100%; opacity: 0; } }
.gw-xd__node {
  flex: 0 0 auto; display: inline-flex; align-items: center; gap: var(--space-2); position: relative;
  padding: 10px 18px; border: 1px solid var(--silver); border-radius: 999px; background: #fff;
  font-family: var(--font-sans); font-size: var(--text-body); font-weight: 500; color: var(--carbon);
  white-space: nowrap; box-shadow: var(--shadow-sm); transition: border-color .3s var(--ease-default);
}
.gw-xd__node .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); flex: 0 0 auto; }
.gw-xd__row.is-hot .gw-xd__node { border-color: var(--teal); }
/* node emits the signal */
.gw-xd__node::before {
  content: ""; position: absolute; inset: -1px; border-radius: 999px; border: 1.5px solid var(--teal);
  opacity: 0; pointer-events: none;
}
.gw-xd.is-seen .gw-xd__node::before { animation: gw-xd-ring 760ms var(--ease-default) calc(var(--r, 0) * 240ms + 900ms) both; }
@keyframes gw-xd-ring { 0% { opacity: 0; transform: scale(1); } 28% { opacity: .7; } 100% { opacity: 0; transform: scale(1.14); } }
/* thumb blooms as the signal arrives */
.gw-xd__thumb::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 0 0 2px var(--teal);
  opacity: 0; pointer-events: none;
}
.gw-xd.is-seen .gw-xd__thumb::after { animation: gw-xd-bloom 780ms var(--ease-default) calc(var(--r, 0) * 240ms + 1620ms) both; }
@keyframes gw-xd-bloom { 0% { opacity: 0; } 26% { opacity: 1; } 100% { opacity: 0; } }
.gw-xd__cap { text-align: center; margin: var(--space-6) 0 0; font-family: var(--font-sans); font-size: var(--text-sm); color: var(--gunmetal); }
@media (prefers-reduced-motion: reduce) {
  .gw-xd__link { transition: none; transform: scaleX(1); }
  .gw-xd__link::after, .gw-xd__node::before, .gw-xd__thumb::after { animation: none !important; opacity: 0 !important; }
}
@media (max-width: 560px) {
  .gw-xd__thumb { width: 64px; height: 64px; }
  .gw-xd__node { padding: 8px 12px; font-size: var(--text-sm); }
  .gw-xd__heads { padding: 0; }
}
@media (max-width: 760px) {
  .gw-ci-cols { grid-template-columns: 1fr; gap: var(--space-8); }
  .gw-ci-hero__viz { margin-top: var(--space-8); }
}

/* ============================================================
   CONTACT — info aside
   ============================================================ */
.gw-contact__aside { display: flex; flex-direction: column; align-items: flex-start; gap: var(--space-6); }
.gw-contact__row { display: flex; flex-direction: column; gap: var(--space-2); }
.gw-contact__k { font-family: var(--font-mono); font-size: var(--text-caption); letter-spacing: .08em; text-transform: uppercase; color: var(--grey); }
.gw-contact__v { font-size: var(--text-body); font-weight: 600; color: var(--carbon); text-decoration: none; }
a.gw-contact__v:hover { color: var(--granite); }
.gw-contact__discord { display: inline-flex; align-items: center; gap: var(--space-2); }
.gw-contact__discord svg { width: 18px; height: 18px; flex: none; }
.gw-contact__note { font-size: var(--text-sm); color: var(--gunmetal); line-height: 1.5; margin: 0; max-width: 280px; text-wrap: pretty; }

/* ============================================================
   TASTE GRAPH — embedding-distance plot
   ============================================================ */
.gw-tg-split { gap: var(--space-12); }
.gw-ed { width: 100%; }
.gw-ed svg { width: 100%; height: auto; display: block; overflow: visible; font-family: var(--font-mono); }
.gw-ed__axis { stroke: var(--silver); stroke-width: 1; stroke-dasharray: 2 6; }
.gw-ed__ring { fill: none; stroke: var(--silver); stroke-width: 1; opacity: 0; transition: opacity .7s var(--ease-default); }
.gw-ed.is-in .gw-ed__ring, .gw-ed svg:hover .gw-ed__ring { opacity: .55; }
.gw-ed__dot { fill: var(--silver-mid); cursor: pointer; transition: opacity .5s var(--ease-default), r .25s var(--ease-default), fill .25s var(--ease-default); }
.gw-ed__dot.is-hot { fill: var(--granite); }
.gw-ed__link { stroke: var(--teal); stroke-width: 1.6; stroke-dasharray: 1; transition: stroke-dashoffset .6s var(--ease-default); }
.gw-ed__tag rect { fill: #FBFBFA; stroke: var(--silver-mid); stroke-width: 1; }
.gw-ed__tag text { fill: var(--granite); font-size: 11px; font-weight: 600; }
.gw-ed__tag { transition: opacity .4s var(--ease-default); }
.gw-ed__user .halo { fill: color-mix(in srgb, var(--teal) 22%, transparent); }
.gw-ed__user .core { fill: var(--teal); stroke: var(--smoke); stroke-width: 1.5; }
.gw-ed__user { transition: opacity .5s var(--ease-default); }
.gw-ed__ulabel { fill: var(--grey); font-size: 11px; letter-spacing: .04em; transition: opacity .5s var(--ease-default) .2s; }

/* TASTE GRAPH — popularity vs. fit re-rank */
.gw-rank {
  margin: var(--space-10) auto 0; max-width: 860px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: var(--space-6);
}
.gw-rank__col { background: #FBFBFA; border: 1px solid var(--silver); border-radius: var(--radius-lg); padding: var(--space-5); }
.gw-rank__head { margin-bottom: var(--space-4); }
.gw-rank__head .t { display: block; font-family: var(--font-sans); font-size: var(--text-sm); font-weight: 600; color: var(--carbon); }
.gw-rank__head .s { display: block; font-family: var(--font-mono); font-size: var(--text-caption); color: var(--grey); margin-top: 2px; }
.gw-rank__list { display: flex; flex-direction: column; gap: var(--space-3); }
.gw-rank__row { display: flex; align-items: center; gap: var(--space-2); transition: opacity .5s var(--ease-default), transform .5s var(--ease-default); }
.gw-rank__row .rk { font-family: var(--font-mono); font-size: var(--text-caption); color: var(--grey); width: 12px; }
.gw-rank__row .sw { width: 18px; height: 18px; border-radius: 5px; background: var(--silver-mid); flex: 0 0 auto; display: grid; place-items: center; font-family: var(--font-mono); font-size: 9px; font-weight: 600; color: #FBFBFA; }
.gw-rank__row .sw[data-id="A"] { background: #8C9A90; }
.gw-rank__row .sw[data-id="B"] { background: #B6AEA2; }
.gw-rank__row .sw[data-id="C"] { background: #9AA3AC; }
.gw-rank__row .sw[data-id="D"] { background: var(--teal); }
.gw-rank__row .sw[data-id="E"] { background: #C2B8B0; }
.gw-rank__row .nm { width: 92px; flex: 0 0 auto; font-family: var(--font-sans); font-size: 12px; color: var(--carbon); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gw-rank__row .bar { flex: 1; height: 8px; border-radius: 999px; background: var(--alabaster); overflow: hidden; }
.gw-rank__row .bar i { display: block; height: 100%; border-radius: 999px; background: var(--silver-mid); transition: width .8s var(--ease-default); }
.gw-rank__row.is-fit .bar i { background: var(--teal); }
.gw-rank__row .val { width: 26px; flex: 0 0 auto; text-align: right; font-family: var(--font-mono); font-size: 10px; color: var(--grey); }
.gw-rank__row .mv { width: 26px; flex: 0 0 auto; text-align: right; font-family: var(--font-mono); font-size: 10px; font-weight: 600; }
.gw-rank__row .mv.up { color: var(--granite); }
.gw-rank__row .mv.down { color: var(--silver-mid); }
.gw-rank__row.is-fit .rk { color: var(--granite); font-weight: 700; }
.gw-rank__arrow { display: flex; flex-direction: column; align-items: center; gap: var(--space-2); color: var(--granite); }
.gw-rank__arrow .lbl { font-family: var(--font-mono); font-size: var(--text-caption); color: var(--grey); max-width: 96px; text-align: center; line-height: 1.3; }
@media (prefers-reduced-motion: reduce) {
  .gw-ed__dot, .gw-ed__link, .gw-ed__ring, .gw-ed__tag, .gw-rank__row, .gw-rank__row .bar i { transition: none !important; }
}
@media (max-width: 760px) {
  .gw-rank { grid-template-columns: 1fr; }
  .gw-rank__arrow { flex-direction: row; gap: var(--space-3); }
  .gw-rank__arrow svg { transform: rotate(90deg); }
}

/* ABOUT — photography */
.gw-about-media { width: min(900px, 94vw); margin-top: var(--space-12); margin-bottom: var(--space-12); margin-left: 50%; transform: translateX(-50%); }
.gw-about-media > img { width: 100%; height: auto; display: block; border-radius: var(--radius-lg); }
.gw-about-media.is-frame { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--silver); background: var(--alabaster); box-shadow: var(--shadow-sm); }
.gw-about-media.is-frame > img { border-radius: 0; }
.gw-about-pair { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.gw-about-pair figure { margin: 0; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--silver); background: var(--alabaster); box-shadow: var(--shadow-sm); aspect-ratio: 4 / 5; }
.gw-about-pair img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gw-about-candids { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); max-width: 900px; margin: var(--space-6) auto var(--space-12); }
.gw-about-art { width: min(620px, 94vw); border: 1px solid var(--silver); border-radius: var(--radius-lg); background: var(--white-smoke, #F3F2F2); box-shadow: var(--shadow-sm); padding: var(--space-9) var(--space-8); }
.gw-about-candids figure { margin: 0; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--silver); background: var(--alabaster); box-shadow: var(--shadow-sm); aspect-ratio: 4 / 5; }
.gw-about-candids img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gw-team-photo { aspect-ratio: 4 / 5; border-radius: var(--radius-md); overflow: hidden; background: #F0F0EE; border: 1px solid var(--silver); margin-bottom: var(--space-4); }
.gw-team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.gw-team-namerow { display: flex; align-items: center; gap: var(--space-2); margin-bottom: var(--space-2); }
.gw-team-grid { align-items: stretch; }
.gw-team-grid > * { height: 100%; }
.gw-team-grid .galya-card { height: 100%; box-sizing: border-box; }
.gw-team-namerow h3 { flex: 0 1 auto; font-size: 16px; }
.gw-team-linkedin { display: inline-flex; align-items: center; justify-content: center; flex: none; color: var(--grey); transition: color var(--duration-base) var(--ease-default); }
.gw-team-linkedin:hover { color: var(--carbon); }
.gw-team-linkedin svg { width: 18px; height: 18px; display: block; }
@media (max-width: 680px) {
  .gw-about-pair, .gw-about-candids { grid-template-columns: 1fr; }
}

/* CUSTOMER INTELLIGENCE — segmentation mood-board cards */
.gw-seg2 { display: flex; flex-direction: column; gap: var(--space-4); min-width: 0; }
.gw-seg2__head { display: flex; align-items: center; gap: var(--space-2); }
.gw-seg2__dot { width: 9px; height: 9px; border-radius: 50%; flex: 0 0 auto; }
.gw-seg2 h3.sans { margin: 0; font-family: var(--font-sans); font-size: var(--text-h5); font-weight: 600; color: var(--carbon); }
.gw-seg2__desc { margin: 0; color: var(--gunmetal); line-height: 1.55; font-size: var(--text-sm); }
.gw-seg2__board { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-2); }
.gw-seg2__tile { width: 100%; min-width: 0; height: 108px; border-radius: 8px; overflow: hidden; background: var(--alabaster); border: 1px solid var(--silver); margin: 0; }
.gw-seg2__tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gw-seg2__table { display: flex; flex-direction: column; gap: var(--space-2); padding-top: var(--space-4); border-top: 1px solid var(--silver); }
.gw-seg2__row { display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); }
.gw-seg2__row .k { font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--grey); flex: 0 0 auto; }
.gw-seg2__row .v { font-family: var(--font-sans); font-size: var(--text-sm); color: var(--carbon); text-align: right; }
.gw-seg2__sw { display: flex; gap: 4px; }
.gw-seg2__sw span { width: 20px; height: 20px; border-radius: 4px; box-shadow: inset 0 0 0 1px rgba(25, 25, 25, .08); }
.gw-seg2__chips { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.gw-seg2__chip { font-family: var(--font-mono); font-size: 11px; color: var(--granite); background: #FBFBFA; border: 1px solid var(--silver); border-radius: 999px; padding: 3px 10px; }

/* TASTE GRAPH — popularity vs. fit re-rank (dual cards) */
.gw-rr { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: var(--space-6); max-width: 1040px; margin: var(--space-10) auto 0; }
.gw-rr__card { background: #FBFBFA; border: 1px solid var(--silver); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: var(--space-6) var(--space-7); }
.gw-rr__h { font-family: var(--font-sans); font-size: 18px; font-weight: 600; color: var(--carbon); letter-spacing: -.01em; }
.gw-rr__s { font-family: var(--font-mono); font-size: 13px; color: var(--grey); letter-spacing: .02em; margin-top: 3px; }
.gw-rr__rows { margin-top: var(--space-5); display: flex; flex-direction: column; gap: var(--space-4); }
.gw-rr__row { display: grid; grid-template-columns: 16px 24px 1fr 26px; align-items: center; gap: var(--space-3); }
.gw-rr__card--fit .gw-rr__row { grid-template-columns: 16px 24px 1fr 26px 30px; }
.gw-rr__rk { font-family: var(--font-mono); font-size: 13px; color: var(--grey); text-align: center; }
.gw-rr__rk.is-win { color: var(--carbon); font-weight: 700; }
.gw-rr__badge { width: 24px; height: 24px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 11px; font-weight: 600; color: #FBFBFA; }
.gw-rr__bar { position: relative; height: 8px; border-radius: 999px; background: rgba(25, 25, 25, .06); }
.gw-rr__fill { position: absolute; top: 0; left: 0; bottom: 0; width: 0; border-radius: 999px; background: var(--silver-mid); transition: width .85s var(--ease-default); }
.gw-rr.is-seen .gw-rr__fill { width: var(--w); }
.gw-rr__fill.is-win { background: var(--teal); }
.gw-rr__val { font-family: var(--font-mono); font-size: 13px; font-weight: 600; color: var(--carbon); text-align: right; }
.gw-rr__mv { font-family: var(--font-mono); font-size: 12px; color: var(--grey); text-align: right; }
.gw-rr__gutter { display: flex; flex-direction: column; align-items: center; gap: var(--space-3); max-width: 130px; padding: 0 var(--space-2); }
.gw-rr__mid { font-family: var(--font-mono); font-size: 12px; color: var(--grey); letter-spacing: .02em; text-align: center; line-height: 1.5; }
.gw-rr__arrow { color: var(--carbon); }
@media (max-width: 760px) {
  .gw-rr { grid-template-columns: 1fr; gap: var(--space-5); }
  .gw-rr__gutter { flex-direction: row; max-width: none; gap: var(--space-3); }
  .gw-rr__arrow { transform: rotate(90deg); }
}
@media (prefers-reduced-motion: reduce) {
  .gw-rr__fill { transition: none; width: var(--w); }
}

/* ============================================================
   HOME — "Backed by" logo marquee (seamless infinite scroll)
   ============================================================ */
.gw-marquee {
  width: 100%; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.gw-marquee__track { display: flex; width: max-content; animation: gw-marq 36s linear infinite; }
.gw-marquee:hover .gw-marquee__track { animation-play-state: paused; }
.gw-marquee__set { display: flex; align-items: center; gap: clamp(56px, 7vw, 110px); padding-right: clamp(56px, 7vw, 110px); }
.gw-marquee__set img { width: 132px; height: 44px; flex: 0 0 auto; display: block; object-fit: contain; object-position: center; }
.gw-marquee__set img.gw-backer--badge { width: 50px; height: 50px; border-radius: 50%; }
@keyframes gw-marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .gw-marquee__track { animation: none; justify-content: center; width: 100%; }
  .gw-marquee__set[aria-hidden="true"] { display: none; }
}

/* ============================================================
   CUSTOMER INTELLIGENCE — segment profile (tabbed bars)
   ============================================================ */
.gw-sp-head { text-align: center; max-width: 640px; margin: 0 auto var(--space-10); }
.gw-sp-head h2 { font-family: var(--font-sans); font-size: clamp(32px, 3.4vw, 46px); font-weight: 600; letter-spacing: -.025em; line-height: 1.06; color: var(--carbon); margin: var(--space-4) 0 0; text-wrap: balance; }
.gw-sp { max-width: 640px; margin: 0 auto; background: #FBFBFA; border: 1px solid var(--silver); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: var(--space-8); }
.gw-sp--wide { max-width: 960px; }
.gw-sp__panel { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: var(--space-8); align-items: start; }
.gw-sp__identity { display: flex; flex-direction: column; gap: var(--space-4); min-width: 0; }
.gw-sp__idhead { display: flex; align-items: center; gap: var(--space-2); }
.gw-sp__idname { font-family: var(--font-sans); font-size: var(--text-h5); font-weight: 600; color: var(--carbon); }
.gw-sp__signals { display: flex; flex-direction: column; min-width: 0; border-left: 1px solid var(--silver); padding-left: var(--space-8); height: 100%; }
.gw-sp__sigk { font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--grey); margin-bottom: var(--space-6); }
@media (max-width: 860px) {
  .gw-sp__panel { grid-template-columns: 1fr; gap: var(--space-6); }
  .gw-sp__signals { border-left: 0; padding-left: 0; padding-top: var(--space-6); border-top: 1px solid var(--silver); }
}
.gw-sp__tabs { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-bottom: var(--space-8); }
.gw-sp__tab { font-family: var(--font-mono); font-size: 12px; letter-spacing: -.01em; color: var(--granite); background: var(--alabaster); border: 1px solid var(--silver); border-radius: 999px; padding: 6px 15px; cursor: pointer; transition: background .2s var(--ease-default), border-color .2s var(--ease-default), color .2s var(--ease-default); }
.gw-sp__tab:hover:not(.is-on) { border-color: var(--silver-mid); }
.gw-sp__tab.is-on { background: color-mix(in srgb, var(--teal) 20%, transparent); border-color: var(--teal); color: var(--carbon); font-weight: 500; }
.gw-sp__bars { display: flex; flex-direction: column; gap: var(--space-5); }
.gw-sp__row { display: flex; align-items: center; gap: var(--space-4); }
.gw-sp__label { width: 130px; flex: 0 0 auto; font-family: var(--font-sans); font-size: 13px; color: var(--gunmetal); }
.gw-sp__track { flex: 1; height: 4px; background: var(--smoke); border-radius: 999px; overflow: hidden; }
.gw-sp__track i { display: block; height: 100%; background: var(--teal); border-radius: 999px; transition: width .9s var(--ease-default); }
.gw-sp__arrow { width: 20px; flex: 0 0 auto; text-align: right; font-family: var(--font-mono); font-size: 13px; color: var(--granite); }
.gw-sp__foot { margin-top: var(--space-8); padding-top: var(--space-5); border-top: 1px dotted var(--silver); text-align: center; font-family: var(--font-mono); font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: var(--grey); }
@media (max-width: 560px) {
  .gw-sp { padding: var(--space-5); }
  .gw-sp__label { width: 92px; font-size: 12px; }
}

/* ============================================================
   HOMEPAGE — inference loop (full-loop story)
   ============================================================ */
.gw-loop-head { text-align: center; max-width: 600px; margin: 0 auto var(--space-10); }
.gw-loop-head h2 { font-family: var(--font-sans); font-size: clamp(32px, 3.4vw, 46px); font-weight: 600; letter-spacing: -.025em; line-height: 1.06; color: var(--carbon); margin: var(--space-4) 0 var(--space-4); text-wrap: balance; }
.gw-loop-head p { font-size: var(--text-lg); line-height: 1.55; color: var(--gunmetal); max-width: 520px; margin: 0 auto; text-wrap: pretty; }
.gw-loop { max-width: 420px; margin: 0 auto; display: flex; flex-direction: column; align-items: stretch; }
.gw-loop__card { background: #FBFBFA; border: 1px solid var(--silver); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: var(--space-5); position: relative; z-index: 1; }
.gw-loop__ch { font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--granite); margin-bottom: var(--space-4); }
.gw-loop__sig { display: flex; flex-direction: column; gap: var(--space-3); }
.gw-loop__sigrow { display: flex; align-items: center; gap: var(--space-3); }
.gw-loop__tag { flex: 0 0 auto; width: 48px; text-align: center; font-family: var(--font-mono); font-size: 9px; letter-spacing: .06em; color: var(--granite); background: color-mix(in srgb, var(--teal) 20%, transparent); border-radius: 4px; padding: 3px 0; }
.gw-loop__sigrow .t { font-family: var(--font-sans); font-size: 12px; line-height: 1.3; color: var(--carbon); }
.gw-loop__json { font-family: var(--font-mono); font-size: 12px; line-height: 1.7; color: var(--carbon); }
.gw-loop__json .ln { padding-left: var(--space-4); }
.gw-loop__json .b { color: var(--grey); }
.gw-loop__json .k { color: var(--grey); }
.gw-loop__json .v { color: var(--granite); }
.gw-loop__conn { position: relative; height: 58px; }
.gw-loop__line { position: absolute; top: 0; bottom: 0; left: 50%; width: 1px; background: var(--silver-mid); transform: translateX(-50%); }
.gw-loop__arrow { position: absolute; bottom: 3px; left: 50%; transform: translateX(-50%); width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 6px solid var(--silver-mid); }
.gw-loop__clabel { position: absolute; left: calc(50% + 12px); top: 50%; transform: translateY(-50%); font-family: var(--font-mono); font-size: 10px; letter-spacing: .02em; color: var(--grey); white-space: nowrap; }
.gw-loop__bubble { display: inline-block; max-width: 88%; background: color-mix(in srgb, var(--teal) 16%, transparent); border-radius: 12px; border-top-left-radius: 2px; padding: 12px 14px; }
.gw-loop__bubble p { font-family: var(--font-sans); font-size: 12.5px; line-height: 1.5; color: var(--carbon); margin: 0; }
.gw-loop__caret { color: var(--teal); font-family: var(--font-mono); }

/* ============================================================
   FAQ — answer terminal (hero visual)
   ============================================================ */
.gw-term { position: relative; width: 100%; max-width: 480px; background: #FBFBFA; border: 1px solid var(--silver); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); overflow: hidden; }
.gw-term__mark { position: absolute; right: -22px; bottom: -18px; width: 188px; height: 188px; color: var(--teal); opacity: 0.07; z-index: 0; pointer-events: none; }
.gw-term__bar { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; padding: 11px 16px; border-bottom: 1px solid var(--silver); }
.gw-term__live { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--granite); }
.gw-term__live .d { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }
.gw-term__count { font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em; color: var(--grey); }
.gw-term__body { position: relative; z-index: 1; padding: var(--space-6) var(--space-6) var(--space-5); min-height: 196px; }
.gw-term__q { display: flex; align-items: flex-start; gap: 14px; }
.gw-term__prompt { flex: 0 0 auto; width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; background: var(--carbon); color: var(--smoke); font-family: var(--font-serif); font-size: 15px; font-weight: 600; }
.gw-term__qtext { font-family: var(--font-serif); font-size: 22px; font-weight: 600; line-height: 1.2; color: var(--carbon); letter-spacing: -.02em; text-wrap: pretty; }
.gw-term__caret { color: var(--teal); font-family: var(--font-mono); margin-left: 1px; }
.gw-term__a { margin-top: var(--space-5); padding-left: 40px; opacity: 0; transform: translateY(6px); transition: opacity .4s var(--ease-default), transform .4s var(--ease-default); }
.gw-term__a.is-in { opacity: 1; transform: none; }
.gw-term__a p { font-family: var(--font-sans); font-size: 14px; line-height: 1.55; color: var(--gunmetal); margin: 0 0 var(--space-3); text-wrap: pretty; }
.gw-term__resolved { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--granite); }
.gw-term__resolved .ck { color: var(--teal); font-size: 12px; }
.gw-term__dots { position: relative; z-index: 1; display: flex; gap: 6px; padding: 0 var(--space-6) var(--space-5); }
.gw-term__dot { position: relative; width: 6px; height: 6px; padding: 0; border: 0; border-radius: 50%; background: var(--silver); cursor: pointer; transition: background .25s var(--ease-default), width .25s var(--ease-default); }
.gw-term__dot::after { content: ''; position: absolute; inset: -9px -4px; }
.gw-term__dot:hover { background: var(--silver-mid); }
.gw-term__dot.is-on { background: var(--teal); width: 18px; border-radius: 3px; }
.gw-term__dot:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }
@media (max-width: 560px) {
  .gw-term__qtext { font-size: 20px; }
  .gw-term__body { min-height: 180px; }
}

/* ============================================================
   HOMEPAGE — stack map (orientation diagram)
   ============================================================ */
.gw-stk { display: flex; align-items: stretch; justify-content: center; gap: var(--space-2); max-width: 1000px; margin: 0 auto; }
.gw-stk__col { display: flex; flex-direction: column; gap: var(--space-3); width: 220px; flex: 0 0 auto; }
.gw-stk__col--galya { width: 290px; }
.gw-stk__cap { font-family: var(--font-mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--grey); padding-left: 2px; }
.gw-stk__cap.is-on { color: var(--granite); font-weight: 600; }
.gw-stk__card { background: #FBFBFA; border: 1px solid var(--silver); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: var(--space-4) var(--space-5); }
.gw-stk__ch { font-family: var(--font-mono); font-size: 11px; font-weight: 600; color: var(--granite); margin-bottom: var(--space-3); }
.gw-stk__cat { display: flex; gap: var(--space-2); }
.gw-stk__cat span { width: 26px; height: 26px; border-radius: 5px; border: 1px solid rgba(25,25,25,.06); }
.gw-stk__rows { display: flex; flex-direction: column; gap: var(--space-3); }
.gw-stk__row { display: flex; align-items: center; gap: var(--space-3); font-family: var(--font-sans); font-size: 11px; color: var(--gunmetal); }
.gw-stk__bul { width: 6px; height: 6px; border-radius: 1.5px; background: var(--teal); flex: 0 0 auto; }
.gw-stk__card--out { display: flex; align-items: center; gap: var(--space-3); font-family: var(--font-mono); font-size: 11px; font-weight: 600; color: var(--granite); }
.gw-stk__core { display: flex; flex-direction: column; background: #FBFBFA; border: 1.5px solid var(--silver-mid); border-radius: 14px; box-shadow: var(--shadow-sm); overflow: hidden; height: 100%; }
.gw-stk__core-h { display: flex; align-items: center; justify-content: space-between; padding: var(--space-4) var(--space-5) 0; }
.gw-stk__core-h span:first-child { font-family: var(--font-mono); font-size: 12px; font-weight: 600; letter-spacing: .02em; color: var(--granite); }
.gw-stk__node { width: 16px; height: 16px; border-radius: 50%; background: color-mix(in srgb, var(--teal) 30%, transparent); border: 1.5px solid var(--teal); }
.gw-stk__layers { display: flex; flex-direction: column; gap: var(--space-4); padding: var(--space-5); }
.gw-stk__layer { display: flex; align-items: flex-start; gap: var(--space-3); }
.gw-stk__idx { font-family: var(--font-mono); font-size: 9px; color: var(--teal); border: 1px solid color-mix(in srgb, var(--teal) 45%, transparent); border-radius: 4px; padding: 2px 5px; flex: 0 0 auto; }
.gw-stk__layer .t { display: block; font-family: var(--font-mono); font-size: 10.5px; font-weight: 500; color: var(--carbon); margin-bottom: 1px; }
.gw-stk__layer .d { display: block; font-family: var(--font-sans); font-size: 10.5px; line-height: 1.3; color: var(--grey); }
.gw-stk__foot { margin-top: auto; background: color-mix(in srgb, var(--teal) 14%, transparent); padding: 10px var(--space-5); text-align: center; font-family: var(--font-mono); font-size: 9px; letter-spacing: .04em; color: var(--granite); }
/* connectors with traveling particle */
.gw-stk__conn { position: relative; width: 96px; flex: 0 0 auto; align-self: center; height: 20px; }
.gw-stk__clabel { position: absolute; bottom: calc(50% + 8px); left: 50%; transform: translateX(-50%); font-family: var(--font-mono); font-size: 9px; letter-spacing: .02em; color: var(--grey); white-space: nowrap; }
.gw-stk__line { position: absolute; top: 50%; left: 0; right: 6px; height: 1px; background: var(--silver-mid); }
.gw-stk__conn.is-accent .gw-stk__line { background: var(--granite); }
.gw-stk__head { position: absolute; top: 50%; right: 0; transform: translateY(-50%); width: 0; height: 0; border-top: 4px solid transparent; border-bottom: 4px solid transparent; border-left: 6px solid var(--silver-mid); }
.gw-stk__conn.is-accent .gw-stk__head { border-left-color: var(--granite); }
.gw-stk__particle { position: absolute; top: 50%; left: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); transform: translate(0, -50%); animation: gw-stk-travel 2.6s linear infinite; }
@keyframes gw-stk-travel { 0% { transform: translate(0, -50%); opacity: 0; } 14% { opacity: 1; } 86% { opacity: 1; } 100% { transform: translate(86px, -50%); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .gw-stk__particle { display: none; } }
@media (max-width: 860px) {
  .gw-stk { flex-direction: column; align-items: center; gap: var(--space-3); }
  .gw-stk__col, .gw-stk__col--galya { width: 100%; max-width: 360px; }
  .gw-stk__conn { width: 20px; height: 40px; }
  .gw-stk__clabel { bottom: auto; top: 50%; left: calc(50% + 12px); transform: translateY(-50%); }
  .gw-stk__line { top: 0; bottom: 6px; left: 50%; right: auto; width: 1px; height: auto; }
  .gw-stk__head { top: auto; bottom: 0; right: 50%; transform: translateX(50%); border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 6px solid var(--silver-mid); border-bottom: 0; }
  .gw-stk__conn.is-accent .gw-stk__head { border-top-color: var(--granite); border-left-color: transparent; }
  .gw-stk__particle { animation: gw-stk-travel-v 2.6s linear infinite; }
}
@keyframes gw-stk-travel-v { 0% { transform: translate(-50%, 0); opacity: 0; } 14% { opacity: 1; } 86% { opacity: 1; } 100% { transform: translate(-50%, 34px); opacity: 0; } }
