/* ============================================================
   FundraisingPack — v2 "Bold modular" design
   ============================================================ */

:root {
  /* Brand palette — tuned to logo */
  --c-ink: #0A1F33;
  --c-ink-2: #1A3550;
  --c-deep: #003E66;
  --c-blue: #0080C0;
  --c-blue-2: #1FA8E0;
  --c-sky: #80C0E0;
  --c-sky-light: #C8E4F0;
  --c-bg: #FBFAF6;          /* warm ivory */
  --c-bg-2: #F2EFE5;
  --c-paper: #FFFFFF;
  --c-cream: #F0E9D6;       /* warm accent */
  --c-rule: rgba(10,31,51,0.12);
  --c-rule-strong: rgba(10,31,51,0.22);
  --c-muted: #5A6B7B;
  --c-muted-2: #7B8997;

  /* Type scale (more dramatic than v1) */
  --t-display: clamp(56px, 9vw, 168px);
  --t-h1: clamp(40px, 5.4vw, 84px);
  --t-h2: clamp(32px, 3.6vw, 56px);
  --t-h3: 22px;
  --t-body: 17px;
  --t-mono: 12px;

  --w-container: 1320px;
  --p-gutter: clamp(20px, 4vw, 56px);
  --p-section: clamp(56px, 6vw, 96px);
}

* { box-sizing: border-box; }

/* Offset anchor targets so the sticky nav doesn't cover section headlines */
.fsplit[id], section[id], .fcat__group[id], .case[id], [id^="reseni"], [id="integrace"],
#fundraising, #granty, #finance, #hr, #nadacni, #portaly, #projekty, #reporting, #namiru, #integrace,
#pribeh, #tym, #partneri, #salesforce, #tabidoo, #tableau, #cloudtalk, #smartemailing, #findock {
  scroll-margin-top: 120px;
}
html, body { margin: 0; padding: 0; }

html {
  background: var(--c-bg);
  color: var(--c-ink);
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  font-size: var(--t-body);
  line-height: 1.5;
  color: var(--c-ink);
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0; text-wrap: pretty; }

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.02;
  text-wrap: balance;
}

em, i, cite, address {
  font-style: normal;
}

.mono {
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0.02em;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Manrope", ui-sans-serif, sans-serif;
  font-size: var(--t-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}
.tag--ink { color: var(--c-ink); }
.tag--muted { color: var(--c-muted); }
.tag--blue { color: var(--c-blue); }
.tag::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 999px;
  background: currentColor;
  display: inline-block;
}

/* ============================================================
   Layout primitives
   ============================================================ */

.wrap {
  max-width: var(--w-container);
  margin: 0 auto;
  padding-left: var(--p-gutter);
  padding-right: var(--p-gutter);
}

.section {
  padding-top: var(--p-section);
  padding-bottom: var(--p-section);
}

.section--lite {
  padding-top: clamp(40px, 4vw, 64px);
  padding-bottom: clamp(40px, 4vw, 64px);
}

/* ============================================================
   Floating pill nav
   ============================================================ */

.nav {
  position: sticky;
  top: 16px;
  z-index: 50;
  padding: 0 var(--p-gutter);
}

.nav__inner {
  max-width: var(--w-container);
  margin: 0 auto;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(1.5) blur(20px);
  -webkit-backdrop-filter: saturate(1.5) blur(20px);
  border: 1px solid var(--c-rule);
  border-radius: 100px;
  padding: 10px 12px 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 1px 2px rgba(10,31,51,0.04), 0 10px 32px -12px rgba(10,31,51,0.08);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav__brand img { height: 42px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav__link {
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-ink);
  transition: background 0.15s ease, color 0.15s ease;
}
.nav__link:hover { background: var(--c-bg-2); }
.nav__link.is-on {
  background: var(--c-ink);
  color: #fff;
}

/* Dropdown */
.nav__dd {
  position: relative;
}
/* Invisible hover bridge over the gap so the panel doesn't vanish mid-move */
.nav__dd::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 100%;
  height: 18px;
  display: none;
}
.nav__dd:hover::after {
  display: block;
}
.nav__dd > .nav__link::after {
  content: "";
  display: inline-block;
  width: 8px; height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 4px;
  opacity: 0.5;
  transition: transform 0.2s ease;
}
.nav__dd:hover > .nav__link::after {
  transform: rotate(225deg) translateY(-2px);
}
.nav__panel {
  position: absolute;
  top: calc(100% + 4px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0s linear 0.16s;
  visibility: hidden;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #fff;
  border: 1px solid var(--c-rule);
  border-radius: 18px;
  padding: 18px;
  min-width: 280px;
  box-shadow: 0 24px 56px -16px rgba(10,31,51,0.18), 0 4px 12px rgba(10,31,51,0.04);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  opacity: 0;
  pointer-events: none;
  z-index: 60;
}
@media (min-width: 1001px) {
  .nav__dd:hover > .nav__panel,
  .nav__dd:focus-within > .nav__panel {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transition: opacity 0.16s ease, transform 0.16s ease, visibility 0s;
    transform: translateX(-50%) translateY(0);
  }
}
.nav__panel--wide {
  min-width: 520px;
  grid-template-columns: 1fr 1fr;
  gap: 4px 16px;
}
.nav__panel-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-ink);
  letter-spacing: -0.005em;
  transition: background 0.12s ease;
}
.nav__panel-item:hover { background: var(--c-bg-2); }
.nav__panel-item small {
  font-size: 12px;
  font-weight: 400;
  color: var(--c-muted);
  letter-spacing: 0;
}
/* Highlighted dropdown item (AI) */
.nav__panel-item--hl {
  background: var(--c-ink);
  color: #fff;
}
.nav__panel-item--hl small { color: var(--c-sky); }
.nav__panel-item--hl:hover { background: var(--c-deep); }
.nav__panel-item--hl .nav__panel-badge {
  display: inline-block;
  margin-left: 8px;
  font-family: "Manrope", sans-serif;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--c-ink);
  background: var(--c-blue-2);
  padding: 2px 6px;
  border-radius: 100px;
  vertical-align: middle;
}

/* Announcement banner (above hero) */
.annc {
  background: var(--c-ink);
  color: #fff;
  padding: 14px var(--p-gutter);
  position: relative;
  z-index: 40;
  overflow: hidden;
}
.annc__inner {
  max-width: var(--w-container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 500;
  flex-wrap: wrap;
  text-align: center;
}
.annc__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--c-blue);
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.annc__msg { color: rgba(255,255,255,0.92); }
.annc__msg b { color: #fff; font-weight: 600; }
.annc__link {
  color: var(--c-blue-2);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}
.annc__link:hover { border-color: var(--c-blue-2); }
.annc__link svg { width: 14px; height: 14px; }
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 56px;
}
.pillars--9 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1080px) {
  .pillars--9 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .pillars--9 { grid-template-columns: 1fr; }
}
.pillar {
  background: var(--c-paper);
  border: 1px solid var(--c-rule);
  border-radius: 22px;
  padding: 28px 26px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 200px;
  position: relative;
  overflow: hidden;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.pillar:hover { transform: translateY(-2px); border-color: var(--c-rule-strong); }
.pillar__ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--c-sky-light);
  display: grid; place-items: center;
  color: var(--c-deep);
}
.pillar--ink {
  background: var(--c-ink);
  color: #fff;
  border-color: transparent;
}
.pillar--ink .pillar__ic { background: rgba(255,255,255,0.12); color: var(--c-blue-2); }
.pillar--ink .pillar__d { color: rgba(255,255,255,0.74); }
.pillar__h {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
}
.pillar__d {
  font-size: 14px;
  color: var(--c-muted);
  line-height: 1.5;
  flex: 1;
}
.pillar__more {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-blue);
  font-weight: 600;
}
.pillar--ink .pillar__more { color: var(--c-blue-2); }

@media (max-width: 920px) { .pillars { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .pillars { grid-template-columns: 1fr; } }

/* Industries list (homepage + odvetvi page) */
.indus {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--c-rule-strong);
  border-bottom: 1px solid var(--c-rule-strong);
}
.indus__item {
  padding: 22px 0;
  border-bottom: 1px solid var(--c-rule);
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 28px;
  align-items: baseline;
  transition: padding 0.15s ease;
}
.indus__item:nth-last-child(-n+2) { border-bottom: none; }
.indus__item:nth-child(odd) { padding-right: 32px; border-right: 1px solid var(--c-rule); }
.indus__item:nth-child(even) { padding-left: 32px; }
.indus__num {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  color: var(--c-muted);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.indus__name {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--c-ink);
}
.indus__arrow {
  width: 28px; height: 28px;
  border-radius: 100px;
  background: var(--c-bg-2);
  display: grid; place-items: center;
  color: var(--c-muted);
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.indus__item:hover .indus__arrow {
  background: var(--c-blue);
  color: #fff;
  transform: translateX(2px);
}
@media (max-width: 760px) {
  .indus { grid-template-columns: 1fr; }
  .indus__item, .indus__item:nth-child(odd) { padding: 18px 0; border-right: none; }
  .indus__item:nth-child(even) { padding-left: 0; }
  .indus__item:nth-last-child(-n+2) { border-bottom: 1px solid var(--c-rule); }
  .indus__item:last-child { border-bottom: none; }
}

/* Logo wall */
.logowall {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border: 1px solid var(--c-rule);
  border-radius: 24px;
  overflow: hidden;
  background: var(--c-paper);
}
.logowall__c {
  border-right: 1px solid var(--c-rule);
  border-bottom: 1px solid var(--c-rule);
  padding: 32px 28px;
  display: grid;
  place-items: center;
  min-height: 120px;
}
.logowall__c:nth-child(6n) { border-right: none; }
.logowall__c:nth-last-child(-n+6) { border-bottom: none; }
.logowall__c-name {
  font-size: 17px;
  font-weight: 600;
  color: var(--c-ink);
  letter-spacing: -0.015em;
  opacity: 0.85;
  text-align: center;
  line-height: 1.25;
  text-wrap: balance;
}

/* Clickable reference cells */
a.logowall__c { text-decoration: none; transition: background 0.14s ease; }
a.logowall__c:hover { background: var(--c-bg-2); }
a.logowall__c:hover .logowall__c-name { opacity: 1; color: var(--c-blue); }

/* References variant — clean 3×3 grid */
.logowall--refs { grid-template-columns: repeat(3, 1fr); }
.logowall--refs .logowall__c { min-height: 132px; padding: 28px 24px; }
.logowall--refs .logowall__c:nth-child(6n) { border-right: 1px solid var(--c-rule); }
.logowall--refs .logowall__c:nth-last-child(-n+6) { border-bottom: 1px solid var(--c-rule); }
.logowall--refs .logowall__c:nth-child(3n) { border-right: none; }
.logowall--refs .logowall__c:nth-last-child(-n+3) { border-bottom: none; }

@media (max-width: 920px) {
  .logowall { grid-template-columns: repeat(3, 1fr); }
  .logowall__c { border-right: 1px solid var(--c-rule) !important; border-bottom: 1px solid var(--c-rule) !important; }
  .logowall__c:nth-child(3n) { border-right: none !important; }
  .logowall__c:nth-last-child(-n+3) { border-bottom: none !important; }
}
@media (max-width: 560px) {
  .logowall { grid-template-columns: repeat(2, 1fr); }
  .logowall__c:nth-child(3n) { border-right: 1px solid var(--c-rule) !important; }
  .logowall__c:nth-child(2n) { border-right: none !important; }
  .logowall__c:nth-last-child(-n+2) { border-bottom: none !important; }
}

/* Team grid */
.team {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.team__c {
  background: var(--c-paper);
  border: 1px solid var(--c-rule);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.team__avatar {
  width: 72px; height: 72px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--c-sky), var(--c-blue));
}
.team__name {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.team__role {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-blue);
  font-weight: 600;
  margin-top: -10px;
}
.team__bio {
  color: var(--c-muted);
  font-size: 14px;
  line-height: 1.5;
}
.team__link {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-blue);
  margin-top: 2px;
}
.team__link:hover { color: var(--c-deep); }
@media (max-width: 820px) { .team { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .team { grid-template-columns: 1fr; } }

/* Reference / case studies */
.cases {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.case {
  background: var(--c-paper);
  border: 1px solid var(--c-rule);
  border-radius: 24px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 320px;
  position: relative;
  overflow: hidden;
}
.case--ink { background: var(--c-ink); color: #fff; border-color: transparent; }
.case__org {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--c-ink);
}
.case--ink .case__org { color: #fff; }
.case__tag {
  display: inline-flex; align-items: center; gap: 6px;
  align-self: flex-start;
  padding: 5px 12px;
  border-radius: 100px;
  background: var(--c-sky-light);
  color: var(--c-deep);
  font-size: 11px;
  font-family: "Manrope", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.case--ink .case__tag { background: rgba(31,168,224,0.18); color: var(--c-blue-2); }
.case__quote {
  font-size: 17px;
  line-height: 1.5;
  color: var(--c-ink);
  flex: 1;
}
.case--ink .case__quote { color: rgba(255,255,255,0.86); }
.case__meta {
  display: flex; gap: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--c-rule);
  font-size: 13px;
  color: var(--c-muted);
  font-family: "Manrope", sans-serif;
  letter-spacing: 0.02em;
}
.case--ink .case__meta { border-top-color: rgba(255,255,255,0.14); color: rgba(255,255,255,0.6); }
.case__meta b { display: block; color: var(--c-ink); font-size: 17px; letter-spacing: -0.01em; margin-top: 2px; }
.case--ink .case__meta b { color: #fff; }
@media (max-width: 760px) { .cases { grid-template-columns: 1fr; } }

/* Blog / Insights list */
.posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.post {
  background: var(--c-paper);
  border: 1px solid var(--c-rule);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.post:hover { transform: translateY(-2px); border-color: var(--c-rule-strong); }
.post__cover {
  aspect-ratio: 16/10;
  background:
    repeating-linear-gradient(135deg, rgba(0,128,192,0.08) 0 6px, transparent 6px 14px),
    var(--c-bg-2);
  position: relative;
  display: grid;
  place-items: center;
  color: var(--c-muted);
}
.post__cover--ink {
  background:
    radial-gradient(circle at 80% 30%, rgba(31,168,224,0.4), transparent 60%),
    var(--c-ink);
  color: rgba(255,255,255,0.7);
}
.post__cover--blue {
  background:
    radial-gradient(circle at 20% 70%, rgba(255,255,255,0.18), transparent 60%),
    var(--c-blue);
  color: rgba(255,255,255,0.85);
}
.post__cover--cream { background: var(--c-cream); color: var(--c-muted); }
.post__cover-tag {
  position: absolute;
  top: 16px; left: 16px;
  padding: 5px 11px;
  border-radius: 100px;
  background: rgba(255,255,255,0.92);
  color: var(--c-ink);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.post__cover-glyph {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.04em;
  opacity: 0.55;
}
.post__body {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.post__meta {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-muted);
  font-weight: 600;
}
.post__t {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--c-ink);
}
.post__d {
  color: var(--c-muted);
  font-size: 14px;
  line-height: 1.5;
  flex: 1;
}
.post__more {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-blue);
  font-weight: 600;
  margin-top: 4px;
}
@media (max-width: 920px) { .posts { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .posts { grid-template-columns: 1fr; } }

/* Hero post (featured at top of blog) */
.heropost {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 0;
  border: 1px solid var(--c-rule);
  border-radius: 24px;
  overflow: hidden;
  background: var(--c-paper);
}
.heropost__cover {
  background:
    radial-gradient(circle at 80% 20%, rgba(31,168,224,0.35), transparent 60%),
    var(--c-ink);
  color: rgba(255,255,255,0.8);
  min-height: 380px;
  display: grid;
  place-items: center;
  position: relative;
}
.heropost__cover-glyph {
  font-size: 88px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.4);
}
.heropost__cover-tag {
  position: absolute;
  top: 24px; left: 24px;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--c-blue-2);
  color: var(--c-ink);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.heropost__body {
  padding: clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}
.heropost__meta {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-muted);
  font-weight: 600;
}
.heropost__t {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.heropost__d {
  color: var(--c-muted);
  font-size: 16px;
  line-height: 1.5;
  max-width: 50ch;
}
@media (max-width: 820px) {
  .heropost { grid-template-columns: 1fr; }
  .heropost__cover { min-height: 220px; }
}

/* Filter chips */
.chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.chip {
  padding: 8px 16px;
  border-radius: 100px;
  background: var(--c-paper);
  border: 1px solid var(--c-rule);
  font-size: 13px;
  font-weight: 500;
  color: var(--c-ink);
  cursor: pointer;
  transition: all 0.15s ease;
}
.chip:hover { border-color: var(--c-rule-strong); }
.chip.is-on { background: var(--c-ink); color: #fff; border-color: transparent; }

/* Resource cards (webinars / guides) */
.resources {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.res {
  background: var(--c-paper);
  border: 1px solid var(--c-rule);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.res:hover { transform: translateY(-2px); border-color: var(--c-rule-strong); }
.res--ink { background: var(--c-ink); color: #fff; border-color: transparent; }
.res__type {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-blue);
  font-weight: 600;
}
.res__type::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 100px;
  background: currentColor;
}
.res--ink .res__type { color: var(--c-blue-2); }
.res__t {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
}
.res__d {
  color: var(--c-muted);
  font-size: 14px;
  line-height: 1.5;
  flex: 1;
}
.res--ink .res__d { color: rgba(255,255,255,0.74); }
.res__meta {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--c-rule);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-muted);
  font-weight: 500;
}
.res--ink .res__meta { border-top-color: rgba(255,255,255,0.14); color: rgba(255,255,255,0.6); }
.res__cta {
  color: var(--c-blue);
  font-weight: 600;
}
.res--ink .res__cta { color: var(--c-blue-2); }
@media (max-width: 920px) { .resources { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .resources { grid-template-columns: 1fr; } }

/* Tech logo display (technologie page) */
.techlogo {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  padding: 40px;
}
.techlogo__word {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.03em;
  line-height: 1;
}
.techlogo img { max-width: 70%; height: auto; }

/* ============================================================
   Schematic UI mockups (reseni page)
   ============================================================ */
.schem {
  width: 100%;
  height: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-family: "Manrope", sans-serif;
}
.fsplit__viz--ink .schem { color: #fff; }
.schem__bar { display: flex; align-items: center; gap: 10px; }
.schem__chip {
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--c-blue); padding: 5px 12px; border-radius: 100px; background: rgba(0,128,192,0.1);
}
.fsplit__viz--ink .schem__chip { color: var(--c-blue-2); background: rgba(31,168,224,0.18); }
.schem__card {
  background: #fff; border: 1px solid var(--c-rule); border-radius: 12px; padding: 16px 18px;
  display: flex; flex-direction: column; gap: 10px;
}
.fsplit__viz--ink .schem__card { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.14); }
.schem__row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.schem__line { height: 9px; border-radius: 5px; background: var(--c-bg-2); }
.fsplit__viz--ink .schem__line { background: rgba(255,255,255,0.14); }
.schem__line.b { background: var(--c-sky); }
.schem__line.a { background: var(--c-blue); }
.schem__dot { width: 26px; height: 26px; border-radius: 100px; background: linear-gradient(135deg, var(--c-sky), var(--c-blue)); flex-shrink: 0; }
.schem__num { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; color: var(--c-ink); }
.fsplit__viz--ink .schem__num { color: #fff; }
.schem__lbl { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--c-muted); }
.fsplit__viz--ink .schem__lbl { color: rgba(255,255,255,0.6); }
.schem__pill { font-size: 10px; font-weight: 600; padding: 3px 9px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.04em; }
.schem__pill.g { background: #D7EDD7; color: #2D6A3A; }
.schem__pill.bl { background: #DCE5FF; color: #2A3FB8; }
.schem__pill.am { background: #F5E3C2; color: #8A5A1A; }
.schem__bars { display: flex; align-items: flex-end; gap: 8px; height: 96px; }
.schem__col { flex: 1; border-radius: 5px 5px 0 0; background: var(--c-blue); }
.schem__grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.schem__kpi { background: #fff; border: 1px solid var(--c-rule); border-radius: 10px; padding: 12px 14px; display: flex; flex-direction: column; gap: 5px; }
.fsplit__viz--ink .schem__kpi { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.14); }
.schem__donut { width: 92px; height: 92px; border-radius: 100px; background: conic-gradient(var(--c-blue) 72%, var(--c-bg-2) 0); display: grid; place-items: center; flex-shrink: 0; }
.schem__donut::after { content: ""; width: 58px; height: 58px; border-radius: 100px; background: #fff; }
.fsplit__viz--ink .schem__donut { background: conic-gradient(var(--c-blue-2) 72%, rgba(255,255,255,0.14) 0); }
.fsplit__viz--ink .schem__donut::after { background: var(--c-ink); }
.schem__browser { background: #fff; border: 1px solid var(--c-rule); border-radius: 12px; overflow: hidden; flex: 1; display: flex; flex-direction: column; }
.fsplit__viz--ink .schem__browser { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.14); }
.schem__browser-bar { display: flex; gap: 6px; padding: 11px 14px; border-bottom: 1px solid var(--c-rule); }
.fsplit__viz--ink .schem__browser-bar { border-bottom-color: rgba(255,255,255,0.12); }
.schem__browser-bar i { width: 9px; height: 9px; border-radius: 100px; background: var(--c-bg-2); }
.fsplit__viz--ink .schem__browser-bar i { background: rgba(255,255,255,0.2); }
.schem__browser-body { padding: 16px 18px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.schem__stepline { display: flex; align-items: center; gap: 0; }
.schem__step { width: 22px; height: 22px; border-radius: 100px; background: var(--c-bg-2); flex-shrink: 0; display: grid; place-items: center; font-size: 10px; font-weight: 700; color: var(--c-muted); }
.schem__step.on { background: var(--c-blue); color: #fff; }
.schem__step-line { flex: 1; height: 2px; background: var(--c-bg-2); }
.schem__step-line.on { background: var(--c-blue); }
.fsplit__viz--ink .schem__step { background: rgba(255,255,255,0.14); color: rgba(255,255,255,0.6); }
.fsplit__viz--ink .schem__step.on { background: var(--c-blue-2); color: var(--c-ink); }
.fsplit__viz--ink .schem__step-line { background: rgba(255,255,255,0.14); }
.fsplit__viz--ink .schem__step-line.on { background: var(--c-blue-2); }
.schem__avatars { display: flex; }
.schem__avatars i { width: 30px; height: 30px; border-radius: 100px; border: 2px solid #fff; margin-left: -8px; background: linear-gradient(135deg, var(--c-sky), var(--c-blue)); }
.schem__avatars i:first-child { margin-left: 0; }
.fsplit__viz--ink .schem__avatars i { border-color: var(--c-ink); }

/* ============================================================
   Case-study detail page
   ============================================================ */

.cdetail-hero {
  background: var(--c-paper);
  border: 1px solid var(--c-rule);
  border-radius: 28px;
  padding: clamp(40px, 5vw, 72px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.cdetail-hero__tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--c-sky-light);
  color: var(--c-deep);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.cdetail-hero__h {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.cdetail-hero__sub {
  font-size: 18px;
  color: var(--c-muted);
  margin-top: 18px;
  line-height: 1.55;
  max-width: 52ch;
}
.cdetail-hero__visual {
  aspect-ratio: 4/3;
  border-radius: 22px;
  background:
    repeating-linear-gradient(135deg, rgba(0,128,192,0.08) 0 6px, transparent 6px 14px),
    var(--c-bg-2);
  display: grid; place-items: center;
  color: var(--c-muted);
}
.cdetail-hero__visual span {
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  background: var(--c-paper);
  font-weight: 500;
}

.cdetail-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--c-rule-strong);
  border-bottom: 1px solid var(--c-rule-strong);
  margin-top: 48px;
}
.cdetail-meta__c {
  padding: 28px 24px 28px 0;
  border-right: 1px solid var(--c-rule);
  display: flex; flex-direction: column; gap: 8px;
}
.cdetail-meta__c:last-child { border-right: none; }
.cdetail-meta__l {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-muted);
  font-weight: 600;
}
.cdetail-meta__v {
  font-size: 19px;
  font-weight: 600;
  color: var(--c-ink);
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.cdetail-body {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 80px;
  margin-top: clamp(48px, 6vw, 80px);
}
.cdetail-body h2 {
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin: 40px 0 16px;
  line-height: 1.15;
}
.cdetail-body h2:first-child { margin-top: 0; }
.cdetail-body p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--c-ink);
  margin-bottom: 16px;
  max-width: 70ch;
}
.cdetail-body ul {
  list-style: none; padding: 0; margin: 0 0 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.cdetail-body ul li {
  display: flex; gap: 12px;
  font-size: 16px;
  color: var(--c-ink);
  line-height: 1.5;
}
.cdetail-body ul li::before {
  content: "";
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 4px;
  background: var(--c-blue);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3 8.5l3 3 7-7' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3 8.5l3 3 7-7' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
}
.cdetail-body blockquote {
  margin: 32px 0;
  padding: 24px 28px;
  background: var(--c-bg-2);
  border-left: 3px solid var(--c-blue);
  border-radius: 0 16px 16px 0;
  font-size: 20px;
  line-height: 1.5;
  color: var(--c-ink);
  letter-spacing: -0.01em;
  font-weight: 500;
}
.cdetail-aside {
  position: sticky;
  top: 120px;
  align-self: flex-start;
}
.cdetail-aside__c {
  background: var(--c-paper);
  border: 1px solid var(--c-rule);
  border-radius: 18px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 18px;
}
.cdetail-aside__c h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-muted);
  font-weight: 600;
  margin: 0;
}
.cdetail-aside__row {
  display: flex; flex-direction: column; gap: 4px;
  padding-top: 14px;
  border-top: 1px solid var(--c-rule);
}
.cdetail-aside__row:first-of-type { border-top: none; padding-top: 0; }
.cdetail-aside__l {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-muted);
  font-weight: 500;
}
.cdetail-aside__v {
  font-size: 16px;
  color: var(--c-ink);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

@media (max-width: 900px) {
  .cdetail-hero { grid-template-columns: 1fr; }
  .cdetail-body { grid-template-columns: 1fr; gap: 32px; }
  .cdetail-meta { grid-template-columns: 1fr 1fr; }
  .cdetail-meta__c { border-right: none; border-bottom: 1px solid var(--c-rule); padding: 20px 0; }
  .cdetail-meta__c:nth-child(odd) { border-right: 1px solid var(--c-rule); padding-right: 20px; }
  .cdetail-aside { position: static; }
}

/* Make case cards on listing clickable */
a.case-link { display: block; }
a.case-link:hover .case { transform: translateY(-2px); border-color: var(--c-rule-strong); }
.case { transition: transform 0.15s ease, border-color 0.15s ease; }

/* Web-to-lead form inputs (partner) */
.pform__in {
  width: 100%;
  height: 50px;
  padding: 0 16px;
  border: 1px solid var(--c-rule-strong);
  border-radius: 12px;
  background: #fff;
  font-family: inherit;
  font-size: 15px;
  color: var(--c-ink);
  outline: none;
  transition: border-color 0.15s ease;
}
textarea.pform__in { height: auto; padding: 12px 16px; line-height: 1.4; }
.pform__in:focus { border-color: var(--c-ink); }
.pform__in::placeholder { color: var(--c-muted-2); }

.nlbox {
  background: var(--c-cream);
  border-radius: 24px;
  padding: clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 24px;
}
.nlbox__h {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.nlbox__h em { color: var(--c-blue); font-style: normal; }
.nlbox__p { color: var(--c-muted); font-size: 16px; margin-top: 14px; max-width: 44ch; line-height: 1.5; }
.nlform { display: flex; gap: 8px; }
.nlform input {
  flex: 1;
  height: 56px;
  padding: 0 24px;
  border-radius: 100px;
  border: 1px solid var(--c-rule-strong);
  background: #fff;
  font-family: inherit;
  font-size: 15px;
  color: var(--c-ink);
  outline: none;
  transition: border-color 0.15s ease;
}
.nlform input:focus { border-color: var(--c-ink); }
@media (max-width: 820px) {
  .nlbox { grid-template-columns: 1fr; }
}

/* Contact form */
.cform {
  background: var(--c-paper);
  border: 1px solid var(--c-rule);
  border-radius: 24px;
  padding: clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
}
.cform__h { font-size: clamp(28px, 3vw, 44px); font-weight: 600; letter-spacing: -0.03em; line-height: 1.05; }
.cform__h em { color: var(--c-blue); font-style: normal; }
.cform__p { color: var(--c-muted); margin-top: 16px; line-height: 1.5; max-width: 36ch; }
.cform__contacts { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; font-size: 15px; }
.cform__contacts span { display: block; font-family: "Manrope", sans-serif; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--c-muted); font-weight: 600; }
.cform__contacts a { color: var(--c-ink); border-bottom: 1px solid var(--c-rule); padding-bottom: 2px; }
.cform__contacts a:hover { color: var(--c-blue); border-color: var(--c-blue); }

.cform__form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cform__field { display: flex; flex-direction: column; gap: 6px; }
.cform__field--full { grid-column: 1/-1; }
.cform__field label {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-muted);
  font-weight: 600;
}
.cform__field input,
.cform__field textarea {
  width: 100%;
  height: 52px;
  padding: 0 18px;
  border: 1px solid var(--c-rule);
  border-radius: 12px;
  background: var(--c-bg);
  font-family: inherit;
  font-size: 15px;
  color: var(--c-ink);
  outline: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.cform__field textarea {
  min-height: 140px;
  padding: 14px 18px;
  resize: vertical;
}
.cform__field input:focus,
.cform__field textarea:focus { border-color: var(--c-ink); background: #fff; }
.cform__submit { grid-column: 1/-1; display: flex; justify-content: flex-end; margin-top: 8px; }
@media (max-width: 820px) {
  .cform { grid-template-columns: 1fr; gap: 32px; }
  .cform__form { grid-template-columns: 1fr; }
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* ============================================================
   Salesforce wordmark (clean, no "powered by")
   ============================================================ */
.sf-lockup {
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.sf-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.sf-logo__cloud {
  width: 64px; height: 45px;
  flex-shrink: 0;
}
.sf-logo__word {
  font-family: "Manrope", sans-serif;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #00A1E0;
}
.sf-lockup__npc {
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--c-ink);
  padding-left: 2px;
}
.sf-lockup__npc span { color: var(--c-muted); font-weight: 500; }

/* On dark backgrounds */
.sf-lockup--light .sf-logo__word { color: #fff; }
.sf-lockup--light .sf-lockup__npc { color: rgba(255,255,255,0.92); }
.sf-lockup--light .sf-lockup__npc span { color: rgba(255,255,255,0.6); }

/* ============================================================
   Mobile nav (hamburger)
   ============================================================ */

.nav__burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 100px;
  background: var(--c-ink);
  color: #fff;
  border: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex-shrink: 0;
}
.nav__burger:hover { background: var(--c-deep); }
.nav__burger svg { width: 22px; height: 22px; }
.nav__burger .icon-close { display: none; }
body.nav-open .nav__burger .icon-open { display: none; }
body.nav-open .nav__burger .icon-close { display: block; }

@media (max-width: 1100px) {
  .nav__cta .btn--ghost { display: none; }
}

@media (max-width: 1000px) {
  .nav__inner {
    padding: 10px 16px 10px 20px;
    border-radius: 18px;
  }
  .nav__links {
    display: none;
  }
  .nav__burger { display: inline-flex; }

  /* Slide-down mobile panel */
  body.nav-open .nav__links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 88px;
    left: 16px;
    right: 16px;
    background: #fff;
    border: 1px solid var(--c-rule);
    border-radius: 18px;
    box-shadow: 0 24px 56px -16px rgba(10,31,51,0.22);
    padding: 16px;
    gap: 2px;
    z-index: 55;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
  }
  body.nav-open .nav__link {
    width: 100%;
    text-align: left;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
  }
  body.nav-open .nav__link.is-on {
    background: var(--c-ink);
    color: #fff;
  }
  body.nav-open .nav__dd {
    position: static;
  }
  /* Dropdown parent becomes an accordion toggle */
  body.nav-open .nav__dd > .nav__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  body.nav-open .nav__dd > .nav__link::after {
    display: inline-block;
    content: "";
    width: 9px; height: 9px;
    margin-left: 12px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    opacity: 0.4;
    transition: transform 0.22s ease, opacity 0.22s ease;
    flex-shrink: 0;
  }
  body.nav-open .nav__dd.is-open > .nav__link {
    background: var(--c-bg-2);
  }
  body.nav-open .nav__dd.is-open > .nav__link::after {
    transform: rotate(225deg) translateY(2px);
    opacity: 0.7;
  }
  /* Panels collapsed by default, revealed when the parent is open */
  body.nav-open .nav__panel {
    display: none;
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 2px 0 10px 16px;
    min-width: 0;
    margin: 2px 0 6px;
    border-left: 2px solid var(--c-rule);
    border-radius: 0;
    grid-template-columns: 1fr;
    gap: 0;
  }
  body.nav-open .nav__dd.is-open > .nav__panel {
    display: grid;
    animation: navAccordion 0.22s ease;
  }
  body.nav-open .nav__panel-item {
    padding: 11px 14px;
    font-size: 15px;
  }
  body.nav-open .nav__panel-item small { font-size: 11px; }
  @keyframes navAccordion {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  body.nav-open { overflow: hidden; }
  body.nav-open::after {
    content: "";
    position: fixed; inset: 0;
    background: rgba(10,31,51,0.4);
    z-index: 40;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }
}

@media (max-width: 640px) {
  .nav__cta .btn span { display: none; }
  .nav__cta .btn { padding: 0 16px; }
}

/* Hero adjustments on mobile */
@media (max-width: 760px) {
  .hero__h { font-size: clamp(34px, 8vw, 56px); }
  .hero .hero__h .accent { display: inline; }
  .hero .hero__h .accent::after { display: none; }
  .hero__sub { font-size: 17px; }
  .hero__ctas { width: 100%; }
  .hero__ctas .btn { flex: 1; min-width: 0; }
  .hero__trust { gap: 14px 24px; font-size: 12px; }

  /* Generic tighter sections */
  .section { padding-top: clamp(48px, 8vw, 72px); padding-bottom: clamp(48px, 8vw, 72px); }
  .shead { margin-bottom: 32px; }

  /* Endorse cards */
  .endorse__logo { height: 44px; }
  .endorse__logo--sf { height: 56px; }

  /* Hide newsletter form vertically */
  .nlbox { padding: 32px 24px; }
  .nlform { flex-direction: column; }
  .nlform .btn { width: 100%; }

  /* CTA split stacks */
  .cta__left, .cta__right { padding: 36px 28px; min-height: 0; }
  .cta__h { font-size: clamp(28px, 7vw, 42px); }

  /* Sf dark block */
  .sfdark { padding: 36px 28px; gap: 32px; }
  .sfdark__cloud { padding: 28px 32px; }
  .sfdark__cloud img { max-width: 200px; }

  /* Footer compact */
  .footer { padding: 56px 20px 32px; border-radius: 24px 24px 0 0; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer__brand { grid-column: 1/-1; }
}

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

  /* Stack hero CTAs full-width for comfortable tap targets */
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; flex: none; }

  /* Brandline wraps cleanly instead of overflowing */
  .hero__brandline { flex-wrap: wrap; gap: 6px 10px; }
  .hero__brandline::before { display: none; }
  .hero__brandline-sep { margin: 0 6px; }

  /* A touch more breathing room in the section gutters */
  .pillar { padding: 24px 22px 26px; min-height: 0; }
}

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 20px;
  border-radius: 100px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn--ink { background: var(--c-ink); color: #fff; }
.btn--ink:hover { background: var(--c-deep); }
.btn--blue { background: var(--c-blue); color: #fff; }
.btn--blue:hover { background: var(--c-deep); }
.btn--white { background: #fff; color: var(--c-ink); border-color: var(--c-rule); }
.btn--white:hover { border-color: var(--c-ink); }
.btn--ghost { background: transparent; color: var(--c-ink); border-color: var(--c-rule-strong); }
.btn--ghost:hover { background: var(--c-paper); }

.btn--lg { height: 56px; padding: 0 28px; font-size: 16px; gap: 12px; }

.btn__icon {
  width: 28px; height: 28px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.18);
  border-radius: 100px;
}
.btn--white .btn__icon, .btn--ghost .btn__icon { background: var(--c-bg-2); }
.btn__icon svg { width: 12px; height: 12px; }

/* ============================================================
   Hero — bento layout
   ============================================================ */

.hero {
  padding-top: clamp(48px, 6vw, 96px);
  padding-bottom: clamp(48px, 6vw, 96px);
}

.hero__left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero__h {
  font-size: var(--t-h1);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.98;
  max-width: 26ch;
}

.hero__brandline {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.hero__brandline strong { color: var(--c-ink); font-weight: 600; }
.hero__brandline-sep {
  margin: 0 14px;
  color: var(--c-muted-2);
}
.hero__brandline::before {
  content: "";
  width: 40px; height: 1px;
  background: var(--c-blue);
}

.hero__h .accent {
  display: inline-block;
  position: relative;
  color: var(--c-blue);
}
.hero__h .accent::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 4%;
  height: 14%;
  background: var(--c-sky-light);
  z-index: -1;
}
.hero__h .ink { color: var(--c-deep); }

.hero__sub {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--c-muted);
  line-height: 1.5;
  max-width: 72ch;
}

.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.hero__trust {
  display: flex;
  gap: 28px;
  font-size: 13px;
  color: var(--c-muted);
  flex-wrap: wrap;
  font-family: "Manrope", sans-serif;
  letter-spacing: 0.02em;
}
.hero__trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero__trust i {
  width: 8px; height: 8px; border-radius: 999px;
  background: #2D8A4A;
}

/* Bento on the right */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(110px, auto);
  gap: 14px;
}
.bento__tile {
  background: var(--c-paper);
  border: 1px solid var(--c-rule);
  border-radius: 22px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.bento__tile--span4 { grid-column: span 4; }
.bento__tile--span3 { grid-column: span 3; }
.bento__tile--span2 { grid-column: span 2; }
.bento__tile--span6 { grid-column: span 6; }
.bento__tile--ink { background: var(--c-ink); color: #fff; border-color: transparent; }
.bento__tile--blue { background: var(--c-blue); color: #fff; border-color: transparent; }
.bento__tile--cream { background: var(--c-cream); border-color: transparent; }

.bento__label {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.bento__tile--ink .bento__label,
.bento__tile--blue .bento__label { color: rgba(255,255,255,0.7); }

.bento__big {
  font-size: clamp(36px, 4vw, 64px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.95;
}
.bento__sub {
  font-size: 13px;
  color: var(--c-muted);
  line-height: 1.4;
}
.bento__tile--ink .bento__sub,
.bento__tile--blue .bento__sub { color: rgba(255,255,255,0.78); }

/* Specific bento tiles */
.tile-chart {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tile-chart__bars {
  display: flex;
  align-items: end;
  gap: 6px;
  height: 80px;
}
.tile-chart__bar {
  flex: 1;
  background: var(--c-sky-light);
  border-radius: 4px;
  position: relative;
}
.tile-chart__bar--strong { background: var(--c-blue); }

.tile-avatars {
  display: flex;
  align-items: center;
}
.tile-avatars__a {
  width: 32px; height: 32px;
  border-radius: 100px;
  border: 2px solid var(--c-paper);
  background: linear-gradient(135deg, #80C0E0, #0080C0);
  margin-left: -8px;
}
.tile-avatars__a:first-child { margin-left: 0; }
.tile-avatars__a:nth-child(2) { background: linear-gradient(135deg, #C8E4F0, #1FA8E0); }
.tile-avatars__a:nth-child(3) { background: linear-gradient(135deg, #F0E9D6, #C5B98E); }
.tile-avatars__a:nth-child(4) { background: linear-gradient(135deg, #1A3550, #0A1F33); }
.tile-avatars__a:nth-child(5) {
  background: var(--c-bg-2);
  color: var(--c-muted);
  font-size: 11px;
  font-weight: 600;
  font-family: "Manrope", sans-serif;
  display: grid; place-items: center;
}

.tile-sf {
  background:
    radial-gradient(circle at 80% 30%, rgba(31,168,224,0.4), transparent 50%),
    var(--c-ink);
  color: #fff;
}
.tile-sf__cloud {
  width: 84px; height: auto;
  margin-bottom: 8px;
}

.tile-progress {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tile-progress__bar {
  height: 8px;
  border-radius: 100px;
  background: var(--c-bg-2);
  overflow: hidden;
  position: relative;
}
.tile-progress__bar::before {
  content: "";
  position: absolute;
  inset: 0 30% 0 0;
  background: linear-gradient(90deg, var(--c-blue), var(--c-blue-2));
  border-radius: 100px;
}
.tile-progress__row {
  display: flex; justify-content: space-between;
  font-size: 12px; font-family: "Manrope", sans-serif;
  color: var(--c-muted);
}

@media (max-width: 940px) {
  .hero__grid { grid-template-columns: 1fr; }
  .bento { grid-template-columns: repeat(4, 1fr); }
  .bento__tile--span4 { grid-column: span 4; }
  .bento__tile--span3 { grid-column: span 2; }
  .bento__tile--span2 { grid-column: span 2; }
  .bento__tile--span6 { grid-column: span 4; }
}

/* ============================================================
   Marquee logo strip
   ============================================================ */

.marquee {
  border-top: 1px solid var(--c-rule);
  border-bottom: 1px solid var(--c-rule);
  padding: 28px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.marquee::before, .marquee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--c-bg), transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--c-bg), transparent); }
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 56px;
  animation: marquee 40s linear infinite;
}
.marquee__label {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-muted);
  padding-right: 32px;
  border-right: 1px solid var(--c-rule);
}
.marquee__item {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--c-ink);
  opacity: 0.85;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.marquee__item::after {
  content: "";
  width: 6px; height: 6px;
  background: var(--c-blue);
  border-radius: 100px;
  display: inline-block;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   Section heads
   ============================================================ */

.shead {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}
.shead__title {
  font-size: var(--t-h2);
  font-weight: 600;
  letter-spacing: -0.035em;
  max-width: 18ch;
}
.shead__title em { font-style: normal; color: var(--c-blue); }
.shead__lede {
  color: var(--c-muted);
  font-size: 16px;
  max-width: 44ch;
  line-height: 1.5;
}

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

/* ============================================================
   Big numbers stats — staggered
   ============================================================ */

.numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.numbers__cell {
  padding: 32px 24px;
  border-right: 1px solid var(--c-rule);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.numbers__cell:last-child { border-right: none; }
.numbers__cell:nth-child(even) { padding-top: 64px; }
.numbers__big {
  font-size: clamp(48px, 5vw, 84px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.92;
  color: var(--c-ink);
}
.numbers__big small { color: var(--c-blue); font-size: 0.55em; font-weight: 500; }
.numbers__lbl {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-muted);
}

@media (max-width: 760px) {
  .numbers { grid-template-columns: 1fr 1fr; }
  .numbers__cell:nth-child(even) { padding-top: 32px; }
  .numbers__cell:nth-child(2) { border-right: none; }
  .numbers__cell:nth-child(1), .numbers__cell:nth-child(2) {
    border-bottom: 1px solid var(--c-rule);
  }
}

/* ============================================================
   Feature bento — big tiles
   ============================================================ */

.fbento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.fbento__t {
  background: var(--c-paper);
  border: 1px solid var(--c-rule);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 320px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.fbento__t:hover { transform: translateY(-2px); border-color: var(--c-rule-strong); }
.fbento__t--w3 { grid-column: span 3; }
.fbento__t--w4 { grid-column: span 4; }
.fbento__t--w2 { grid-column: span 2; }
.fbento__t--w6 { grid-column: span 6; }

.fbento__t--ink { background: var(--c-ink); color: #fff; border-color: transparent; }
.fbento__t--ink .fbento__desc { color: rgba(255,255,255,0.74); }
.fbento__t--ink .fbento__num { color: rgba(255,255,255,0.55); }

.fbento__t--blue { background: var(--c-blue); color: #fff; border-color: transparent; }
.fbento__t--blue .fbento__desc { color: rgba(255,255,255,0.85); }
.fbento__t--blue .fbento__num { color: rgba(255,255,255,0.65); }

.fbento__num {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--c-muted);
}
.fbento__h {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-top: 8px;
}
.fbento__desc {
  color: var(--c-muted);
  font-size: 15px;
  line-height: 1.5;
  max-width: 36ch;
}
.fbento__viz {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
}

/* tile visuals */
.viz-table {
  width: 100%;
  background: var(--c-bg);
  border: 1px solid var(--c-rule);
  border-radius: 12px;
  overflow: hidden;
  font-size: 12px;
}
.viz-table__row {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 0.6fr;
  padding: 8px 14px;
  border-bottom: 1px solid var(--c-rule);
  align-items: center;
  gap: 8px;
}
.viz-table__row:last-child { border-bottom: none; }
.viz-table__row--h {
  background: var(--c-bg-2);
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-muted);
}
.viz-table__pill {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 100px;
  background: rgba(0,128,192,0.12);
  color: var(--c-deep);
  font-size: 11px;
  font-weight: 600;
  font-family: "Manrope", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.viz-cal {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  width: 100%;
}
.viz-cal__d {
  aspect-ratio: 1;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
}
.viz-cal__d--on { background: var(--c-blue-2); }
.viz-cal__d--soon { background: rgba(31,168,224,0.4); }

.viz-circles {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
}
.viz-circle {
  --p: 72;
  --c: var(--c-blue);
  width: 100px; height: 100px;
  border-radius: 100px;
  background: conic-gradient(var(--c) calc(var(--p) * 1%), var(--c-bg-2) 0);
  display: grid;
  place-items: center;
  position: relative;
}
.viz-circle::before {
  content: "";
  position: absolute; inset: 12px;
  background: var(--c-paper);
  border-radius: 100px;
}
.viz-circle__val {
  position: relative;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.viz-mail {
  background: var(--c-paper);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  padding: 14px 16px;
  width: 100%;
  color: var(--c-ink);
}
.viz-mail__from {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  color: var(--c-muted);
  letter-spacing: 0.04em;
}
.viz-mail__sub {
  font-size: 14px;
  font-weight: 600;
  margin-top: 4px;
}
.viz-mail__prev {
  font-size: 12px;
  color: var(--c-muted);
  margin-top: 4px;
}

@media (max-width: 940px) {
  .fbento { grid-template-columns: repeat(4, 1fr); }
  .fbento__t--w3 { grid-column: span 2; }
  .fbento__t--w4 { grid-column: span 4; }
  .fbento__t--w2 { grid-column: span 2; }
  .fbento__t--w6 { grid-column: span 4; }
}
@media (max-width: 600px) {
  .fbento { grid-template-columns: 1fr; }
  .fbento__t, .fbento__t--w3, .fbento__t--w4, .fbento__t--w2, .fbento__t--w6 { grid-column: span 1; }
}

/* ============================================================
   Feature catalog — grouped lists
   ============================================================ */

.fcat {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.fcat__group {
  background: var(--c-paper);
  border: 1px solid var(--c-rule);
  border-radius: 24px;
  padding: 36px 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.fcat__group--ink {
  background: var(--c-ink);
  color: #fff;
  border-color: transparent;
}
.fcat__group--ink .fcat__desc { color: rgba(255,255,255,0.65); }
.fcat__group--ink .fcat__list li { color: rgba(255,255,255,0.92); }
.fcat__group--ink .fcat__list li::before { background: var(--c-blue-2); }
.fcat__group--ink .fcat__num { color: var(--c-blue-2); }

.fcat__head {
  display: flex;
  align-items: baseline;
  gap: 18px;
}
.fcat__num {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--c-blue);
  font-weight: 600;
  flex-shrink: 0;
}
.fcat__title {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.fcat__desc {
  color: var(--c-muted);
  font-size: 14px;
  line-height: 1.5;
  max-width: 42ch;
}

.fcat__list {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  font-size: 14.5px;
}
.fcat__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.35;
}
.fcat__list li::before {
  content: "";
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-top: 3px;
  background: var(--c-blue);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3 8.5l3 3 7-7' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3 8.5l3 3 7-7' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
}
.fcat__list li span.note {
  color: var(--c-muted);
  font-size: 12px;
  font-family: "Manrope", sans-serif;
  margin-left: 4px;
}

@media (max-width: 920px) {
  .fcat { grid-template-columns: 1fr; }
  .fcat__list { grid-template-columns: 1fr; }
}

.showcase {
  background: var(--c-ink);
  color: #fff;
  border-radius: 32px;
  padding: clamp(48px, 6vw, 96px) clamp(32px, 4vw, 72px);
  position: relative;
  overflow: hidden;
}
.showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 0%, rgba(31,168,224,0.25), transparent 50%);
}
.showcase__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
  position: relative;
}
.showcase__h {
  font-size: var(--t-h2);
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.035em;
  max-width: 18ch;
}
.showcase__h em { font-style: normal; color: var(--c-blue-2); }
.showcase__sub {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  max-width: 40ch;
  line-height: 1.5;
}
.showcase__tabs {
  display: flex; gap: 6px; flex-wrap: wrap;
  margin-bottom: 24px;
  position: relative;
}
.showcase__tab {
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.18);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  background: transparent;
  cursor: pointer;
  font-weight: 500;
}
.showcase__tab.is-on {
  background: var(--c-blue-2);
  color: var(--c-ink);
  border-color: var(--c-blue-2);
}

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

/* Dashboard mock */
.dash {
  background: var(--c-paper);
  color: var(--c-ink);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.5);
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 560px;
  position: relative;
}
.dash__side {
  background: var(--c-bg);
  border-right: 1px solid var(--c-rule);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dash__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px 22px;
}
.dash__brand img { height: 28px; width: auto; }
.dash__group {
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-muted-2);
  padding: 16px 10px 6px;
}
.dash__item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--c-muted);
  font-weight: 500;
}
.dash__item.is-on {
  background: var(--c-ink);
  color: #fff;
}
.dash__item .dot {
  width: 6px; height: 6px;
  background: currentColor;
  border-radius: 100px;
  opacity: 0.7;
}
.dash__item.is-on .dot { background: var(--c-blue-2); opacity: 1; }

.dash__main {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.dash__top {
  display: flex; justify-content: space-between;
  align-items: flex-end;
}
.dash__crumb {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-muted);
}
.dash__pageh {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-top: 4px;
}
.dash__add {
  padding: 8px 14px;
  border-radius: 100px;
  background: var(--c-blue);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  font-family: "Manrope", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.dash__kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.dash__kpi {
  background: var(--c-bg);
  border-radius: 12px;
  padding: 14px 16px;
}
.dash__kpi.is-blue {
  background: var(--c-ink);
  color: #fff;
}
.dash__kpi-l {
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-muted);
}
.dash__kpi.is-blue .dash__kpi-l { color: rgba(255,255,255,0.65); }
.dash__kpi-v {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-top: 4px;
}
.dash__kpi-d {
  font-size: 11px;
  color: #2D8A4A;
  margin-top: 2px;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
}
.dash__kpi.is-blue .dash__kpi-d { color: var(--c-blue-2); }

.dash__chart {
  flex: 1;
  background: var(--c-bg);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 200px;
}
.dash__chart-head {
  display: flex; justify-content: space-between;
  align-items: center;
}
.dash__chart-h {
  font-size: 13px;
  font-weight: 600;
}
.dash__chart-legend {
  display: flex; gap: 14px;
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.dash__chart-legend span { display: inline-flex; align-items: center; gap: 6px; }
.dash__chart-legend i {
  width: 8px; height: 8px; border-radius: 100px;
}
.dash__chart-bars {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 8px;
  align-items: end;
}
.dash__chart-bar {
  display: flex;
  flex-direction: column;
  gap: 2px;
  height: 100%;
  align-items: stretch;
  justify-content: flex-end;
}
.dash__chart-bar i {
  border-radius: 3px;
  display: block;
}
.dash__chart-bar i.a { background: var(--c-blue); }
.dash__chart-bar i.b { background: var(--c-sky); }

@media (max-width: 760px) {
  .dash { grid-template-columns: 1fr; }
  .dash__side { display: none; }
  .dash__kpis { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   Product showcase — clean dashboard
   ============================================================ */

.endorse {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.endorse__card {
  background: var(--c-paper);
  border: 1px solid var(--c-rule);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 200px;
}
.endorse__lbl {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-muted);
}
.endorse__logo {
  height: 56px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  align-self: flex-start;
}
.endorse__logo--sf { height: 72px; }
.endorse__t {
  color: var(--c-muted);
  font-size: 14px;
  max-width: 48ch;
  line-height: 1.5;
}
.endorse__logoslot {
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

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

/* ============================================================
   Agentforce / AI section
   ============================================================ */

.ai {
  background:
    radial-gradient(circle at 100% 0%, rgba(31,168,224,0.22), transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(0,128,192,0.18), transparent 50%),
    var(--c-ink);
  color: #fff;
  border-radius: 32px;
  padding: clamp(56px, 7vw, 96px);
  position: relative;
  overflow: hidden;
}

.ai__head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}

.ai__lbl {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-blue-2);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.ai__lbl::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--c-blue-2);
  border-radius: 100px;
  box-shadow: 0 0 14px var(--c-blue-2);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.15); }
}

.ai__h {
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.02;
  color: #fff;
  max-width: 18ch;
}
.ai__h em { font-style: normal; color: var(--c-blue-2); }
.ai__lede {
  color: rgba(255,255,255,0.74);
  font-size: 17px;
  line-height: 1.55;
  max-width: 46ch;
}

.ai__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.ai__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.ai__card-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-blue-2);
  align-self: flex-start;
  padding: 5px 10px;
  border-radius: 100px;
  background: rgba(31,168,224,0.12);
  border: 1px solid rgba(31,168,224,0.25);
}
.ai__card-h {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: #fff;
}
.ai__card-p {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  line-height: 1.5;
}

/* Mock chat thread */
.ai__chat {
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  font-size: 13px;
}
.ai__chat-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.ai__chat-from {
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  flex-shrink: 0;
  width: 48px;
  padding-top: 2px;
}
.ai__chat-from--ai { color: var(--c-blue-2); }
.ai__chat-body {
  color: rgba(255,255,255,0.88);
  line-height: 1.45;
  flex: 1;
}
.ai__chat-body--ai { color: #fff; }

@media (max-width: 920px) {
  .ai__grid { grid-template-columns: 1fr 1fr; }
  .ai__head { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 600px) {
  .ai__grid { grid-template-columns: 1fr; }
}

.sfdark {
  background: var(--c-ink);
  color: #fff;
  border-radius: 32px;
  padding: clamp(56px, 7vw, 96px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.sfdark::before {
  content: "";
  position: absolute;
  right: -10%; top: -30%;
  width: 60%; height: 160%;
  background: radial-gradient(circle, rgba(0,128,192,0.4), transparent 70%);
}
.sfdark__txt { position: relative; }
.sfdark__lbl {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-blue-2);
  margin-bottom: 20px;
}
.sfdark__h {
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.05;
}
.sfdark__h em { font-style: normal; color: var(--c-blue-2); }
.sfdark__p {
  margin-top: 20px;
  color: rgba(255,255,255,0.74);
  font-size: 16px;
  line-height: 1.55;
  max-width: 44ch;
}
.sfdark__p b { color: #fff; font-weight: 600; }

.sfdark__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0;
}
.sfdark__tag {
  padding: 7px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.18);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.04);
}

.sfdark__visual {
  position: relative;
  display: grid;
  place-items: center;
}
.sfdark__cloud {
  background: #fff;
  color: var(--c-ink);
  border-radius: 28px;
  padding: 36px 40px;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 320px;
  width: 100%;
}
.sfdark__cloud img { max-width: 240px; height: auto; }
.sfdark__cloud-cap {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-muted);
  text-align: center;
}
.sfdark__cloud-rule {
  width: 80%;
  height: 1px;
  background: var(--c-rule);
}

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

/* ============================================================
   Salesforce naming explainer (home)
   ============================================================ */
.sfname {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  background: var(--c-paper);
  border: 1px solid var(--c-rule);
  border-radius: 28px;
  padding: clamp(32px, 4vw, 56px);
}
.sfname__lbl {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-blue);
  margin-bottom: 18px;
}
.sfname__h {
  font-size: var(--t-h2);
  font-weight: 600;
  color: var(--c-ink);
  line-height: 1.02;
  margin: 0 0 18px;
}
.sfname__h em { font-style: normal; color: var(--c-blue); }
.sfname__p {
  color: var(--c-muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 44ch;
  margin: 0 0 28px;
}
.sfname__p b { color: var(--c-ink); font-weight: 600; }
.sfname__cards { display: flex; flex-direction: column; gap: 14px; }
.sfname__rename {
  background: var(--c-ink);
  color: #fff;
  border-radius: 18px;
  padding: 28px 30px;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 14px 18px;
}
.sfname__old {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-decoration: line-through;
  text-decoration-color: rgba(255,255,255,0.3);
}
.sfname__arrow { color: var(--c-blue-2); display: grid; place-items: center; }
.sfname__new {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  color: #fff;
}
.sfname__cap {
  grid-column: 1 / -1;
  font-family: "Manrope", sans-serif;
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(255,255,255,0.62);
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.sfname__pts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.sfname__pt {
  border: 1px solid var(--c-rule);
  border-radius: 16px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--c-bg);
}
.sfname__pt-k {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--c-deep);
}
.sfname__pt-v { font-size: 13.5px; line-height: 1.5; color: var(--c-muted); }
@media (max-width: 860px) {
  .sfname { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .sfname__pts { grid-template-columns: 1fr; }
  .sfname__rename { grid-template-columns: 1fr; text-align: left; }
  .sfname__arrow { transform: rotate(90deg); justify-self: start; }
}

/* ============================================================
   Salesforce Nonprofit Cloud — full bleed dark
   ============================================================ */

.pq {
  display: grid;
  grid-template-columns: 0.3fr 1fr 0.3fr;
  align-items: center;
  gap: 32px;
}
.pq__rule { height: 1px; background: var(--c-rule-strong); }
.pq__txt {
  font-size: clamp(26px, 2.6vw, 40px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.18;
  text-align: center;
  text-wrap: balance;
}
.pq__txt em { font-style: normal; color: var(--c-blue); }
.pq__cite {
  display: flex; align-items: center; gap: 14px; justify-content: center;
  margin-top: 28px;
}
.pq__avatar {
  width: 44px; height: 44px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--c-sky), var(--c-blue));
}
.pq__who { font-size: 14px; text-align: left; }
.pq__name { font-weight: 600; }
.pq__role { color: var(--c-muted); font-size: 13px; }

@media (max-width: 760px) {
  .pq { grid-template-columns: 1fr; }
  .pq__rule { display: none; }
}

/* ============================================================
   FAQ — toggle list
   ============================================================ */

.faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.faq__item {
  background: var(--c-paper);
  border: 1px solid var(--c-rule);
  border-radius: 18px;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq__q {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.02em;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.faq__q span {
  flex-shrink: 0;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  color: var(--c-blue);
  font-weight: 500;
}
.faq__a {
  color: var(--c-muted);
  font-size: 15px;
  line-height: 1.5;
}
@media (max-width: 760px) {
  .faq { grid-template-columns: 1fr; }
}

/* ============================================================
   FAQ accordion (faq.html) — collapsible, grouped by category
   ============================================================ */
.faqpage {
  display: grid;
  grid-template-columns: 0.32fr 0.68fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
.faqnav {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.faqnav__lbl {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-muted);
  font-weight: 600;
  margin-bottom: 12px;
}
.faqnav__link {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 9px 14px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--c-ink);
  transition: background 0.14s ease, color 0.14s ease;
}
.faqnav__link:hover { background: var(--c-bg-2); }
.faqnav__link.is-on { background: var(--c-ink); color: #fff; }
.faqnav__link b {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--c-blue);
}
.faqnav__link.is-on b { color: var(--c-blue-2); }

.faqgroups { display: flex; flex-direction: column; gap: clamp(40px, 5vw, 64px); }
.faqgroup { scroll-margin-top: 120px; }
.faqgroup__head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 20px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--c-rule-strong);
}
.faqgroup__num {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--c-blue);
  flex-shrink: 0;
}
.faqgroup__title {
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.faqx { display: flex; flex-direction: column; gap: 10px; }
.faqx__item {
  background: var(--c-paper);
  border: 1px solid var(--c-rule);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.faqx__item[open] {
  border-color: var(--c-rule-strong);
  box-shadow: 0 10px 32px -18px rgba(10,31,51,0.2);
}
.faqx__item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--c-ink);
}
.faqx__item summary::-webkit-details-marker { display: none; }
.faqx__item summary:hover { color: var(--c-blue); }
.faqx__icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 100px;
  background: var(--c-bg-2);
  display: grid; place-items: center;
  color: var(--c-deep);
  transition: transform 0.22s ease, background 0.15s ease, color 0.15s ease;
}
.faqx__icon svg { width: 14px; height: 14px; }
.faqx__item[open] .faqx__icon {
  background: var(--c-blue);
  color: #fff;
  transform: rotate(135deg);
}
.faqx__a {
  padding: 0 26px 24px;
  color: var(--c-muted);
  font-size: 15.5px;
  line-height: 1.6;
  max-width: 76ch;
}
@media (max-width: 900px) {
  .faqpage { grid-template-columns: 1fr; gap: 36px; }
  .faqnav {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }
  .faqnav__lbl { width: 100%; margin-bottom: 4px; }
  .faqnav__link {
    border: 1px solid var(--c-rule);
    padding: 8px 14px;
    font-size: 13px;
  }
  .faqnav__link b { display: none; }
}

/* ============================================================
   Final CTA — split block
   ============================================================ */

.cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid var(--c-rule);
}
.cta__left {
  background: var(--c-blue);
  color: #fff;
  padding: clamp(48px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: space-between;
  min-height: 360px;
}
.cta__right {
  background: var(--c-cream);
  padding: clamp(48px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}
.cta__h {
  font-size: clamp(32px, 3.4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #fff;
}
.cta__lbl {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.cta__lbl-ink {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.cta__right h3 {
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.cta__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}
.cta__list li {
  display: flex;
  gap: 12px;
  font-size: 15px;
  align-items: flex-start;
}
.cta__list li::before {
  content: "";
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 2px;
  background: var(--c-ink);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3 8.5l3 3 7-7' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3 8.5l3 3 7-7' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
}

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

/* ============================================================
   Footer
   ============================================================ */

.footer {
  background: var(--c-ink);
  color: rgba(255,255,255,0.78);
  border-radius: 32px 32px 0 0;
  margin-top: var(--p-section);
  padding: clamp(60px, 7vw, 96px) var(--p-gutter) 40px;
}
.footer__inner {
  max-width: var(--w-container);
  margin: 0 auto;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer__brand img { height: 48px; width: auto; filter: brightness(0) invert(1); }
.footer__brand p { margin-top: 16px; max-width: 32ch; font-size: 14px; color: rgba(255,255,255,0.7); }
.footer__partners {
  display: flex; gap: 20px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  align-items: center;
}
.footer__partners img { max-height: 36px; width: auto; }
.footer__col h4 {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__col li a { font-size: 14px; color: rgba(255,255,255,0.85); }
.footer__col li a:hover { color: var(--c-blue-2); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 32px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  font-family: "Manrope", sans-serif;
}

@media (max-width: 820px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; gap: 8px; }
}

/* ============================================================
   Page heads (sub-pages)
   ============================================================ */

.phead {
  padding-top: clamp(64px, 8vw, 120px);
  padding-bottom: clamp(40px, 5vw, 80px);
}
.phead__lbl {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-blue);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 14px;
}
.phead__lbl::before {
  content: "";
  width: 32px; height: 1px;
  background: var(--c-blue);
}
.phead__h {
  font-size: var(--t-h1);
  font-weight: 600;
  letter-spacing: -0.035em;
  max-width: 16ch;
  line-height: 0.98;
}
.phead__h em { font-style: normal; color: var(--c-blue); }
.phead__lede {
  margin-top: 28px;
  font-size: clamp(18px, 1.5vw, 22px);
  color: var(--c-muted);
  max-width: 56ch;
  line-height: 1.5;
}

/* ============================================================
   Feature page sections
   ============================================================ */

.fsplit {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.fsplit--rev .fsplit__txt { order: 2; }
.fsplit__lbl {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-blue);
  margin-bottom: 20px;
}
.fsplit__h {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.fsplit__h em { font-style: normal; color: var(--c-blue); }
.fsplit__p {
  margin-top: 20px;
  color: var(--c-muted);
  font-size: 17px;
  line-height: 1.55;
  max-width: 50ch;
}
.fsplit__p strong { color: var(--c-ink); font-weight: 600; }
.fsplit__quote {
  margin: 32px 0 0;
  padding: 24px 28px;
  background: var(--c-bg-2);
  border-left: 3px solid var(--c-blue);
  border-radius: 0 16px 16px 0;
  max-width: 52ch;
  font-size: 19px;
  line-height: 1.45;
  letter-spacing: -0.01em;
  font-weight: 500;
  color: var(--c-ink);
}
.fsplit__quote cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-muted);
  line-height: 1.7;
}
.fsplit__list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--c-rule-strong);
}
.fsplit__list li {
  display: flex;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--c-rule);
  font-size: 15px;
}
.fsplit__list li b {
  font-weight: 600;
  flex-shrink: 0;
  width: 120px;
}
.fsplit__list li span { color: var(--c-muted); }

/* Salesforce terminology mini-explainer (technologie.html) */
.sfterms {
  margin-top: 28px;
  padding: 24px 26px;
  border: 1px solid var(--c-rule);
  border-radius: 18px;
  background: var(--c-bg-2);
}
.sfterms__head { margin-bottom: 18px; }
.sfterms__tag {
  display: inline-block;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-blue);
  margin-bottom: 8px;
}
.sfterms__lede {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--c-ink);
}
.sfterms__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}
.sfterms__row { display: flex; flex-direction: column; gap: 3px; }
.sfterms__row b { font-weight: 600; color: var(--c-ink); font-size: 14.5px; }
.sfterms__row span {
  font-family: "Manrope", sans-serif;
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--c-muted);
}
.sfterms__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-blue);
  text-decoration: none;
}
.sfterms__link:hover { color: var(--c-deep); }
@media (max-width: 600px) {
  .sfterms__grid { grid-template-columns: 1fr; }
}

.fsplit__viz {
  background: var(--c-paper);
  border: 1px solid var(--c-rule);
  border-radius: 28px;
  aspect-ratio: 5/4;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.fsplit__viz--ink {
  background: var(--c-ink);
  color: #fff;
}

.placeholder-grid {
  width: 100%; height: 100%;
  background:
    repeating-linear-gradient(135deg, rgba(0,128,192,0.08) 0 6px, transparent 6px 14px),
    var(--c-paper);
  border-radius: 14px;
  display: grid;
  place-items: center;
}
.placeholder-grid--ink {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0 6px, transparent 6px 14px),
    transparent;
}
.placeholder-grid__lbl {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-muted);
  background: var(--c-paper);
  padding: 6px 12px;
  border-radius: 100px;
  border: 1px solid var(--c-rule);
}
.placeholder-grid--ink .placeholder-grid__lbl {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.7);
}

@media (max-width: 820px) {
  .fsplit { grid-template-columns: 1fr; }
  .fsplit--rev .fsplit__txt { order: 0; }
}

/* ============================================================
   Pricing — vertical cards
   ============================================================ */

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.plan {
  background: var(--c-paper);
  border: 1px solid var(--c-rule);
  border-radius: 24px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.plan--top {
  background: var(--c-ink);
  color: #fff;
  border-color: transparent;
}
.plan__badge {
  position: absolute;
  top: -10px;
  right: 24px;
  background: var(--c-blue-2);
  color: var(--c-ink);
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 100px;
}
.plan__name {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-muted);
  margin-bottom: 16px;
}
.plan--top .plan__name { color: var(--c-blue-2); }
.plan__price {
  font-size: 56px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  display: flex; align-items: baseline; gap: 8px;
}
.plan__price small {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-muted);
}
.plan--top .plan__price small { color: rgba(255,255,255,0.65); }
.plan__desc {
  margin-top: 16px;
  color: var(--c-muted);
  font-size: 14px;
  min-height: 3em;
  line-height: 1.4;
}
.plan--top .plan__desc { color: rgba(255,255,255,0.74); }
.plan__cta { margin-top: 24px; }
.plan__rule {
  height: 1px;
  background: var(--c-rule);
  margin: 28px 0;
}
.plan--top .plan__rule { background: rgba(255,255,255,0.14); }
.plan__feat {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}
.plan__feat li {
  display: flex; gap: 10px;
  line-height: 1.4;
  align-items: flex-start;
}
.plan__feat li::before {
  content: "";
  flex-shrink: 0;
  width: 16px; height: 16px;
  margin-top: 2px;
  background: var(--c-blue);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3 8.5l3 3 7-7' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3 8.5l3 3 7-7' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
}
.plan--top .plan__feat li::before { background: var(--c-blue-2); }

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

/* ============================================================
   Pricing v2 — base plan + add-ons
   ============================================================ */

.priceframe {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
  border: 1px solid var(--c-rule);
  border-radius: 28px;
  overflow: hidden;
  background: var(--c-paper);
}

.basebox {
  background: var(--c-ink);
  color: #fff;
  padding: clamp(40px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  overflow: hidden;
}
.basebox::before {
  content: "";
  position: absolute;
  inset: -20% -20% auto auto;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(31,168,224,0.22), transparent 70%);
}
.basebox__lbl {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-blue-2);
  position: relative;
}
.basebox__h {
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: #fff;
  position: relative;
}
.basebox__h em { font-style: normal; color: var(--c-blue-2); }
.basebox__sub {
  color: rgba(255,255,255,0.74);
  font-size: 16px;
  line-height: 1.5;
  max-width: 40ch;
  position: relative;
}
.basebox__price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  position: relative;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.basebox__price-big {
  font-size: clamp(56px, 6vw, 88px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}
.basebox__price-unit {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.basebox__cta { position: relative; display: flex; gap: 10px; flex-wrap: wrap; }

.basefeat {
  background: var(--c-paper);
  padding: clamp(40px, 5vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.basefeat__h {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-muted);
}
.basefeat__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.basefeat__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.4;
}
.basefeat__list li::before {
  content: "";
  flex-shrink: 0;
  width: 16px; height: 16px;
  margin-top: 3px;
  background: var(--c-blue);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3 8.5l3 3 7-7' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3 8.5l3 3 7-7' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
}
.basefeat__list li b { font-weight: 600; }
.basefeat__list li span.note {
  color: var(--c-muted);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  margin-left: 6px;
}

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

/* Add-ons */
.addons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.addon {
  background: var(--c-paper);
  border: 1px solid var(--c-rule);
  border-radius: 20px;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.addon:hover { border-color: var(--c-rule-strong); transform: translateY(-2px); }
.addon__cat {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-blue);
}
.addon__name {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
}
.addon__desc {
  color: var(--c-muted);
  font-size: 14px;
  line-height: 1.5;
  flex: 1;
}
.addon__foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--c-rule);
  gap: 8px;
}
.addon__price {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.025em;
}
.addon__price small {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  color: var(--c-muted);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-left: 4px;
}
.addon__add {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-blue);
  font-weight: 600;
}

.addon--ink {
  background: var(--c-ink);
  color: #fff;
  border-color: transparent;
}
.addon--ink .addon__desc { color: rgba(255,255,255,0.72); }
.addon--ink .addon__foot { border-top-color: rgba(255,255,255,0.14); }
.addon--ink .addon__cat { color: var(--c-blue-2); }
.addon--ink .addon__price small { color: rgba(255,255,255,0.6); }
.addon--ink .addon__add { color: var(--c-blue-2); }

@media (max-width: 920px) { .addons { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .addons { grid-template-columns: 1fr; } }

/* Section divider with label */
.divlabel {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 24px;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-muted);
}
.divlabel::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--c-rule-strong);
}
/* Compare table */
.cmp {
  margin-top: clamp(80px, 8vw, 120px);
  background: var(--c-paper);
  border: 1px solid var(--c-rule);
  border-radius: 24px;
  overflow: hidden;
}
.cmp__row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--c-rule);
}
.cmp__row:last-child { border-bottom: none; }
.cmp__row--h {
  background: var(--c-bg);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-muted);
  font-weight: 500;
}
.cmp__row--g {
  background: var(--c-bg-2);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-ink);
  font-weight: 600;
}
.cmp__c { padding: 18px 24px; border-right: 1px solid var(--c-rule); font-size: 14px; }
.cmp__c:last-child { border-right: none; }
.cmp__c--c { text-align: center; }
.cmp__check {
  display: inline-block;
  width: 16px; height: 16px;
  background: var(--c-blue);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3 8.5l3 3 7-7' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3 8.5l3 3 7-7' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
}
.cmp__dash {
  display: inline-block;
  width: 12px; height: 2px;
  background: var(--c-muted-2);
}
@media (max-width: 720px) {
  .cmp__c { padding: 12px 14px; font-size: 13px; }
}

/* ============================================================
   Utils
   ============================================================ */

.gap-xl { display: flex; flex-direction: column; gap: clamp(60px, 7vw, 120px); }
.gap-md { display: flex; flex-direction: column; gap: clamp(40px, 5vw, 80px); }
.row-end { display: flex; justify-content: flex-end; }
.divider { height: 1px; background: var(--c-rule); }
