/* Conncise — production stylesheet
   Type: Spectral (headlines) · Schibsted Grotesk (body) · IBM Plex Mono (data labels)
   Color canon: graphite text, indigo kickers, periwinkle accent, terracotta CTA only. */

/* ---------- tokens ---------- */
:root {
  --paper: #FAF9F7;
  --paper2: #F3F1EC;
  --ink: #322F3E;
  --ink2: #56536A;
  --ink3: #8B88A0;
  --indigo: #656280;
  --accent: #6C84C4;
  --accent2: #A9B7DE;
  --cta: #C9845D;
  --hair: #E6E3DC;
  --hairp: #E4E1EF;
  --dark: #1D1A27;
  --green: #2A9D5C;
  --red: #D24A4A;
  --serif: 'Spectral', Georgia, serif;
  --sans: 'Schibsted Grotesk', sans-serif;
  --mono: 'IBM Plex Mono', monospace;
  --pbi-font: "Segoe UI", "Selawik", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --pbi-text: #252423;
  --pbi-text2: #605e5c;
  --pbi-line: #e6e4e2;
  --pbi-linesoft: #f0efee;
}

/* ---------- reset / base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.6;
}
::selection { background: rgba(108, 132, 196, 0.25); }
img { max-width: 100%; }
a { color: inherit; }
button { font-family: inherit; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 56px;
  padding-right: 56px;
}

/* ---------- utilities ---------- */
.kick {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--indigo);
}
.kick.on-dark { color: rgba(255, 255, 255, 0.5); }

.sec-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 43px;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 20px 0 0;
  text-wrap: balance;
}
.sec-sub {
  font-weight: 400;
  font-size: 18.5px;
  line-height: 1.6;
  color: var(--ink2);
  margin: 20px 0 0;
  text-wrap: pretty;
}
.on-dark .sec-title, .sec-title.on-dark { color: #fff; }
.on-dark .sec-sub, .sec-sub.on-dark { color: rgba(255, 255, 255, 0.66); }

/* buttons */
.btn {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15.5px;
  line-height: 1;
  letter-spacing: 0.01em;
  padding: 16px 30px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 8px 20px -8px rgba(43, 40, 56, 0.35); }
.btn-cta { background: var(--cta); color: #fff; }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--hair); }
.btn-ghost.on-dark { color: #fff; border-color: rgba(255, 255, 255, 0.3); }
.btn-lg { font-size: 17px; padding: 18px 36px; }

.tlink {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.tlink span { color: var(--accent); transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1); }
.tpage {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  margin-left: -4.5px;
  color: inherit !important;
}
.tpage svg { align-self: center; opacity: 0.9; }
.tlink:hover .tpage { transform: none; }
.tlink:hover { color: var(--accent); }
.tlink:hover span { transform: translateX(4px); }

/* scroll reveal */
.rv {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.rv.in { opacity: 1; transform: none; }

/* white panel */
.panel {
  background: #fff;
  border: 1px solid var(--hairp);
  border-radius: 10px;
  box-shadow: 0 24px 60px -34px rgba(38, 35, 47, 0.22);
}

/* ---------- header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(250, 249, 247, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.site-header.scrolled { border-bottom-color: var(--hair); }
.nav-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--accent);
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  height: 72px;
}
.header-inner .brand { justify-self: start; }
.brand { display: inline-flex; align-items: center; text-decoration: none; font-weight: 700; font-size: 18px; color: var(--ink); }
.brand img { height: 24px; display: block; }
.site-nav { display: contents; }
.nav-list { display: flex; flex-wrap: wrap; gap: 38px; list-style: none; }
.nav-list a {
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav-list a:hover { color: var(--accent); }
.nav-list a[aria-current="page"] { color: var(--accent); }
.nav-cta {
  justify-self: end;
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  background: var(--ink);
  text-decoration: none;
  padding: 11px 22px;
  border-radius: 6px;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 20px -8px rgba(43, 40, 56, 0.35); }
.menu-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--hair);
  border-radius: 6px;
  padding: 9px 14px;
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
  cursor: pointer;
}

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 96px;
  align-items: start;
  padding-top: 84px;
  padding-bottom: 124px;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 72px;
  line-height: 1.06;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 26px 0 0;
  text-wrap: balance;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero-lede {
  font-size: 19.5px;
  line-height: 1.6;
  color: var(--ink2);
  margin: 30px 0 0;
  max-width: 520px;
  text-wrap: pretty;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 44px; align-items: center; }
.hero-works {
  margin-top: 40px;
  font-size: 14.5px;
  color: var(--ink2);
}

/* hero P&L card */
.pnl-card { width: 100%; max-width: 540px; overflow: hidden; }
.pnl-src {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px 10px 20px;
  border-bottom: 1px solid var(--hairp);
  background: var(--paper);
}
.pnl-src-text { font-weight: 500; font-size: 14px; color: var(--ink2); }
.pnl-replay {
  margin-left: auto;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: var(--ink3);
  transition: color 0.2s ease;
}
.pnl-replay:hover { color: var(--accent); }
.pnl-replay svg { transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1); }
.pnl-replay:hover svg { transform: rotate(-70deg); }
.pnl-head {
  display: grid;
  grid-template-columns: 1fr 84px 84px 76px;
  padding: 12px 20px 7px;
  border-bottom: 1px solid var(--pbi-line);
}
.pnl-head span {
  font-family: var(--pbi-font);
  font-size: 12.5px;
  color: var(--pbi-text2);
  text-align: right;
  letter-spacing: 0.01em;
}
.pnl-body { padding: 5px 20px 12px; height: 449px; }
.pnl-row {
  display: grid;
  grid-template-columns: 1fr 84px 84px 76px;
  align-items: center;
  height: 36px;
  overflow: hidden;
  border-bottom: 1px solid var(--pbi-linesoft);
  opacity: 1;
  transition: height 0.34s ease, opacity 0.26s ease, border-color 0.34s ease;
}
.pnl-row.last { border-bottom-color: transparent; }
.pnl-row.hidden { height: 0; opacity: 0; border-bottom-color: transparent; }
.pnl-label { display: flex; align-items: center; min-width: 0; }
.pnl-row.k-leaf .pnl-label { padding-left: 20px; }
.pnl-slot { flex: 0 0 22px; width: 22px; display: inline-flex; align-items: center; }
.pnl-toggle {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  border: 1px solid #c8c6c4;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  line-height: 1;
  color: var(--pbi-text2);
  background: #fff;
  cursor: pointer;
  user-select: none;
}
.pnl-name {
  font-family: var(--pbi-font);
  font-size: 13.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--pbi-text);
}
.pnl-row.k-calc .pnl-name { font-weight: 600; }
.pnl-num {
  font-family: var(--pbi-font);
  font-size: 13.5px;
  text-align: right;
  font-variant-numeric: tabular-nums;
  color: var(--pbi-text);
}
.pnl-row.k-calc .pnl-num { font-weight: 600; }
.pnl-var.pos { color: #5FA95F; }
.pnl-var.neg { color: #E25A4D; }
.pnl-foot {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 20px;
  border-top: 1px solid var(--hairp);
  background: var(--paper);
}
.pnl-foot .ok {
  width: 16px;
  height: 16px;
  border-radius: 99px;
  background: rgba(95, 169, 95, 0.16);
  color: #5FA95F;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex: 0 0 auto;
}
.pnl-foot span:last-child { font-weight: 500; font-size: 14px; color: var(--ink2); }

/* ---------- recognition band ---------- */
.band-recognition {
  background: var(--paper2);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  text-align: center;
}
.band-recognition .inner { padding-top: 96px; padding-bottom: 96px; }
.band-recognition h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 40px;
  line-height: 1.14;
  letter-spacing: -0.01em;
  margin: 20px auto 0;
  max-width: 18em;
  text-wrap: balance;
}
.band-recognition p {
  font-size: 17.5px;
  line-height: 1.65;
  color: var(--ink2);
  margin: 22px auto 0;
  max-width: 42em;
  text-wrap: pretty;
}

/* ---------- statement band (cost of waiting) ---------- */
.band-statement {
  background: var(--paper2);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  text-align: center;
}
.band-statement .inner { padding-top: 148px; padding-bottom: 148px; }
.band-statement h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 58px;
  line-height: 1.06;
  letter-spacing: -0.012em;
  margin: 26px auto 0;
  max-width: 14.5em;
  text-wrap: balance;
}
.band-statement h2 em { font-style: italic; color: var(--accent); }
.band-statement p {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink2);
  margin: 30px auto 0;
  max-width: 36em;
  text-wrap: pretty;
}

/* ---------- generic section ---------- */
.sec { padding-top: 112px; padding-bottom: 112px; }
.sec-white { background: #fff; border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); }
.sec-tint { background: var(--paper2); border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); }
.g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.g2.g2-wide-text { grid-template-columns: 1.35fr 1fr; gap: 64px; }

/* ---------- see it work ---------- */
.demo-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 56px;
}
.video-slot {
  position: relative;
  border-radius: 10px;
  border: 1px dashed var(--hairp);
  background: repeating-linear-gradient(45deg, #FBFAF8, #FBFAF8 13px, #F3F1EC 13px, #F3F1EC 26px);
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.video-slot .play {
  width: 74px;
  height: 74px;
  border-radius: 99px;
  background: #fff;
  border: 1px solid var(--hairp);
  box-shadow: 0 18px 44px -18px rgba(38, 35, 47, 0.3);
  display: grid;
  place-items: center;
}
.video-slot .play span {
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid var(--ink);
  margin-left: 4px;
}
.video-slot .note {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  text-align: center;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink3);
}

/* ---------- why different (mismatch card) ---------- */
.mismatch { width: 100%; max-width: 430px; padding: 30px 34px; }
.mm-block-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.mm-cap {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink3);
}
.mm-num { display: flex; align-items: center; gap: 11px; }
.mm-num .chip {
  width: 18px;
  height: 18px;
  border-radius: 99px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10.5px;
}
.mm-num .chip.ok { background: rgba(42, 157, 92, 0.16); color: var(--green); }
.mm-num .chip.bad { background: rgba(210, 74, 74, 0.14); color: var(--red); }
/* deterministic check/cross icons (font glyphs render off-center on some systems) */
.f-chip, .mm-num .chip { font-size: 0 !important; }
.f-chip::before, .mm-num .chip::before {
  content: ""; width: 9px; height: 9px; background: currentColor;
  -webkit-mask: var(--chip-icon) center / contain no-repeat;
  mask: var(--chip-icon) center / contain no-repeat;
}
.f-chip.ok, .mm-num .chip.ok { --chip-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M1.7 5.5 4 7.7 8.3 2.4' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.f-chip.bad, .mm-num .chip.bad { --chip-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M2.6 2.6 7.4 7.4 M7.4 2.6 2.6 7.4' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round'/%3E%3C/svg%3E"); }
.mm-num strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 30px;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.mm-num strong.bad { color: var(--red); }
.mm-desc { font-size: 13px; color: var(--ink3); margin-top: 9px; }
.mm-desc-row { display: flex; justify-content: space-between; gap: 12px; }
.mm-delta { color: var(--red); font-variant-numeric: tabular-nums; white-space: nowrap; }
.mm-rule { height: 1px; background: var(--hair); margin: 24px 0; }
.mm-members { display: grid; gap: 13px; }
.mm-member { display: flex; align-items: center; justify-content: space-between; }
.mm-member .lbl { display: flex; align-items: center; gap: 12px; font-size: 14.5px; color: var(--ink2); }
.mm-member .lbl i { width: 6px; height: 6px; border-radius: 99px; background: var(--ink3); flex: 0 0 auto; }
.mm-member .val { font-size: 14.5px; color: var(--ink2); font-variant-numeric: tabular-nums; }

/* ---------- DIY ---------- */
.diy-routes { display: grid; gap: 12px; }
.route { padding: 20px 24px; }
.route .rtag {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink3);
  display: block;
  margin-bottom: 9px;
}
.route h3 { font-weight: 600; font-size: 16px; color: var(--ink); margin-bottom: 6px; }
.route p { font-size: 14px; line-height: 1.5; color: var(--ink2); }
.route .verdict {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 11px;
  padding-top: 11px;
  border-top: 1px solid var(--pbi-linesoft);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--red);
}
.route .verdict i {
  width: 16px;
  height: 16px;
  border-radius: 99px;
  background: rgba(204, 84, 84, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-size: 10px;
  flex: 0 0 auto;
}
.diy-outcome {
  margin-top: 18px;
  font-size: 18.5px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--ink2);
  max-width: 520px;
  text-wrap: pretty;
}

/* ---------- steps (mini, home) ---------- */
.steps-mini { max-width: 430px; margin-left: auto; }
.steps-mini .item {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 20px 4px;
  border-bottom: 1px solid var(--hair);
}
.steps-mini .item:first-child { border-top: 1px solid var(--hair); }
.steps-mini .n { font-family: var(--mono); font-size: 13px; color: var(--accent); flex: 0 0 auto; }
.steps-mini .t { font-weight: 600; font-size: 17.5px; color: var(--ink); }
.steps-note { margin: 14px 4px 0; font-size: 14px; color: var(--ink3); }

/* ---------- in good company ---------- */
.sec-eco { padding-top: 96px; padding-bottom: 88px; }
.eco-partners {
  margin-top: 64px;
  padding-top: 30px;
  border-top: 1px solid var(--hair);
}
.eco-partners .proof-cap { margin: 0 0 20px; }
.partner-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.eco-partners .partner-row { gap: 38px; }
.partner-row a { display: block; }
.partner-row img {
  width: auto;
  display: block;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
.partner-row img:hover { opacity: 1; }

/* ---------- steps (full, for Control) ---------- */
.steps-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 70px;
  gap: 40px;
}
.steps-meta {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink3);
  letter-spacing: 0.03em;
  text-align: right;
  line-height: 2;
}
.steps-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; position: relative; }
.steps-line { position: absolute; top: 23px; left: 5%; right: 5%; height: 1px; background: var(--hair); }
.step { position: relative; padding-right: 36px; }
.step .n {
  width: 46px;
  height: 46px;
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 13.5px;
  font-weight: 500;
  margin-bottom: 24px;
  border: 1px solid var(--hair);
  position: relative;
}
.step h3 { font-weight: 600; font-size: 19px; color: var(--ink); margin-bottom: 10px; }
.step p { font-size: 15.5px; line-height: 1.6; color: var(--ink2); text-wrap: pretty; }
.steps-foot {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--hair);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 30px;
  flex-wrap: wrap;
}
.steps-foot > span { font-size: 15px; color: var(--ink2); }

/* ---------- AI section ---------- */
.sec-dark { background: var(--dark); position: relative; overflow: hidden; color: #fff; }
.sec-dark .noise {
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="120" height="120"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="2"/></filter><rect width="120" height="120" filter="url(%23n)" opacity="0.05"/></svg>');
  pointer-events: none;
}
.sec-dark .container { position: relative; }
.center-head { max-width: 780px; margin: 0 auto; text-align: center; }
.chat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 64px; }
.chat-card { border-radius: 10px; padding: 30px 32px; display: flex; flex-direction: column; }
.chat-card.bad { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.1); }
.chat-card.good { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(108, 132, 196, 0.45); }
.chat-card .clabel {
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 22px;
}
.chat-card.bad .clabel { color: rgba(255, 255, 255, 0.45); }
.chat-card.good .clabel { color: var(--accent2); }
.chat-q { display: flex; justify-content: flex-end; margin-bottom: 18px; }
.chat-q span {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px 10px 3px 10px;
  padding: 12px 18px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 85%;
}
.chat-a { display: flex; margin-bottom: 20px; }
.chat-a span {
  border-radius: 10px 10px 10px 3px;
  padding: 14px 18px;
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 92%;
}
.chat-card.bad .chat-a span { background: rgba(255, 255, 255, 0.06); color: rgba(255, 255, 255, 0.6); }
.chat-card.good .chat-a span { background: rgba(108, 132, 196, 0.16); color: #fff; }
.chat-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: auto; }
.chat-tags span {
  font-family: var(--mono);
  font-size: 11px;
  padding: 5px 11px;
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.chat-card.good .chat-tags span {
  color: var(--accent2);
  border-color: rgba(108, 132, 196, 0.45);
}
.ai-provider {
  text-align: center;
  margin: 40px auto 0;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
}
.ai-close {
  text-align: center;
  margin: 56px auto 0;
  max-width: 660px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 23px;
  line-height: 1.45;
  color: #fff;
  text-wrap: balance;
}
.ai-close em { font-style: italic; color: var(--accent2); }

/* ---------- cost ---------- */
.cost-list { margin-top: 36px; display: grid; gap: 0; max-width: 520px; }
.cost-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--hair);
  align-items: baseline;
}
.cost-item strong { font-weight: 600; font-size: 15px; color: var(--accent); }
.cost-item span { font-size: 15.5px; color: var(--ink2); }

.calc { padding: 42px 44px; }
.calc-title { font-weight: 600; font-size: 17px; color: var(--ink); margin-bottom: 6px; }
.calc-note { font-size: 14px; color: var(--ink3); margin-bottom: 30px; }
.slider { margin-bottom: 26px; }
.slider-row { display: flex; justify-content: space-between; margin-bottom: 10px; }
.slider-row label { font-weight: 500; font-size: 14.5px; color: var(--ink); }
.slider-row output { font-family: var(--mono); font-size: 13.5px; color: var(--accent); font-weight: 500; }
input[type="range"].range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(to right, var(--accent) 0%, var(--accent) var(--fill, 50%), #E6E3DC var(--fill, 50%), #E6E3DC 100%);
  outline: none;
}
input[type="range"].range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 99px;
  background: #fff;
  border: 2px solid var(--accent);
  box-shadow: 0 2px 6px rgba(43, 40, 56, 0.2);
  cursor: pointer;
}
input[type="range"].range::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 99px;
  background: #fff;
  border: 2px solid var(--accent);
  box-shadow: 0 2px 6px rgba(43, 40, 56, 0.2);
  cursor: pointer;
}
.calc-result { border-top: 1px solid var(--hairp); margin-top: 8px; padding-top: 26px; }
.calc-cap {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 8px;
}
.calc-total {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 50px;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.calc-detail { font-size: 14.5px; color: var(--ink2); margin-top: 12px; }

/* ---------- proof ---------- */
.proof-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 80px; align-items: center; }
.proof-side { margin-top: 38px; padding-top: 30px; border-top: 1px solid var(--hair); }
.proof-side > p { font-size: 16px; line-height: 1.6; color: var(--ink2); max-width: 440px; }
.proof-cap {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink3);
  display: block;
  margin: 30px 0 18px;
}
.partner-row { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; color: var(--ink3); }
.partner-row span { white-space: nowrap; }
.pl-finext { height: 24px; }
.pl-finarchs { height: 24px; }
.pl-impactable { height: 21px; }
.pl-tentive { height: 16px; }
.browser { border-radius: 10px; overflow: hidden; border: 1px solid var(--hairp); box-shadow: 0 32px 80px -38px rgba(38, 35, 47, 0.22); }
.browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--hairp);
  background: var(--paper);
}
.browser-bar i { width: 9px; height: 9px; border-radius: 99px; background: var(--hair); }
.browser-bar span { margin-left: 10px; font-family: var(--mono); font-size: 11px; color: var(--ink3); }
.browser img { width: 100%; display: block; }

/* ---------- final CTA + footer ---------- */
.final {
  background: linear-gradient(170deg, #1D1A27 0%, #262238 70%, #2B2745 100%);
  position: relative;
  overflow: hidden;
  color: #fff;
}
.final .noise {
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="120" height="120"><filter id="n2"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="2"/></filter><rect width="120" height="120" filter="url(%23n2)" opacity="0.045"/></svg>');
  pointer-events: none;
}
.final .glow {
  position: absolute;
  left: 50%;
  top: -180px;
  width: 900px;
  height: 420px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(108, 132, 196, 0.18), transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}
.final .container { position: relative; }
.final-inner { padding-top: 128px; text-align: center; }
.final h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 59px;
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 26px auto 0;
  max-width: 760px;
  text-wrap: balance;
}
.final h2 em { font-style: italic; color: var(--accent2); }
.final-sub {
  font-size: 18.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin: 22px auto 0;
  max-width: 540px;
}
.final-ctas { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 42px; }

.site-footer-dark {
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 0 34px;
  text-align: left;
}
.footer-cols {
  position: relative;
  display: grid;
  grid-template-columns: auto auto auto auto;
  justify-content: space-between;
  column-gap: 40px;
  row-gap: 44px;
  align-items: start;
}
.footer-brand { max-width: 300px; }
.footer-brand img { height: 20px; display: block; opacity: 0.9; }
.footer-slogan {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
  margin: 16px 0 0;
}
.footer-brand address {
  font-style: normal;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.5);
  margin: 18px 0 0;
}
.footer-contact { display: flex; gap: 14px; align-items: center; margin: 16px 0 0; font-size: 13.5px; }
.footer-contact a { color: rgba(255, 255, 255, 0.6); text-decoration: none; transition: color 0.2s ease; }
.footer-contact a:hover { color: #fff; }
.footer-copy-inline {
  font-family: var(--mono); font-size: 11.5px; color: rgba(255, 255, 255, 0.35); white-space: nowrap;
  margin: 16px 0 0;
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}
.footer-col nav { display: flex; flex-direction: column; gap: 11px; font-size: 14px; }
.footer-col nav a { color: rgba(255, 255, 255, 0.6); text-decoration: none; transition: color 0.2s ease; }
.footer-col nav a:hover { color: #fff; }

/* ---------- light footer (inner pages scaffold) ---------- */
.site-footer { border-top: 1px solid var(--hair); padding: 40px 0; background: var(--paper); }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; }
.footer-inner .nav-list { gap: 24px; }
.footer-inner .nav-list a { font-size: 14px; color: var(--ink2); }
.site-main { min-height: 50vh; padding: 64px 0; }

@media (max-width: 860px) {
  .footer-cols { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .rv { opacity: 1; transform: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 64px; padding-top: 64px; padding-bottom: 96px; }
  .hero h1 { font-size: 56px; }
  .pnl-card { max-width: 540px; }
  .eco-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 920px) {
  .container { padding-left: 24px; padding-right: 24px; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 56px; padding-bottom: 80px; }
  .pnl-card { max-width: 100%; }
  .g2, .proof-grid, .chat-grid { grid-template-columns: 1fr; gap: 48px; }
  .eco-partners { margin-top: 48px; }
  .steps-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps-line { display: none; }
  .step { padding-right: 0; }
  .sec { padding-top: 80px; padding-bottom: 80px; }
  .sec-title { font-size: 34px; }
  .hero h1 { font-size: 44px; }
  .final h2 { font-size: 40px; }
  .band-recognition h2 { font-size: 30px; }
  .band-statement .inner { padding-top: 96px; padding-bottom: 96px; }
  .band-statement h2 { font-size: 36px; }
  .demo-head, .steps-head { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 40px; }
  .steps-meta { text-align: left; }
  .mismatch { max-width: 100%; }

  .menu-btn { display: inline-flex; }
  .header-inner { display: flex; align-items: center; justify-content: space-between; }
  .site-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--hair);
    padding: 20px 24px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .site-nav.open { display: flex; }
  .nav-list { flex-direction: column; gap: 16px; }
}

@media (max-width: 560px) {
  .hero h1 { font-size: 36px; }
  .calc { padding: 30px 24px; }
  .cost-item { grid-template-columns: 1fr; gap: 4px; }
  .btn { padding: 15px 22px; }
  .pnl-head, .pnl-row { grid-template-columns: 1fr 66px 66px 58px; }
  .pnl-num { font-size: 12px; }
}

/* ---------- see it work — slice & dice demo ---------- */
.sw-demo { position: relative; display: grid; grid-template-columns: 1.06fr 1fr; gap: 28px; }
.sw-demo .pnl-card { max-width: none; }
.sw-demo .pnl-head, .sw-demo .pnl-row { grid-template-columns: 1fr 80px 80px 60px; }
#sw-left { height: 278px; }
#sw-right { height: 233px; }
.sw-acc .pnl-row { cursor: pointer; transition: height 0.34s ease, opacity 0.26s ease, border-color 0.34s ease, background 0.2s ease; }
.sw-acc .pnl-row:hover { background: rgba(108, 132, 196, 0.04); }
.sw-demo .pnl-row.sel { background: rgba(108, 132, 196, 0.09); box-shadow: inset 2px 0 0 var(--accent); }
.sw-dims { display: flex; gap: 6px; padding: 10px 20px 8px; }
.sw-dims button {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  height: 27px;
  padding: 0 12px;
  border-radius: 4px;
  border: 1px solid var(--hairp);
  background: #fff;
  color: var(--ink3);
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.sw-dims button:hover { color: var(--accent); }
.sw-dims button.on {
  color: var(--accent);
  border-color: rgba(108, 132, 196, 0.5);
  background: rgba(108, 132, 196, 0.07);
}
.sw-demo .bd-enter { animation: swIn 0.38s cubic-bezier(0.22, 1, 0.36, 1) both; }
@keyframes swIn {
  from { opacity: 0; transform: translateY(7px); }
}
.sw-cursor {
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 99px;
  border: 2px solid var(--accent);
  background: rgba(108, 132, 196, 0.28);
  transform: translate(60px, 60px);
  transition: transform 0.8s cubic-bezier(0.45, 0, 0.2, 1), opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
  z-index: 3;
}
.sw-cursor.show { opacity: 1; }
.sw-cursor::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 99px;
  border: 2px solid var(--accent);
  opacity: 0;
}
.sw-cursor.press::after { animation: swPulse 0.34s ease-out; }
@keyframes swPulse {
  0% { transform: scale(0.4); opacity: 0.85; }
  100% { transform: scale(1.2); opacity: 0; }
}
@media (max-width: 900px) {
  .sw-demo { grid-template-columns: 1fr; }
}
