/* ─── Simple Space v2 — editorial workplace intelligence ─────────────── */
:root{
  --cream:     #FAF8F5;
  --cream-2:   #F3EFE8;   /* card / panel */
  --cream-3:   #EBE6DD;   /* deeper panel */
  --white:     #FFFFFF;
  --charcoal:  #1A1A18;   /* near-black */
  --charcoal-2:#2A2A26;
  --ink:       #1A1A18;   /* alias */
  --mid:       #6B6B67;   /* body */
  --light:     #A8A8A4;   /* meta */
  --border:    #E8E4DE;
  --border-2:  #D8D2C5;
  --orange:    #E8611A;   /* burnt orange */
  --orange-2:  #F08040;   /* light orange */
  --orange-tint:#FBEBDD;
  --orange-soft:#FFE0CC;
  --green:     #2D8050;
  --red:       #B23A1D;

  --display: 'Manrope', -apple-system, system-ui, sans-serif;
  --body:    'DM Sans', -apple-system, system-ui, sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, monospace;
  --ease:    cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --r-sm: 2px;
  --r-md: 3px;
  --r-lg: 4px;
  --r-pill: 999px;

  --content: 1280px;

  --shadow-soft: 0 1px 0 rgba(26,26,24,.04), 0 12px 40px -16px rgba(26,26,24,.18);
  --shadow-float: 0 30px 80px -30px rgba(26,26,24,.5), 0 1px 0 rgba(26,26,24,.04);
}

*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior: smooth; }
body{
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5{
  font-family: var(--display);
  font-weight: 300;
  letter-spacing: -0.005em;
  color: var(--charcoal);
  margin: 0;
  text-wrap: balance;
}
em{ font-style: italic; }
p{ margin:0; color: var(--mid); }
a{ color: inherit; text-decoration: none; }

/* ─── primitives ──────────────────────────────────────────────────────── */
.wrap{ width:100%; max-width: var(--content); margin:0 auto; padding: 0 60px; }
.eyebrow{ display:inline-flex; align-items: center; gap: 12px; }
.eyebrow .line{ width: 28px; height: 1px; background: var(--orange); display:inline-block; }
.eyebrow span{
  font-family: var(--body);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--orange);
}
.eyebrow.on-dark span{ color: var(--orange-2); }
.eyebrow.on-dark .line{ background: var(--orange-2); }

.mono{ font-family: var(--mono); font-size: 11px; letter-spacing: 0.02em; }

.h-display{ font-size: clamp(48px, 6.4vw, 96px); line-height: 1.02; font-weight: 300; letter-spacing: -0.01em; }
.h-section{ font-size: clamp(34px, 3.8vw, 56px); line-height: 1.08; font-weight: 300; letter-spacing: -0.005em; }
.h-card{ font-size: 22px; line-height: 1.18; font-weight: 400; }
.lead{ font-size: 16px; line-height: 1.8; color: var(--mid); max-width: 60ch; font-weight: 300; }

/* ─── buttons ──────────────────────────────────────────────────────────── */
.btn{
  display:inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 46px; padding: 0 28px;
  border-radius: 2px;
  font-family: var(--body);
  font-weight: 500; font-size: 12px; letter-spacing: 0.09em; text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
  white-space: nowrap;
}
.btn-orange{ background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-orange:hover{ background: #C4501A; box-shadow: 0 8px 30px rgba(232,97,26,0.35); transform: translateY(-1px); }
.btn-ghost{ background: transparent; color: var(--charcoal); border-color: var(--border-2); }
.btn-ghost:hover{ border-color: var(--charcoal); color: var(--charcoal); }
.btn-ghost-on-dark{ background: transparent; color: rgba(255,255,255,0.55); border: none; padding: 0; font-family: var(--body); font-size: 12px; font-weight: 400; letter-spacing: 0.09em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px; height: 46px;  cursor: pointer; transition: color .2s, gap .2s; }
.btn-ghost-on-dark:hover{ color: #fff; gap: 14px; }

.btn .arr{ transition: transform 0.2s var(--ease); }
.btn:hover .arr{ transform: translateX(3px); }

html, body{ overflow-x: clip; }

/* ─── nav ──────────────────────────────────────────────────────────────── */
.nav-shell{
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 60px;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav-shell.scrolled{
  background: rgba(250,248,245,0.94);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  padding: 16px 60px;
  border-bottom-color: var(--border);
}
/* logo font variants — switchable via tweaks */
body[data-logo-font="cormorant"] .logo,
body[data-logo-font="cormorant"] .foot-logo{
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-weight: 500 !important;
  font-style: italic !important;
  letter-spacing: 0.005em !important;
}
body[data-logo-font="cormorant"] .logo{ font-size: 26px !important; }
body[data-logo-font="cormorant"] .foot-logo{ font-size: 22px !important; }

body[data-logo-font="dm"] .logo,
body[data-logo-font="dm"] .foot-logo{
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 500 !important;
  font-style: normal !important;
  letter-spacing: -0.005em !important;
}
body[data-logo-font="dm"] .logo{ font-size: 19px !important; }
body[data-logo-font="dm"] .foot-logo{ font-size: 16px !important; }

body[data-logo-font="mono"] .logo,
body[data-logo-font="mono"] .foot-logo{
  font-family: 'JetBrains Mono', ui-monospace, monospace !important;
  font-weight: 500 !important;
  font-style: normal !important;
  letter-spacing: -0.02em !important;
}
body[data-logo-font="mono"] .logo{ font-size: 17px !important; }
body[data-logo-font="mono"] .foot-logo{ font-size: 14px !important; }

body[data-logo-font="manrope-light"] .logo,
body[data-logo-font="manrope-light"] .foot-logo{
  font-family: 'Manrope', sans-serif !important;
  font-weight: 300 !important;
  font-style: normal !important;
  letter-spacing: 0.01em !important;
}
body[data-logo-font="manrope-light"] .logo{ font-size: 23px !important; }
body[data-logo-font="manrope-light"] .foot-logo{ font-size: 19px !important; }

body[data-logo-font="manrope-black"] .logo,
body[data-logo-font="manrope-black"] .foot-logo{
  font-family: 'Manrope', sans-serif !important;
  font-weight: 800 !important;
  font-style: normal !important;
  letter-spacing: -0.04em !important;
}
body[data-logo-font="manrope-black"] .logo{ font-size: 24px !important; }
body[data-logo-font="manrope-black"] .foot-logo{ font-size: 20px !important; }

body[data-logo-font="mono-caps"] .logo,
body[data-logo-font="mono-caps"] .foot-logo{
  font-family: 'JetBrains Mono', ui-monospace, monospace !important;
  font-weight: 400 !important;
  font-style: normal !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
}
body[data-logo-font="mono-caps"] .logo{ font-size: 14px !important; }
body[data-logo-font="mono-caps"] .foot-logo{ font-size: 12px !important; }

body[data-logo-font="fraunces-italic"] .logo,
body[data-logo-font="fraunces-italic"] .foot-logo{
  font-family: 'Fraunces', Georgia, serif !important;
  font-weight: 500 !important;
  font-style: italic !important;
  letter-spacing: 0 !important;
}
body[data-logo-font="fraunces-italic"] .logo{ font-size: 24px !important; }
body[data-logo-font="fraunces-italic"] .foot-logo{ font-size: 20px !important; }

body[data-logo-font="fraunces-semibold"] .logo,
body[data-logo-font="fraunces-semibold"] .foot-logo{
  font-family: 'Fraunces', Georgia, serif !important;
  font-weight: 600 !important;
  font-style: normal !important;
  letter-spacing: -0.01em !important;
}
body[data-logo-font="fraunces-semibold"] .logo{ font-size: 23px !important; }
body[data-logo-font="fraunces-semibold"] .foot-logo{ font-size: 19px !important; }

body[data-logo-font="fraunces-black"] .logo,
body[data-logo-font="fraunces-black"] .foot-logo{
  font-family: 'Fraunces', Georgia, serif !important;
  font-weight: 900 !important;
  font-style: normal !important;
  letter-spacing: -0.02em !important;
}
body[data-logo-font="fraunces-black"] .logo{ font-size: 23px !important; }
body[data-logo-font="fraunces-black"] .foot-logo{ font-size: 19px !important; }

body[data-logo-font="archivo"] .logo,
body[data-logo-font="archivo"] .foot-logo{
  font-family: 'Archivo', sans-serif !important;
  font-weight: 700 !important;
  font-style: normal !important;
  letter-spacing: -0.03em !important;
}
body[data-logo-font="archivo"] .logo{ font-size: 22px !important; }
body[data-logo-font="archivo"] .foot-logo{ font-size: 18px !important; }

/* logo weight tweak — overrides the variant's default weight when set */
body[data-logo-weight="300"] .logo, body[data-logo-weight="300"] .foot-logo{ font-weight: 300 !important; }
body[data-logo-weight="400"] .logo, body[data-logo-weight="400"] .foot-logo{ font-weight: 400 !important; }
body[data-logo-weight="500"] .logo, body[data-logo-weight="500"] .foot-logo{ font-weight: 500 !important; }
body[data-logo-weight="600"] .logo, body[data-logo-weight="600"] .foot-logo{ font-weight: 600 !important; }
body[data-logo-weight="700"] .logo, body[data-logo-weight="700"] .foot-logo{ font-weight: 700 !important; }
body[data-logo-weight="800"] .logo, body[data-logo-weight="800"] .foot-logo{ font-weight: 800 !important; }

/* logo size tweak — multiplies whatever size the active font variant sets */
.logo .wm,
.foot-logo > span:not(.mark){
  font-size: calc(1em * var(--logo-scale, 1));
}

/* page font systems — switchable via tweaks */
body[data-page-font="editorial"]{
  --display: 'Fraunces', Georgia, serif;
  --body:    'Public Sans', -apple-system, system-ui, sans-serif;
  --mono:    'IBM Plex Mono', ui-monospace, monospace;
}
body[data-page-font="archivo"]{
  --display: 'Archivo', -apple-system, system-ui, sans-serif;
  --body:    'Public Sans', -apple-system, system-ui, sans-serif;
  --mono:    'IBM Plex Mono', ui-monospace, monospace;
}

.logo{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  transition: color 0.4s;
  letter-spacing: -0.025em;
  line-height: 1;
}
.logo .mark{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  width: 26px; height: 26px;
  flex-shrink: 0;
}
.logo .mark svg{ display:block; width:26px; height:26px; }
.logo .wm{ display: inline-block; line-height: 1; transform: translateY(-0.06em); }
.logo .o{ color: var(--orange); }
/* locked-in mark (№37): orange filled cell, soft white bars, charcoal accent bar (hardcoded in SVG) */
.nav-shell.scrolled .logo{ color: var(--charcoal); }
.nav-links{ display:flex; gap: 36px; list-style:none; }
.nav-links a{
  font-size: 11.5px; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color 0.25s;
}
.nav-shell.scrolled .nav-links a{ color: var(--mid); }
.nav-links a:hover{ color: var(--orange); }
.nav-right{ display:flex; align-items:center; gap: 16px; }
.nav-cta{
  font-family: var(--body);
  font-size: 11.5px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--orange);
  border: 1px solid rgba(232,97,26,0.55);
  padding: 10px 22px; border-radius: 2px;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  cursor: pointer;
}
.nav-cta:hover{ background: var(--orange); color: #fff; border-color: var(--orange); }

/* mobile menu — burger is always available; desktop shows links alongside it */
.nav-burger{
  display: flex;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px; padding: 0;
  background: transparent; border: 1px solid rgba(255,255,255,0.25); border-radius: 6px;
  cursor: pointer; flex-shrink: 0;
}
.nav-shell.scrolled .nav-burger{ border-color: var(--border-2); }
/* keep logo + burger above the fullscreen mobile menu */
.nav-shell .logo, .nav-shell .nav-right{ position: relative; z-index: 2; }
.nav-burger span{
  display: block; width: 18px; height: 1.5px; margin: 0 auto;
  background: rgba(255,255,255,0.9); border-radius: 2px;
  transition: transform 0.28s var(--ease), opacity 0.2s;
}
.nav-shell.scrolled .nav-burger span{ background: var(--charcoal); }
.nav-shell.menu-open .nav-burger span{ background: var(--charcoal); }
.nav-shell.menu-open .nav-burger span:nth-child(1){ transform: translateY(6.5px) rotate(45deg); }
.nav-shell.menu-open .nav-burger span:nth-child(2){ opacity: 0; }
.nav-shell.menu-open .nav-burger span:nth-child(3){ transform: translateY(-6.5px) rotate(-45deg); }

/* menu-open: kill the backdrop-filter (it turns the fixed .nav-mobile into a
   clipped descendant) and force light chrome so the burger/logo read on any bg */
.nav-shell.menu-open,
.nav-shell.scrolled.menu-open{
  backdrop-filter: none; -webkit-backdrop-filter: none;
  background: var(--cream);
}
.nav-shell.menu-open .logo{ color: var(--charcoal); }
.nav-shell.menu-open .nav-burger{ border-color: var(--border-2); }

.nav-mobile{
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 1;
  background: var(--cream);
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
  padding: 80px 28px 40px;
  opacity: 0; pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.nav-mobile.show{ opacity: 1; pointer-events: auto; transform: translateY(0); }
.nav-mobile ul{ list-style: none; display: flex; flex-direction: column; gap: 4px; }
.nav-mobile li a{
  display: block; padding: 16px 4px;
  font-family: var(--display); font-size: 26px; font-weight: 600; letter-spacing: -0.02em;
  color: var(--charcoal); text-decoration: none;
  border-bottom: 1px solid var(--border);
}
.nav-mobile li a:active{ color: var(--orange); }
.nav-mobile-cta{ margin-top: 24px; align-self: flex-start; }

/* ─── hero ─────────────────────────────────────────────────────────────── */
.hero{
  min-height: 100svh;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.hero-bg{
  position: absolute; inset: 0;
  background-color: #2A2520;
  background-size: cover; background-position: center 50%;
  transform: scale(1.04);
  animation: zoom 16s var(--ease) forwards;
}
.hero-bg::before{
  content:""; position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(18,17,15,0.92) 0%, rgba(18,17,15,0.6) 50%, rgba(18,17,15,0.32) 100%);
}
@keyframes zoom { to { transform: scale(1.0); } }

/* hero background variants (Tweak: data-hero-bg) */
/* dimmed — same photo, much stronger top-to-bottom darkening for legibility */
body[data-hero-bg="dim"] .hero-bg::before{
  background:
    linear-gradient(to top, rgba(18,17,15,0.96) 0%, rgba(18,17,15,0.82) 45%, rgba(18,17,15,0.66) 100%);
}
/* solid — drop the photo entirely, clean charcoal field */
body[data-hero-bg="solid"] .hero-bg{
  background-image: none !important;
  background-color: #1A1A18;
  animation: none; transform: none;
}
body[data-hero-bg="solid"] .hero-bg::before{
  background:
    radial-gradient(120% 90% at 18% 100%, rgba(232,97,26,0.14) 0%, transparent 55%),
    linear-gradient(to top, #161513 0%, #1f1d1a 70%, #262320 100%);
}
/* on phones, always lean darker so the top lines stay readable over the photo */
@media (max-width: 640px){
  body[data-hero-bg="photo"] .hero-bg::before{
    background:
      linear-gradient(to top, rgba(18,17,15,0.95) 0%, rgba(18,17,15,0.78) 50%, rgba(18,17,15,0.55) 100%);
  }
}

.hero-content{
  position: relative; z-index: 2;
  padding: 120px 60px;
  width: 100%;
  max-width: var(--content);
  margin: 0 auto;
}
.hero-left{ max-width: 880px; }
.hero .eyebrow span{ color: var(--orange); }
.hero h1{
  font-size: clamp(44px, 5.6vw, 92px);
  font-weight: 300;
  line-height: 1.02;
  color: #fff;
  letter-spacing: -0.01em;
}
.hero h1 .hero-line-1,
.hero h1 em{ display: block; white-space: nowrap; }
/* keep "Where workplace meets" locked to one line — shrink to fit narrow screens */
.hero h1 .hero-line-1{ font-size: min(1em, 7.6vw); }
.hero h1 em{ font-style: italic; color: var(--orange-2); font-weight: 400; }
.hero-tagline{
  font-family: var(--body);
  font-size: clamp(18px, 2vw, 26px);
  color: rgba(255,255,255,0.9);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-top: 20px;
}
.hero-sub{
  font-family: var(--body);
  font-size: 16px;
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
  font-weight: 300;
  max-width: 560px;
  margin-top: 20px;
}
.hero-actions{
  display: flex; gap: 14px; align-items: center;
  margin-top: 40px; flex-wrap: wrap;
}

/* flow card */
.flow-card{
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.13);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 3px;
  padding: 24px;
  display: flex; flex-direction: column;
}
.flow-card-label{
  font-family: var(--body); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  margin-bottom: 14px;
}
.flow-step{
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0;
}
.flow-step + .flow-step{ border-top: 1px solid rgba(255,255,255,0.08); }
.flow-num{
  width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-family: var(--body); font-size: 11px; font-weight: 500;
  margin-top: 1px;
}
.flow-num.active{ background: rgba(232,97,26,0.22); border: 1px solid rgba(232,97,26,0.6); color: var(--orange-2); }
.flow-num.dim{ background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); color: rgba(255,255,255,0.42); }
.flow-text strong{
  display: block; font-family: var(--body); font-size: 13px; font-weight: 500;
  color: #fff; margin-bottom: 2px;
}
.flow-text span{
  font-family: var(--body); font-size: 12px;
  color: rgba(255,255,255,0.45); line-height: 1.5;
}

/* ─── clients strip ────────────────────────────────────────────────────── */
.clients{
  background: var(--white);
  padding: 48px 60px;
  border-bottom: 1px solid var(--border);
}
.clients-label{
  font-family: var(--body); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--light);
  text-align: center;
  margin-bottom: 32px;
}
.clients-logos{
  display: flex; align-items: center; justify-content: center; gap: 48px;
  flex-wrap: wrap;
}
.client-slot{ display: flex; flex-direction: column; align-items: center; gap: 8px; }
.client-slot image-slot{ filter: grayscale(1) contrast(0.9); opacity: 0.75; transition: filter .3s, opacity .3s; }
.client-slot:hover image-slot{ filter: none; opacity: 1; }
.client-slot .client-name{
  font-family: var(--body); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--mid);
}
.client-logo{
  font-family: var(--display); font-size: 22px; font-weight: 400;
  color: var(--light);
  letter-spacing: 0.02em;
  transition: color 0.3s;
  white-space: nowrap;
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
}
.client-logo:hover{ color: var(--mid); }
.client-logo .placeholder-bar{
  width: 10px; height: 1px; background: currentColor; opacity: 0.5;
}

/* ─── sections ─────────────────────────────────────────────────────────── */
section{ position: relative; }
.section{ padding: 110px 60px; }
.section-tight{ padding: 72px 60px; }

.section-head{
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end;
  margin-bottom: 56px;
}
.section-head h2{ margin-top: 18px; }

/* ─── platform (was Solution) ───────────────────────────────────────── */
.platform-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.platform-left{ position: sticky; top: 120px; }
.steps{ margin-top: 36px; display: flex; flex-direction: column; }
.step{
  display: flex; gap: 20px; padding: 22px 0;
  border-top: 1px solid var(--border);
  align-items: flex-start;
}
.step:last-child{ border-bottom: 1px solid var(--border); }
.step-num{
  font-family: var(--display); font-size: 32px; font-weight: 300;
  color: var(--border-2);
  flex-shrink: 0; line-height: 1; margin-top: 2px;
  transition: color 0.3s;
}
.step:hover .step-num{ color: var(--orange); }
.step strong{
  display:block; font-family: var(--body); font-size: 14px; font-weight: 500;
  color: var(--charcoal); margin-bottom: 4px;
}
.step span{ font-family: var(--body); font-size: 13px; color: var(--mid); line-height: 1.65; }

.cap-stack{ display: flex; flex-direction: column; gap: 2px; padding-top: 8px; }
.cap{
  background: var(--white);
  border: 1px solid var(--border);
  padding: 28px;
  display: flex; gap: 18px; align-items: flex-start;
  position: relative; overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
/* faint oversized topic graphic in each card's corner */
.cap-bg{
  position: absolute; right: -28px; bottom: -44px;
  color: var(--orange); opacity: 0.06;
  pointer-events: none; user-select: none;
  transform: rotate(-6deg);
  transition: opacity 0.3s, transform 0.3s;
}
.cap-bg svg{ display: block; width: 160px; height: 160px; }
.cap:hover .cap-bg{ opacity: 0.11; transform: rotate(0deg) scale(1.04); }
.cap > div:not(.cap-bg){ position: relative; z-index: 1; }
.cap:hover{ border-color: rgba(232,97,26,0.4); box-shadow: 0 8px 28px rgba(0,0,0,0.06); transform: translateX(4px); }
.cap-icon{ color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.cap-title{ font-family: var(--body); font-size: 14px; font-weight: 500; color: var(--charcoal); margin-bottom: 4px; }
.cap-body{ font-family: var(--body); font-size: 13px; color: var(--mid); line-height: 1.65; }

/* ─── BI section (dark) ────────────────────────────────────────────────── */
.bi-section{ background: var(--charcoal); color: #fff; padding: 110px 0; }
.bi-section h2{ color: #fff; }
.bi-section .lead{ color: rgba(255,255,255,0.5); }

.bi-shell{
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
}
.bi-head{
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 22px; border-bottom: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.02);
}
.bi-head .l{ display:flex; align-items:center; gap: 14px; }
.bi-head .title{ font-family: var(--display); font-size: 18px; color: #fff; font-weight: 400; }
.bi-head .crumb{ font-family: var(--body); font-size: 11px; letter-spacing: 0.06em; color: rgba(255,255,255,0.4); text-transform: uppercase; }
.bi-head .filters{ display:flex; gap: 6px; }

.filter-pill{
  font-family: var(--body); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.12);
  background: transparent;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  transition: all .2s ease;
}
.filter-pill:hover{ border-color: rgba(255,255,255,0.35); color: #fff; }
.filter-pill.active{ background: var(--orange); border-color: var(--orange); color: #fff; }

.bi-sub{
  padding: 14px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex; gap: 6px; flex-wrap: wrap; align-items: center;
  background: rgba(255,255,255,0.015);
}
.bi-sub .lbl{ font-family: var(--body); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-right: 8px; }

.bi-grid{
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 12px;
  padding: 22px;
}
.kpi-tile{
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 2px;
  padding: 16px 18px;
}
.kpi-tile .l{ font-family: var(--body); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.kpi-tile .v{ font-family: var(--display); font-size: 40px; font-weight: 300; color: #fff; line-height: 1.05; margin-top: 4px; letter-spacing: -0.01em; }
.kpi-tile .v sup{ font-family: var(--body); font-size: 14px; color: rgba(255,255,255,0.4); margin-left: 2px; vertical-align: super; font-weight: 400; }
.kpi-tile .d{
  font-family: var(--body); font-size: 11.5px;
  color: rgba(120,220,150,0.92);
  margin-top: 4px;
  display: inline-flex; gap: 4px; align-items: center;
}
.kpi-tile .d.down{ color: rgba(232,120,80,0.95); }
.kpi-tile .spark{ margin-top: 10px; height: 28px; }

.bi-card{
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 2px;
  padding: 20px;
  position: relative;
}
.bi-card h4{ font-family: var(--display); font-size: 20px; font-weight: 400; color: #fff; }
.bi-card .sub{ font-family: var(--body); font-size: 11px; letter-spacing: 0.06em; color: rgba(255,255,255,0.4); text-transform: uppercase; margin-top: 4px; }

.legend{ display: flex; gap: 14px; font-family: var(--body); font-size: 11px; color: rgba(255,255,255,0.55); align-items: center; }
.legend .sw{ display:inline-flex; align-items:center; gap:6px; }
.legend .sq{ width: 10px; height: 10px; border-radius: 2px; display: inline-block; }

.heatmap{ display: grid; gap: 4px; margin-top: 16px; }
.heatmap .lbl{ font-family: var(--body); font-size: 10px; color: rgba(255,255,255,0.42); display: flex; align-items: center; justify-content: flex-end; padding-right: 6px; }
.heatmap .colhead{ font-family: var(--body); font-size: 10px; color: rgba(255,255,255,0.42); text-align: center; padding-bottom: 4px; letter-spacing: 0.04em; }
.heatmap .cell{ height: 28px; border-radius: 2px; }

.bi-foot{
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 22px; border-top: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.015);
}
.bi-foot .l{ font-family: var(--body); font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 0.04em; }
.bi-badge{ display:flex; align-items: center; gap: 8px; }
.bi-badge .box{ width: 18px; height: 18px; background: #F2C811; border-radius: 1.5px; }
.bi-badge .t{ font-family: var(--body); font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.42); letter-spacing: 0.04em; }

/* ─── reporting lines (was who-uses) ─────────────────────────────────── */
.reporting{ background: var(--cream); padding: 110px 60px; }
.rl-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.rl{
  background: var(--white);
  padding: 30px 26px;
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: default;
  display: flex; flex-direction: column; gap: 8px;
  min-height: 200px;
}
.rl::after{
  content:""; position:absolute; bottom:0; left:0; right:0;
  height: 2px; background: var(--orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.rl:hover{ border-color: rgba(232,97,26,0.3); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.06); }
.rl:hover::after{ transform: scaleX(1); }
.rl-icon{ color: var(--orange); margin-bottom: 6px; }
.rl-name{ font-family: var(--body); font-size: 14px; font-weight: 500; color: var(--charcoal); }
.rl-desc{ font-family: var(--body); font-size: 13px; color: var(--mid); line-height: 1.6; flex: 1; }
.rl-tag{
  font-family: var(--body); font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--light);
}

/* ─── data sources — radial hub ────────────────────────────────────────── */
.sources{ background: var(--cream-2); padding: 110px 60px; }

.radial{ margin-top: 40px; }
.radial-svg{ width: 100%; max-height: 720px; display: block; margin: 0 auto; }

@keyframes spokeflow{ from { stroke-dashoffset: 0; } to { stroke-dashoffset: -18; } }
.spoke-flow{ stroke-dashoffset: 0; animation: spokeflow 1.4s linear infinite; }
.hub-spin{ animation: ambspin 26s linear infinite; }
.hub-spin-rev{ animation: ambspin 42s linear infinite reverse; }
@media (prefers-reduced-motion: reduce){ .spoke-flow{ animation: none; opacity: 0.5; } .hub-spin, .hub-spin-rev{ animation: none; } }

/* mobile fallback — hidden on desktop */
.hub-mobile{ display: none; }
.hub-core{
  background: radial-gradient(120% 100% at 50% 20%, #33302B 0%, #211F1C 55%, #161513 100%);
  color: #fff;
  width: min(300px, 78vw); aspect-ratio: 1; border-radius: 50%;
  margin: 0 auto;
  border: 1px solid rgba(232,97,26,0.3);
  box-shadow: 0 0 46px -6px rgba(232,97,26,0.35), inset 0 0 0 10px rgba(255,255,255,0.03);
  padding: 20px; text-align: center;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
}
.hub-core-kicker{ font-family: var(--mono); font-size: 10px; letter-spacing: 0.24em; color: rgba(255,255,255,0.5); display: block; }
.hub-core-title{ font-family: var(--display); font-size: 27px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.15; display: block; max-width: 9ch; }
.hub-core-title em{ font-style: normal; color: var(--orange-2); }
.hub-core-chips{ display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; margin-top: 8px; }
.hub-core-chips span{ font-family: var(--mono); font-size: 10.5px; padding: 4px 9px; border-radius: 999px; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.8); }
/* trunk: rises from the list up into the hub circle; dashes flow upward */
.hub-list{ list-style: none; display: grid; grid-template-columns: 1fr 1fr; column-gap: 34px; row-gap: 12px; position: relative; margin-top: 54px; }
.hub-list::before{
  content: ""; position: absolute; left: 50%; top: -54px; bottom: 8px; width: 1px;
  transform: translateX(-0.5px); background: var(--border-2);
}
.hub-list::after{
  content: ""; position: absolute; left: 50%; top: -54px; bottom: 8px; width: 2px;
  transform: translateX(-1px);
  background: repeating-linear-gradient(to top, var(--orange) 0 5px, transparent 5px 16px);
  opacity: 0.75; animation: trunkflow 1.6s linear infinite;
}
@keyframes trunkflow{ from{ background-position: 0 0; } to{ background-position: 0 -16px; } }

.hub-list li{
  display: flex; align-items: center; gap: 10px; position: relative; z-index: 1;
  background: #fff; border: 1px solid var(--border); border-radius: 10px;
  padding: 13px 14px; font-size: 13.5px; color: var(--charcoal); line-height: 1.25;
  animation: cardglow 6.5s ease-in-out infinite;
}
/* branch from each card to the central trunk */
.hub-list li::after{
  content: ""; position: absolute; top: 50%; width: 17px; height: 1px; background: var(--border-2);
}
.hub-list li:nth-child(odd)::after{ right: -17px; }
.hub-list li:nth-child(even)::after{ left: -17px; }
@keyframes cardglow{
  0%, 82%, 100%{ box-shadow: 0 0 0 0 rgba(232,97,26,0); border-color: var(--border); }
  88%{ box-shadow: 0 0 20px -2px rgba(232,97,26,0.5); border-color: rgba(232,97,26,0.55); }
}
@media (prefers-reduced-motion: reduce){
  .hub-list::after{ animation: none; }
  .hub-list li{ animation: none; }
}
.hub-list-ico{ color: var(--orange); flex-shrink: 0; display: inline-flex; }

/* below 880px the radial labels get too small — switch to the stacked fallback */
@media (max-width: 880px){
  .radial{ display: none; }
  .hub-mobile{ display: block; }
}
@media (max-width: 440px){
  .hub-core-title{ font-size: 24px; }
}

/* ─── automation / pipeline ────────────────────────────────────────────── */
.automation{
  background: var(--charcoal); color: #fff;
  padding: 110px 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.automation h2{ color: #fff; }
.automation .lead{ color: rgba(255,255,255,0.5); }
.auto-points{ display: flex; flex-direction: column; gap: 22px; margin-top: 36px; }
.apt{ display: flex; gap: 14px; align-items: flex-start; }
.apt-icon{
  width: 34px; height: 34px;
  border: 1px solid rgba(232,97,26,0.3); border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange-2); flex-shrink: 0;
}
.apt-title{ font-family: var(--body); font-size: 14px; font-weight: 500; color: #fff; margin-bottom: 3px; }
.apt-body{ font-family: var(--body); font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; }

.pbi-card{ background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09); border-radius: 3px; overflow: hidden; }
.pbi-bar{ padding: 14px 22px; border-bottom: 1px solid rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: space-between; }
.pbi-bar-title{ font-family: var(--body); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.32); }
.pbi-status{ display: flex; align-items: center; gap: 6px; font-family: var(--body); font-size: 11px; color: rgba(100,220,130,0.85); letter-spacing: 0.04em; }
.pbi-status::before{ content:""; width: 6px; height: 6px; border-radius: 50%; background: rgba(100,220,130,0.85); animation: blink 2.5s infinite; }
@keyframes blink { 0%,100% { opacity: 1 } 50% { opacity: 0.3 } }
.pbi-steps{ padding: 22px; display: flex; flex-direction: column; gap: 6px; }
.pbi-step{
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 2px;
  transition: background 0.3s, border-color 0.3s;
}
.pbi-step:hover{ background: rgba(232,97,26,0.07); border-color: rgba(232,97,26,0.2); }
.pbi-step-icon{ color: var(--orange-2); flex-shrink: 0; opacity: 0.78; }
.pbi-step-text strong{ display: block; font-family: var(--body); font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.85); margin-bottom: 1px; }
.pbi-step-text span{ font-family: var(--body); font-size: 12px; color: rgba(255,255,255,0.42); }
.pbi-divider{ text-align: center; color: rgba(255,255,255,0.18); font-size: 14px; padding: 2px 0; }
.pbi-foot{ padding: 14px 22px; border-top: 1px solid rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: space-between; }
.pbi-foot .t{ font-family: var(--body); font-size: 11px; color: rgba(255,255,255,0.32); }

/* ─── proof / testimonial ──────────────────────────────────────────────── */
.proof{ background: var(--charcoal); color: #fff; padding: 80px 60px; }
.proof-inner{ display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: var(--content); margin: 0 auto; }
.proof-stats{ display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid rgba(255,255,255,0.08); }
.pstat{ padding: 32px 26px; border-right: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
.pstat:nth-child(2),.pstat:nth-child(4){ border-right: none; }
.pstat:nth-child(3),.pstat:nth-child(4){ border-bottom: none; }
.pstat-num{ font-family: var(--display); font-size: 48px; font-weight: 300; color: #fff; line-height: 1; margin-bottom: 8px; letter-spacing: -0.01em; }
.pstat-num em{ font-style: normal; color: var(--orange); }
.pstat-label{ font-family: var(--body); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.proof-mark{ font-family: var(--display); font-size: 64px; color: var(--orange); line-height: 0.6; opacity: 0.3; margin-bottom: 18px; }
.proof-text{ font-family: var(--display); font-size: clamp(18px, 1.8vw, 24px); font-style: italic; font-weight: 300; color: #fff; line-height: 1.55; margin-bottom: 20px; }
.proof-author{ font-family: var(--body); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); line-height: 1.7; }
.proof-author strong{ color: rgba(255,255,255,0.7); font-weight: 500; display: block; margin-bottom: 2px; letter-spacing: 0.06em; }

/* ─── global strip ─────────────────────────────────────────────────────── */
.global{
  background: var(--cream);
  padding: 44px 60px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.global-left{ display:flex; align-items:center; gap: 14px; }
.global-dot{ width: 7px; height: 7px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
.global-text{ font-family: var(--display); font-size: 22px; font-weight: 300; }
.global-text em{ font-style: italic; color: var(--orange); }
.global-cities{ display: flex; gap: 6px; flex-wrap: wrap; }
.city{
  font-family: var(--body); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--mid);
  padding: 7px 14px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--white);
}

/* ─── contact ──────────────────────────────────────────────────────────── */
.contact{ background: var(--white); padding: 110px 60px; }
.contact-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 80px; max-width: var(--content); margin: 0 auto; }
.contact-form{ display: flex; flex-direction: column; gap: 18px; }
.field{ display: flex; flex-direction: column; gap: 6px; }
.field label{ font-family: var(--body); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--light); font-weight: 500; }
.field input, .field textarea, .field select{
  appearance: none; font: inherit; color: var(--charcoal);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 13px 14px;
  font-family: var(--body); font-size: 15px;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
.field textarea{ min-height: 110px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus{
  outline: none; border-color: var(--orange); background: #fff;
  box-shadow: 0 0 0 3px rgba(232,97,26,0.1);
}
.field .err{ color: var(--red); font-size: 11px; }
.chip-row{ display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.chip-tog{
  font-family: var(--body); font-size: 12px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  background: var(--cream);
  border-radius: 2px;
  color: var(--mid);
  cursor: pointer;
  transition: all 0.15s ease;
}
.chip-tog:hover{ border-color: var(--charcoal); color: var(--charcoal); }
.chip-tog.active{ background: var(--charcoal); border-color: var(--charcoal); color: #fff; }
.contact-meta{ display:flex; flex-direction: column; gap: 28px; }
.contact-meta .row .l{ font-family: var(--body); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--light); font-weight: 500; }
.contact-meta .row .v{ font-family: var(--display); font-size: 22px; font-weight: 400; margin-top: 6px; line-height: 1.4; display: block; }
.contact-success{
  padding: 28px; border: 1px solid var(--orange);
  background: var(--orange-tint);
  border-radius: 2px;
}

/* ─── CTA ──────────────────────────────────────────────────────────────── */
.cta{ background: var(--charcoal); color: #fff; padding: 120px 60px; text-align: center; position: relative; overflow: hidden; }
.cta::before{
  content:""; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 720px; height: 720px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,97,26,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner{ position: relative; z-index: 1; max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.cta-inner h2{ color: #fff; margin-top: 20px; }
.cta-inner h2 em{ color: var(--orange-2); }
.cta-inner .lead{ color: rgba(255,255,255,0.5); margin: 24px auto 44px; }
.cta-actions{ display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── footer ───────────────────────────────────────────────────────────── */
footer.foot{
  background: var(--charcoal);
  color: rgba(255,255,255,0.4);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 40px 60px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.foot-logo{
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  line-height: 1;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: -0.025em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.foot-logo .mark{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  width: 22px; height: 22px;
  flex-shrink: 0;
}
.foot-logo .mark svg{ display:block; width:22px; height:22px; }
.foot-logo > span:not(.mark){ display: inline-block; line-height: 1; transform: translateY(-0.06em); }
.foot-logo .o{ color: var(--orange); }
/* SIMPLE.SPACE home text link in nav — shown via tweak */
.nav-links .nav-home-li{ display: none; }
body[data-nav-home="show"] .nav-links .nav-home-li{ display: block; }
/* logo accent variant — ".space" in orange, switchable via tweaks */
body[data-logo-accent="space"] .logo .sp,
body[data-logo-accent="space"] .foot-logo .sp{ color: var(--orange); }
.foot-links{ display: flex; gap: 28px; flex-wrap: wrap; }
.foot-links a{ font-family: var(--body); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.32); transition: color 0.2s; }
.foot-links a:hover{ color: var(--orange); }
.foot-copy{ font-family: var(--body); font-size: 11px; letter-spacing: 0.04em; color: rgba(255,255,255,0.25); }

/* silos graphic */
.silos{
  margin: 0 0 72px;
  position: relative; z-index: 1;
}
.silos-caption{
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 24px;
}
.silos-caption-line{ flex: 1; height: 1px; background: rgba(255,255,255,0.1); }
.silos-row{
  display: flex; align-items: stretch; gap: 0;
  width: 100%;
}
.silo{
  flex: 1; min-width: 0;
  display: flex; flex-direction: column;
  border: 1px dashed rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.018);
  border-radius: 2px;
  transition: background .25s, border-color .25s;
}
.silo:hover{ background: rgba(255,255,255,0.035); border-color: rgba(255,255,255,0.28); }

.silo-cap{
  padding: 18px 16px 14px;
  border-bottom: 1px dashed rgba(255,255,255,0.1);
  display: flex; flex-direction: column; gap: 4px;
  background: rgba(255,255,255,0.015);
}
.silo-icon{
  color: rgba(255,255,255,0.55);
  width: 22px; height: 22px;
  margin-bottom: 4px;
}
.silo-icon svg{ width: 22px; height: 22px; }
.silo-vendor{
  font-family: var(--display);
  font-size: 18px; font-weight: 400; font-style: italic;
  color: rgba(255,255,255,0.78);
  letter-spacing: -0.005em;
  line-height: 1.1;
}
.silo-kind{
  font-family: var(--body);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 2px;
}

.silo-tower{
  flex: 1;
  padding: 18px 16px 14px;
  display: flex; flex-direction: column; gap: 8px;
}
.silo-metric{
  font-family: var(--display);
  font-size: 30px; font-weight: 300;
  color: rgba(255,255,255,0.88);
  line-height: 1; letter-spacing: -0.01em;
}
.silo-metric-label{
  font-family: var(--body);
  font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.silo-chart{ margin-top: 8px; }
.silo-lock{
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed rgba(255,255,255,0.08);
  display: inline-flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.3);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* break between silos */
.silo-break{
  flex: 0 0 28px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  align-self: stretch;
}
.silo-break::before,
.silo-break::after{
  content:""; position: absolute;
  left: 50%; transform: translateX(-50%);
  width: 1px;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.18) 0 4px,
    transparent 4px 8px
  );
}
.silo-break::before{ top: 8px; bottom: 50%; margin-bottom: 14px; }
.silo-break::after{  top: 50%;  bottom: 8px; margin-top: 14px; }
.silo-break-x{
  position: relative;
  font-family: var(--body);
  font-size: 16px; font-weight: 500;
  color: rgba(232,97,26,0.55);
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(232,97,26,0.35);
  border-radius: 50%;
  background: var(--charcoal);
}

.silos-foot{
  margin-top: 22px;
  font-family: var(--display);
  font-size: 18px; font-weight: 300;
  color: rgba(255,255,255,0.55);
  text-align: center;
}
.silos-foot em{ font-style: italic; color: rgba(255,255,255,0.85); }

@media (max-width: 980px){
  .silos-row{ flex-wrap: wrap; gap: 12px 0; }
  .silo{ flex: 1 1 calc(50% - 18px); }
  .silo-break{ display: none; }
}
@media (max-width: 600px){
  .silo{ flex: 1 1 100%; }
}

/* ─── product visual (Platform page) ───────────────────────────────────── */
.product-viz{ padding: 110px 60px; background: var(--cream); }
.pv-frame{
  max-width: 1080px; margin: 56px auto 0;
  background: #fff;
  border: 1px solid rgba(31,29,27,0.12);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(31,29,27,0.25);
}
.pv-chrome{
  display: flex; align-items: center; gap: 7px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(31,29,27,0.1);
  background: rgba(31,29,27,0.025);
}
.pv-dot{ width: 10px; height: 10px; border-radius: 50%; background: rgba(31,29,27,0.14); }
.pv-url{ margin-left: 12px; font-size: 11px; color: rgba(31,29,27,0.45); letter-spacing: 0.06em; }
.pv-body{ display: flex; min-height: 380px; }
.pv-side{
  flex: 0 0 172px;
  background: var(--charcoal);
  padding: 18px 0;
  display: flex; flex-direction: column; gap: 2px;
}
.pv-nav{
  padding: 10px 20px;
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.55);
  border-left: 3px solid transparent;
}
.pv-nav.active{ color: #fff; border-left-color: var(--orange); background: rgba(255,255,255,0.05); }
.pv-main{ flex: 1; padding: 26px; position: relative; }

.fp-mock{ position: relative; height: 100%; }
.fp-plan{ display: block; width: 100%; height: auto; background: #fcfbf9; border-radius: 8px; }
.fp-lines rect, .fp-lines line, .fp-lines path, .fp-lines circle{
  fill: none; stroke: rgba(31,29,27,0.3); stroke-width: 1.6;
}
.fp-lines > rect:first-child{ stroke-width: 2.4; }
.fp-desks rect{ fill: rgba(31,29,27,0.06); stroke: rgba(31,29,27,0.18); stroke-width: 0.8; }
.fp-overlay rect{ stroke-width: 1.4; }
.fp-overlay .z-a{ fill: rgba(238,76,22,0.28);  stroke: rgba(238,76,22,0.85); }
.fp-overlay .z-b{ fill: rgba(42,111,219,0.18); stroke: rgba(42,111,219,0.6); }
.fp-overlay .z-c{ fill: rgba(31,29,27,0.14);   stroke: rgba(31,29,27,0.45); }
.fp-overlay .z-d{ fill: rgba(233,178,30,0.24); stroke: rgba(180,132,10,0.65); }
.fp-overlay .z-e{ fill: rgba(31,138,91,0.16);  stroke: rgba(31,138,91,0.55); }
.fp-overlay text{
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em;
  fill: rgba(31,29,27,0.72);
}
.fp-callout{
  position: absolute; top: 18px; right: 18px;
  background: var(--charcoal); color: #fff;
  border-radius: 10px;
  padding: 14px 16px;
  box-shadow: 0 18px 36px -16px rgba(31,29,27,0.5);
  min-width: 200px;
}
.fp-callout-name{
  font-family: var(--display); font-size: 15px; font-weight: 600;
  padding-bottom: 10px; margin-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.fp-callout-rows{ display: flex; gap: 18px; }
.fp-callout-rows > div{ display: flex; flex-direction: column; }
.fp-callout-rows b{ font-family: var(--display); font-size: 17px; font-weight: 600; color: var(--orange-2, var(--orange)); }
.fp-callout-rows span{ font-family: var(--mono); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 3px; }
.pv-caption{
  text-align: center; margin-top: 26px;
  font-size: 11px; letter-spacing: 0.14em;
  color: rgba(31,29,27,0.4);
}

/* ─── feature grid (Platform page) ─────────────────────────────────────── */
.feature-grid-sec{ padding: 110px 60px; background: #fff; }
.fg-head{ text-align: left; margin-bottom: 56px; }
.fg-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(31,29,27,0.1);
  border: 1px solid rgba(31,29,27,0.1);
}
.fg-card{
  background: #fff;
  padding: 30px 26px 34px;
}
.fg-icon{ color: var(--orange); margin-bottom: 18px; }
.fg-icon svg{ width: 24px; height: 24px; }
.fg-card h3{
  font-family: var(--display);
  font-size: 18px; font-weight: 600;
  margin-bottom: 8px;
}
.fg-card p{
  font-size: 14px; line-height: 1.55;
  color: var(--mid);
}
@media (max-width: 1100px){
  .product-viz, .feature-grid-sec{ padding: 88px 36px; }
  .fg-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px){
  .product-viz, .feature-grid-sec{ padding: 72px 20px; }
  .pv-side{ display: none; }
  .fp-callout{ position: static; margin-top: 14px; min-width: 0; }
  .pv-main{ padding: 16px; }
  .fg-grid{ grid-template-columns: 1fr; }
}

/* ─── difference / competitive ─────────────────────────────────────────── */
.difference{
  background: var(--charcoal);
  color: #fff;
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
}
.difference::before{
  content:""; position: absolute;
  top: 20%; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,97,26,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.diff-head{ position: relative; z-index: 1; margin-bottom: 72px; max-width: 760px; }
.diff-head h2{ color: #fff; font-family: var(--display); }
.diff-head .lead{ color: rgba(255,255,255,0.55); }

.diff-grid{
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  align-items: stretch;
  position: relative;
  z-index: 1;
}
.diff-col{
  padding: 36px 40px;
  display: flex; flex-direction: column; gap: 22px;
  border: 1px solid rgba(255,255,255,0.08);
}
.diff-them{
  background: rgba(255,255,255,0.015);
}
.diff-them ul li{ color: rgba(255,255,255,0.42); text-decoration: line-through; text-decoration-color: rgba(232,97,26,0.4); text-decoration-thickness: 1px; }
.diff-us{
  background: rgba(232,97,26,0.06);
  border-color: rgba(232,97,26,0.25);
}
.diff-us ul li{ color: rgba(255,255,255,0.92); }

.diff-col-label{
  display: flex; gap: 14px; align-items: flex-start;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.diff-col-title{
  font-family: var(--body);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.diff-them .diff-col-title{ color: rgba(255,255,255,0.5); }
.diff-col-sub{
  font-family: var(--display); font-size: 18px;
  font-weight: 300; font-style: italic;
  color: rgba(255,255,255,0.8);
  margin-top: 6px;
  line-height: 1.3;
}
.diff-them .diff-col-sub{ color: rgba(255,255,255,0.4); }

.diff-mark{
  width: 28px; height: 28px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--body); font-size: 14px; font-weight: 500;
  flex-shrink: 0;
}
.diff-mark.them{ background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.4); border: 1px solid rgba(255,255,255,0.1); }
.diff-mark.us{ background: var(--orange); color: #fff; }

.diff-col ul{
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
}
.diff-col ul li{
  font-family: var(--body); font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.diff-col ul li:first-child{ border-top: none; padding-top: 6px; }

.diff-divider{
  display: flex; flex-direction: column; align-items: center;
  gap: 14px;
  padding: 30px 0;
}
.diff-divider-line{
  flex: 1; width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.15), transparent);
  min-height: 80px;
}
.diff-divider-vs{
  font-family: var(--display);
  font-style: italic; font-size: 22px;
  color: var(--orange);
  letter-spacing: -0.01em;
}

.diff-foot{
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  position: relative; z-index: 1;
}
.diff-foot-top{
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  text-align: left;
  margin-bottom: 56px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.diff-foot-top p{ max-width: 60ch; margin: 0; }
.diff-foot p{
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
  max-width: 36ch;
  margin: 0 auto;
}
.diff-foot p em{
  font-style: italic;
  color: #fff;
}

@media (max-width: 1100px){
  .difference{ padding: 96px 36px; }
}
@media (max-width: 900px){
  .diff-grid{ grid-template-columns: 1fr; }
  .diff-divider{ flex-direction: row; padding: 14px 0; gap: 14px; }
  .diff-divider-line{ height: 1px; min-height: 0; width: auto; background: linear-gradient(to right, transparent, rgba(255,255,255,0.15), transparent); }
}
@media (max-width: 767px){
  .difference{ padding: 72px 20px; }
  .diff-head{ margin-bottom: 48px; }
  .diff-col{ padding: 28px 24px; }
}

/* ─── reveal animations ────────────────────────────────────────────────── */
@keyframes risein{ from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes upin{ from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.rise{ animation: risein 0.9s var(--ease) both; }

.reveal{ opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.on{ opacity: 1; transform: translateY(0); }

@keyframes flowdash{ to { stroke-dashoffset: -80; } }
.flow path{ animation: flowdash 4s linear infinite; }

@keyframes pulse{ 0%, 100% { opacity: .35 } 50% { opacity: 1 } }
.pulse{ animation: pulse 2.4s ease-in-out infinite; }

/* ─── responsive ───────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .wrap{ padding: 0 36px; }
  .nav-shell{ padding: 22px 36px; }
  .nav-shell.scrolled{ padding: 14px 36px; }
  .hero-content{ padding: 0 36px 64px; gap: 36px; }
  .clients{ padding: 36px; }
  .clients-logos{ gap: 36px; }
  .section{ padding: 88px 36px; }
  .platform-grid{ gap: 60px; }
  .automation{ padding: 88px 36px; gap: 56px; }
  .reporting{ padding: 88px 36px; }
  .rl-grid{ grid-template-columns: repeat(2, 1fr); }
  .proof{ padding: 72px 36px; }
  .global{ padding: 36px; }
  .cta{ padding: 96px 36px; }
  footer.foot{ padding: 32px 36px; }
  .sources{ padding: 88px 36px; }
  .contact{ padding: 88px 36px; }
}
@media (max-width: 900px) {
  .hero-content{ grid-template-columns: 1fr; }
  .flow-card{ display: none; }
  .platform-grid{ grid-template-columns: 1fr; gap: 48px; }
  .platform-left{ position: static; }
  /* stacked: intro text + steps read first, capability cards after */
  .platform-grid .cap-stack{ order: 2; }
  .platform-grid .platform-left{ order: 1; }
  .automation{ grid-template-columns: 1fr; gap: 48px; }
  .proof-inner{ grid-template-columns: 1fr; gap: 48px; }
  .section-head{ grid-template-columns: 1fr; gap: 24px; margin-bottom: 36px; }
  .contact-grid{ grid-template-columns: 1fr; gap: 48px; }
}
/* nav collapses to hamburger-only earlier than the rest of the mobile styles —
   mid widths (tablets / landscape phones) drop the inline links */
@media (max-width: 1000px) {
  .nav-links{ display: none; }
}
@media (max-width: 767px) {
  .wrap{ padding: 0 20px; }
  .bi-section{ padding: 64px 0; }
  .bi-section .wrap{ padding: 0 10px; }
  .bi-app .bi-grid{ padding: 12px 10px; gap: 10px; }
  .nav-shell{ padding: 18px 20px; }
  .nav-shell.scrolled{ padding: 13px 20px; }
  .logo{ font-size: 19px; }
  .hero-content{ padding: 0 20px 52px; }
  .hero h1{ font-size: clamp(34px, 9vw, 48px); }
  .hero h1 .hero-line-1{ font-size: min(1em, 8.2vw); }
  .hero-actions{ flex-direction: column; align-items: stretch; gap: 10px; }
  .clients{ padding: 28px 20px; }
  .clients-logos{ gap: 24px; }
  .section{ padding: 64px 20px; }
  .automation{ padding: 64px 20px; }
  .reporting{ padding: 64px 20px; }
  .rl-grid{ grid-template-columns: 1fr; }
  .proof{ padding: 56px 20px; }
  .pstat{ padding: 22px 16px; }
  .pstat-num{ font-size: 36px; }
  .global{ padding: 28px 20px; flex-direction: column; align-items: flex-start; gap: 16px; }
  .cta{ padding: 80px 20px; }
  .cta-actions{ flex-direction: column; align-items: stretch; }
  footer.foot{ padding: 28px 20px; flex-direction: column; text-align: center; }
  .foot-links{ justify-content: center; }
  .bi-grid{ grid-template-columns: 1fr 1fr; }
  .sources{ padding: 64px 20px; }
  .contact{ padding: 64px 20px; }
}

/* ═══════════════════════════════════════════════════════════════════════
   Ported v1 sections (Problem · Solution · BI demo · Differentiation)
   Fully namespaced under .v1port so they keep their original v1 look and
   never collide with v2's dark BI / difference classes.
   ═════════════════════════════════════════════════════════════════════ */
.v1port{
  --bg:#FAFAF6; --bg-2:#F2F1EC; --bg-3:#ECEAE3;
  --ink:#0E0F0C; --ink-2:#2A2B27; --ink-3:#595955; --ink-4:#8A8A84;
  --line:#E4E1D8; --line-2:#D6D3C7;
  --orange:#EE4C16; --orange-2:#FF6A33; --orange-tint:#FFF1E7; --orange-soft:#FFE4D6;
  --green:#1F7A4D; --red:#B23A1D;
}
/* primitives (scoped to v1 look) */
.v1port.section{ padding:120px 0; }
.v1port .eyebrow{ display:inline-flex; align-items:center; gap:8px; font-family:'JetBrains Mono',monospace; font-size:11px; letter-spacing:0.08em; text-transform:uppercase; color:var(--ink-4); }
.v1port .eyebrow::before{ content:""; width:6px; height:6px; background:var(--orange); border-radius:50%; }
.v1port .eyebrow .line{ display:none; }
.v1port .h-section{ font-family:'Manrope',sans-serif; font-size:clamp(36px,4.6vw,64px); line-height:1.02; letter-spacing:-0.028em; font-weight:700; color:var(--ink); text-wrap:balance; }
.v1port .h-card{ font-family:'Manrope',sans-serif; font-size:22px; line-height:1.2; letter-spacing:-0.015em; font-weight:700; color:var(--ink); }
.v1port .lead{ font-size:19px; line-height:1.5; color:var(--ink-3); max-width:60ch; font-weight:400; }
.v1port .mono{ font-family:'JetBrains Mono',monospace; font-size:12px; letter-spacing:0.02em; }

/* Problem */
.v1port.problem{ background:var(--ink); color:var(--bg); }
.v1port.problem h2{ color:var(--bg); }
.v1port.problem p{ color:rgba(250,250,246,.7); }
.v1port.problem .eyebrow{ color:rgba(250,250,246,.55); }
.v1port.problem .chips{ display:flex; flex-wrap:wrap; gap:8px; margin-top:40px; max-width:900px; }
.v1port.problem .chip{ font-family:'JetBrains Mono',monospace; font-size:12px; padding:8px 14px; border-radius:999px; border:1px solid rgba(250,250,246,.18); color:rgba(250,250,246,.85); }
.v1port.problem .chip.live{ border-color:var(--orange); color:var(--orange); }
.v1port.problem .chip.mute{ opacity:.42; }

/* Solution */
.v1port .cards-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.v1port .cap-card{ background:var(--bg); border:1px solid var(--line); border-radius:18px; padding:28px; display:flex; flex-direction:column; gap:14px; min-height:320px; transition:all .25s ease; }
.v1port .cap-card:hover{ transform:translateY(-3px); border-color:var(--ink); box-shadow:0 12px 32px -16px rgba(15,15,12,.18); }
.v1port .cap-card .idx{ font-family:'JetBrains Mono',monospace; font-size:11px; color:var(--ink-4); }
.v1port .cap-card .body{ color:var(--ink-3); flex:1; }
.v1port .cap-card .more{ font-family:'Manrope',sans-serif; font-weight:600; font-size:14px; color:var(--orange); display:inline-flex; align-items:center; gap:6px; cursor:pointer; }
.v1port .cap-card .ico{ width:56px; height:56px; border-radius:12px; background:var(--orange-tint); display:flex; align-items:center; justify-content:center; color:var(--orange); border:1px solid var(--orange-soft); }

/* BI demo */
.v1port.bi{ background:var(--bg-2); }
.v1port .bi-stack{ position:relative; padding:32px 0 0; display:flex; align-items:center; justify-content:center; gap:24px; }
.v1port .bi-stack > .bi-app{ position:relative; z-index:3; flex:0 0 auto; width:min(880px,64%); }
.v1port .bi-ghost{ position:relative; flex:0 0 auto; width:26%; pointer-events:none; user-select:none; opacity:.65; filter:saturate(0.75); z-index:2; transform:scale(0.95); transform-origin:center; }
.v1port .bi-ghost::after{ content:""; position:absolute; inset:0; background:linear-gradient(to bottom, transparent 0%, transparent 24%, var(--bg-2) 92%); pointer-events:none; border-radius:18px; }
.v1port .bi-app{ background:var(--bg); border:1px solid var(--line); border-radius:18px; overflow:hidden; box-shadow:0 12px 32px -16px rgba(15,15,12,.18); }
.v1port .bi-head{ display:flex; align-items:center; justify-content:space-between; padding:14px 20px; border-bottom:1px solid var(--line); background:var(--bg); }
.v1port .bi-head .l{ display:flex; align-items:center; gap:14px; }
.v1port .bi-head .title{ font-family:'Manrope',sans-serif; font-weight:700; font-size:15px; color:var(--ink); }
.v1port .bi-head .crumb{ font-family:'JetBrains Mono',monospace; font-size:11px; color:var(--ink-4); text-transform:none; letter-spacing:0; }
.v1port .bi-head .filters{ display:flex; gap:6px; }
.v1port .filter-pill{ font-family:'JetBrains Mono',monospace; font-size:11px; padding:6px 12px; border-radius:999px; border:1px solid var(--line); background:var(--bg); color:var(--ink-3); cursor:pointer; transition:all .15s ease; text-transform:none; letter-spacing:0; }
.v1port .filter-pill:hover{ border-color:var(--ink-2); color:var(--ink); }
.v1port .filter-pill.active{ background:var(--ink); color:var(--bg); border-color:var(--ink); }
.v1port .bi-grid{ display:grid; grid-template-columns:repeat(12,1fr); gap:14px; padding:20px; }
.v1port .kpi-tile{ background:var(--bg); border:1px solid var(--line); border-radius:10px; padding:16px 18px; }
.v1port .kpi-tile .l{ font-family:'JetBrains Mono',monospace; font-size:10px; color:var(--ink-4); text-transform:uppercase; letter-spacing:0; }
.v1port .kpi-tile .v{ font-family:'Manrope',sans-serif; font-size:34px; font-weight:700; letter-spacing:-0.02em; line-height:1.1; margin-top:4px; color:var(--ink); }
.v1port .kpi-tile .d{ font-size:12px; color:var(--green); margin-top:4px; display:inline-flex; gap:4px; align-items:center; }
.v1port .kpi-tile .d.down{ color:var(--red); }
.v1port .bi-card{ background:var(--bg); border:1px solid var(--line); border-radius:10px; padding:18px; position:relative; }
.v1port .bi-card h4{ font-size:14px; font-family:'Manrope',sans-serif; font-weight:600; color:var(--ink); }
.v1port .bi-card .sub{ font-family:'JetBrains Mono',monospace; font-size:10.5px; color:var(--ink-4); text-transform:uppercase; margin-top:4px; letter-spacing:0; }

/* Differentiation */
.v1port .diff{ background:var(--ink); color:var(--bg); border-radius:28px; padding:80px 60px; margin:0; }
.v1port .diff h2{ color:var(--bg); }
.v1port .diff .eyebrow{ color:rgba(250,250,246,.55); }
.v1port .diff .lead{ color:rgba(250,250,246,.7); }
.v1port .diff-grid{ display:grid; grid-template-columns:1fr 1fr; gap:60px; margin-top:48px; }
.v1port .diff-col h4{ font-family:'JetBrains Mono',monospace; font-size:11px; text-transform:uppercase; color:rgba(250,250,246,.55); font-weight:500; margin-bottom:16px; padding:0; border:none; }
.v1port .diff-col ul{ list-style:none; margin:0; padding:0; display:block; }
.v1port .diff-col li{ padding:14px 0; border-top:1px solid rgba(250,250,246,.1); display:flex; align-items:center; gap:14px; font-size:16px; font-family:'Manrope',sans-serif; }
.v1port .diff-col li:first-child{ border-top:none; padding-top:14px; }
.v1port .diff-col .mark{ width:18px; height:18px; border-radius:50%; border:1px solid rgba(250,250,246,.25); display:inline-flex; align-items:center; justify-content:center; font-size:11px; flex-shrink:0; background:transparent; color:rgba(250,250,246,.6); }
.v1port .diff-col.is .mark{ background:var(--orange); border-color:var(--orange); color:#fff; }
.v1port .diff-col.is li{ color:var(--bg); font-weight:500; }
.v1port .diff-col.isnt li{ color:rgba(250,250,246,.5); }

@media (max-width:980px){
  .v1port .bi-stack{ padding:0; flex-direction:column; gap:0; }
  .v1port .bi-stack > .bi-app{ width:100%; }
  .v1port .bi-ghost{ display:none; }
  .v1port .cards-3{ grid-template-columns:1fr; }
  .v1port .diff{ padding:48px 28px; }
  .v1port .diff-grid{ grid-template-columns:1fr; gap:32px; }
  .v1port .bi-grid{ grid-template-columns:1fr 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════
   Mobile polish — overflow safety, readable BI dashboards, touch targets
   ═════════════════════════════════════════════════════════════════════ */

/* never let a stray wide element scroll the page sideways; stop iOS auto-zoom */
html{ -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body{ overflow-x: hidden; }

@media (max-width: 640px){
  /* ── BI dashboards (both v2 and ported v1) ──
     The KPI tiles carry desktop `grid-column: span 3` inline. On a phone that
     clamps awkwardly and the big numbers collide. Force a clean 2-up grid,
     full-width charts, and smaller display type so nothing overlaps. */
  .bi-grid,
  .v1port .bi-grid{ grid-template-columns: 1fr 1fr; gap: 10px; padding: 14px; }
  .bi-grid > *,
  .v1port .bi-grid > *{ grid-column: span 1 !important; }
  /* charts / wide cards still take the full row */
  .bi-card,
  .v1port .bi-card{ grid-column: 1 / -1 !important; }

  .kpi-tile{ padding: 13px 14px; }
  .kpi-tile .v{ font-size: 26px !important; }
  .kpi-tile .v sup{ font-size: 11px; }
  .kpi-tile .l,
  .v1port .kpi-tile .l{ font-size: 9.5px; line-height: 1.25; }
  .v1port .kpi-tile .v{ font-size: 24px !important; }

  /* dashboard header: let title + crumb + filters wrap instead of clipping */
  .bi-head,
  .v1port .bi-head{ flex-wrap: wrap; gap: 8px 12px; padding: 12px 14px; }
  .bi-head .l,
  .v1port .bi-head .l{ flex-wrap: wrap; gap: 4px 10px; min-width: 0; }
  .bi-head .crumb,
  .v1port .bi-head .crumb{ flex-basis: 100%; font-size: 10.5px; }
  .bi-head .filters,
  .v1port .bi-head .filters{ flex-wrap: wrap; }

  /* keep dashboards fully inside the viewport */
  .bi-app,
  .v1port .bi-app{ width: 100% !important; max-width: 100%; }
  .v1port .bi-stack{ padding: 0; }

  /* report-type filter rows wrap cleanly */
  .bi-sub{ flex-wrap: wrap; gap: 8px; }

  /* ── touch targets: 44px min on the things people tap ── */
  .filter-pill,
  .v1port .filter-pill{ min-height: 40px; display: inline-flex; align-items: center; padding-top: 0; padding-bottom: 0; }
  .nav-burger{ width: 46px; height: 46px; }
}

/* ═══════════════════════════════════════════════════════════════════════
   Punchy one-pager + detail pages + ambient visuals
   ═════════════════════════════════════════════════════════════════════ */

/* nav: active page highlight + forced-solid on detail pages */
.nav-links a{ position: relative; padding-bottom: 6px; }
.nav-links a.current{ color: var(--orange); font-weight: 600; }
.nav-links a.current::after{
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; border-radius: 2px; background: var(--orange);
}
.nav-mobile a.current{ color: var(--orange); font-weight: 700; }
.nav-mobile a.current::before{ content: '▪ '; color: var(--orange); }
.nav-shell.is-solid{ background: rgba(255,255,255,0.92); backdrop-filter: saturate(140%) blur(12px); box-shadow: 0 1px 0 var(--border); }

/* hero scroll cue */
.hero-scroll{ position: absolute; left: 50%; bottom: 30px; transform: translateX(-50%); z-index: 3; width: 26px; height: 42px; border: 1.5px solid rgba(255,255,255,0.4); border-radius: 14px; display: flex; justify-content: center; padding-top: 8px; }
.hero-scroll span{ width: 3px; height: 8px; border-radius: 2px; background: rgba(255,255,255,0.7); animation: scrollcue 1.8s ease-in-out infinite; }
@keyframes scrollcue{ 0%{ opacity:0; transform: translateY(-4px);} 40%{ opacity:1;} 80%{ opacity:0; transform: translateY(10px);} 100%{opacity:0;} }
@media (prefers-reduced-motion: reduce){ .hero-scroll span{ animation: none; } }

/* punchy problem band */
.punch-problem{ background: var(--charcoal); color: #fff; padding: 120px 60px; position: relative; overflow: hidden; }
.punch-problem .wrap{ position: relative; z-index: 1; }
.punch-problem h2{ color: #fff; font-family: var(--display); font-weight: 700; letter-spacing: -0.03em; font-size: clamp(40px, 6.4vw, 92px); line-height: 0.98; text-wrap: balance; }
.punch-problem h2 em{ font-style: normal; color: var(--orange-2); }
.punch-problem .ps-sub{ font-size: 19px; color: rgba(255,255,255,0.6); max-width: 54ch; margin-top: 26px; line-height: 1.55; }
.punch-chips{ display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.punch-chips span{ font-family: var(--mono); font-size: 12px; padding: 7px 13px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.16); color: rgba(255,255,255,0.5); }

/* learn-more link */
.lm{ display: inline-flex; align-items: center; gap: 8px; font-family: var(--body); font-weight: 500; font-size: 14px; color: var(--orange); text-decoration: none; margin-top: 28px; }
.lm .ar{ transition: transform .2s var(--ease); }
.lm:hover .ar{ transform: translateX(5px); }
.lm-band{ position: relative; z-index: 1; text-align: center; padding: 0 60px 80px; margin-top: -40px; }
.lm-band .lm{ margin-top: 0; }
.amb-host.dark .lm-band .lm{ color: var(--orange-2); }

/* condensed differentiation */
.punch-diff{ padding: 120px 60px; background: var(--cream); }
/* silos graphic embedded on the cream homepage — light theme, scoped so the
   dark original on the Integration page is untouched */
.pd-silos{
  max-width: 1180px; margin: 64px auto 0;
}
.pd-silos .silos{ margin: 0; }
.pd-silos .silos-caption .mono{ color: rgba(31,29,27,0.45) !important; }
.pd-silos .silos-caption-line{ background: rgba(31,29,27,0.14); }
.pd-silos .silo{
  background: #fff;
  border-color: rgba(31,29,27,0.12);
  border-top: 3px solid var(--orange);
}
.pd-silos .silo:hover{ background: #fff; border-color: rgba(31,29,27,0.3); }
.pd-silos .silo-cap{
  border-bottom-color: rgba(31,29,27,0.12);
  background: rgba(31,29,27,0.02);
}
.pd-silos .silo-icon{ color: var(--orange); }
.pd-silos .silo-vendor{ color: var(--charcoal); }
.pd-silos .silo-kind{ color: rgba(31,29,27,0.45); }
.pd-silos .silo-metric{ color: var(--charcoal); }
.pd-silos .silo-metric-label{ color: rgba(31,29,27,0.45); }
.pd-silos .silo-chart svg{ color: var(--orange) !important; opacity: 0.75; }
.pd-silos .silo-lock{ color: rgba(31,29,27,0.4); border-top-color: rgba(31,29,27,0.12); }
.pd-silos .silo-break::before,
.pd-silos .silo-break::after{
  background: repeating-linear-gradient(
    to bottom,
    rgba(31,29,27,0.28) 0 4px,
    transparent 4px 9px
  );
}
.pd-silos .silo-break-x{ color: var(--orange); }
.pd-silos .silos-foot{ color: rgba(31,29,27,0.55); }
.pd-silos .silos-foot em{ color: var(--charcoal); }
.punch-diff .pd-head{ text-align: center; max-width: 820px; margin: 0 auto; }
.punch-diff h2{ font-family: var(--display); font-weight: 700; font-size: clamp(34px, 4.6vw, 64px); letter-spacing: -0.03em; line-height: 1.02; white-space: nowrap; }
.punch-diff .pd-sub{ font-family: var(--display); font-weight: 700; font-size: clamp(15px, 1.5vw, 19px); color: var(--charcoal); margin: 18px auto 0; max-width: 56ch; letter-spacing: -0.01em; }
.punch-diff .pd-lead{ font-size: clamp(17px, 1.6vw, 20px); color: var(--mid); line-height: 1.5; max-width: 60ch; margin: 14px auto 0; text-wrap: pretty; }
.punch-diff h2 em{ font-style: normal; color: var(--orange); }
.pd-cols{ display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 920px; margin: 48px auto 0; }
.pd-col{ border: 1px solid var(--border); border-radius: 18px; padding: 32px; background: #fff; }
.pd-col.aint{ background: var(--cream-2); }
.pd-col h4{ font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid); display: flex; align-items: center; gap: 10px; }
.pd-col h4 .m{ font-size: 14px; }
.pd-col.aint h4 .m{ color: #B23A1D; }
.pd-col.are h4 .m{ color: var(--orange); }
.pd-col ul{ list-style: none; margin: 20px 0 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.pd-col li{ font-size: 17px; line-height: 1.35; color: var(--charcoal); padding-left: 26px; position: relative; }
.pd-col li::before{ content: ""; position: absolute; left: 0; top: 8px; width: 10px; height: 10px; border-radius: 50%; }
.pd-col.are li::before{ background: var(--orange); }
.pd-col.aint li{ color: var(--mid); }
.pd-col.aint li::before{ background: transparent; border: 1px solid var(--border-2); }

/* detail-page hero */
.page-hero{ padding: 150px 60px 72px; background: var(--cream); border-bottom: 1px solid var(--border); }
.page-hero .back{ font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; color: var(--mid); text-decoration: none; }
.page-hero .back:hover{ color: var(--orange); }
.page-hero h1{ font-family: var(--display); font-weight: 700; font-size: clamp(40px, 5.6vw, 78px); letter-spacing: -0.03em; line-height: 1.0; margin-top: 16px; }
.page-hero h1 em{ font-style: normal; color: var(--orange); }
.page-hero p{ font-size: 19px; color: var(--mid); max-width: 62ch; margin-top: 20px; line-height: 1.55; }

/* ── ambient hosts ── */
.amb-host{ position: relative; overflow: hidden; }
.amb-host > .ambient{ position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.amb-host > section,
.amb-host > .lm-band{ position: relative; z-index: 1; }
.amb-host.dark{ background: var(--charcoal); }
.amb-host.dark > section.bi-section{ background: transparent; }
.amb-host.cream{ background: var(--cream-2); }
.amb-host.cream > section.sources{ background: transparent; }

.ambient{ overflow: hidden; }
.ambient svg{ display: block; }
.ambient-pie{ }
.ambient-pie svg{ position: absolute; right: -8%; top: 50%; transform: translateY(-50%); width: 720px; height: 720px; max-width: 78%; opacity: 0.07; }
.amb-spin{ transform-origin: 100px 100px; animation: ambspin var(--amb-dur, 160s) linear infinite; }
@keyframes ambspin{ to { transform: rotate(360deg); } }

.ambient-sensors svg{ position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.5; }
.amb-dot{ opacity: 0.12; animation: ambpulse calc(var(--amb-dur, 160s) / 16) ease-in-out infinite; }
.amb-dot-1{ animation-delay: -2s; } .amb-dot-2{ animation-delay: -4s; } .amb-dot-3{ animation-delay: -6s; }
.amb-dot-4{ animation-delay: -8s; } .amb-dot-5{ animation-delay: -10s; }
@keyframes ambpulse{ 0%,100%{ opacity: 0.08; } 50%{ opacity: 0.22; } }
.amb-ping{ transform-box: fill-box; animation: ambping calc(var(--amb-dur, 160s) / 9) ease-out infinite; }
@keyframes ambping{ 0%{ transform: scale(0.3); opacity: 0.6; } 70%{ opacity: 0; } 100%{ transform: scale(7); opacity: 0; } }

body[data-ambient="off"] .ambient{ display: none; }
@media (prefers-reduced-motion: reduce){ .amb-spin, .amb-dot, .amb-ping{ animation: none; } }

@media (max-width: 900px){
  .pd-cols{ grid-template-columns: 1fr; gap: 14px; max-width: 520px; }
  .page-hero{ padding: 124px 36px 56px; }
  .punch-problem{ padding: 88px 36px; }
  .punch-diff{ padding: 88px 36px; }
  .lm-band{ padding: 0 36px 60px; }
  .ambient-pie svg{ width: 420px; height: 420px; right: -14%; }
}
@media (max-width: 560px){
  .page-hero{ padding: 112px 20px 48px; }
  .punch-problem{ padding: 72px 20px; }
  .punch-diff{ padding: 72px 20px; }
  .punch-diff h2{ white-space: normal; font-size: clamp(30px, 8.5vw, 44px); }
  .lm-band{ padding: 0 20px 48px; }
}

